:root {
  color-scheme: dark;
  --bg: #07090a;
  --bg-2: #0d1114;
  --panel: #151a1e;
  --panel-2: #1d2429;
  --panel-3: #242c32;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f2ed;
  --muted: #aea79f;
  --quiet: #777f86;
  --ink: #0d0d0c;
  --accent: #ef8b59;
  --route: #72d0cf;
  --effort: #88aee8;
  --success: #8acb88;
  --warning: #e7bc60;
  --spark: #b89cf2;
  --danger: #ea7575;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 4%, rgba(239, 139, 89, 0.16), transparent 31rem),
    radial-gradient(circle at 17% 12%, rgba(114, 208, 207, 0.09), transparent 26rem),
    linear-gradient(180deg, #050607 0%, var(--bg) 34%, #0a0d0f 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 40px);
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(7, 9, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  max-width: 980px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coal-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 34% 29%, #4b5156 0 10%, transparent 11%),
    radial-gradient(circle at 68% 31%, #2b3034 0 9%, transparent 10%),
    radial-gradient(circle at 50% 62%, #101315 0 52%, #050607 53% 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.coal-mark::before,
.coal-mark::after {
  position: absolute;
  top: 14px;
  width: 4px;
  height: 4px;
  content: "";
  background: #f6f2ea;
  border-radius: 999px;
}

.coal-mark::before {
  left: 12px;
}

.coal-mark::after {
  right: 12px;
}

.coal-mark span {
  width: 12px;
  height: 5px;
  margin-top: 12px;
  border-bottom: 2px solid rgba(246, 242, 234, 0.82);
  border-radius: 0 0 999px 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.74fr);
  align-items: center;
  gap: 52px;
  width: calc(100% - 40px);
  max-width: var(--max);
  min-height: auto;
  margin: 0 auto;
  padding: 72px 0 46px;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.mini-label {
  color: var(--route);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  width: 100%;
  max-width: 850px;
  margin: 12px 0 0;
  font-size: 5.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(239, 139, 89, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.signal-row span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

.chip.live {
  color: var(--route);
  background: rgba(114, 208, 207, 0.1);
  border-color: rgba(114, 208, 207, 0.22);
}

.hero-product {
  position: relative;
  min-height: 640px;
}

.device-shell {
  width: 365px;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(145deg, #2c3338, #080a0b 42%, #1c2226);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.device-screen {
  min-height: 640px;
  padding: 16px 16px 18px;
  background:
    radial-gradient(circle at 76% -4%, rgba(239, 139, 89, 0.16), transparent 15rem),
    radial-gradient(circle at 10% 20%, rgba(114, 208, 207, 0.1), transparent 13rem),
    #101315;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 31px;
  overflow: hidden;
}

.status-row,
.app-top,
.card-head,
.records-head,
.chart-meta,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-row {
  padding: 0 5px 14px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-dots {
  color: var(--muted);
  letter-spacing: 0.16em;
}

.app-top h2 {
  margin: 5px 0 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.coach-dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--route);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(114, 208, 207, 0.26);
}

.ring-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.ring {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ring::before {
  position: absolute;
  inset: 12px 20px 28px;
  content: "";
  background:
    conic-gradient(var(--clr) calc(var(--p) * 1%), rgba(255, 255, 255, 0.08) 0);
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 48%, #000 49%);
}

.ring strong {
  margin-top: 2px;
  font-size: 1.18rem;
  z-index: 1;
}

.ring small {
  z-index: 1;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
}

.ring span {
  z-index: 1;
  align-self: end;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
}

.today-card,
.coach-panel,
.records-preview,
.document-card,
.mode-card,
.support-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.today-card {
  margin-top: 14px;
  padding: 16px;
  border-color: rgba(239, 139, 89, 0.25);
}

.today-card h3 {
  margin: 12px 0 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.today-card p,
.ai-row p,
.section-copy p,
.health-section p,
.document-hero p,
.document-card p,
.document-card li,
.mode-card p,
.support-grid p,
.site-footer p {
  color: var(--muted);
}

.today-card p {
  margin: 9px 0 0;
  font-size: 0.88rem;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.session-grid div {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.session-grid span {
  display: block;
  color: var(--quiet);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.session-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 0.98rem;
}

.today-card button {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  color: var(--ink);
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  cursor: default;
  font-weight: 950;
}

.ai-row {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 14px;
  padding: 13px;
  background: rgba(114, 208, 207, 0.08);
  border: 1px solid rgba(114, 208, 207, 0.18);
  border-radius: 8px;
}

.ai-row span {
  color: var(--route);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

.ai-row p {
  margin: 0;
  font-size: 0.84rem;
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.tab-bar span {
  color: var(--quiet);
  font-size: 0.67rem;
  font-weight: 850;
  text-align: center;
}

.tab-bar .active {
  color: var(--accent);
}

.metric-float {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 122px;
  padding: 12px;
  background: rgba(21, 26, 30, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.metric-float span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-float strong {
  font-size: 1.5rem;
}

.metric-float.top {
  top: 88px;
  right: 0;
}

.metric-float.bottom {
  bottom: 88px;
  left: 0;
}

.proof-band,
.content-section,
.site-footer {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof-band div {
  min-height: 156px;
  padding: 24px;
  background: rgba(13, 17, 20, 0.88);
}

.proof-band strong {
  display: block;
  margin-top: 12px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.content-section {
  padding: 108px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.split-section.reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.9fr);
}

.section-copy h2,
.section-heading h2,
.health-section h2,
.document-hero h1 {
  margin: 12px 0 0;
  font-size: 3.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.health-section p {
  max-width: 600px;
  margin: 20px 0 0;
  font-size: 1.06rem;
}

.coach-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(136, 174, 232, 0.08), transparent 56%),
    rgba(21, 26, 30, 0.84);
}

.message {
  display: grid;
  gap: 10px;
  max-width: 88%;
  padding: 13px;
  border-radius: 8px;
}

.message p {
  margin: 0;
}

.message.assistant {
  grid-template-columns: 24px 1fr;
  color: var(--text);
  background: rgba(114, 208, 207, 0.08);
  border: 1px solid rgba(114, 208, 207, 0.17);
}

.message.assistant span {
  color: var(--route);
  font-size: 1.05rem;
  text-align: center;
}

.message.user {
  justify-self: end;
  color: var(--ink);
  background: var(--accent);
}

.message.user p {
  color: var(--ink);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
}

.mode-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.mode-card,
.support-grid article {
  padding: 24px;
}

.mode-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--warning);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.mode-card:nth-child(2) .mode-icon,
.support-grid article:nth-child(2) .mode-icon {
  background: var(--route);
}

.mode-card:nth-child(3) .mode-icon,
.support-grid article:nth-child(3) .mode-icon {
  background: var(--effort);
}

.support-grid article:nth-child(4) .mode-icon {
  background: var(--success);
}

.mode-card h3,
.support-grid h2 {
  margin: 18px 0 0;
  font-size: 1.25rem;
}

.mode-card p,
.support-grid p {
  margin: 12px 0 0;
}

.mode-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 0.88rem;
}

.records-preview {
  padding: 18px;
  background:
    radial-gradient(circle at 90% 2%, rgba(114, 208, 207, 0.12), transparent 13rem),
    rgba(21, 26, 30, 0.84);
}

.records-head h3 {
  margin: 5px 0 0;
  font-size: 1.7rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.calendar-grid b,
.calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 40px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 0.82rem;
}

.calendar-grid .done {
  color: var(--ink);
  background: var(--success);
}

.calendar-grid .done.route {
  background: var(--route);
}

.calendar-grid .done.effort {
  background: var(--effort);
}

.calendar-grid .done.accent,
.calendar-grid .active-day {
  background: var(--accent);
}

.calendar-grid .active-day {
  color: var(--ink);
  box-shadow: 0 0 0 2px rgba(239, 139, 89, 0.22);
}

.chart-card {
  margin-top: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chart-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-meta strong {
  color: var(--effort);
  font-size: 1.3rem;
}

.bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 132px;
  margin-top: 18px;
}

.bars span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(180deg, var(--effort), rgba(136, 174, 232, 0.22));
  border-radius: 8px 8px 3px 3px;
}

.health-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 108px;
}

.health-grid {
  display: grid;
  gap: 10px;
}

.health-grid span {
  display: block;
  padding: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.site-footer {
  align-items: flex-start;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.footer-brand small {
  text-transform: none;
  letter-spacing: 0;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--text);
}

.document-page {
  width: calc(100% - 40px);
  max-width: 980px;
  margin: 0 auto;
  padding: 74px 0 96px;
}

.document-hero {
  max-width: 840px;
  padding: 28px 0 38px;
}

.document-hero h1 {
  font-size: 4.2rem;
}

.document-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.document-hero a,
.document-card a {
  color: var(--route);
  font-weight: 850;
}

.effective {
  color: var(--warning) !important;
  font-size: 0.9rem !important;
  font-weight: 900;
}

.document-card {
  margin-top: 16px;
  padding: 26px;
  background: rgba(21, 26, 30, 0.78);
}

.document-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.document-card p {
  margin: 14px 0 0;
}

.document-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 19px;
}

.document-card li::marker {
  color: var(--accent);
}

.document-card details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.document-card details:first-of-type {
  margin-top: 8px;
}

.document-card details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.document-card summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.warning-card {
  border-color: rgba(231, 188, 96, 0.28);
  background: rgba(231, 188, 96, 0.08);
}

.health-policy {
  border-color: rgba(114, 208, 207, 0.24);
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.4rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-product {
    min-height: 620px;
  }

  .metric-float.top {
    right: 12%;
  }

  .metric-float.bottom {
    left: 10%;
  }

  .proof-band,
  .mode-grid,
  .support-grid,
  .split-section,
  .split-section.reverse,
  .health-section {
    grid-template-columns: 1fr;
  }

  .split-section,
  .split-section.reverse,
  .health-section {
    gap: 34px;
  }

  .section-copy h2,
  .section-heading h2,
  .health-section h2 {
    font-size: 2.7rem;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.compact,
  .hero-section,
  .proof-band,
  .content-section,
  .site-footer,
  .document-page {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 16px 0;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    gap: 7px;
  }

  .nav-links a {
    justify-content: center;
    min-height: 34px;
    padding: 0 6px;
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 38px 0 34px;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.8vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-copy,
  .hero-lead,
  .signal-row {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead,
  .section-copy p,
  .health-section p,
  .document-hero p {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product {
    min-height: 0;
    width: 100%;
    overflow: hidden;
  }

  .device-shell {
    width: 100%;
    max-width: 350px;
  }

  .device-screen {
    min-height: 0;
  }

  .metric-float {
    position: static;
    display: inline-grid;
    margin-top: 10px;
    margin-right: 8px;
    vertical-align: top;
  }

  .proof-band {
    display: grid;
  }

  .proof-band div {
    min-height: 0;
  }

  .content-section {
    padding-top: 74px;
  }

  .section-copy h2,
  .section-heading h2,
  .health-section h2 {
    font-size: 2.15rem;
  }

  .document-page {
    padding: 38px 0 70px;
  }

  .document-hero {
    padding-top: 10px;
  }

  .document-hero h1 {
    font-size: 2.55rem;
  }

  .document-card,
  .mode-card,
  .support-grid article {
    padding: 20px;
  }

  .session-grid,
  .ring-strip {
    grid-template-columns: 1fr;
  }

  .ring {
    min-height: 82px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-grid b,
  .calendar-grid span {
    min-height: 34px;
    font-size: 0.76rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(2rem, 10.5vw, 2.32rem);
  }

  .document-hero h1 {
    font-size: 2.2rem;
  }

  .device-shell {
    padding: 8px;
    border-radius: 30px;
  }

  .device-screen {
    padding: 14px;
    border-radius: 24px;
  }

  .status-row,
  .app-top,
  .card-head,
  .records-head,
  .chart-meta {
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-header.compact,
  .hero-section,
  .proof-band,
  .content-section,
  .site-footer,
  .document-page {
    max-width: 100%;
  }
}
