:root {
  --paper: #faf6ee;
  --paper-2: #fffdf8;
  --paper-3: #f1e9da;
  --ink: #241f18;
  --muted: #6b6153;
  --line: #e4dbc9;
  --coral: #e8674c;
  --coral-dark: #bd452f;
  --violet: #6c5ce7;
  --blue: #3d6ce0;
  --yellow: #eba623;
  --sage: #6e8f6b;
  --shadow: 0 24px 70px rgba(60, 45, 27, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper: #15120d;
  --paper-2: #201c16;
  --paper-3: #2a251e;
  --ink: #f1e9da;
  --muted: #b4a992;
  --line: #3a342b;
  --coral: #ff8064;
  --coral-dark: #ff9b85;
  --violet: #9e90ff;
  --blue: #6e96f0;
  --yellow: #f3c05a;
  --sage: #97bc8a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image: radial-gradient(rgba(36, 31, 24, 0.07) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 62%, transparent);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
  border-radius: 12px;
  background: #ff645f;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--coral) 35%, transparent);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

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

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 13px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-3);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(51, 40, 25, 0.1); }
.menu-button { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--coral) 26%, transparent);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 17px 34px color-mix(in srgb, var(--coral) 32%, transparent); }
.button.secondary { color: var(--ink); background: var(--paper-2); border-color: var(--line); box-shadow: none; }
.button.dark { background: var(--ink); color: var(--paper); box-shadow: none; }
.button.small { min-height: 42px; padding: 9px 16px; font-size: 0.92rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 5px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 7vw, 6.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.25rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: 12px; }
.display-serif { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-style: italic; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.34rem); line-height: 1.55; }
.muted { color: var(--muted); }
.fine-print { color: var(--muted); font-size: 0.84rem; }

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(72px, 10vw, 138px) 0 92px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: saturate(0.9);
}

.hero::before { width: 470px; height: 470px; top: -225px; right: -80px; background: color-mix(in srgb, var(--violet) 16%, transparent); }
.hero::after { width: 340px; height: 340px; bottom: -220px; left: -115px; background: color-mix(in srgb, var(--yellow) 18%, transparent); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(46px, 7vw, 88px);
}

.hero h1 { max-width: 800px; }
.hero h1 .accent { color: var(--coral); }
.hero-copy .lead { max-width: 625px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.micro-row { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; color: var(--muted); font-size: 0.88rem; font-weight: 650; }
.micro-row span::before { content: "✓"; color: var(--sage); margin-right: 7px; font-weight: 900; }

.phone-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.phone-stage::before { content: ""; position: absolute; width: 90%; aspect-ratio: 1; border-radius: 42% 58% 63% 37% / 44% 39% 61% 56%; background: var(--coral); transform: rotate(-7deg); opacity: 0.96; }

.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 82vw);
  padding: 10px;
  border: 2px solid color-mix(in srgb, var(--ink) 80%, transparent);
  border-radius: 45px;
  background: #17130f;
  box-shadow: 0 38px 70px rgba(44, 29, 16, 0.28);
  transform: rotate(3deg);
}

