@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,0,0&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400;1,6..72,500&family=Public+Sans:wght@400;500;600;700&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  color-scheme: dark;
  --paper: #101814;
  --paper-warm: #1b201c;
  --paper-deep: #242c26;
  --ink: #f4efe6;
  --muted: #b7c0b8;
  --soft: #8f9b92;
  --line: #303c34;
  --cedar: #78b9a2;
  --cedar-dark: #9ad0bc;
  --wine: #df7fa0;
  --clay: #f08a68;
  --sage: #24352c;
  --night: #0b110e;
  --night-warm: #211417;
  --white: #18211c;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --content: 1200px;
  --gutter: 120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a {
  color: var(--cedar);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { color: var(--cedar-dark); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--cedar); outline-offset: 3px; }
::selection { background: var(--cedar); color: var(--paper); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  height: 80px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 24, 20, .97);
  position: relative;
  z-index: 30;
}
.site-header__inner {
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 28px; height: 28px; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
}
.site-nav a:hover,
.site-nav a[aria-current='page'] { color: var(--ink); }
.site-nav a[aria-current='page'] { box-shadow: inset 0 -2px var(--cedar); }
.site-nav .nav-cta {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(28, 39, 33, .45);
  border-radius: var(--radius-sm);
  padding: 8px 17px;
}
.site-nav .nav-cta:hover { background: rgba(28, 39, 33, .06); border-color: var(--ink); }
.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.material-symbols-rounded { font-size: 24px; }

