/* GENESIS public site — V2 design-system adapter.
   One system with the web app and native mobile: token fills carry hierarchy,
   SF type, no ornamental borders or shadows. The home page is a cinematic
   story told in full-bleed imagery; sub-pages stay calm reading surfaces.
   Home defaults dark (site.js); everything resolves through --g-* tokens. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--g-canvas);
  color: var(--g-ink);
  font-family: var(--g-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { display: block; }
:focus-visible { outline: 3px solid var(--g-signal); outline-offset: 3px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; border-radius: var(--g-radius-sm); background: var(--g-ink); color: var(--g-surface); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 72px);
  background: color-mix(in srgb, var(--g-canvas) 82%, transparent);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--g-font-display); font-size: 13px; font-weight: 760; letter-spacing: .13em; }
.brand svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin: 0 auto; color: var(--g-ink-secondary); font-size: 13px; }
.desktop-nav a, .header-login { transition: color .16s ease; }
.desktop-nav a:hover, .header-login:hover { color: var(--g-ink); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-login { font-size: 13px; font-weight: 650; }
.theme-toggle, .menu-button { width: 44px; height: 44px; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--g-raised); cursor: pointer; }
.theme-toggle svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.menu-button { display: none; position: relative; }
.menu-button span { position: absolute; width: 16px; height: 1.5px; background: currentColor; transition: transform .2s ease; }
.menu-button span:first-child { transform: translateY(-3px); }
.menu-button span:last-child { transform: translateY(3px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 19; inset: 76px 12px auto; padding: 18px; border-radius: var(--g-radius-lg); background: var(--g-surface); }
.mobile-menu a { display: block; padding: 14px; border-radius: var(--g-radius-sm); font-size: 18px; }
.mobile-menu a:hover { background: var(--g-raised); }

/* ── Shared voice ── */
.eyebrow { margin: 0 0 22px; color: var(--g-ink-secondary); font-family: var(--g-font-utility); font-size: 11px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--g-font-display); text-wrap: balance; }
h1 { margin: 0; font-size: clamp(56px, 7.3vw, 116px); line-height: .93; letter-spacing: -.045em; font-weight: 720; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: var(--g-radius-pill); font-size: 14px; font-weight: 680; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--g-ink); color: var(--g-surface); }
.text-link { color: var(--g-ink-secondary); font-size: 14px; font-weight: 620; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .18s ease; }
.text-link:hover span { transform: translateY(3px); }

/* ── The cinema system: full-bleed imagery, one statement per frame ──
   Copy over imagery is locked light against a scrim, independent of theme. */
.cine {
  position: relative;
  min-height: min(96svh, 1060px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.cine-hero { min-height: calc(100svh - 76px); }
.cine-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cine::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, .08) 0%, rgba(10, 10, 12, 0) 30%, rgba(10, 10, 12, .66) 88%);
  pointer-events: none;
}
.cine-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 96px) clamp(56px, 8vw, 120px);
  color: #f6f6f4;
}
.cine .eyebrow { color: rgba(246, 246, 244, .66); }
.cine h1, .cine h2 {
  margin: 0;
  max-width: 1180px;
  color: #f6f6f4;
  font-size: clamp(58px, 8.6vw, 152px);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 740;
}
.cine-lede {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  max-width: 900px;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 620;
}
.cine-line {
  margin: 14px 0 0;
  max-width: 560px;
  color: rgba(246, 246, 244, .78);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
}
.cine-actions { display: flex; align-items: center; gap: 28px; margin-top: clamp(26px, 3vw, 40px); }
.cine .button.primary { background: #f6f6f4; color: #141416; }
.cine .text-link { color: rgba(246, 246, 244, .74); }
.cine .text-link:hover { color: #f6f6f4; }
.cine-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
}
.cine-strip li {
  padding: 9px 14px;
  border-radius: var(--g-radius-pill);
  background: rgba(246, 246, 244, .14);
  font-family: var(--g-font-utility);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cine-strip li:last-child { background: rgba(246, 246, 244, .92); color: #141416; }

/* ── The interstice: one breath of type between frames ── */
.interstice {
  padding: clamp(120px, 17vw, 260px) clamp(24px, 7vw, 108px);
  text-align: center;
}
.interstice h2,
.trust-copy h2,
.mobile-copy h2,
.pricing-copy h2,
.how-section h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 112px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 730;
}
.interstice p,
.trust-copy p:not(.eyebrow),
.mobile-copy p:not(.eyebrow),
.pricing-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--g-ink-secondary);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -.015em;
}
.interstice p { margin-inline: auto; }