.phone-screen { min-height: 595px; overflow: hidden; border-radius: 35px; background: #faf6ee; color: #241f18; padding: 22px 18px 18px; }
.phone-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; font-size: 0.74rem; font-weight: 750; }
.phone-brand { display: flex; align-items: center; gap: 7px; }
.phone-dots { display: flex; align-items: center; gap: 4px; }
.phone-dots i { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.phone-dots i:nth-child(2) { width: 7px; height: 7px; background: var(--violet); }
.phone-greeting { color: #756a5b; font-size: 0.78rem; margin-bottom: 5px; }
.phone h3 { font-size: 1.66rem; margin: 0 0 15px; }
.challenge-card { border: 1px solid #e4dbc9; border-radius: 24px; padding: 17px; background: #fffdf8; box-shadow: 0 13px 24px rgba(50, 37, 23, 0.08); }
.challenge-card .tag { display: inline-block; color: #bd452f; background: #f7d8ce; border-radius: 999px; padding: 5px 9px; font-size: 0.66rem; font-weight: 800; }
.challenge-card h4 { margin: 14px 0 7px; font-family: Georgia, serif; font-size: 1.33rem; line-height: 1.15; }
.challenge-card p { color: #6b6153; font-size: 0.78rem; line-height: 1.45; }
.start-pill { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding: 11px 13px; border-radius: 999px; color: white; background: #e8674c; font-size: 0.76rem; font-weight: 800; }
.streak-mini { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; margin-top: 14px; padding: 13px; border-radius: 18px; background: #f1e9da; }
.streak-mini strong { font-size: 1.5rem; }
.streak-mini span { color: #6b6153; font-size: 0.71rem; line-height: 1.25; }
.phone-nav { display: flex; justify-content: space-around; margin-top: 17px; color: #776c5d; font-size: 0.62rem; font-weight: 700; }
.phone-nav b { color: #e8674c; }
.float-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper-2); box-shadow: var(--shadow); font-size: 0.83rem; font-weight: 800; }
.float-chip.top { top: 75px; right: -24px; transform: rotate(5deg); }
.float-chip.bottom { left: -18px; bottom: 92px; transform: rotate(-5deg); }
.float-chip i { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); }
.float-chip.bottom i { background: var(--sage); }

.section { padding: clamp(78px, 10vw, 132px) 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head > div { max-width: 720px; }
.section-head p { max-width: 510px; margin-bottom: 8px; color: var(--muted); }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.trust-item { padding: 28px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.85rem; line-height: 1; margin-bottom: 8px; letter-spacing: -0.04em; }
.trust-item span { color: var(--muted); font-size: 0.88rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; overflow: hidden; min-height: 275px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-2); }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(54, 42, 27, 0.08); }
.card .card-no { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; border-radius: 14px; background: var(--paper-3); color: var(--muted); font-size: 0.78rem; font-weight: 900; }
.card p { color: var(--muted); }
.card.color-coral { background: color-mix(in srgb, var(--coral) 12%, var(--paper-2)); }
.card.color-violet { background: color-mix(in srgb, var(--violet) 11%, var(--paper-2)); }
.card.color-sage { background: color-mix(in srgb, var(--sage) 12%, var(--paper-2)); }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.poster { position: relative; min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; padding: 44px; background: #6c5ce7; color: white; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); }
.poster::before { content: ""; position: absolute; width: 330px; height: 330px; right: -90px; top: -105px; border-radius: 50%; border: 70px solid rgba(255,255,255,0.15); }
.poster::after { content: ""; position: absolute; width: 210px; height: 210px; left: -60px; bottom: -85px; border-radius: 50%; background: #eba623; }
.poster > * { position: relative; z-index: 1; }
.poster .quote { font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -0.045em; max-width: 430px; }
.poster .spark { font-size: 4rem; }

.feature-list { display: grid; gap: 12px; margin-top: 32px; }
.feature-row { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; padding: 16px; border-radius: 17px; }
.feature-row:hover { background: var(--paper-2); }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--paper-3); font-weight: 900; }
.feature-row h3 { font-size: 1.12rem; margin-bottom: 5px; letter-spacing: -0.02em; }
.feature-row p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.prompt-lab { position: relative; overflow: hidden; padding: clamp(32px, 6vw, 70px); border-radius: var(--radius-lg); color: white; background: var(--ink); }
.prompt-lab::after { content: ""; position: absolute; width: 340px; height: 340px; right: -120px; bottom: -180px; border: 70px solid var(--coral); border-radius: 50%; opacity: 0.8; }
.prompt-lab > * { position: relative; z-index: 1; }
.prompt-lab .eyebrow { color: #ff9b85; }
.prompt-box { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-top: 44px; }
.prompt-text { max-width: 760px; min-height: 150px; font-family: Georgia, serif; font-size: clamp(2rem, 4.3vw, 4.3rem); line-height: 1.06; letter-spacing: -0.04em; }
.prompt-meta { display: flex; gap: 8px; margin-top: 20px; }
.prompt-meta span { padding: 6px 10px; border: 1px solid rgba(255,255,255,0.23); border-radius: 999px; color: rgba(255,255,255,0.76); font-size: 0.74rem; font-weight: 750; }
.lab-controls { display: flex; flex-direction: column; gap: 10px; }
.lab-controls .button.secondary { background: white; color: #241f18; border: 0; }

.quote-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; }
.statement { padding: 38px; border-radius: var(--radius-md); background: var(--coral); color: white; }
.statement blockquote { margin: 0 0 30px; font-family: Georgia, serif; font-size: clamp(1.6rem, 3.3vw, 3rem); line-height: 1.12; letter-spacing: -0.035em; }
.principles { display: grid; gap: 18px; }
.principle { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-2); }
.principle b { display: block; margin-bottom: 6px; }
.principle p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(42px, 8vw, 88px); border-radius: var(--radius-lg); background: var(--paper-3); text-align: center; }
.cta-panel::before,
.cta-panel::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; }
.cta-panel::before { left: -70px; top: -55px; background: var(--yellow); }
.cta-panel::after { right: -55px; bottom: -60px; background: var(--violet); opacity: 0.45; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel .lead { margin-inline: auto; }
.cta-panel .hero-actions { justify-content: center; }

.page-hero { padding: clamp(72px, 9vw, 118px) 0 68px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 920px; font-size: clamp(3.1rem, 7vw, 6.8rem); }
.page-hero.compact h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
.page-hero .lead { max-width: 790px; }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: 0.84rem; font-weight: 650; }
.breadcrumbs a { text-underline-offset: 3px; }

.feature-banner { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); box-shadow: var(--shadow); }
.feature-banner img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.feature-banner-copy { padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { counter-increment: steps; padding: 30px; border-top: 3px solid var(--line); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 24px; color: var(--coral-dark); font-size: 0.78rem; font-weight: 900; }
.step p { color: var(--muted); }

.workspace-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.workspace-card { min-height: 260px; padding: 32px; border-radius: var(--radius-md); color: white; display: flex; flex-direction: column; justify-content: space-between; }
.workspace-card:nth-child(1) { background: var(--coral); }
.workspace-card:nth-child(2) { background: var(--blue); }
.workspace-card:nth-child(3) { background: var(--sage); }
.workspace-card:nth-child(4) { background: var(--violet); }
.workspace-card .symbol { font-family: Georgia, serif; font-size: 3.4rem; }
.workspace-card p { max-width: 460px; margin: 0; color: rgba(255,255,255,0.83); }

.company-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--paper-2); }
.company-fact { padding: 26px; border-right: 1px solid var(--line); }
.company-fact:last-child { border: 0; }
.company-fact small { display: block; color: var(--muted); margin-bottom: 8px; }
.company-fact strong { line-height: 1.25; }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 22px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-2); }
.contact-card a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-card .contact-label { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.contact-line { margin-top: 8px; font-size: clamp(1.2rem, 2.3vw, 1.7rem); font-weight: 750; }
.contact-stack { display: grid; gap: 16px; }
.address { font-style: normal; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 24px 4px; display: grid; grid-template-columns: 1fr auto; gap: 20px; text-align: left; border: 0; background: transparent; cursor: pointer; font-weight: 800; }
.faq-question span:last-child { transition: transform 180ms ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 760px; padding: 0 48px 24px 4px; color: var(--muted); }
.faq-answer.open { display: block; }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: clamp(40px, 8vw, 100px); align-items: start; }
.legal-toc { position: sticky; top: 110px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper-2); }
.legal-toc strong { display: block; margin-bottom: 12px; font-size: 0.86rem; }
.legal-toc a { display: block; padding: 5px 0; color: var(--muted); font-size: 0.84rem; text-decoration: none; }
.legal-toc a:hover { color: var(--ink); }
.legal-copy h2 { margin-top: 48px; font-size: clamp(1.8rem, 3vw, 2.4rem); scroll-margin-top: 110px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin-top: 28px; font-size: 1.25rem; letter-spacing: -0.02em; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy li { margin-bottom: 8px; }
.legal-copy a { color: var(--ink); text-underline-offset: 4px; }
.notice { padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: color-mix(in srgb, var(--coral) 9%, var(--paper-2)); }
.notice p:last-child { margin-bottom: 0; }
.legal-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.legal-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-2); text-decoration: none; }
.legal-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.legal-card span { color: var(--muted); font-size: 0.88rem; }