.display,
h1, h2, h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.018em;
}
h1, h2, h3, p { text-wrap: pretty; }
.section { border-top: 1px solid var(--line); }
.section-inner { max-width: calc(var(--content) + 2 * var(--gutter)); margin: 0 auto; padding: 92px var(--gutter) 100px; }
.section-kicker,
.eyebrow,
.mono {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 500;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cedar);
}
.section-heading::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  background: var(--cedar);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out;
}
.button:hover { background: var(--cedar-dark); color: var(--paper); }
.button--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(28, 39, 33, .45);
}
.button--secondary:hover { background: rgba(28, 39, 33, .06); color: var(--ink); border-color: var(--ink); }
.button--product { background: var(--clay); }
.button--product:hover { background: #a7381b; }
.button--wine { background: var(--wine); }
.button--wine:hover { background: #641f38; }
.button-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Home */
.home-hero {
  display: grid;
  grid-template-columns: minmax(500px, 640px) 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 0 88px var(--gutter);
  overflow: hidden;
}
.home-hero h1 { margin: 0; max-width: 640px; font-size: clamp(56px, 5.4vw, 78px); line-height: 1.02; letter-spacing: -.022em; }
.home-hero h1 em { font-weight: 400; }
.home-hero__copy { margin: 28px 0 0; max-width: 540px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.home-hero .button-row { margin-top: 36px; }
.home-hero__meta { margin: 40px 0 0; color: var(--muted); }
.home-hero__art { position: relative; height: 520px; overflow: hidden; }
.home-hero__art img { position: absolute; left: 0; top: 50%; width: 1150px; max-width: none; transform: translateY(-50%); }

.work-grid { display: grid; grid-template-columns: 1fr 560px; gap: 80px; align-items: center; margin-top: 48px; }
.work-copy h2 { margin: 0; font-size: 56px; line-height: 1; }
.byline { margin: 10px 0 0; color: var(--muted); font-size: 12.5px; letter-spacing: .08em; }
.status { margin: 26px 0 0; color: var(--clay); display: flex; align-items: center; gap: 9px; }
.status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }
.work-copy .lead { margin: 18px 0 0; max-width: 470px; color: var(--muted); font-size: 17.5px; }
.work-copy .supporting { margin: 14px 0 0; max-width: 470px; color: var(--muted); font-size: 15.5px; }
.work-copy .button-row { margin-top: 34px; gap: 24px; }
.phone-stage {
  position: relative;
  height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--paper-warm);
  border: 1px solid #e7d5bd;
  border-radius: var(--radius-lg);
}
.phone-stage::before { content: ''; position: absolute; inset: 0; background: url('assets/grainwave-wine.svg') center / 900px auto no-repeat; opacity: .45; }
.phone-stage img { position: relative; width: 270px; filter: drop-shadow(0 16px 20px rgba(50, 31, 25, .16)); }
.image-caption { margin: 14px 4px 0; color: var(--muted); font-size: 11.5px; letter-spacing: .08em; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; margin-top: 48px; }
.about-grid h2 { margin: 0; font-size: 46px; line-height: 1.12; }
.about-grid p { margin: 6px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-grid p + p { margin-top: 18px; }
.about-grid .disclosure { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--soft); font-size: 13.5px; }
.principles { margin-top: 40px; }
.principle { display: grid; grid-template-columns: 70px 1fr 1.1fr; gap: 32px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle:last-child { border-bottom: 0; }
.principle__number { color: var(--cedar); font-size: 13px; }
.principle h3 { margin: 0; font-size: 27px; }
.principle p { margin: 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.contact-grid h2 { margin: 0; max-width: 620px; font-size: 44px; line-height: 1.12; }
.contact-grid p { margin: 16px 0 0; font-size: 13px; text-transform: none; }

/* Roofmates */
.product-hero { background: var(--paper-warm); position: relative; overflow: hidden; }
.product-hero::before { content: ''; position: absolute; inset: 0 0 0 30%; background: url('assets/grainwave-wine.svg') center / 1100px auto no-repeat; opacity: .35; }
.product-hero__inner {
  position: relative;
  max-width: calc(var(--content) + 2 * var(--gutter));
  min-height: 0;
  margin: 0 auto;
  padding: 76px 60px 84px 120px;
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 40px;
  align-items: center;
}
.product-lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.product-lockup img { width: 40px; }
.product-lockup strong { display: block; font-size: 19px; line-height: 1.1; }
.product-lockup span { display: block; color: var(--muted); font-size: 11.5px; letter-spacing: .08em; }
.product-hero h1 { margin: 0; max-width: 620px; font-size: 62px; line-height: 1.04; }
.product-hero h1 em { font-weight: 400; }
.product-hero__copy { margin: 26px 0 0; max-width: 590px; color: var(--muted); font-size: 18px; }
.product-hero .button-row { margin-top: 34px; }
.product-status { margin-top: 36px; color: var(--wine); }
.product-phones { height: 660px; position: relative; }
.product-phones img { position: absolute; width: 284px; filter: drop-shadow(0 18px 22px rgba(50, 31, 25, .18)); }
.product-phones img:first-child { left: 0; bottom: 0; }
.product-phones img:last-child { right: -30px; top: 0; }
.product-phones--single img { left: auto !important; right: 70px !important; top: 8px !important; bottom: auto !important; width: 320px; }

.feature-list { margin-top: 34px; }
.feature-row { display: grid; grid-template-columns: 1fr 500px; gap: 96px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--line); }
.feature-row:nth-child(even) .feature-copy { order: 2; }
.feature-row:nth-child(even) .feature-visual { order: 1; }
.feature-copy .mono { color: var(--wine); }
.feature-copy h2 { margin: 10px 0 0; max-width: 500px; font-size: 39px; line-height: 1.07; }
.feature-copy p { margin: 20px 0 0; max-width: 500px; color: var(--muted); }
.feature-visual {
  min-height: 244px;
  display: grid;
  align-items: center;
  padding: 28px;
  border: 1px solid #e7d5bd;
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
}
.ui-card { background: var(--white); border: 1px solid #eadfce; border-radius: 13px; padding: 18px; color: var(--ink); box-shadow: 0 8px 24px rgba(80, 52, 32, .05); }
.ui-card__top, .ui-row { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.ui-card__top { font-weight: 700; }
.ui-card__meta { margin-top: 6px; color: var(--muted); font-size: 12px; }
.ui-row { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; }
.ui-row strong { color: var(--cedar); }
.progress { height: 7px; margin: 14px 0 8px; background: #e9dfd2; border-radius: 8px; overflow: hidden; }
.progress span { display: block; width: 78%; height: 100%; background: var(--clay); }
.chat { display: grid; gap: 10px; }
.bubble { width: fit-content; max-width: 86%; padding: 10px 14px; border-radius: 14px 14px 14px 4px; background: #efe5d8; font-size: 13px; }
.bubble--mine { margin-left: auto; border-radius: 14px 14px 4px 14px; background: var(--wine); color: white; }
.scope-list { display: grid; gap: 8px; }
.scope-list .ui-row { margin: 0; padding: 10px 0; }
.pill { border-radius: 999px; padding: 4px 9px; background: #e3eadb; color: var(--cedar); font-size: 10px; font-family: 'Spline Sans Mono', monospace; letter-spacing: .06em; }

.boundaries { background: var(--sage); }
.boundaries__inner { max-width: calc(var(--content) + 2 * var(--gutter)); margin: 0 auto; padding: 86px var(--gutter); display: grid; grid-template-columns: .95fr 1.05fr; gap: 86px; align-items: center; }
.boundaries h2 { margin: 10px 0 0; font-size: 44px; line-height: 1.08; }
.boundaries p { color: #455348; }
.boundary-note { margin-top: 22px; padding: 15px 18px; border-left: 3px solid var(--wine); background: rgba(250,247,241,.75); font-size: 13px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.scope-card { padding: 18px; background: var(--paper); border-radius: var(--radius-sm); }
.scope-card strong { display: block; color: var(--wine); font-family: 'Spline Sans Mono', monospace; font-size: 11px; letter-spacing: .1em; }
.scope-card span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }
.launch-band { background: var(--night-warm); color: #e8ddd5; }
.launch-band__inner { max-width: calc(var(--content) + 2 * var(--gutter)); margin: 0 auto; padding: 64px var(--gutter); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.launch-band .mono { color: #bf7892; }
.launch-band h2 { margin: 9px 0 0; color: var(--paper); font-size: 31px; line-height: 1.15; }
.launch-band p { color: #cbbdb6; }
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; margin-top: 42px; }
.faq-grid h2 { margin: 0; font-size: 44px; line-height: 1.05; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--wine); font-family: 'Public Sans', sans-serif; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: -2px 0 20px; color: var(--muted); }
.product-contact { position: relative; overflow: hidden; margin-top: 70px; padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; background: var(--paper-warm); border: 1px solid #e7d5bd; border-radius: var(--radius-lg); }
.product-contact::after { content: ''; position: absolute; right: -180px; top: -140px; width: 620px; height: 380px; background: url('assets/grainwave-wine.svg') center / contain no-repeat; opacity: .2; }
.product-contact > * { position: relative; z-index: 1; }
.product-contact h2 { margin: 0; font-size: 37px; }
.product-contact p { margin: 8px 0 0; font-size: 13px; }

/* Support and legal */
.subpage { min-height: calc(100vh - 80px); display: flex; flex-direction: column; }
.support-layout, .legal-layout, .deletion-layout {
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  margin: 0 auto;
  padding: 76px var(--gutter) 110px;
  display: grid;
  grid-template-columns: 320px minmax(0, 680px);
  gap: 100px;
  align-items: start;
  flex: 1;
}
.support-layout { padding-top: 78px; padding-bottom: 40px; }
.support-rail .eyebrow, .legal-rail .eyebrow { color: var(--cedar); }
.scope-switcher { margin-top: 24px; border: 1px solid #ded5c6; border-radius: 14px; overflow: hidden; }
.scope-switcher a { min-height: 52px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); text-decoration: none; border-bottom: 1px solid #ded5c6; }
.scope-switcher a:last-child { border-bottom: 0; }
.scope-switcher a[aria-current='page'] { background: var(--paper-deep); color: var(--ink); font-weight: 600; }
.rail-card { margin-top: 24px; padding: 20px 22px; border: 1px solid #ded5c6; border-radius: 14px; }
.rail-card .mono { color: var(--soft); }
.rail-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.support-article h1 { margin: 0; font-size: 54px; line-height: 1.05; }
.legal-article h1, .deletion-article h1 { margin: 0; font-size: 52px; line-height: 1.06; }
.support-article > p:first-of-type { margin: 26px 0 0; color: var(--muted); font-size: 18px; }
.support-article .button { margin-top: 26px; }
.support-article h2, .legal-article h2, .deletion-article h2 { margin: 38px 0 8px; font-size: 31px; }
.support-article p, .legal-article p, .deletion-article p, .legal-article li, .deletion-article li { color: var(--muted); }
.support-article ul, .legal-article ul, .deletion-article ol { padding-left: 22px; }

.legal-layout { grid-template-columns: 320px minmax(0, 680px); }
.legal-rail { position: sticky; top: 24px; }
.legal-meta-card { padding: 20px 22px; border: 1px solid #ded5c6; border-radius: 14px; }
.legal-meta-card dl { margin: 14px 0 0; display: grid; gap: 10px; }
.legal-meta-card dt { color: var(--soft); font-size: 12px; font-weight: 600; }
.legal-meta-card dd { margin: 1px 0 0; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.3; }
.toc { margin-top: 26px; }
.toc a { display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 5px 0; color: var(--muted); font-size: 13px; text-decoration: none; }
.toc a span:first-child { color: var(--cedar); font-family: 'Spline Sans Mono', monospace; }
.legal-article > .eyebrow, .deletion-article > .eyebrow { margin: 0 0 10px; color: #9a5a3d; }
.legal-article .callout, .deletion-rail .callout { margin: 30px 0; padding: 18px 20px; border-left: 3px solid #a75e3c; background: var(--paper-deep); color: var(--muted); }
.legal-article .intro { margin-top: 28px; font-size: 17px; }
.legal-article table { width: 100%; border-collapse: collapse; margin: 20px 0 36px; font-size: 13px; }
.legal-article th { padding: 10px 0; border-bottom: 1px solid var(--ink); color: var(--soft); font-family: 'Spline Sans Mono', monospace; font-size: 10px; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.legal-article td { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); vertical-align: top; }
.legal-article td:first-child { width: 34%; padding-right: 24px; color: var(--ink); font-weight: 600; }
.legal-article section { scroll-margin-top: 24px; }

.deletion-layout {
  grid-template-columns: 320px 680px;
  padding-top: 72px;
  padding-bottom: 110px;
}
.deletion-rail .callout { margin-top: 24px; border-left-color: var(--cedar); font-size: 14px; }
.deletion-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 42px; }
.deletion-card { min-height: 360px; padding: 26px 28px; border: 1px solid #ded5c6; border-radius: var(--radius-md); }
.deletion-card .eyebrow { color: var(--cedar); }
.deletion-card:nth-child(2) .eyebrow { color: #9a5a3d; }
.deletion-card h2 { margin-top: 12px; font-size: 24px; }
.deletion-card .button { margin-top: 18px; }
.deletion-body { max-width: 680px; }
.deletion-body h2 { margin-top: 40px; font-size: 28px; }
.deletion-body h2:first-child { margin-top: 48px; }

/* Footer */
.site-footer { background: var(--night); color: #f4efe6; }
.footer-wave { width: 100%; height: 44px; object-fit: cover; opacity: .9; padding-top: 24px; }
.footer-main { max-width: calc(var(--content) + 2 * var(--gutter)); margin: 0 auto; padding: 30px var(--gutter) 0; display: grid; grid-template-columns: 1fr auto auto; gap: 90px; }
.footer-brand .brand { color: #f4efe6; }
.footer-brand p { margin: 16px 0 0; color: #a9b7ac; font-size: 14px; }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav .mono { color: #7e8f84; font-size: 10px; margin-bottom: 3px; }
.footer-nav a { color: #d8dfd6; font-size: 13px; text-decoration: none; }
.footer-nav a:hover { color: white; text-decoration: underline; }
.footer-bottom { max-width: calc(var(--content) + 2 * var(--gutter)); margin: 42px auto 0; padding: 20px var(--gutter) 28px; border-top: 1px solid rgba(244,239,230,.14); display: flex; justify-content: space-between; gap: 40px; }
.footer-bottom p { margin: 0; color: #a9b7ac; font-size: 12px; }
.footer-bottom p:last-child { color: #7e8f84; }
.compact-footer { margin-top: auto; min-height: 88px; display: flex; align-items: center; }
.compact-footer__inner { width: min(100%, calc(var(--content) + 2 * var(--gutter))); margin: 0 auto; padding: 24px var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.compact-footer p { margin: 0; color: #b6c1b8; font-size: 12px; }
.compact-footer nav { display: flex; gap: 28px; }
.compact-footer a { color: #f4efe6; font-size: 13px; text-decoration: none; }

/* Dark surface treatment */
.site-nav .nav-cta,
.button--secondary { border-color: rgba(244, 239, 230, .38); }
.site-nav .nav-cta:hover,
.button--secondary:hover { background: rgba(244, 239, 230, .08); border-color: var(--ink); }
.work-lockup { display: flex; align-items: center; gap: 16px; }
.work-lockup > img { width: 52px; height: 52px; flex: none; }
.work-lockup .byline { margin-top: 6px; }
.phone-stage,
.feature-visual,
.product-contact { border-color: #44372f; background-color: #211c18; }
.phone-stage::before,
.product-hero::before,
.product-contact::after { opacity: .62; }
.ui-card { border-color: #3d493f; box-shadow: 0 14px 36px rgba(0, 0, 0, .22); }
.progress { background: #344139; }
.bubble { background: #303c34; }
.boundaries p { color: var(--muted); }
.boundary-note { background: rgba(16, 24, 20, .72); }
.scope-card { border: 1px solid var(--line); }
.scope-switcher,
.scope-switcher a,
.rail-card,
.legal-meta-card,
.deletion-card { border-color: var(--line); }
.legal-article .callout,
.deletion-rail .callout { background: var(--paper-deep); }
.legal-article th { border-bottom-color: var(--ink); }
.site-footer { border-top: 1px solid var(--line); }

@media (max-width: 1199px) {
  :root { --gutter: 48px; }
  .home-hero { grid-template-columns: 1fr; padding-right: var(--gutter); gap: 36px; }
  .home-hero__art { height: 240px; margin: 0 calc(-1 * var(--gutter)); }
  .home-hero__art img { left: -20px; top: 42%; width: 1200px; }
  .work-grid { grid-template-columns: 1fr 480px; gap: 52px; }
  .phone-stage { height: 560px; }
  .phone-stage img { width: 270px; }
  .product-hero__inner { grid-template-columns: 560px 1fr; gap: 30px; padding-left: 48px; padding-right: 48px; }
  .feature-row { grid-template-columns: 1fr 440px; gap: 60px; }
  .support-layout, .legal-layout, .deletion-layout { gap: 64px; }
}

@media (max-width: 999px) {
  .work-grid, .about-grid, .feature-row, .boundaries__inner, .launch-band__inner, .support-layout, .legal-layout, .deletion-layout { grid-template-columns: 1fr; }
  .work-grid { gap: 48px; }
  .phone-stage { max-width: 620px; }
  .feature-row { gap: 30px; }
  .feature-row:nth-child(even) .feature-copy, .feature-row:nth-child(even) .feature-visual { order: initial; }
  .feature-visual { max-width: 620px; }
  .about-grid { gap: 34px; }
  .principle { grid-template-columns: 50px 1fr; }
  .principle p { grid-column: 2; }
  .product-hero__inner { grid-template-columns: 1fr 330px; gap: 20px; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .support-layout, .legal-layout, .deletion-layout { max-width: 760px; gap: 48px; }
  .legal-rail { position: static; }
  .toc { display: none; }
}

@media (max-width: 719px) {
  :root { --gutter: 20px; }
  body { font-size: 14px; }
  .site-header { height: 64px; }
  .site-header__inner { gap: 12px; }
  .brand { gap: 8px; font-size: 13px; }
  .brand img { width: 22px; height: 22px; }
  .menu-button { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px var(--gutter) 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(28,39,33,.08);
  }
  .site-nav[data-open='true'] { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; justify-content: center; border: 1.5px solid rgba(28,39,33,.45); }
  .section-inner { padding-top: 60px; padding-bottom: 66px; }
  .section-kicker, .eyebrow, .mono { font-size: 9px; }
  .home-hero { gap: 28px; padding-top: 48px; padding-bottom: 0; }
  .home-hero h1 { max-width: 340px; font-size: 48px; }
  .home-hero__copy { margin-top: 22px; font-size: 15px; line-height: 1.6; }
  .home-hero .button-row { margin-top: 24px; display: grid; }
  .home-hero .button { width: 100%; }
  .home-hero__meta { margin-top: 22px; font-size: 8px; }
  .home-hero__art { height: 200px; margin-top: 4px; }
  .home-hero__art img { top: 48%; left: -110px; width: 900px; }
  .work-grid { margin-top: 28px; }
  .work-copy h2 { font-size: 42px; }
  .byline { font-size: 9px; }
  .status { margin-top: 18px; font-size: 9px; }
  .work-copy .lead { font-size: 14px; }
  .work-copy .supporting { display: none; }
  .work-copy .button-row { display: grid; gap: 10px; }
  .work-copy .button { width: 100%; }
  .work-copy .button-row a:not(.button) { min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .phone-stage { height: auto; padding: 24px 14px 0; border-radius: 18px; }
  .phone-stage img { width: 100%; max-width: 284px; }
  .image-caption { font-size: 8px; }
  .about-grid { margin-top: 28px; }
  .about-grid h2 { font-size: 34px; }
  .about-grid p { font-size: 14px; }
  .principles { margin-top: 20px; }
  .principle { grid-template-columns: 1fr; gap: 4px; padding: 20px 0; }
  .principle p { grid-column: auto; }
  .principle h3 { font-size: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid h2 { font-size: 34px; max-width: 320px; }
  .contact-grid .button { width: 100%; }

  .product-hero__inner { min-height: auto; padding: 24px 20px 0; grid-template-columns: 1fr; }
  .product-lockup { margin-bottom: 12px; }
  .product-hero h1 { font-size: 40px; max-width: 360px; }
  .product-hero__copy { margin-top: 16px; font-size: 14px; }
  .product-hero .button-row { margin-top: 20px; display: grid; }
  .product-hero .button { width: 100%; }
  .product-status { margin-top: 18px; }
  .product-phones { height: 350px; max-width: 320px; margin: 10px auto 0; width: 100%; overflow: hidden; }
  .product-phones img { width: 200px; }
  .product-phones img:first-child { left: 0; }
  .product-phones img:last-child { right: -42px; top: 10px; }
  .product-phones--single img { width: 220px; right: 42px !important; top: 8px !important; }
  .feature-list { margin-top: 10px; }
  .feature-row { padding: 36px 0; }
  .feature-copy h2 { margin-top: 8px; font-size: 31px; }
  .feature-copy p { margin-top: 12px; }
  .feature-visual { min-height: 0; padding: 12px; border-radius: 16px; }
  .ui-card { padding: 14px; }
  .boundaries__inner { padding-top: 48px; padding-bottom: 52px; gap: 28px; }
  .boundaries h2 { font-size: 34px; }
  .scope-grid { gap: 8px; }
  .scope-card { padding: 12px; }
  .scope-card span { font-size: 10px; }
  .launch-band__inner { padding-top: 38px; padding-bottom: 42px; gap: 14px; }
  .launch-band h2 { font-size: 26px; }
  .faq-grid { margin-top: 28px; }
  .faq-grid h2 { font-size: 34px; max-width: 260px; }
  .product-contact { margin-top: 46px; padding: 28px 20px; grid-template-columns: 1fr; gap: 18px; }
  .product-contact h2 { font-size: 30px; }
  .product-contact .button { width: 100%; }

  .support-layout, .legal-layout, .deletion-layout { min-height: 0; padding-top: 44px; padding-bottom: 64px; gap: 38px; }
  .support-article h1 { font-size: 38px; }
  .legal-article h1 { font-size: 36px; }
  .deletion-article h1 { font-size: 34px; }
  .support-article > p:first-of-type { font-size: 15px; }
  .support-article h2, .legal-article h2, .deletion-article h2 { font-size: 27px; }
  .support-article .button { width: 100%; }
  .legal-meta-card { padding: 16px; }
  .legal-article table, .legal-article tbody, .legal-article tr, .legal-article th, .legal-article td { display: block; }
  .legal-article thead { display: none; }
  .legal-article tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .legal-article td { width: 100% !important; padding: 3px 0 !important; border: 0; }
  .legal-article td:first-child { font-size: 13px; }
  .deletion-paths { grid-template-columns: 1fr; margin-top: 28px; }
  .deletion-card { min-height: 0; padding: 20px; }

  .footer-wave { height: 30px; padding-top: 14px; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; padding-top: 24px; }
  .footer-nav { gap: 0; }
  .footer-nav .mono { margin: 10px 0 3px; }
  .footer-nav a { min-height: 40px; display: flex; align-items: center; border-bottom: 1px solid rgba(244,239,230,.08); }
  .footer-bottom { margin-top: 28px; padding-top: 20px; flex-direction: column; gap: 4px; }
  .compact-footer__inner { align-items: flex-start; flex-direction: column; gap: 18px; }
  .compact-footer nav { flex-wrap: wrap; gap: 20px; }
}

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