@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-400.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/atkinson-hyperlegible-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --slate-950: #0b202f;
  --slate-900: #10293a;
  --slate-800: #173b52;
  --slate-700: #31556a;
  --blue: #2f6eb7;
  --teal: #1aa493;
  --mint: #55caaa;
  --lime: #a9d85e;
  --amber: #eeb965;
  --cream: #f4f1e9;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #132c3c;
  --muted: #637481;
  --line: #dbe2e4;
  --soft-blue: #eaf1f6;
  --soft-mint: #e4f4ef;
  --soft-amber: #f8edd7;
  --shadow: 0 28px 80px rgba(11, 32, 47, .14);
  --shadow-soft: 0 16px 44px rgba(11, 32, 47, .08);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Atkinson Hyperlegible", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}
.pixel { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--white);
  color: var(--slate-950);
  font-weight: 800;
}
.skip-link:focus { top: 18px; }
.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.section-label {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.center { text-align: center; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", "Atkinson Hyperlegible", sans-serif;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(37px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.048em;
}
h2 em { color: var(--teal); font-style: normal; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(26, 164, 147, .2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #148575;
  box-shadow: 0 16px 34px rgba(26, 164, 147, .26);
}
.button-small {
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 12px;
}
.button-bright {
  background: var(--mint);
  color: var(--slate-950);
  box-shadow: 0 12px 32px rgba(85, 202, 170, .18);
}
.button-bright:hover { background: #70d8bb; }
.button-wide { width: 100%; }
.arrow-link, .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.arrow-link span, .text-link span {
  transition: transform .18s ease;
}
.arrow-link:hover span { transform: translateX(4px); }
.text-link:hover span { transform: translateY(3px); }

/* Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: var(--white);
}
.site-header-solid {
  position: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 32, 47, 0.97);
  box-shadow: 0 8px 24px rgba(11, 32, 47, 0.12);
}
.nav-shell {
  width: min(1280px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wordmark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.14));
}
.wordmark span {
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}
.wordmark strong {
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: .08em;
}
.wordmark small {
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links > a:not(.button) {
  color: rgba(255,255,255,.76);
  transition: color .18s ease;
}
.nav-links > a:not(.button):hover { color: var(--white); }
.nav-links .header-play-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.header-play-button img {
  display: block;
  width: auto;
  height: 38px;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 22px),
    var(--slate-950);
  background-size: 22px 22px;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -230px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(85,202,170,.12);
  border-radius: 50%;
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 790px;
  margin: 0 auto;
  padding: 150px 0 80px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}
.hero-glow-one {
  top: 140px;
  right: 10%;
  width: 420px;
  height: 420px;
  background: rgba(26,164,147,.12);
}
.hero-glow-two {
  bottom: -240px;
  left: -120px;
  width: 540px;
  height: 540px;
  background: rgba(47,110,183,.13);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(85,202,170,.12);
}
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.hero h1 em {
  display: block;
  margin-top: .04em;
  color: var(--mint);
  font-style: normal;
}
.hero-lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.73);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.hero-play-button img { height: 52px; }
.hero-explainer {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
}
.text-link { color: rgba(255,255,255,.86); font-size: 14px; }
.fine-print {
  margin: 18px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}
.hero-product {
  position: relative;
  height: 610px;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.orbit-one { inset: 60px 20px 10px 70px; }
.orbit-two { inset: 120px 80px 70px 130px; }
.phone-frame {
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: 3;
  width: 310px;
  height: 575px;
  overflow: hidden;
  border: 8px solid #263d4b;
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 40px 90px rgba(0,0,0,.36);
  transform: translateX(-50%) rotate(1.5deg);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 19px;
  border-radius: 999px;
  background: #263d4b;
  transform: translateX(-50%);
}
.phone-frame img {
  width: calc(100% + 16px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.status-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(23,59,82,.86);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.status-chip strong, .status-chip small { display: block; }
.status-chip strong { font-size: 13px; }
.status-chip small { margin-top: 2px; color: rgba(255,255,255,.55); font-size: 10px; }
.status-bills { top: 155px; right: -8px; }
.status-bills i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(85,202,170,.1);
}
.status-payday { bottom: 98px; left: -10px; }
.calendar-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--soft-amber);
  color: #8d6425;
  font-size: 12px;
  font-weight: 900;
}
.mascot-seal {
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 4;
  width: 128px;
  height: 128px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.3));
  transform: rotate(4deg);
}
.mascot-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mascot-seal span {
  position: absolute;
  top: 91px;
  right: 83px;
  width: max-content;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--slate-950);
  font-size: 10px;
  font-weight: 900;
  filter: none;
  transform: rotate(-5deg);
}
.mascot-seal span::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -7px;
  width: 15px;
  height: 15px;
  background: var(--amber);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.hero-trust {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 700;
}
.hero-trust span {
  position: relative;
  padding-left: 19px;
}
.hero-trust span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

/* Difference */
.problem-section {
  padding: 130px 0;
  background: var(--cream);
}
.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.sticky-copy {
  position: sticky;
  top: 60px;
}
.sticky-copy > p:not(.section-label) {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.calculation-story {
  padding: 34px;
  border: 1px solid rgba(19,44,60,.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.calc-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.calc-heading span { font-weight: 800; }
.calc-heading small { color: var(--muted); }
.calc-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.calc-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--soft-amber);
  color: #a26d20;
  font-size: 21px;
  font-weight: 800;
}
.calc-symbol.positive {
  background: var(--soft-mint);
  color: var(--teal);
}
.calc-row strong, .calc-row span { display: block; }
.calc-row strong { font-size: 23px; letter-spacing: -.03em; }
.calc-row span { margin-top: 3px; color: var(--muted); font-size: 13px; }
.calc-divider { height: 16px; }
.actually-yours {
  padding: 24px;
  border-radius: 20px 20px 0 0;
  background: var(--soft-blue);
}
.actually-yours span, .actually-yours small { display: block; }
.actually-yours span {
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.actually-yours strong {
  display: block;
  margin: 4px 0;
  color: var(--slate-900);
  font-size: 45px;
  letter-spacing: -.06em;
}
.actually-yours small { color: var(--muted); }
.safe-result {
  padding: 25px;
  border-radius: 0 0 20px 20px;
  background: var(--slate-900);
  color: var(--white);
}
.safe-result > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.safe-result span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.safe-result strong {
  color: var(--lime);
  font-size: 50px;
  line-height: .9;
  letter-spacing: -.06em;
}
.safe-result p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.example-note {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

/* Real life scenarios */
.feeling-section {
  padding: 120px 0 135px;
  background: var(--paper);
}
.center-title {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.scenario-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.scenario-featured {
  background: var(--slate-900);
  color: var(--white);
  transform: translateY(-18px);
}
.scenario-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.scenario-card h3 {
  margin: 48px 0 15px;
  font-size: 28px;
  letter-spacing: -.04em;
}
.scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.scenario-featured p { color: rgba(255,255,255,.65); }
.scenario-state {
  width: fit-content;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--soft-mint);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
}
.scenario-state.pause { background: rgba(238,185,101,.15); color: var(--amber); }
.scenario-state.flexible { background: var(--soft-blue); color: var(--blue); }

/* Product priorities */
.product-section {
  padding: 130px 0;
  background: var(--soft-blue);
}
.split-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}
.split-heading h2 { margin: 0; }
.split-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.feature-showcase {
  display: grid;
  gap: 28px;
}
.feature-panel {
  position: relative;
  min-height: 420px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(19,44,60,.08);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}
.feature-tag {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature-copy h3 {
  margin: 12px 0;
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.feature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.feature-primary { min-height: 440px; }
.feature-safe {
  min-height: 480px;
  background: var(--slate-900);
  color: var(--white);
}
.feature-safe .feature-copy { max-width: 42%; }
.feature-safe .feature-copy p { color: rgba(255,255,255,.62); }
.safe-mini-card {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 46%;
  min-height: 290px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(135deg, #1e4c74, #173858);
  box-shadow: 0 22px 45px rgba(0,0,0,.2);
  transform: translateY(-50%);
}
.safe-mini-card > span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.safe-mini-card strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 76px;
  line-height: .9;
  letter-spacing: -.07em;
}
.safe-mini-card strong i {
  color: var(--mint);
  font-size: 37px;
  font-style: normal;
  vertical-align: top;
}
.safe-mini-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }
.mini-progress {
  height: 7px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.mini-progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--mint); }
.feature-pause {
  min-height: 390px;
  background: #f3ead9;
}
.feature-pause .feature-copy { max-width: 46%; }
.pause-ticket {
  position: absolute;
  top: 50%;
  right: 46px;
  width: 43%;
  padding: 27px;
  border: 1px dashed #b99457;
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  transform: translateY(-50%) rotate(-1deg);
}
.pause-ticket > span, .pause-ticket > strong, .pause-ticket > small { display: block; }
.pause-ticket > span { color: #9b7234; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.pause-ticket > strong { margin-top: 10px; font-size: 24px; }
.pause-ticket > small { margin-top: 5px; color: var(--muted); }
.pause-ticket div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.pause-ticket b { padding: 10px 7px; border-radius: 10px; background: var(--white); color: var(--slate-700); text-align: center; font-size: 11px; }
.feature-support {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 20px;
}
.feature-support .feature-panel {
  min-height: 480px;
  padding: 34px;
}
.feature-ask { background: #dfeee9; }
.chat-preview {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 14px;
}
.chat-user {
  width: 80%;
  margin: 0 0 0 auto;
  padding: 15px 18px;
  border-radius: 18px 18px 4px 18px;
  background: var(--blue);
  color: var(--white);
}
.chat-answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
}
.chat-answer img { width: 34px; height: 34px; object-fit: contain; }
.chat-answer p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 4px 18px 18px 18px;
  background: var(--white);
  color: var(--muted);
  line-height: 1.55;
}
.chat-answer strong { color: var(--ink); }
.feature-plan {
  background: var(--white);
}
.feature-plan .feature-copy { max-width: 520px; }
.desktop-window {
  position: absolute;
  top: 285px;
  right: -90px;
  bottom: auto;
  width: 92%;
  max-height: 245px;
  overflow: hidden;
  border: 8px solid var(--slate-900);
  border-radius: 22px 0 0 0;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(11,32,47,.2);
}
.window-bar {
  height: 28px;
  padding: 9px 12px;
  background: var(--slate-900);
}
.window-bar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.desktop-window img { display: block; width: 100%; }

/* Feature list */
.more-section { padding: 130px 0; background: var(--paper); }
.more-heading { max-width: 780px; margin-bottom: 60px; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 28px 10px;
  border-bottom: 1px solid var(--line);
}
.feature-list article > span {
  padding-top: 7px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}
.feature-list article > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}
.feature-list h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.feature-list p { margin: 0; color: var(--muted); line-height: 1.6; }
.inline-guide-link {
  display: inline;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(26,164,147,.3);
  text-underline-offset: 3px;
}
.inline-guide-link:hover { color: #0f7569; }

/* Platforms */
.platform-section {
  padding: 135px 0;
  overflow: hidden;
  background: var(--slate-950);
  color: var(--white);
}
.platform-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: center;
}
.platform-visual {
  display: grid;
  gap: 18px;
}
.device-canvas {
  position: relative;
  min-height: 390px;
}
.platform-orbit {
  position: absolute;
  inset: 8px 30px 0 0;
  border: 1px solid rgba(85,202,170,.13);
  border-radius: 50%;
}
.platform-desktop {
  position: absolute;
  top: 28px;
  right: 0;
  width: 88%;
  overflow: hidden;
  border: 7px solid #294354;
  border-radius: 20px;
  box-shadow: 0 30px 75px rgba(0,0,0,.32);
  transform: rotate(1deg);
}
.platform-desktop img { display: block; }
.platform-phone {
  position: absolute;
  bottom: -4px;
  left: 8px;
  width: 190px;
  height: 370px;
  overflow: hidden;
  border: 7px solid #294354;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 65px rgba(0,0,0,.32);
  transform: rotate(-3deg);
}
.platform-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.widget-preview {
  width: min(100%, 386px);
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(0,0,0,.3);
}
.widget-feature {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}
.device-feature-heading {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.device-feature-heading span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.device-feature-heading small {
  color: rgba(255,255,255,.45);
  font-size: 10px;
}
.wear-card {
  min-height: 132px;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.watch-shell {
  position: relative;
  width: 108px;
  height: 118px;
  display: grid;
  place-items: center;
}
.watch-band {
  position: absolute;
  left: 35px;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(90deg, #273b46, #405966 50%, #273b46);
}
.watch-band-top { top: 0; }
.watch-band-bottom { bottom: 0; transform: rotate(180deg); }
.watch-crown {
  position: absolute;
  top: 55px;
  right: 4px;
  z-index: 3;
  width: 7px;
  height: 18px;
  border-radius: 0 5px 5px 0;
  background: #6e838d;
  box-shadow: inset 2px 0 rgba(255,255,255,.18);
}
.watch-case {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  padding: 5px;
  border: 2px solid #748891;
  border-radius: 50%;
  background: linear-gradient(145deg, #5f747e, #2b414c 68%);
  box-shadow: 0 14px 28px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.25);
}
.watch-face {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 115%, rgba(30,178,159,.35), transparent 48%),
    #111c20;
  box-shadow: inset 0 0 15px rgba(0,0,0,.65);
}
.watch-face small {
  color: rgba(255,255,255,.45);
  font-size: 5px;
  font-weight: 900;
  letter-spacing: .08em;
}
.watch-face strong { color: var(--mint); font-size: 23px; line-height: 1; }
.watch-mic {
  width: 25px;
  height: 25px;
  margin-top: 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 5px 12px rgba(30,178,159,.28);
}
.watch-mic svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.wear-card > div:last-child { display: flex; flex-direction: column; }
.wear-card > div:last-child > span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(238,185,101,.12);
  color: var(--amber);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wear-card > div:last-child > strong { margin-top: 6px; font-size: 14px; }
.wear-card p { margin: 3px 0 0; color: rgba(255,255,255,.5); font-size: 11px; }
.platform-copy h2 { font-size: clamp(40px, 5vw, 62px); }
.platform-copy > p:not(.section-label) { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; }
.platform-actions { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.play-button { display: inline-flex; transition: transform .18s ease; }
.play-button:hover { transform: translateY(-2px); }
.play-button img { display: block; width: auto; height: 53px; }

/* Privacy */
.privacy-section { padding: 120px 0; background: var(--cream); }
.privacy-card {
  position: relative;
  min-height: 450px;
  padding: 68px;
  display: grid;
  grid-template-columns: 1fr .45fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--slate-900);
  color: var(--white);
  box-shadow: var(--shadow);
}
.privacy-card::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(85,202,170,.14);
  border-radius: 50%;
}
.privacy-copy { position: relative; z-index: 2; max-width: 700px; }
.privacy-copy h2 { font-size: clamp(37px, 4.8vw, 59px); }
.privacy-copy > p:not(.section-label) { color: rgba(255,255,255,.64); line-height: 1.75; }
.light-link { margin-top: 20px; color: var(--white); }
.privacy-points {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.privacy-points div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.privacy-points strong, .privacy-points span { display: block; }
.privacy-points strong { color: var(--mint); }
.privacy-points span { margin-top: 3px; color: rgba(255,255,255,.54); font-size: 12px; }

/* Pricing */
.pricing-section { padding: 135px 0; background: var(--paper); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 100px;
  align-items: center;
}
.pricing-copy > p:not(.section-label) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.price-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.launch-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft-amber);
  color: #8d6425;
  font-size: 11px;
  font-weight: 900;
}
.price { display: flex; align-items: end; gap: 8px; margin: 22px 0 10px; }
.price strong { font-family: "Manrope", sans-serif; font-size: 68px; line-height: .9; letter-spacing: -.07em; }
.price span { color: var(--muted); font-weight: 700; }
.price-card > p { color: var(--muted); line-height: 1.55; }
.price-card ul { margin: 24px 0; padding: 0; list-style: none; }
.price-card li { position: relative; padding: 7px 0 7px 25px; }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.price-card > small { display: block; margin-top: 13px; color: var(--muted); text-align: center; line-height: 1.5; }

/* Closing and footer */
.closing-section { padding: 0 0 110px; background: var(--paper); }
.closing-card {
  position: relative;
  padding: 86px 32px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 20%, rgba(85,202,170,.12), transparent 24%),
    var(--slate-950);
  color: var(--white);
  text-align: center;
}
.closing-card::before, .closing-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.closing-card::before { top: -210px; left: -70px; }
.closing-card::after { right: -80px; bottom: -240px; }
.closing-card > img {
  width: 76px;
  height: 76px;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(0,0,0,.26);
}
.closing-card h2 { max-width: 850px; margin-right: auto; margin-left: auto; }
.closing-card > p:not(.section-label) { color: rgba(255,255,255,.64); font-size: 18px; }
.closing-actions { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
footer {
  padding: 70px 0 25px;
  background: #081925;
  color: var(--white);
}
.footer-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
}
.footer-brand p { margin: 20px 0 0; color: rgba(255,255,255,.48); line-height: 1.65; }
.footer-column { display: flex; flex-direction: column; gap: 13px; }
.footer-column strong { margin-bottom: 6px; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-column a:hover { color: var(--mint); }
.footer-bottom {
  width: min(1160px, calc(100% - 48px));
  margin: 60px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.34);
  font-size: 11px;
}

/* Supporting pages */
.support-main {
  min-height: 75vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 85% 5%, rgba(85,202,170,.16), transparent 30%),
    var(--paper);
}
.support-hero {
  max-width: 820px;
  margin-bottom: 64px;
}
.support-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
}
.support-hero > p:not(.section-label) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.support-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.support-card h2 {
  margin-bottom: 13px;
  font-size: 28px;
}
.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.support-card p + p { margin-top: 14px; }
.support-card a:not(.button) {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.support-card .button { margin-top: 22px; color: var(--white); text-decoration: none; }
.support-card-wide { grid-column: 1 / -1; }
.support-list {
  margin: 20px 0 0;
  padding-left: 21px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.support-list li + li { margin-top: 8px; }
.contact-address {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: "Manrope", "Atkinson Hyperlegible", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .nav-links { gap: 18px; }
  .hero-shell { grid-template-columns: 1fr 1fr; gap: 30px; }
  .status-bills { right: -20px; }
  .problem-grid { gap: 60px; }
  .platform-grid { gap: 45px; }
  .pricing-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(11,32,47,.98);
    box-shadow: 0 22px 55px rgba(0,0,0,.28);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.button) { padding: 12px 5px; }
  .nav-links .header-play-button { justify-content: center; }
  .header-play-button img { height: 42px; }
  .hero { min-height: auto; }
  .hero-shell {
    min-height: 0;
    padding-top: 135px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { position: relative; z-index: 5; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lede { margin-right: auto; margin-left: auto; }
  .hero-product { width: min(600px, 100%); margin: 0 auto; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
  .problem-grid, .platform-grid, .pricing-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: 270px; }
  .scenario-featured { transform: none; }
  .scenario-card h3 { margin-top: 30px; }
  .split-heading { grid-template-columns: 1fr; gap: 12px; }
  .feature-support { grid-template-columns: 1fr; }
  .feature-list article > div { grid-template-columns: 200px 1fr; }
  .platform-grid { gap: 70px; }
  .platform-copy { text-align: center; }
  .platform-actions { justify-content: center; }
  .privacy-card { padding: 52px; grid-template-columns: 1fr; gap: 35px; }
  .privacy-points { grid-template-columns: repeat(3, 1fr); }
  .pricing-copy { text-align: center; }
  .pricing-copy > p:not(.section-label) { margin-right: auto; margin-left: auto; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card-wide { grid-column: auto; }
  .footer-shell { grid-template-columns: 2fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 600px) {
  .section-shell, .hero-shell, .hero-trust, .nav-shell, .footer-shell, .footer-bottom {
    width: min(100% - 28px, 1160px);
  }
  h2 { font-size: 39px; }
  .nav-shell { height: 76px; }
  .wordmark img { width: 44px; height: 44px; }
  .hero-shell { padding-top: 120px; }
  .hero h1 { font-size: 58px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-play-button img { height: 50px; }
  .hero-explainer { justify-content: center; }
  .hero-product { height: 520px; margin-top: 5px; }
  .phone-frame { width: 265px; height: 490px; }
  .status-chip { min-width: 155px; padding: 10px 12px; }
  .status-bills { top: 125px; right: -12px; }
  .status-payday { bottom: 55px; left: -8px; }
  .mascot-seal { top: 3px; right: -5px; width: 92px; height: 92px; }
  .mascot-seal span { top: 65px; right: 61px; }
  .hero-trust { font-size: 10px; }
  .problem-section, .feeling-section, .product-section, .more-section, .platform-section, .pricing-section { padding: 90px 0; }
  .calculation-story { padding: 21px; border-radius: 24px; }
  .calc-heading { flex-direction: column; gap: 5px; }
  .safe-result > div { align-items: center; }
  .safe-result strong { font-size: 44px; }
  .scenario-grid { margin-top: 38px; }
  .feature-panel { padding: 25px; border-radius: 24px; }
  .feature-primary { min-height: 0; }
  .feature-safe { min-height: 620px; }
  .feature-safe .feature-copy, .feature-pause .feature-copy { max-width: none; }
  .safe-mini-card {
    top: auto;
    right: 24px;
    bottom: -20px;
    left: 24px;
    width: auto;
    min-height: 245px;
    padding: 29px;
    transform: none;
  }
  .feature-pause { min-height: 570px; }
  .pause-ticket {
    top: auto;
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
    transform: rotate(-1deg);
  }
  .feature-support .feature-panel { min-height: 470px; padding: 25px; }
  .safe-mini-card, .pause-ticket, .chat-preview { right: 24px; bottom: 24px; left: 24px; }
  .pause-ticket div { grid-template-columns: 1fr 1fr; }
  .pause-ticket b:last-child { grid-column: 1 / -1; }
  .feature-plan { min-height: 520px; }
  .desktop-window { right: -120px; width: 125%; }
  .feature-list article { grid-template-columns: 34px 1fr; gap: 8px; padding: 24px 0; }
  .feature-list article > div { grid-template-columns: 1fr; gap: 7px; }
  .platform-visual { min-height: 440px; }
  .platform-desktop { top: 70px; width: 100%; }
  .platform-phone { width: 150px; height: 305px; }
  .widget-preview {
    width: min(100%, 330px);
    border-radius: 25px;
  }
  .wear-card { grid-template-columns: 96px 1fr; gap: 15px; padding: 14px 15px; }
  .watch-shell { width: 92px; transform: scale(.88); transform-origin: center; }
  .privacy-section { padding: 70px 0; }
  .privacy-card { padding: 38px 25px; border-radius: 27px; }
  .privacy-points { grid-template-columns: 1fr; }
  .price-card { padding: 28px 23px; border-radius: 26px; }
  .closing-section { padding-bottom: 70px; }
  .closing-card { width: calc(100% - 28px); padding: 64px 22px; border-radius: 28px; }
  .closing-actions { flex-direction: column; }
  .support-main { padding: 125px 0 75px; }
  .support-hero { margin-bottom: 42px; }
  .support-hero h1 { font-size: 52px; }
  .support-hero > p:not(.section-label) { font-size: 18px; }
  .support-card { padding: 25px; }
  .footer-shell { grid-template-columns: 1fr 1fr; gap: 42px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { margin-top: 45px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