.site-footer { margin-top: 80px; padding: 60px 0 26px; border-top: 1px solid var(--line); background: var(--paper-2); }
.footer-top { display: grid; grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr; gap: 40px; padding-bottom: 48px; }
.footer-about { max-width: 360px; }
.footer-about p { color: var(--muted); font-size: 0.9rem; margin-top: 18px; }
.footer-col strong { display: block; margin-bottom: 14px; font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; padding: 4px 0; color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.footer-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 200; padding: 10px 18px; border-radius: 999px; background: var(--ink); color: var(--paper); box-shadow: var(--shadow); transform: translate(-50%, 120px); transition: transform 200ms ease; font-size: 0.86rem; font-weight: 750; }
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: grid; }
  .nav-links {
    position: fixed;
    inset: 83px 20px auto;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 13px 15px; }
  .nav-actions { margin-left: auto; }
  .nav-actions .button { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .micro-row { justify-content: center; }
  .phone-stage { max-width: 600px; margin-inline: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid .card:last-child { grid-column: span 2; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner img { min-height: 300px; }
  .company-facts { grid-template-columns: repeat(2, 1fr); }
  .company-fact:nth-child(2) { border-right: 0; }
  .company-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-about { grid-column: span 3; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .brand-text { font-size: 0.92rem; }
  .hero { padding-top: 68px; }
  .phone-stage { min-height: 560px; }
  .phone-screen { min-height: 540px; }
  .float-chip.top { right: 0; }
  .float-chip.bottom { left: 0; bottom: 45px; }
  .section-head { display: block; }
  .card-grid, .workspace-grid, .quote-grid, .steps, .legal-cards { grid-template-columns: 1fr; }
  .card-grid .card:last-child { grid-column: auto; }
  .prompt-box { grid-template-columns: 1fr; }
  .lab-controls { flex-direction: row; flex-wrap: wrap; }
  .trust-item { padding: 22px 16px; }
  .trust-item strong { font-size: 1.5rem; }
  .company-facts { grid-template-columns: 1fr; }
  .company-fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .company-fact:nth-child(2) { border-bottom: 1px solid var(--line); }
  .feature-banner img { min-height: 220px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
}

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