/* ── How it works: three moves, in the product's own shapes ── */
.how-section, .faq-section { padding: clamp(100px, 14vw, 210px) clamp(20px, 7vw, 108px); text-align: center; }
.how-section { background: var(--g-surface); }
.how-grid { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: min(100%, 1180px); margin: clamp(44px, 5vw, 72px) auto 0; padding: 0; }
.how-step { padding: 30px 28px 36px; border-radius: var(--g-radius-lg); background: var(--g-canvas); text-align: left; }
.step-no { display: block; color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 11px; font-weight: 650; letter-spacing: .1em; }
.how-glyph { min-height: 52px; margin: 30px 0 26px; display: flex; align-items: center; gap: 8px; }
.glyph-tile { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--g-raised); font-family: var(--g-font-display); font-size: 18px; font-weight: 740; }
.glyph-chip { padding: 8px 14px; border-radius: var(--g-radius-pill); background: var(--g-raised); font-family: var(--g-font-utility); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.glyph-orb { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--g-ink); color: var(--g-surface); }
.how-step strong { display: block; font-family: var(--g-font-display); font-size: 21px; letter-spacing: -.02em; font-weight: 700; }
.how-step p { margin: 8px 0 0; color: var(--g-ink-secondary); font-size: 15px; line-height: 1.5; }

/* ── FAQ: the fair questions, flat and quiet ── */
.faq-list { width: min(100%, 860px); margin: clamp(40px, 5vw, 64px) auto 0; text-align: left; }
.faq-item { border-radius: var(--g-radius-md); background: var(--g-surface); }
.faq-item + .faq-item { margin-top: 8px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border-radius: var(--g-radius-md); cursor: pointer; font-size: 16px; font-weight: 650; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: color-mix(in srgb, var(--g-canvas) 55%, var(--g-surface)); }
.faq-mark { flex: none; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--g-raised); font-size: 15px; font-weight: 500; transition: transform .2s ease; }
.faq-item[open] .faq-mark { transform: rotate(45deg); }
.faq-item > p { margin: 0; padding: 0 60px 24px 24px; color: var(--g-ink-secondary); font-size: 15px; line-height: 1.55; }

/* ── Trust: the approval ledger ── */
.trust-section,
.mobile-section,
.pricing-slice {
  padding: clamp(100px, 14vw, 210px) clamp(20px, 7vw, 108px);
}
.trust-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr); gap: clamp(60px, 9vw, 150px); align-items: center; }
.trust-ledger { padding: 12px; border-radius: var(--g-radius-lg); background: var(--g-surface); }
.ledger-row { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 16px 14px; border-radius: var(--g-radius-md); }
.ledger-row + .ledger-row { margin-top: 4px; }
.ledger-row:hover { background: var(--g-canvas); }
.risk { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; font-family: var(--g-font-utility); font-size: 10px; font-weight: 700; }
.risk.read { background: var(--g-raised); }
.risk.draft { background: color-mix(in srgb, var(--g-signal) 12%, transparent); color: var(--g-signal); }
.risk.review { background: color-mix(in srgb, var(--g-warning) 13%, transparent); color: var(--g-warning); }
.risk.critical { background: color-mix(in srgb, var(--g-critical) 12%, transparent); color: var(--g-critical); }
.ledger-row strong, .ledger-row small { display: block; }
.ledger-row strong { font-size: 14px; }
.ledger-row small { margin-top: 2px; color: var(--g-ink-muted); font-size: 11px; }
.ledger-row > b { color: var(--g-ink-secondary); font-size: 11px; }

