:root {
  color-scheme: light;
  --paper: #fbf7ef;
  --paper-quiet: #f0eadf;
  --paper-warm: #fffaf0;
  --ink: #14231e;
  --ink-soft: #33423b;
  --muted: #65736c;
  --line: rgba(20, 35, 30, 0.15);
  --forest: #102f2a;
  --forest-deep: #071713;
  --teal: #0a7f82;
  --teal-bright: #19aaa7;
  --coral: #f27655;
  --saffron: #f6bd3b;
  --moss: #6f8540;
  --arctic: #94a9ff;
  --cream: #fff4dd;
  --white: #fffef8;
  --shadow-sm: 0 12px 28px rgba(20, 35, 30, 0.12);
  --shadow: 0 32px 90px rgba(9, 23, 19, 0.28);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(25, 170, 167, 0.2);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--paper), #f6efe4 52%, #eef3ed 100%),
    repeating-linear-gradient(90deg, rgba(20, 35, 30, 0.035) 0 1px, transparent 1px 34px);
  color: var(--ink);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(20, 35, 30, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 35, 30, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
  opacity: 0.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(25, 170, 167, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--forest-deep);
  clip-path: inset(50%);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
}

section[id] {
  scroll-margin-top: 108px;
}

.page-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 13px;
  padding-inline: max(22px, env(safe-area-inset-left), calc((100vw - 1180px) / 2)) max(22px, env(safe-area-inset-right), calc((100vw - 1180px) / 2));
  color: var(--cream);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-elevated,
.site-header.is-solid {
  border-bottom: 1px solid rgba(20, 35, 30, 0.12);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 36px rgba(20, 35, 30, 0.12);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: inherit;
  font-weight: 950;
  text-decoration: none;
}

.brand img,
.download-icon,
.icon-row img {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  font-size: 0.93rem;
  font-weight: 850;
}

.site-nav a,
.site-footer a,
.text-link,
.inline-cta {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-footer a:hover,
.site-footer a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.inline-cta:hover,
.inline-cta:focus-visible {
  color: var(--teal-bright);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
}

.nav-cta {
  padding: 0 17px;
  background: var(--saffron);
  color: #1f1a0f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.site-header.is-elevated .nav-cta,
.site-header.is-solid .nav-cta {
  background: var(--forest);
  color: var(--cream);
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(20, 35, 30, 0.14);
  transition: transform 160ms ease, filter 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--teal);
  color: #fff;
}

.button-ghost,
.button-secondary {
  border-color: rgba(255, 244, 221, 0.42);
  background: rgba(255, 244, 221, 0.08);
  color: var(--cream);
}

.button-secondary {
  border-color: rgba(20, 35, 30, 0.18);
  background: rgba(255, 254, 248, 0.9);
  color: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  filter: saturate(1.08) brightness(0.98);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 244, 221, 0.16);
}

.store-badge {
  display: inline-flex;
  width: 188px;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.store-badge img {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(780px, 86svh);
  padding: 106px 0 58px;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--cream);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 23, 19, 0.98) 0%, rgba(16, 47, 42, 0.92) 40%, rgba(16, 47, 42, 0.54) 72%, rgba(16, 47, 42, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 23, 19, 0.22), rgba(7, 23, 19, 0.84)),
    url("assets/hero-tabletop-abstract.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 244, 221, 0.045) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 244, 221, 0.035) 0 1px, transparent 1px 42px);
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.96));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
}

.hero-copy {
  min-width: 0;
  max-width: 670px;
  animation: rise-in 620ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.download h2,
.support-hero h1,
.legal h1 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 690px;
  color: var(--cream);
  font-family: "Iowan Old Style", "New York", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 6.75rem);
  font-weight: 900;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: min(100%, 610px);
  margin: 24px 0 0;
  color: rgba(255, 244, 221, 0.84);
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  font-weight: 650;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 32px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 244, 221, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 244, 221, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: var(--saffron);
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 244, 221, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-product {
  position: relative;
  min-width: 0;
  min-height: 590px;
  display: grid;
  place-items: center;
  animation: rise-in 720ms 110ms ease both;
}

.device {
  width: min(100%, 372px);
  margin: 0 auto;
}

.device-hero {
  position: relative;
  z-index: 4;
  width: min(100%, 288px);
  transform: rotate(1.4deg);
}

.device-panel {
  width: min(100%, 346px);
}

.iphone-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background:
    linear-gradient(145deg, #5d6862 0%, #151f1b 32%, #050807 64%, #4a5650 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 -18px 28px rgba(255, 255, 255, 0.05),
    var(--shadow-dark);
}

.iphone-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 42px;
}

.iphone-frame img {
  width: 100%;
  aspect-ratio: 331 / 720;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  background: #000;
}

.dynamic-island {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050807;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.12);
}

.iphone-side {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #222b29;
}

.iphone-side-left {
  left: -3px;
  top: 128px;
  height: 78px;
}

.iphone-side-right {
  right: -3px;
  top: 160px;
  height: 108px;
}

