@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Newsreader:ital,opsz,wght@1,6..72,500&display=swap');

:root {
  --ink: #171916;
  --muted: #6f736d;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #dedfd9;
  --mint: #b9dfc8;
  --mint-dark: #51866a;
  --blue: #9cc7e8;
  --blue-dark: #3976a4;
  --coral: #efaa94;
  --gold: #eacb7b;
  --radius: 28px;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 11%, rgba(185, 223, 200, .2), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header,
.site-footer,
main {
  width: min(1400px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 98px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(23, 25, 22, .12);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  right: -3px;
  top: 2px;
  border-radius: 50%;
  background: var(--mint-dark);
  border: 2px solid var(--paper);
}

.brand-mark i {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(0deg);
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.site-header nav a:hover,
.site-footer nav a:hover { color: var(--ink); }

.nav-status {
  justify-self: end;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 4vw;
  padding: 64px 0 76px;
  overflow: hidden;
}

.hero-copy { padding-left: clamp(0px, 3vw, 52px); }

.eyebrow,
.section-index {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 20px; height: 1px; background: currentColor; }

h1,
h2,
h3,
p { text-wrap: balance; }

h1 {
  margin: 0;
  font-size: clamp(70px, 8.1vw, 124px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.075em;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.04em;
}

.hero-description {
  max-width: 510px;
  margin: 38px 0 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: #30332e; }
.button-light { color: var(--ink); background: var(--paper); }
.quiet-note { color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(81, 134, 106, .2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one { width: 610px; height: 450px; }
.orbit-two { width: 760px; height: 560px; opacity: .6; }

.phone-shell {
  position: relative;
  z-index: 2;
  width: 350px;
  padding: 11px;
  border-radius: 48px;
  background: #181a18;
  box-shadow: 0 48px 90px rgba(30, 48, 37, .19), 0 12px 30px rgba(30, 48, 37, .12);
  transform: rotate(2.5deg);
}

.phone-shell::before {
  content: '';
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 90px;
  height: 24px;
  border-radius: 999px;
  background: #181a18;
  transform: translateX(-50%);
}

.phone-screen {
  height: 690px;
  overflow: hidden;
  border-radius: 39px;
  background: white;
}

.phone-top {
  height: 105px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 38px 23px 17px;
}

.phone-top > div:first-child { display: flex; flex-direction: column; line-height: 1.1; }
.phone-kicker { color: #969990; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.phone-top strong { margin-top: 4px; font-size: 20px; letter-spacing: -.04em; }
.mini-avatars { display: flex; }
.mini-avatars .avatar + .avatar { margin-left: -6px; }

.avatar {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  color: #26332c;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.avatar-blue { background: var(--blue); }
.avatar-coral { background: var(--coral); }
.avatar-gold { background: var(--gold); }

.week-row {
  height: 57px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  padding-left: 16px;
  border-block: 1px solid #eee;
}

.week-row span {
  width: 37px;
  height: 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 18px;
  color: #777b74;
  font-size: 11px;
}

.week-row small { font-size: 7px; font-weight: 600; }
.week-row .active { color: #173125; background: var(--mint); font-weight: 600; }

.agenda {
  position: relative;
  height: 474px;
  padding-left: 41px;
  background: #fdfdfc;
}

.calendar-lines {
  position: absolute;
  inset: 0 0 0 41px;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 58px, #eceeea 59px);
}

.time-label {
  position: absolute;
  top: calc((var(--row) - 1) * 59px + 8px);
  left: 10px;
  color: #a3a59e;
  font-size: 9px;
}

.time-row-1 { --row: 1; }
.time-row-2 { --row: 2; }
.time-row-3 { --row: 3; }
.time-row-4 { --row: 4; }
.time-row-5 { --row: 5; }
.time-row-6 { --row: 6; }
.time-row-7 { --row: 7; }
.time-row-8 { --row: 8; }

.event {
  position: absolute;
  z-index: 2;
  top: calc(var(--top) * 59px);
  left: calc(45px + (var(--left) - 1) * 18px);
  width: calc(100% - 70px - (var(--left) - 1) * 18px);
  height: calc(var(--height) * 59px);
  display: flex;
  flex-direction: column;
  padding: 9px 11px;
  border-left: 3px solid rgba(0, 0, 0, .22);
  border-radius: 8px;
  color: #28332d;
}

.event small { font-size: 8px; opacity: .62; }
.event strong { margin-top: 2px; font-size: 11px; }
.event-mint { background: #d9efdf; }
.event-blue { background: #d7e9f6; }
.event-coral { background: #f7d8ce; }
.event-deep-work { --top: 1.4; --height: 1.5; --left: 1; }
.event-lunch { --top: 3.25; --height: 1.12; --left: 2; }
.event-weekend { --top: 5.6; --height: 1.7; --left: 1; }

.now-line {
  position: absolute;
  z-index: 3;
  top: 277px;
  left: 37px;
  right: 0;
  height: 1px;
  background: #e66d5f;
}

.now-line span {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e66d5f;
}

.phone-tabs {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid #ecece8;
}

.phone-tabs span { display: flex; flex-direction: column; align-items: center; color: #b4b6b0; font-size: 16px; }
.phone-tabs small { margin-top: 2px; font-size: 7px; }
.phone-tabs .selected { color: #1b1d1a; }

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(23, 25, 22, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 40px rgba(35, 52, 42, .12);
  backdrop-filter: blur(12px);
}

.float-card > div { display: flex; flex-direction: column; }
.float-card small { color: var(--muted); font-size: 9px; }
.float-card strong { font-size: 12px; }
.float-left { left: 1%; bottom: 18%; transform: rotate(-3deg); }
.float-right { right: 0; top: 20%; transform: rotate(4deg); }
.float-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #214931; background: var(--mint); font-size: 13px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #73a98a; box-shadow: 0 0 0 7px rgba(115, 169, 138, .14); }

.promise {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) 1.55fr;
  gap: 5vw;
  padding: 145px 7vw;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
}

.promise .section-index { color: rgba(255, 255, 255, .5); }
.promise h2,
.section-heading h2,
.privacy-banner h2,
.closing h2 {
  margin: 0;
  font-size: clamp(46px, 5.7vw, 84px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.06em;
}

.promise > div > p {
  max-width: 660px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 18px;
  line-height: 1.65;
}

.feature-section { padding: 150px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) 1.55fr;
  gap: 5vw;
  padding: 0 7vw 78px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(23, 25, 22, .08);
  border-radius: var(--radius);
  background: #efeee9;
}

.feature-large { background: #e8f2eb; }
.feature-wide { background: #eeeae2; }

.feature-copy { position: relative; z-index: 2; }
.feature-number { display: block; margin-bottom: 46px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.feature-card h3 { margin: 0; font-size: clamp(32px, 3.2vw, 48px); font-weight: 500; line-height: 1.02; letter-spacing: -.055em; }
.feature-card p { max-width: 420px; margin: 22px 0 0; color: var(--muted); line-height: 1.65; }

.day-stack {
  width: min(100%, 570px);
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 16px;
  margin: 52px auto -20px;
}

.stack-date { display: flex; flex-direction: column; align-items: center; padding-top: 10px; }
.stack-date span { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.stack-date strong { font-family: var(--serif); font-size: 52px; font-weight: 500; line-height: 1; }
.stack-items { display: grid; gap: 9px; }
.stack-item { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; min-height: 64px; padding: 0 17px; border-radius: 13px; }
.stack-item span,.stack-item i { color: rgba(23, 25, 22, .54); font-size: 10px; font-style: normal; }
.stack-item strong { font-size: 13px; }
.stack-item.mint { background: var(--mint); }
.stack-item.blue { background: var(--blue); }
.stack-item.coral { background: var(--coral); }

.privacy-demo { display: grid; gap: 10px; margin-top: 70px; }
.privacy-person { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 15px; background: rgba(255,255,255,.72); }
.privacy-person .avatar { width: 38px; height: 38px; border: 0; }
.privacy-person div { display: flex; flex-direction: column; }
.privacy-person strong { font-size: 13px; }
.privacy-person small { color: var(--muted); font-size: 10px; }
.privacy-person i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #366b4e; background: var(--mint); font-size: 11px; font-style: normal; }
.privacy-person i.muted { color: #8f928b; background: #e5e5df; }

.shared-demo { margin: 78px auto 0; width: min(100%, 380px); }
.shared-line { display: flex; align-items: center; justify-content: center; }
.shared-line .avatar { width: 52px; height: 52px; border: 4px solid #efeee9; font-size: 13px; }
.shared-line i { width: 90px; height: 1px; background: #bcc0b8; }
.shared-ticket { position: relative; margin-top: 18px; display: flex; flex-direction: column; align-items: center; padding: 22px; border-radius: 16px; background: white; box-shadow: 0 16px 35px rgba(42,47,41,.08); }
.shared-ticket small { color: var(--muted); font-size: 9px; letter-spacing: .1em; }
.shared-ticket strong { margin-top: 7px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.shared-ticket span { margin-top: 10px; padding: 5px 10px; border-radius: 999px; color: #3d6a50; background: #e0f0e5; font-size: 9px; font-weight: 600; }

.list-demo { width: min(100%, 520px); margin: 50px auto -6px; padding: 24px; border-radius: 20px; background: rgba(255,255,255,.75); }
.list-head { display: flex; justify-content: space-between; align-items: center; }
.list-head span { font-family: var(--serif); font-size: 23px; font-weight: 500; }
.list-head small { color: var(--muted); }
.list-progress { height: 4px; margin: 13px 0 20px; border-radius: 4px; background: #dddcd5; }
.list-progress i { display: block; width: 60%; height: 100%; border-radius: inherit; background: var(--mint-dark); }
.check-row { display: grid; grid-template-columns: 27px 1fr auto; align-items: center; min-height: 48px; border-top: 1px solid #e5e4de; font-size: 13px; }
.check-row > span { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid #b8bbb3; border-radius: 50%; color: white; font-size: 9px; }
.check-row small { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #e4e5df; font-size: 9px; }
.check-row.done { color: #8d9089; text-decoration: line-through; }
.check-row.done > span { border-color: var(--mint-dark); background: var(--mint-dark); }

.privacy-banner {
  min-height: 650px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 7vw;
  padding: 90px 8vw;
  border: 1px solid rgba(23, 25, 22, .08);
  border-radius: var(--radius);
  background: #e7f0e9;
}

.privacy-symbol { position: relative; width: min(100%, 390px); aspect-ratio: 1; display: grid; place-items: center; margin: auto; }
.privacy-symbol::before,.privacy-symbol::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(81, 134, 106, .28); }
.privacy-symbol::before { inset: 4%; }
.privacy-symbol::after { inset: 20%; }
.privacy-symbol span { width: 38%; height: 45%; border: 3px solid var(--mint-dark); border-radius: 50% 50% 44% 44%; }
.privacy-symbol i { position: absolute; width: 5px; height: 56px; border-radius: 5px; background: var(--mint-dark); }
.privacy-banner h2 { font-size: clamp(42px, 5vw, 72px); }
.privacy-banner > div:last-child > p:not(.section-index) { max-width: 590px; margin: 30px 0 26px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.text-link { display: inline-flex; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 600; text-decoration: none; }

.closing {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 18px 0 0;
  border-radius: var(--radius);
  color: white;
  background: #1c251f;
  text-align: center;
}

.closing > *:not(.closing-orbit) { position: relative; z-index: 1; }
.closing .eyebrow { color: rgba(255,255,255,.5); }
.closing h2 { font-size: clamp(52px, 6.5vw, 94px); }
.closing > p:not(.eyebrow) { margin: 27px 0; color: rgba(255,255,255,.5); }
.closing-orbit { position: absolute; width: 690px; height: 690px; border: 1px solid rgba(185,223,200,.15); border-radius: 50%; }
.closing-orbit::before,.closing-orbit::after { content: ''; position: absolute; inset: 13%; border: 1px solid rgba(185,223,200,.1); border-radius: 50%; }
.closing-orbit::after { inset: 27%; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 190px;
}

.site-footer p { color: var(--muted); font-size: 13px; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); color: #989a94; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Legal and support pages */
.subpage main { width: min(1120px, calc(100% - 64px)); }
.subpage .site-header,.subpage .site-footer { width: min(1200px, calc(100% - 64px)); }
.page-hero { padding: 110px 0 78px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 27px; }
.page-hero h1 { max-width: 900px; font-size: clamp(58px, 7.4vw, 100px); }
.page-hero > p:last-child { max-width: 680px; margin: 35px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 80px; padding: 80px 0 130px; }
.legal-nav { position: sticky; top: 32px; align-self: start; display: grid; gap: 4px; }
.legal-nav a { padding: 8px 0; color: var(--muted); font-size: 12px; text-decoration: none; }
.legal-nav a:hover { color: var(--ink); }
.legal-nav small { margin-bottom: 16px; color: #a0a39c; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 56px; scroll-margin-top: 30px; }
.legal-content h2 { margin: 0 0 20px; font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.legal-content h3 { margin: 30px 0 10px; font-size: 17px; font-weight: 600; }
.legal-content p,.legal-content li { color: #5f635d; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-content li + li { margin-top: 9px; }
.legal-content a { text-underline-offset: 3px; }
.policy-callout { margin: 8px 0 28px; padding: 23px 25px; border-left: 3px solid var(--mint-dark); border-radius: 0 12px 12px 0; background: #e9f2eb; color: #405247; }
.legal-meta { margin-top: 18px; color: #8c8f88; font-size: 12px; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 80px 0 130px; }
.support-card { min-height: 230px; display: flex; flex-direction: column; align-items: flex-start; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.5); }
.support-card:first-child { color: white; background: var(--ink); border-color: var(--ink); }
.support-card .support-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 32px; border-radius: 50%; background: var(--mint); color: var(--ink); font-size: 18px; }
.support-card h2 { margin: 0; font-size: 27px; font-weight: 500; letter-spacing: -.04em; }
.support-card p { margin: 13px 0 25px; color: var(--muted); line-height: 1.65; }
.support-card:first-child p { color: rgba(255,255,255,.58); }
.support-card a { margin-top: auto; font-weight: 600; text-underline-offset: 4px; }
.faq-section { grid-column: 1 / -1; margin-top: 55px; }
.faq-section > h2 { margin: 0 0 30px; font-size: 42px; font-weight: 500; letter-spacing: -.05em; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 23px 3px; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--muted); font-size: 20px; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { max-width: 760px; margin: -4px 0 25px; color: var(--muted); line-height: 1.7; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { text-align: center; padding: 0; }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 720px; }
  .promise,.section-heading { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .privacy-banner { grid-template-columns: 1fr; text-align: center; }
  .privacy-symbol { width: 260px; }
  .privacy-banner > div:last-child > p:not(.section-index) { margin-inline: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px 18px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .legal-nav small { flex-basis: 100%; }
}

@media (max-width: 680px) {
  .site-header,.site-footer,main,.subpage main,.subpage .site-header,.subpage .site-footer { width: min(100% - 34px, 1400px); }
  .site-header { height: 78px; }
  .nav-status { font-size: 9px; padding: 7px 10px; }
  .hero { min-height: auto; padding: 72px 0 55px; }
  h1 { font-size: clamp(62px, 21vw, 88px); }
  .hero-description { margin-top: 28px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-visual { min-height: 610px; margin-top: 38px; transform: scale(.88); transform-origin: top center; margin-bottom: -65px; }
  .phone-shell { width: 326px; }
  .phone-screen { height: 650px; }
  .orbit-one { width: 520px; }
  .orbit-two { width: 650px; }
  .float-card { min-width: 160px; }
  .float-left { left: -16%; }
  .float-right { right: -16%; }
  .promise { padding: 86px 30px; }
  .promise h2,.section-heading h2,.privacy-banner h2,.closing h2 { font-size: 44px; }
  .promise > div > p { font-size: 16px; }
  .feature-section { padding: 100px 0; }
  .section-heading { padding: 0 12px 50px; }
  .feature-card { min-height: 520px; padding: 30px 24px; }
  .feature-number { margin-bottom: 30px; }
  .feature-card h3 { font-size: 36px; }
  .day-stack { grid-template-columns: 52px 1fr; gap: 8px; }
  .stack-date strong { font-size: 41px; }
  .stack-item { grid-template-columns: 44px 1fr; padding: 0 12px; }
  .stack-item i { display: none; }
  .privacy-banner { min-height: auto; padding: 75px 26px; }
  .closing { min-height: 570px; padding-inline: 24px; }
  .site-footer { grid-template-columns: 1fr auto; padding: 45px 0; }
  .site-footer p { display: none; }
  .site-footer nav { gap: 15px; }
  .page-hero { padding: 76px 0 56px; }
  .page-hero h1 { font-size: 56px; }
  .page-hero > p:last-child { font-size: 16px; }
  .legal-layout { padding: 52px 0 90px; }
  .legal-content h2 { font-size: 27px; }
  .support-grid { grid-template-columns: 1fr; padding: 55px 0 95px; }
  .faq-section { grid-column: 1; }
  .faq-section > h2 { font-size: 36px; }
}

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