/* ── The product in your pocket ── */
.mobile-section { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: clamp(80px, 12vw, 180px); align-items: center; background: var(--g-surface); }
.phone-shell { width: min(100%, 390px); min-height: 760px; margin: 0 auto; padding: 16px 18px 22px; border-radius: 50px; background: var(--g-canvas); }
.phone-status { height: 28px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; font-size: 10px; font-weight: 680; }
.phone-status i { width: 90px; height: 22px; border-radius: 0 0 14px 14px; background: var(--g-ink); align-self: flex-start; }
.phone-head { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; }
.phone-head small, .phone-head strong { display: block; }
.phone-head small { color: var(--g-ink-muted); font-size: 11px; }
.phone-head strong { margin-top: 2px; font-family: var(--g-font-display); font-size: 20px; letter-spacing: -.025em; }
.phone-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--g-raised); font-size: 12px; font-weight: 700; }
.phone-orb { width: 112px; height: 112px; margin: 42px auto 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--g-ink); color: var(--g-surface); cursor: pointer; }
.voice-glyph { display: flex; align-items: center; justify-content: center; gap: 2px; height: 18px; }
.voice-glyph i { width: 2px; height: 6px; border-radius: 99px; background: currentColor; }
.voice-glyph i:nth-child(2), .voice-glyph i:nth-child(4) { height: 13px; }
.voice-glyph i:nth-child(3) { height: 18px; }
.phone-orb:hover .voice-glyph i { animation: wave .72s ease-in-out infinite alternate; }
@keyframes wave { to { transform: scaleY(.45); } }
.phone-prompt { margin: 14px 0 30px; color: var(--g-ink-muted); font-size: 11px; text-align: center; }
.phone-card { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 10px; padding: 14px; border-radius: var(--g-radius-md); background: color-mix(in srgb, var(--g-warning) 10%, var(--g-surface)); }
.phone-card + .phone-card { margin-top: 8px; }
.phone-card.done { background: var(--g-surface); }
.phone-card-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--g-warning); color: #fff; font-size: 11px; font-weight: 800; }
.phone-card.done .phone-card-icon { background: var(--g-success); }
.phone-card small, .phone-card strong { display: block; }
.phone-card small { color: var(--g-ink-muted); font-size: 9px; }
.phone-card strong { margin-top: 3px; font-size: 12px; }
.phone-card p { margin: 5px 0 0; color: var(--g-ink-secondary); font-size: 10px; }
.phone-tabs { margin-top: 30px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-around; border-radius: var(--g-radius-pill); background: var(--g-surface); color: var(--g-ink-muted); font-size: 10px; }
.phone-tabs .on { color: var(--g-ink); font-weight: 700; }
.mobile-copy { max-width: 780px; }

/* ── GENESIS everywhere: one visible path, many isolated projects ── */
.mcp-home {
  min-height: min(92svh, 980px);
  padding: clamp(100px, 14vw, 190px) clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
  background: var(--g-surface);
}
.mcp-home-copy { max-width: 720px; }
.mcp-home-copy h2 { margin: 0; font-size: clamp(50px, 6vw, 94px); line-height: .94; letter-spacing: -.05em; }
.mcp-home-copy > p:not(.eyebrow) { max-width: 600px; margin: 26px 0 34px; color: var(--g-ink-secondary); font-size: clamp(17px, 1.7vw, 22px); }
.mcp-home-signal, .mcp-connection {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 42px;
  background: var(--g-canvas);
}
.mcp-home-clients, .mcp-home-projects, .mcp-clients, .mcp-projects {
  display: grid;
  gap: 9px;
}
.mcp-home-clients { grid-template-columns: repeat(3, 1fr); }
.mcp-home-projects { grid-template-columns: repeat(3, 1fr); }
.mcp-home-clients span, .mcp-home-projects span,
.mcp-clients span, .mcp-projects span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: var(--g-radius-md);
  background: var(--g-raised);
  color: var(--g-ink-secondary);
  font-size: 13px;
  font-weight: 650;
}
.mcp-home-line, .mcp-path { height: 150px; display: grid; grid-template-columns: 1fr 68px 1fr; align-items: center; }
.mcp-home-line i, .mcp-path i { height: 1px; background: color-mix(in srgb, var(--g-ink) 16%, transparent); }
.mcp-home-line b, .mcp-path b {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--g-ink);
  color: var(--g-surface);
  font-size: 21px;
}
.mcp-connection { margin-bottom: 12px; padding: clamp(24px, 5vw, 54px); }
.mcp-clients { grid-template-columns: repeat(4, 1fr); }
.mcp-projects { grid-template-columns: repeat(3, 1fr); }
.mcp-start {
  margin: 0 0 34px;
  padding: 26px 28px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0 !important;
  border-radius: var(--g-radius-lg);
  background: var(--g-surface);
}
.mcp-start p { margin: 0 0 6px !important; }
.mcp-start code { color: var(--g-ink); font-family: var(--g-font-utility); font-size: clamp(12px, 1.5vw, 15px); overflow-wrap: anywhere; }
.mcp-start .button { flex: none; }