.device figcaption {
  margin-top: 14px;
  color: rgba(255, 244, 221, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.section-band .device figcaption {
  color: var(--muted);
}

.pack-fan {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 1;
  height: 260px;
  pointer-events: none;
}

.pack-fan-card {
  position: absolute;
  width: min(44vw, 238px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 4px solid rgba(255, 244, 221, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.pack-fan-card-one {
  top: 58px;
  left: 4%;
  transform: rotate(-13deg);
}

.pack-fan-card-two {
  top: 18px;
  right: 4%;
  transform: rotate(10deg);
}

.pack-fan-card-three {
  top: 138px;
  right: 12%;
  transform: rotate(-4deg);
}

.table-note {
  position: absolute;
  z-index: 5;
  min-width: 158px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 244, 221, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 23, 19, 0.78);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.table-note span {
  display: block;
  color: var(--teal-bright);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.table-note b {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.14;
}

.table-note-top {
  top: 132px;
  left: 0;
}

.table-note-bottom {
  right: 0;
  bottom: 92px;
}

.proof-strip {
  padding: 18px 0;
  border-block: 1px solid rgba(20, 35, 30, 0.12);
  background: rgba(255, 250, 240, 0.94);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid p {
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-grid b {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
}

.section-band {
  padding: clamp(78px, 9vw, 118px) 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(239, 245, 239, 0.86)),
    linear-gradient(135deg, rgba(25, 170, 167, 0.08), transparent 46%);
}

.band {
  padding: clamp(72px, 9vw, 112px) 0;
  background: rgba(255, 250, 240, 0.68);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.split-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.section-copy {
  min-width: 0;
  max-width: 660px;
}

.section-copy h2,
.section-heading h2,
.download h2 {
  font-family: "Iowan Old Style", "New York", Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  font-weight: 900;
  line-height: 0.98;
}

.section-copy > p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.download-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 600;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tab-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(20, 35, 30, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, 0.85);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tab-button:hover,
.tab-button:focus-visible {
  transform: translateY(-1px);
}

.tab-button.is-active {
  border-color: rgba(10, 127, 130, 0.38);
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(16, 47, 42, 0.24);
}

.workflow-grid,
.feature-grid,
.trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-grid article,
.feature-grid article,
.trust-grid article,
.faq-item {
  border: 1px solid rgba(20, 35, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, 0.84);
  box-shadow: var(--shadow-sm);
}

.workflow-grid article {
  padding: 16px;
}

.feature-grid article,
.trust-grid article,
.faq-item {
  padding: 22px;
}

.workflow-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 950;
}

.workflow-grid h3,
.feature-grid h3,
.trust-grid h3,
.pack-card h3,
.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.16;
}

.workflow-grid p,
.feature-grid p,
.trust-grid p,
.pack-card p,
.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.packs {
  padding: clamp(78px, 9vw, 118px) 0;
  background:
    linear-gradient(180deg, #f7f2e9, #edf6f4),
    repeating-linear-gradient(135deg, rgba(20, 35, 30, 0.04) 0 1px, transparent 1px 18px);
}

.section-heading {
  min-width: 0;
  max-width: 800px;
  margin-bottom: 34px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pack-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, 0.88);
  box-shadow: var(--shadow-sm);
}

.pack-card-feature {
  border-color: rgba(10, 127, 130, 0.28);
}

.pack-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pack-card h3,
.pack-card p {
  padding-inline: 16px;
}

.pack-card h3 {
  margin-top: 16px;
}

.pack-card p {
  padding-bottom: 18px;
}

.pack-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(20, 35, 30, 0.14);
}

.challenge-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(16, 47, 42, 0.94), rgba(10, 127, 130, 0.84)),
    url("assets/hero-tabletop-abstract.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.challenge-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 244, 221, 0.055) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255, 244, 221, 0.035) 0 1px, transparent 1px 30px);
}

.mini-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 54px);
  gap: 10px;
  transform: rotate(-4deg);
}

.mini-board span {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 244, 221, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 221, 0.16), transparent 48%),
    var(--teal);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.mini-board span:nth-child(3n) {
  background-color: var(--coral);
}

.mini-board span:nth-child(4n) {
  background-color: var(--moss);
}

.timer-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 132px;
  padding: 14px;
  border: 1px solid rgba(255, 244, 221, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.timer-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timer-card b {
  color: var(--ink);
  font-size: 1.48rem;
  line-height: 1.08;
}

.board-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.board-ladder span {
  min-width: 0;
  padding: 11px 9px;
  border: 1px solid rgba(20, 35, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, 0.86);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.board-ladder b {
  display: block;
  color: var(--teal);
  font-size: 1.16rem;
}

.icons {
  padding: clamp(78px, 9vw, 110px) 0;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(250, 245, 236, 0.94));
}

.icons-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(64px, 1fr));
  gap: 12px;
}

.icon-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-row img:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 18px 36px rgba(20, 35, 30, 0.2);
}

.choices-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
}

.choices .section-heading {
  margin-bottom: 0;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.text-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  grid-column: 2;
  margin-top: 10px;
}

