:root {
  --ink: #34405b;
  --ink-dark: #202a40;
  --coral: #eb2a4f;
  --coral-dark: #cf183b;
  --coral-deep: #ad102e;
  --paper: #f3f5f9;
  --white: #ffffff;
  --muted: #677086;
  --line: rgba(52, 64, 91, 0.14);
  --shadow: 0 24px 70px rgba(35, 45, 70, 0.14);
  --radius: 30px;
  --shell: min(1160px, calc(100% - 48px));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(52, 64, 91, 0.065) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

img, svg { display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible {
  outline: 3px solid rgba(235, 42, 79, 0.42);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(243, 245, 249, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.scrolled { border-color: var(--line); }

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-dark);
  font-size: 1.27rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img { width: 42px; height: 42px; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer nav a:hover { color: var(--coral-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 5px;
  color: var(--ink-dark);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .04em;
  text-decoration: none;
}

.language-link:hover { color: var(--coral-dark); }

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 13px 21px;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-disabled { cursor: default; user-select: none; }
.button-disabled:hover { transform: none; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 10px 16px; border-radius: 12px; }
.button-outline { border-color: rgba(52, 64, 91, 0.28); }
.button-outline:hover { border-color: var(--ink); background: var(--white); }
.button-outline.button-disabled:hover { border-color: rgba(52, 64, 91, 0.28); background: transparent; }
.button-primary { background: var(--coral-dark); color: var(--white); box-shadow: 0 13px 26px rgba(235, 42, 79, 0.22); }
.button-primary:hover { background: var(--coral-deep); box-shadow: 0 17px 34px rgba(235, 42, 79, 0.28); }
.button-white { color: var(--ink-dark); background: var(--white); box-shadow: 0 14px 34px rgba(15, 22, 38, 0.2); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(480px, 1.09fr);
  align-items: center;
  gap: 48px;
  padding-block: 76px 90px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { color: var(--ink-dark); line-height: 1.05; letter-spacing: -0.05em; }

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(3.3rem, 6.2vw, 5.75rem);
  font-weight: 820;
}

h1 em, .steps-heading em { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero-intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-dark);
  font-size: 0.92rem;
  font-weight: 780;
  text-decoration: none;
}
.text-link span { color: var(--coral); transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(3px); }
.release-note { margin: 14px 0 0; color: var(--muted); font-size: 0.75rem; }

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

.hero-visual::before {
  content: "";
  position: absolute;
  width: 505px;
  height: 505px;
  border-radius: 47% 53% 64% 36% / 44% 39% 61% 56%;
  background: var(--ink);
  transform: rotate(-8deg);
  z-index: -2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(52, 64, 91, 0.22);
  border-radius: 50%;
  transform: translate(22px, -13px);
  z-index: -3;
}

.phone-shadow {
  position: absolute;
  width: 260px;
  height: 58px;
  bottom: 35px;
  background: rgba(16, 24, 42, 0.34);
  filter: blur(28px);
  border-radius: 50%;
}

.phone {
  width: 292px;
  min-height: 590px;
  position: relative;
  z-index: 1;
  padding: 12px 15px 20px;
  border: 8px solid #1d2537;
  border-radius: 43px;
  background: #fbfcfe;
  box-shadow: 0 28px 60px rgba(13, 18, 31, 0.38), inset 0 0 0 1px rgba(255,255,255,.65);
  transform: rotate(2.5deg);
}

.phone-top { display: flex; justify-content: space-between; padding: 1px 8px 12px; color: var(--ink-dark); font-size: 0.58rem; font-weight: 800; }
.phone-status { display: flex; align-items: flex-end; gap: 2px; }
.phone-status i { display: block; width: 3px; height: 5px; border-radius: 3px; background: var(--ink-dark); }
.phone-status i:nth-child(2) { height: 7px; }.phone-status i:nth-child(3) { width: 10px; height: 6px; }
.app-head { display: flex; justify-content: space-between; align-items: center; margin: 3px 5px 18px; }
.app-head small { display: block; color: #9399a7; font-size: 0.57rem; }
.app-head strong { color: var(--ink-dark); font-size: 0.91rem; letter-spacing: -0.02em; }
.avatar { width: 29px; height: 29px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 10px; font-size: 0.52rem; font-weight: 850; }
.focus-card { position: relative; overflow: hidden; padding: 17px; color: white; background: var(--ink); border-radius: 20px; }
.focus-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -42px; top: -45px; border: 17px solid rgba(255,255,255,.07); border-radius: 50%; }
.focus-label { color: rgba(255,255,255,.6); font-size: 0.5rem; font-weight: 800; letter-spacing: .15em; }
.focus-time { margin: 5px 0 10px; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.06em; line-height: 1; }
.focus-time small { font-size: .63rem; letter-spacing: 0; opacity: .62; }
.goal-line { display: block; height: 5px; overflow: hidden; background: rgba(255,255,255,.13); border-radius: 5px; }
.goal-line span { display: block; width: var(--progress); height: 100%; background: var(--coral); border-radius: inherit; }
.goal-meta { display: flex; justify-content: space-between; margin-top: 6px; font-size: .52rem; color: rgba(255,255,255,.65); }.goal-meta strong { color: white; }
.section-title { display: flex; justify-content: space-between; margin: 17px 3px 8px; font-size: .67rem; }.section-title span { color: #9298a6; font-size: .56rem; }
.chart-card { height: 96px; position: relative; overflow: hidden; padding: 12px 11px 17px; border: 1px solid #e7e9ef; border-radius: 15px; background: white; }
.chart-lines { position: absolute; inset: 12px 11px 19px; display: flex; flex-direction: column; justify-content: space-between; }
.chart-lines i { border-top: 1px dashed #e8eaf0; }
.bars { position: relative; height: 100%; display: flex; gap: 9px; align-items: end; justify-content: space-around; }
.bars > span { width: 14px; height: var(--h); min-height: 5px; position: relative; background: #c9cfda; border-radius: 5px 5px 2px 2px; }.bars > span.active { background: var(--coral); }
.bars small { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%); color: #a1a6b2; font-size: .43rem; }
.session-card { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 9px 10px; border: 1px solid #eaecf1; border-radius: 13px; background: white; }
.subject-dot { width: 8px; height: 28px; border-radius: 5px; background: var(--coral); }.subject-dot.violet { background: #8289ae; }
.session-card div { display: flex; flex: 1; flex-direction: column; }.session-card strong { color: var(--ink-dark); font-size: .57rem; }.session-card small { color: #9ba0ad; font-size: .45rem; }.session-card b { color: var(--ink); font-size: .57rem; }.muted-session { opacity: .78; }
.start-button { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 9px; color: white; border-radius: 11px; background: var(--coral); font-size: .6rem; font-weight: 750; }.start-button span { width: 0; height: 0; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 6px solid white; }

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(52, 64, 91, .09);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 17px 35px rgba(23, 30, 48, .2);
}
.float-card svg { width: 30px; fill: none; stroke: var(--coral); stroke-width: 1.7; }
.float-card div { display: flex; flex-direction: column; }.float-card strong { color: var(--ink-dark); font-size: .71rem; }.float-card small { color: #9298a6; font-size: .56rem; }
.float-goal { top: 92px; right: -2px; transform: rotate(2deg); }.float-local { bottom: 98px; left: 2px; transform: rotate(-3deg); }
.local-check { width: 29px; height: 29px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-size: .8rem; font-weight: 900; }
.scribble { position: absolute; width: 52px; height: 23px; border-top: 2px solid var(--coral); border-radius: 50%; opacity: .8; }.scribble-one { top: 46px; left: 49px; transform: rotate(25deg); }.scribble-two { bottom: 55px; right: 47px; transform: rotate(-150deg); }

.proof-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.55); }
.proof-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof-grid > div { min-height: 48px; display: flex; flex-direction: column; justify-content: center; padding-left: 28px; border-left: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; border-left: 0; }
.proof-grid strong { color: var(--ink-dark); font-size: .88rem; }.proof-grid span { color: var(--muted); font-size: .72rem; }

.section { padding-block: 132px; }
.section-heading { display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 80px; margin-bottom: 55px; }
h2 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 810; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: 1rem; line-height: 1.8; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { min-height: 390px; position: relative; overflow: hidden; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-card h3 { margin: 20px 0 13px; font-size: 2rem; }.feature-card p { max-width: 420px; margin: 0; color: var(--muted); font-size: .94rem; }
.feature-number { display: inline-grid; place-items: center; width: 37px; height: 37px; border: 1px solid currentColor; border-radius: 50%; font-size: .65rem; font-weight: 850; opacity: .66; }
.feature-wide { grid-column: 1 / -1; min-height: 430px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 50px; }
.feature-dark { color: white; background: var(--ink); border: 0; }.feature-dark h3, .feature-dark p { color: white; }.feature-dark p { opacity: .68; }.feature-dark .feature-number { color: white; }
.feature-paper { background: #fff; }
.feature-coral { color: white; background: var(--coral-dark); border: 0; }.feature-coral h3, .feature-coral p { color: white; }.feature-coral p { opacity: .9; }.feature-coral .feature-number { color: white; }
.feature-light { background: #e6eaf1; }

.timer-visual { min-height: 330px; position: relative; display: grid; place-items: center; }
.timer-ring { width: 260px; height: 260px; position: relative; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.05), transparent 65%); }
.timer-ring::before { content: ""; position: absolute; inset: -10px; border: 7px solid transparent; border-top-color: var(--coral); border-right-color: var(--coral); border-radius: 50%; transform: rotate(-30deg); }
.timer-ring::after { content: ""; position: absolute; inset: 23px; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; }
.timer-ring span { font-size: 2.6rem; font-weight: 760; letter-spacing: -.06em; }.timer-ring small { font-size: 1.2rem; color: rgba(255,255,255,.45); }
.timer-actions { position: absolute; bottom: 1px; display: flex; align-items: center; gap: 16px; }.timer-actions i, .timer-actions b { width: 38px; height: 38px; display: block; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }.timer-actions b { width: 50px; height: 50px; background: var(--coral); border: 0; }
.mini-goals { position: absolute; inset: auto 38px 36px; display: grid; gap: 18px; }.mini-goals div { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; }.mini-goals span { grid-column: 1 / -1; height: 8px; overflow: hidden; border-radius: 8px; background: #edf0f4; }.mini-goals i { display: block; width: var(--w); height: 100%; background: var(--ink); border-radius: inherit; }.mini-goals b { order: -1; color: var(--ink-dark); font-size: .75rem; }.mini-goals small { order: -1; color: var(--muted); }
.mini-chart { height: 105px; position: absolute; inset: auto 38px 34px; display: flex; align-items: end; gap: 12px; }.mini-chart::before { content: ""; position: absolute; inset: 0; border-block: 1px dashed rgba(255,255,255,.24); }.mini-chart i { flex: 1; position: relative; z-index: 1; border-radius: 7px 7px 3px 3px; background: rgba(255,255,255,.42); }.mini-chart i:nth-child(1) { height: 38%; }.mini-chart i:nth-child(2) { height: 70%; }.mini-chart i:nth-child(3) { height: 50%; }.mini-chart i:nth-child(4) { height: 86%; background: white; }.mini-chart i:nth-child(5) { height: 64%; }.mini-chart i:nth-child(6) { height: 80%; }
.subject-stack { display: grid; gap: 12px; }.subject-stack > div { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 14px; padding: 17px 19px; border: 1px solid rgba(52,64,91,.08); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 8px 20px rgba(52,64,91,.05); }.subject-stack i { width: 8px; height: 38px; border-radius: 5px; }.book-red { background: var(--coral); }.book-blue { background: var(--ink); }.book-gold { background: #d6a652; }.subject-stack span { display: flex; flex-direction: column; }.subject-stack strong { color: var(--ink-dark); font-size: .8rem; }.subject-stack small { color: var(--muted); font-size: .68rem; }.subject-stack b { color: var(--ink); font-size: .75rem; }

.steps-section { color: white; background: var(--ink-dark); }
.steps-section h2 { color: white; }.eyebrow-light { color: #ff8aa0; }
.steps-heading { max-width: 760px; margin-bottom: 75px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.steps li { display: grid; grid-template-columns: 76px 1fr; align-items: start; gap: 25px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.steps li > span { width: 49px; height: 49px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #ff8aa0; font-weight: 800; }
.steps strong { display: block; margin-bottom: 5px; color: white; font-size: 1.28rem; }.steps p { max-width: 570px; margin: 0; color: rgba(255,255,255,.6); }

.privacy-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.privacy-mark { min-height: 475px; position: relative; display: grid; place-items: center; }
.privacy-mark::before { content: ""; width: 330px; height: 330px; position: absolute; border-radius: 45% 55% 38% 62% / 55% 38% 62% 45%; background: var(--ink); transform: rotate(10deg); }
.privacy-mark svg { width: 120px; position: relative; fill: none; stroke: white; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.orbit { position: absolute; border: 1px solid rgba(52,64,91,.18); border-radius: 50%; }.orbit-one { width: 410px; height: 410px; }.orbit-two { width: 465px; height: 300px; transform: rotate(35deg); }
.privacy-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); }.privacy-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); }
.check-list { display: grid; gap: 11px; margin: 0 0 27px; padding: 0; list-style: none; }.check-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 650; }.check-list span { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--coral); border-radius: 50%; font-size: .66rem; }

.download-section { padding: 0 0 100px; }
.download-card { min-height: 330px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 35px; padding: 55px; color: white; background: var(--coral-dark); border-radius: 35px; box-shadow: 0 27px 65px rgba(235,42,79,.23); }
.download-card img { width: 112px; height: 112px; padding: 12px; background: white; border-radius: 26px; }.download-card h2 { color: white; font-size: clamp(2.3rem, 4vw, 3.6rem); }.download-card .eyebrow { margin-bottom: 12px; color: rgba(255,255,255,.92); }.download-actions { display: flex; flex-direction: column; align-items: center; gap: 11px; }.download-actions small { color: rgba(255,255,255,.9); font-size: .68rem; }

.site-footer { padding: 65px 0 28px; background: white; }
.footer-top { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 30px; padding-bottom: 45px; }.footer-top > p { margin: 0; color: var(--muted); font-size: .86rem; }.footer-top nav { display: flex; gap: 25px; }
.footer-company { display: grid; grid-template-columns: minmax(250px, 1fr) minmax(310px, 1.25fr) auto; align-items: center; gap: 30px; padding-block: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.footer-company > div { display: flex; flex-direction: column; }.footer-company strong { color: var(--ink-dark); font-size: .8rem; }.footer-company address { font-style: normal; line-height: 1.55; }.footer-company a { color: var(--coral-dark); font-weight: 700; text-decoration: none; }.footer-company a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }

/* Legal and utility pages */
.legal-page { background: #f8f9fb; }
.legal-main { padding: 88px 0 120px; }
.legal-shell { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.legal-title { padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.legal-title h1 { max-width: none; font-size: clamp(3rem, 8vw, 5rem); }.legal-title > p { max-width: 620px; margin: 21px 0 0; color: var(--muted); }.legal-date { display: inline-block; margin-top: 20px; color: var(--ink); font-size: .76rem; font-weight: 760; }
.legal-content { padding-top: 36px; }.legal-content section { margin-top: 44px; }.legal-content section:first-child { margin-top: 0; }.legal-content h2 { margin-bottom: 14px; font-size: 1.45rem; letter-spacing: -.025em; }.legal-content p, .legal-content li { color: #596277; font-size: .95rem; line-height: 1.8; }.legal-content ul { padding-left: 21px; }.legal-content a { color: var(--coral-dark); font-weight: 650; }.legal-callout { margin: 42px 0; padding: 23px 25px; border-left: 4px solid var(--coral); border-radius: 0 12px 12px 0; background: white; }.legal-callout p { margin: 0; color: var(--ink); }
.legal-footer { padding-top: 32px; border-top: 1px solid var(--line); }

.error-main { min-height: calc(100vh - 78px); display: grid; place-items: center; padding: 70px 24px; text-align: center; }.error-card { max-width: 670px; }.error-mark { width: 110px; margin: 0 auto 35px; }.error-code { display: block; color: var(--coral-dark); font-family: Georgia, serif; font-size: 1.2rem; font-style: italic; }.error-card h1 { margin: 12px 0 20px; font-size: clamp(3rem, 9vw, 5.7rem); }.error-card p { max-width: 520px; margin: 0 auto 30px; color: var(--muted); }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { text-align: center; }.hero-intro { margin-inline: auto; }.hero-actions { justify-content: center; }.eyebrow { justify-content: center; }.release-note { text-align: center; }
  .hero-visual { min-height: 650px; width: min(620px, 100%); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }.section-heading .eyebrow { justify-content: flex-start; }.section-heading > p { max-width: 600px; }
  .privacy-section { gap: 35px; }.privacy-mark { transform: scale(.83); }
  .download-card { grid-template-columns: 100px 1fr; }.download-card img { width: 90px; height: 90px; }.download-actions { grid-column: 2; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 30px, 1160px); --radius: 23px; }
  .header-inner { height: 68px; gap: 16px; }.brand img { width: 37px; height: 37px; }.main-nav { display: none; }.header-actions { margin-left: auto; gap: 8px; }
  .hero { gap: 30px; padding: 60px 0 50px; }.hero-actions { flex-direction: column; gap: 17px; }.hero-intro { font-size: 1rem; }.release-note { margin-top: 18px; }
  .hero-visual { min-height: 600px; transform: scale(.88); margin-block: -35px; }.float-goal { right: -30px; }.float-local { left: -30px; }
  .proof-grid { grid-template-columns: 1fr 1fr; padding-block: 20px; }.proof-grid > div { min-height: 62px; padding-left: 16px; }.proof-grid > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .section { padding-block: 85px; }.section-heading { margin-bottom: 38px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card, .feature-wide { min-height: 370px; grid-column: auto; display: block; padding: 28px; }.feature-wide.feature-dark { padding-bottom: 20px; }.timer-visual { min-height: 315px; margin-top: 25px; }.feature-wide.feature-light { padding-bottom: 28px; }.subject-stack { margin-top: 35px; }
  .privacy-section { grid-template-columns: 1fr; }.privacy-mark { min-height: 380px; order: 2; transform: scale(.77); margin-block: -45px; }.privacy-copy .eyebrow { justify-content: flex-start; }
  .download-section { padding-bottom: 50px; }.download-card { grid-template-columns: 1fr; gap: 24px; padding: 35px 28px; text-align: center; }.download-card img { margin-inline: auto; }.download-card .eyebrow { justify-content: center; }.download-actions { grid-column: auto; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }.footer-top nav { flex-wrap: wrap; }.footer-company { grid-template-columns: 1fr; gap: 16px; }.footer-bottom { gap: 20px; flex-direction: column; }
  .legal-main { padding: 60px 0 85px; }.legal-shell { width: min(100% - 30px, 760px); }
}

@media (max-width: 420px) {
  .button-small { font-size: .78rem; padding-inline: 12px; }.header-inner { gap: 8px; }.brand { font-size: 1.08rem; }.brand img { width: 33px; height: 33px; }
  h1 { font-size: 3rem; }.hero-visual { left: 50%; width: 440px; transform: translateX(-50%) scale(.76); margin-block: -65px; }
  .proof-grid { grid-template-columns: 1fr; }.proof-grid > div, .proof-grid > div:nth-child(3) { padding: 10px 0; border-left: 0; border-bottom: 1px solid var(--line); }.proof-grid > div:last-child { border: 0; }
  .feature-card h3 { font-size: 1.7rem; }.timer-ring { width: 220px; height: 220px; }
  .steps li { grid-template-columns: 54px 1fr; gap: 14px; }.steps li > span { width: 43px; height: 43px; }
}

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