/* ── Native clients: platform truth without fake download controls ── */
.platform-home {
  min-height: min(86svh, 900px);
  padding: clamp(96px, 13vw, 176px) clamp(24px, 7vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(58px, 9vw, 144px);
  align-items: center;
  background: var(--g-canvas);
}
.platform-home-copy { max-width: 700px; }
.platform-home-copy h2 { margin: 0; font-size: clamp(50px, 6vw, 94px); line-height: .94; letter-spacing: -.05em; }
.platform-home-copy > p:not(.eyebrow) { max-width: 580px; margin: 26px 0 34px; color: var(--g-ink-secondary); font-size: clamp(17px, 1.7vw, 22px); }
.platform-home-devices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.platform-home-devices span { min-height: 174px; padding: 24px; display: flex; flex-direction: column;
  justify-content: flex-end; border-radius: 32px; background: var(--g-surface); }
.platform-home-devices b, .platform-home-devices small { display: block; }
.platform-home-devices b { font-family: var(--g-font-display); font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; }
.platform-home-devices small { margin-top: 8px; color: var(--g-ink-muted); font-size: 12px; }
.platform-download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.platform-download-card { min-height: 390px; padding: 30px; display: flex; flex-direction: column;
  border-radius: var(--g-radius-lg); background: var(--g-surface); }
.platform-download-card-wide { grid-column: 1 / -1; min-height: 320px; }
.platform-mark { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 32px;
  border-radius: 17px; background: var(--g-raised); color: var(--g-ink); font-size: 21px; font-weight: 700; }
.platform-download-card h2 { margin: 16px 0; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.04em; }
.platform-download-card p:not(.price-label) { max-width: 560px; color: var(--g-ink-secondary); line-height: 1.65; }
.platform-download-card .button, .platform-state { width: fit-content; margin-top: auto; }
.platform-state { color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 11px; line-height: 1.5; }

/* ── Begin ── */
.pricing-slice { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(44px, 8vw, 120px); align-items: center; }
.pricing-card { min-height: 480px; padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; border-radius: 42px; background: var(--g-surface); }
.pricing-card small { display: block; color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card strong { display: flex; align-items: baseline; flex-wrap: wrap; column-gap: 10px; margin-top: auto; font-family: var(--g-font-display); font-size: clamp(86px, 9.5vw, 132px); line-height: .8; letter-spacing: -.06em; }
.pricing-card strong span { font-family: var(--g-font-body); font-size: clamp(16px, 1.5vw, 22px); letter-spacing: -.02em; white-space: nowrap; }
.pricing-card p { margin: 26px 0 34px; color: var(--g-ink-secondary); font-size: 17px; line-height: 1.5; }
.pricing-card .button, .pricing-card .text-link { width: fit-content; }
.pricing-card .text-link { margin-top: 18px; }

footer { min-height: 150px; margin: 0 24px 24px; padding: 30px 36px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 24px; align-items: center; border-radius: var(--g-radius-lg); background: var(--g-ink); color: var(--g-surface); }
footer p { color: color-mix(in srgb, var(--g-surface) 55%, transparent); font-size: 13px; }
footer > div { display: flex; justify-content: flex-end; gap: 24px; color: color-mix(in srgb, var(--g-surface) 60%, transparent); font-size: 12px; }
.footer-links { justify-content: center; flex-wrap: wrap; }
.footer-links a:hover, .legal-footer-links a:hover { color: var(--g-surface); }

/* ── Sub-pages: calm reading surfaces ── */
.legal-page { min-height: 100svh; }
.legal-header { border-bottom: 1px solid color-mix(in srgb, var(--g-ink) 10%, transparent); }
.legal-main { width: min(100% - 40px, 1120px); margin: 0 auto; padding: clamp(76px, 10vw, 140px) 0 clamp(100px, 14vw, 180px); }
.legal-hero { max-width: 960px; }
.legal-hero h1 { font-size: clamp(48px, 7vw, 96px); line-height: .94; }
.legal-intro { max-width: 820px; margin: 32px 0 0; color: var(--g-ink-secondary); font-size: clamp(18px, 2vw, 24px); line-height: 1.5; }
.legal-date { margin: 28px 0 0; color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.legal-content { max-width: 900px; margin-top: clamp(76px, 10vw, 124px); }
.legal-content section { padding: 38px 0; border-top: 1px solid color-mix(in srgb, var(--g-ink) 12%, transparent); }
.legal-content section:last-child { border-bottom: 1px solid color-mix(in srgb, var(--g-ink) 12%, transparent); }
.legal-content h2 { margin: 0 0 18px; font-size: clamp(24px, 3vw, 38px); line-height: 1.12; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: var(--g-ink-secondary); font-size: 16px; line-height: 1.72; }
.legal-content p { margin: 0; }
.legal-content p + p { margin-top: 16px; }
.legal-content ul, .legal-content ol { margin: 18px 0 0; padding-left: 24px; }
.legal-content li + li { margin-top: 10px; }
.legal-content a:not(.button) { color: var(--g-signal); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-index, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.legal-index a, .contact-grid a { min-height: 130px; padding: 24px; border-radius: var(--g-radius-md); background: var(--g-surface); transition: transform .18s ease, background .18s ease; }
.legal-index a:hover, .contact-grid a:hover { transform: translateY(-2px); background: var(--g-raised); }
.legal-index strong, .legal-index span, .contact-grid strong, .contact-grid span { display: block; }
.legal-index strong, .contact-grid strong { font-size: 16px; }
.legal-index span, .contact-grid span { margin-top: 8px; color: var(--g-ink-secondary); font-size: 13px; line-height: 1.5; }
.beta-notice { margin-bottom: 30px; padding: 22px 24px; display: grid; grid-template-columns: minmax(140px, .35fr) minmax(0, 1fr); gap: 24px; border-radius: var(--g-radius-lg); background: color-mix(in srgb, var(--g-signal) 7%, var(--g-surface)); }
.beta-notice strong, .beta-notice span { display: block; }
.beta-notice strong { font-size: 14px; }
.beta-notice span { color: var(--g-ink-secondary); font-size: 14px; line-height: 1.65; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.price-card { min-height: 520px; padding: 30px; display: flex; flex-direction: column; border-radius: var(--g-radius-lg); background: var(--g-surface); }
.price-card.featured { outline: 2px solid var(--g-signal); outline-offset: -2px; }
.price-label { color: var(--g-ink-muted) !important; font-family: var(--g-font-utility); font-size: 11px !important; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-card h2 { margin: 22px 0 20px; font-size: clamp(40px, 5vw, 62px); }
.price-card h2 small { font-size: 13px; font-weight: 600; letter-spacing: 0; }
.price-card .tax-note { margin: -12px 0 18px; color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.price-card ul { margin-bottom: 30px; }
.price-card .button { margin-top: auto; width: fit-content; }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.download-card { min-height: 420px; padding: 30px; display: flex; flex-direction: column; border-radius: var(--g-radius-lg); background: var(--g-surface); }
.download-card h2 { margin: 18px 0; font-size: clamp(30px, 4vw, 46px); }
.download-card p:not(.price-label) { color: var(--g-ink-secondary); line-height: 1.65; }
.download-card .button { width: fit-content; margin-top: auto; }
.download-card small { margin-top: 14px; color: var(--g-ink-muted); line-height: 1.5; }
.button.secondary { background: var(--g-raised); cursor: pointer; }
.button.disabled { background: var(--g-raised); color: var(--g-ink-muted); cursor: not-allowed; transform: none; }
.choice-status { min-height: 1.6em; margin-top: 14px !important; font-size: 13px !important; }
.table-wrap { overflow-x: auto; border-radius: var(--g-radius-lg); background: var(--g-surface); }
.table-wrap table { width: 100%; border-collapse: collapse; }
.table-wrap th, .table-wrap td { padding: 18px; text-align: left; vertical-align: top; border-bottom: 1px solid color-mix(in srgb, var(--g-ink) 10%, transparent); }
.table-wrap th { color: var(--g-ink-muted); font-family: var(--g-font-utility); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.table-wrap td { color: var(--g-ink-secondary); font-size: 13px; line-height: 1.55; }
.legal-footer { min-height: 220px; grid-template-columns: .6fr 1.4fr 1fr; }
.legal-footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 20px; color: color-mix(in srgb, var(--g-surface) 60%, transparent); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }
.cine-hero .cine-copy { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .trust-section, .mobile-section, .pricing-slice, .mcp-home, .platform-home { grid-template-columns: 1fr; }
  .mobile-copy { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer, .legal-footer { grid-template-columns: 1fr; }
  footer > div { justify-content: flex-start; flex-wrap: wrap; }
  .footer-links, .legal-footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 18px; }
  .desktop-nav, .header-login { display: none; }
  .header-actions { margin-left: auto; gap: 8px; }
  .menu-button { display: grid; }
  .mobile-menu { inset: 68px 10px auto; }
  h1 { font-size: clamp(52px, 16vw, 78px); }
  .cine { min-height: 88svh; }
  .cine-hero { min-height: calc(100svh - 68px); }
  .cine-copy { padding: 120px 20px 44px; }
  .cine h1, .cine h2 { font-size: clamp(46px, 14vw, 76px); }
  .cine-lede { font-size: clamp(19px, 5.6vw, 24px); }
  .cine-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .interstice { padding: 110px 22px; }
  .interstice h2, .trust-copy h2, .mobile-copy h2, .pricing-copy h2, .how-section h2, .faq-section h2 { font-size: clamp(40px, 12vw, 62px); }
  .trust-section, .mobile-section, .pricing-slice, .how-section, .faq-section { padding: 96px 18px; }
  .how-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 18px; font-size: 15px; }
  .faq-item > p { padding: 0 18px 20px; }
  .trust-ledger { padding: 6px; }
  .ledger-row { grid-template-columns: 38px minmax(0, 1fr); }
  .ledger-row > b { display: none; }
  .phone-shell { min-height: 720px; }
  .pricing-card { min-height: 420px; border-radius: 32px; }
  footer { margin: 0 10px 10px; padding: 28px; }
  .legal-index, .contact-grid, .pricing-grid, .download-grid, .beta-notice { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .legal-main { width: min(100% - 36px, 1120px); padding-top: 72px; }
  .legal-content { margin-top: 68px; }
  .mcp-home { min-height: auto; padding: 96px 18px; }
  .platform-home { min-height: auto; padding: 96px 18px; }
  .platform-home-devices, .platform-download-grid { grid-template-columns: 1fr; }
  .platform-download-card-wide { grid-column: 1; }
  .mcp-home-clients, .mcp-clients { grid-template-columns: repeat(2, 1fr); }
  .mcp-home-projects, .mcp-projects { grid-template-columns: 1fr; }
  .mcp-home-line, .mcp-path { height: 112px; grid-template-columns: 1fr 58px 1fr; }
  .mcp-home-line b, .mcp-path b { width: 58px; height: 58px; }
  .mcp-start { align-items: flex-start; flex-direction: column; }
}

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