.text-link,
.inline-cta {
  color: var(--teal);
  font-weight: 950;
}

.faq-strip {
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.download {
  padding: clamp(76px, 9vw, 116px) 0;
  background:
    linear-gradient(120deg, rgba(7, 23, 19, 0.98), rgba(16, 47, 42, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 244, 221, 0.05) 0 1px, transparent 1px 22px);
  color: var(--cream);
}

.download .section-kicker,
.download h2,
.download p {
  color: inherit;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.download-copy {
  max-width: 730px;
}

.download-copy p:not(.section-kicker) {
  color: rgba(255, 244, 221, 0.82);
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-icon {
  width: 82px;
  height: 82px;
}

.legal-main {
  padding-top: 92px;
}

.support-hero,
.legal {
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: 40px;
}

.support-hero {
  max-width: 880px;
}

.support-hero h1,
.legal h1 {
  font-family: "Iowan Old Style", "New York", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.support-hero p:not(.section-kicker),
.legal > p,
.legal section p,
.legal-list {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-date {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 850;
}

.legal section {
  padding: 28px 0;
  border-top: 1px solid rgba(20, 35, 30, 0.12);
}

.legal section:first-of-type {
  margin-top: 34px;
}

.legal h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: "Iowan Old Style", "New York", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.legal section p,
.legal-list {
  max-width: 820px;
}

.legal a {
  color: var(--teal);
  font-weight: 850;
}

.legal-list {
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 8px;
}

.faq {
  padding: 18px 0 clamp(64px, 9vw, 104px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.contact-grid p:not(.section-kicker) {
  max-width: 650px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 34px 0;
  background: #0d1b17;
  color: rgba(255, 244, 221, 0.76);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-footer {
  color: var(--cream);
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-grid,
  .split-grid-reverse,
  .icons-layout,
  .choices-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

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

  .pack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid,
  .workflow-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-actions {
    grid-column: auto;
    margin-top: 24px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

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

  .table-note-top {
    left: 6px;
  }

  .table-note-bottom {
    right: 6px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 28px);
    max-width: 560px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand span {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
  }

  .hero {
    padding: 90px 0 46px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.2vw, 3.08rem);
    line-height: 0.94;
    overflow-wrap: break-word;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-facts,
  .board-ladder,
  .feature-grid,
  .pack-grid,
  .proof-grid,
  .workflow-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .download-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-badge {
    width: 178px;
  }

  .hero-product {
    min-height: 430px;
    margin-top: 26px;
  }

  .device-hero {
    width: min(72vw, 246px);
  }

  .device-panel {
    width: min(82vw, 304px);
  }

  .device-hero figcaption {
    display: none;
  }

  .pack-fan {
    inset: 8px 0 auto;
    height: 220px;
  }

  .pack-fan-card {
    width: min(45vw, 174px);
    border-width: 3px;
  }

  .pack-fan-card-three {
    top: 118px;
  }

  .table-note {
    min-width: 132px;
    padding: 11px 12px;
  }

  .table-note b {
    font-size: 0.9rem;
  }

  .table-note-top {
    top: 92px;
  }

  .table-note-bottom {
    bottom: 50px;
  }

  .section-band,
  .packs,
  .icons,
  .faq-strip,
  .download {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .download h2 {
    font-size: clamp(2rem, 10vw, 2.72rem);
    line-height: 1.02;
  }

  .section-copy,
  .section-heading,
  .proof-grid p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .challenge-visual {
    min-height: 330px;
  }

  .mini-board {
    grid-template-columns: repeat(4, 44px);
    gap: 8px;
  }

  .timer-card {
    right: 16px;
    bottom: 16px;
  }

  .icons-layout,
  .download-layout,
  .footer-grid,
  .contact-grid {
    display: block;
  }

  .contact-grid .button {
    margin-top: 18px;
  }

  .icon-row {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    margin-top: 28px;
    gap: 8px;
  }

  .footer-grid nav {
    margin-top: 22px;
  }
}

@media (max-width: 600px) {
  .hero-copy,
  .hero-facts {
    max-width: 340px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts div {
    padding: 11px 9px;
  }

  .hero-facts dt {
    font-size: 1.08rem;
  }

  .hero-facts dd {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-product {
    min-height: 270px;
    margin-top: 18px;
    overflow: hidden;
  }

  .device-hero {
    width: 186px;
    align-self: end;
    margin-bottom: -126px;
  }

  .pack-fan {
    inset: 26px 0 auto;
    height: 150px;
  }

  .pack-fan-card {
    width: min(38vw, 128px);
  }

  .pack-fan-card-one {
    top: 54px;
    left: 8%;
  }

  .pack-fan-card-two {
    top: 18px;
    right: 10%;
  }

  .pack-fan-card-three {
    top: 82px;
    right: 12%;
  }

  .table-note {
    min-width: 118px;
    padding: 9px 10px;
  }

  .table-note-top {
    top: 112px;
    left: 8px;
  }

  .table-note-bottom {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 96px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 2.75rem);
  }

  .hero-product {
    align-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
