@font-face {
  font-family: "Rethink Sans";
  src: url("/assets/fonts/rethink-sans-800.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Brand font (matches the landing page + DESIGN.md). Used on the legal pages
   via body.legal-dark so they read in Geist like the rest of the marketing
   site instead of the heavy single-weight Rethink Sans. */
@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/geist-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #15120f;
  --ink-2: #2b2824;
  --muted: #716d67;
  --paper: #fffdf9;
  --porcelain: #f6f4ee;
  --soft: #ece8df;
  --line: rgba(21, 18, 15, 0.12);
  --line-strong: rgba(21, 18, 15, 0.24);
  --black: #07070b;
  --rose: #f43f5e;
  --rose-dark: #d72f4d;
  --blue: #2a67e8;
  --green: #28a36f;
  --amber: #e5a43b;
  --shadow: 0 28px 80px rgba(21, 18, 15, 0.12);
  --shadow-soft: 0 16px 44px rgba(21, 18, 15, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Rethink Sans", "Aptos", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body::selection {
  background: rgba(244, 63, 94, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.78);
  border-bottom: 1px solid rgba(21, 18, 15, 0.08);
  backdrop-filter: blur(22px);
}

.home-header {
  position: fixed;
  left: 0;
  right: 0;
  border-bottom: 0;
  background: transparent;
}

.nav {
  width: min(1220px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand,
.brand-bubble {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.brand {
  gap: 10px;
}

.brand-bubble {
  width: 58px;
  height: 58px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(21, 18, 15, 0.1);
  box-shadow: 0 14px 36px rgba(21, 18, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand-bubble img,
.footer-brand img,
.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  object-fit: cover;
}

.brand-mark {
  border: 1px solid rgba(21, 18, 15, 0.14);
}

.nav-lens {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 310px;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.76);
  color: rgba(21, 18, 15, 0.54);
  box-shadow: 0 14px 44px rgba(21, 18, 15, 0.07);
  backdrop-filter: blur(20px);
  font-size: 14px;
}

.lens-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(244, 63, 94, 0.12);
}

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
}

.nav-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.btn-primary {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
  box-shadow: 0 16px 38px rgba(7, 7, 11, 0.16);
}

.btn-primary:visited {
  color: #fff;
}

.btn-primary:hover {
  background: #1b1b22;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(21, 18, 15, 0.07);
}

.btn-ghost {
  background: transparent;
}

.btn-large {
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
}

.hero-poster {
  position: relative;
  min-height: 96vh;
  padding: 118px 20px 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.82) 62%, #f7f4ee 100%),
    radial-gradient(circle at 50% 35%, rgba(244, 63, 94, 0.09), transparent 36%);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 18, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 15, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 46%, transparent 0, rgba(0,0,0,0.24) 46%, rgba(0,0,0,0.05) 72%, transparent 100%);
  pointer-events: none;
}

.signal-system {
  position: absolute;
  top: 90px;
  left: 50%;
  width: min(720px, 78vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  opacity: 0.9;
}

.signal-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 50%;
  animation: slow-spin 28s linear infinite;
}

.signal-ring::before,
.signal-ring::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(244, 63, 94, 0.11);
  border-radius: 50%;
}

.signal-ring::after {
  inset: 27%;
  border-color: rgba(21, 18, 15, 0.08);
}

.signal-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 18, 15, 0.08);
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.08);
  color: rgba(21, 18, 15, 0.72);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.chip-price { top: 3%; left: 50%; transform: translateX(-50%) rotate(0deg); }
.chip-trust { top: 47%; right: -3%; transform: rotate(-90deg); color: var(--rose); }
.chip-time { bottom: 3%; left: 50%; transform: translateX(-50%) rotate(180deg); }
.chip-authority { top: 47%; left: -5%; transform: rotate(90deg); }

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 184px;
  height: 184px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(21, 18, 15, 0.1);
  box-shadow: 0 24px 60px rgba(21, 18, 15, 0.12);
  backdrop-filter: blur(20px);
}

.signal-core img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.core-readout {
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  min-width: 162px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(7, 7, 11, 0.22);
}

.core-readout span {
  display: block;
  color: rgba(255,255,255,0.52);
  font-size: 10px;
  text-transform: uppercase;
}

.core-readout strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.float-note {
  position: absolute;
  z-index: 1;
  padding: 12px 16px;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 18, 15, 0.54);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.06);
  backdrop-filter: blur(18px);
}

.note-left {
  top: 28%;
  left: 7%;
  transform: rotate(-8deg);
}

.note-right {
  top: 24%;
  right: 8%;
  transform: rotate(7deg);
}

.note-low {
  bottom: 20%;
  right: 17%;
  transform: rotate(-4deg);
}

.hero-copyblock {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin-top: 242px;
  text-align: center;
}

.kicker {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copyblock h1 {
  margin-top: 12px;
  font-size: clamp(56px, 8.8vw, 124px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-copyblock p:not(.kicker) {
  width: min(670px, 100%);
  margin: 24px auto 0;
  color: #4f4b45;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(21, 18, 15, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 800px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.demo-section {
  padding: 92px 0 110px;
  background: #efebe3;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
}

.mac-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.16), transparent 32%),
    linear-gradient(225deg, rgba(42, 103, 232, 0.22), transparent 38%),
    linear-gradient(45deg, #ffd89b, #e7f0ff 46%, #fff8ee);
  border: 1px solid rgba(21, 18, 15, 0.12);
  box-shadow: var(--shadow);
}

.mac-menu {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(21, 18, 15, 0.28);
  font-size: 12px;
}

.menu-right {
  margin-left: auto;
}

.meeting-window {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 112px;
  overflow: hidden;
  border-radius: 18px;
  background: #111217;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 36px 80px rgba(7, 7, 11, 0.28);
}

.window-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255,255,255,0.82);
  background: #17181f;
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic span:nth-child(1) { background: #ff5f57; }
.traffic span:nth-child(2) { background: #febc2e; }
.traffic span:nth-child(3) { background: #28c840; }

.meeting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
}

.participant {
  position: relative;
  min-height: 274px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.52) 100%),
    linear-gradient(135deg, #d9d2c4, #65584d);
}

.buyer-tile {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.52) 100%),
    linear-gradient(135deg, #d8e4ef, #4e5b67);
}

.participant-name {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.36);
  font-size: 12px;
}

.face-line {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.38);
}

.face-line::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
}

.face-line.rose {
  border-color: rgba(244, 63, 94, 0.54);
}

.participant p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.35;
}

.meeting-toolbar {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 26px;
  color: rgba(255,255,255,0.45);
  background: #1c1d23;
  font-size: 12px;
}

.end-call {
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(244, 63, 94, 0.62);
  color: rgba(255,255,255,0.92);
}

.sotto-overlay {
  position: absolute;
  top: 74px;
  left: 50%;
  width: min(548px, 82%);
  transform: translateX(-50%);
  padding: 18px;
  border-radius: 18px;
  background: rgba(16, 16, 20, 0.78);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 28px 70px rgba(7, 7, 11, 0.28);
  backdrop-filter: blur(24px);
}

.overlay-head,
.cue-grid,
.transcript-strip,
.next-line {
  position: relative;
}

.overlay-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay-logo {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
}

.overlay-logo img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.live-pill {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(40, 163, 111, 0.18);
  color: #8dffc9;
  font-size: 11px;
}

.transcript-strip {
  margin-top: 14px;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.transcript-strip span,
.cue-grid span,
.next-line span {
  display: block;
  color: rgba(255,255,255,0.48);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.transcript-strip p {
  margin-top: 6px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.35;
}

.cue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.cue-grid div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.cue-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.next-line {
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.next-line span {
  color: var(--rose);
}

.next-line p {
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.32;
}

.dock {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(18px);
}

.dock span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.78);
}

.dock-active {
  background: var(--rose) !important;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-tabs,
.objection-panel {
  border: 1px solid rgba(21, 18, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.62);
  box-shadow: var(--shadow-soft);
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
}

.platform-tabs button {
  min-height: 42px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.platform-tabs button.is-active {
  background: var(--black);
  color: #fff;
}

.objection-panel {
  padding: 18px;
}

.objection-panel h3 {
  font-size: 24px;
}

.objection-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.objection-list button {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(21, 18, 15, 0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.68);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.objection-list button.is-active,
.objection-list button:hover {
  border-color: rgba(244, 63, 94, 0.38);
  background: rgba(244, 63, 94, 0.08);
}

.custom-objection {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 18, 15, 0.1);
}

.custom-objection label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.custom-objection div {
  display: grid;
  gap: 9px;
  margin-top: 8px;
}

.custom-objection input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(21, 18, 15, 0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  color: var(--ink);
}

.proof-section {
  padding: 108px 0;
  background: var(--paper);
}

.feature-rail {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 28px;
  min-height: 310px;
  align-items: stretch;
  padding: 18px;
  border-top: 1px solid rgba(21, 18, 15, 0.1);
}

.feature-panel.reverse {
  grid-template-columns: 1fr 0.86fr;
}

.feature-panel.reverse .feature-copy {
  order: 2;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
}

.feature-copy span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.feature-copy h3 {
  margin-top: 10px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.feature-copy p {
  max-width: 530px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.mini-visual {
  min-height: 274px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius);
  background: #101014;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.playbook-row {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
}

.playbook-row.active {
  border-color: rgba(244, 63, 94, 0.58);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.12);
}

.transcript-visual {
  background: #f4f1ea;
  color: var(--ink);
}

.transcript-visual p {
  padding: 15px 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(21, 18, 15, 0.08);
}

.nextline-visual {
  place-content: center;
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.16), transparent 42%),
    #101014;
}

.nextline-visual span {
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  font-size: 12px;
}

.nextline-visual p {
  max-width: 500px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.05;
}

.pricing-section {
  padding: 104px 0;
  background: #e9edf4;
}

.pricing-stage {
  position: relative;
  margin-top: 44px;
  min-height: 520px;
}

.founder-offer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(520px, 100%);
  transform: translateX(-50%);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  box-shadow: 0 34px 90px rgba(7, 7, 11, 0.28);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.founder-offer.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px);
  pointer-events: none;
}

.offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.price-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.16);
  color: #ff8da1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.founder-offer h3 {
  margin-top: 14px;
  font-size: clamp(54px, 8vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.founder-offer p {
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.42;
}

.founder-offer ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.founder-offer li {
  color: rgba(255,255,255,0.84);
}

.founder-offer li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.standard-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 98px;
  opacity: 0.38;
  filter: blur(2px);
  transition: opacity 200ms ease, filter 200ms ease, padding-top 200ms ease;
}

.standard-pricing.is-revealed {
  opacity: 1;
  filter: none;
  padding-top: 22px;
}

.pricing-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(21, 18, 15, 0.08);
  box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
  font-size: 26px;
}

.pricing-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.pricing-card strong {
  margin-top: 38px;
  font-size: 64px;
  line-height: 0.9;
}

.pricing-card span {
  margin-top: 6px;
  color: var(--muted);
}

.pricing-card .btn {
  margin-top: auto;
}

.faq-section {
  padding: 100px 0;
  background: #292827;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 60px;
  padding: 62px;
  border-radius: var(--radius);
  background: #fff;
}

.faq-shell h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid rgba(21, 18, 15, 0.1);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(21, 18, 15, 0.48);
  border-bottom: 2px solid rgba(21, 18, 15, 0.48);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  max-width: 760px;
  padding: 0 40px 22px 0;
  color: var(--muted);
  line-height: 1.5;
}

.final-cta {
  padding: 96px 20px 102px;
  text-align: center;
  background: var(--paper);
}

.final-cta img {
  width: min(620px, 92%);
  height: auto;
  border-radius: 0;
}

.final-cta h2 {
  width: min(780px, 100%);
  margin: 28px auto 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.site-footer {
  background: var(--paper);
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(21, 18, 15, 0.1);
}

.footer-brand {
  gap: 10px;
}

.footer-links {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.account-main,
.legal-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.account-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  align-items: stretch;
}

.account-panel,
.legal-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.account-main-panel {
  grid-column: 1 / -1;
}

body.is-signed-in .account-main-panel {
  grid-column: auto;
}

.account-panel.dark {
  background: var(--black);
  color: #fff;
}

.account-panel h1 {
  margin-top: 10px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.account-panel h2 {
  margin-top: 10px;
  font-size: 28px;
}

.account-panel p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.account-panel.dark p {
  color: rgba(255,255,255,0.64);
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.62);
  color: var(--muted);
  font-size: 14px;
}

.plan-pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(47, 143, 107, 0.12);
  color: #1f6b4e;
  font-size: 12px;
  font-weight: 900;
}

.legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legal-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--rose);
  flex: 0 0 auto;
}

.legal-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hidden {
  display: none !important;
}

.message {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.message.error {
  color: #b43925;
}

.legal-card {
  box-shadow: none;
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
}

/* "Last updated …" subtitle: centered under the title for balance. */
.legal-card h1 + p {
  text-align: center;
  margin-bottom: 30px;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-card ul {
  padding-left: 20px;
}

/* Dark theme for the legal pages (privacy.html / terms.html) so they match the
   dark marketing site instead of the light account/billing surfaces. Scoped to
   body.legal-dark, so account.html and billing pages keep their light look. */
body.legal-dark {
  background: var(--black);
  color: #fff;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
}
body.legal-dark .site-header {
  background: rgba(7, 7, 11, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
body.legal-dark .brand span {
  color: #fff;
}
body.legal-dark .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
}
body.legal-dark .btn-primary {
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 16px 38px rgba(244, 63, 94, 0.22);
}
body.legal-dark .btn-primary:hover {
  background: var(--rose-dark);
}
body.legal-dark .legal-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
body.legal-dark .legal-card h1,
body.legal-dark .legal-card h2,
body.legal-dark .legal-card strong {
  color: #fff;
}
body.legal-dark .legal-card p,
body.legal-dark .legal-card li {
  color: rgba(255, 255, 255, 0.62);
}
body.legal-dark .legal-card a {
  color: var(--rose);
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-lens {
    display: none;
  }

  .demo-layout,
  .section-heading,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .demo-controls {
    order: -1;
  }

  .feature-panel,
  .feature-panel.reverse {
    grid-template-columns: 1fr;
  }

  .feature-panel.reverse .feature-copy {
    order: 0;
  }

  .standard-pricing,
  .account-grid,
  .account-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 24px, 1220px);
    height: 74px;
  }

  .brand-bubble {
    width: 50px;
    height: 50px;
  }

  .nav-actions {
    gap: 10px;
  }

  .home-header .nav-link {
    display: none;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero-poster {
    min-height: 94vh;
    padding: 94px 14px 82px;
  }

  .signal-system {
    top: 88px;
    width: 430px;
    opacity: 0.68;
  }

  .hero-copyblock {
    margin-top: 204px;
    width: calc(100vw - 28px);
    overflow: hidden;
  }

  .hero-copyblock h1 {
    width: min(350px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(40px, 11.4vw, 44px);
    line-height: 0.94;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .hero-copyblock p:not(.kicker) {
    width: min(340px, 100%);
    font-size: 16px;
  }

  .hero-actions {
    width: min(260px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn-large {
    width: 100%;
  }

  .core-readout {
    display: none;
  }

  .float-note {
    display: none;
  }

  .section-shell,
  .footer-grid,
  .account-main,
  .legal-main {
    width: min(100% - 24px, 1180px);
  }

  .demo-section,
  .proof-section,
  .pricing-section,
  .faq-section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .mac-stage {
    min-height: 590px;
  }

  .meeting-window {
    left: 14px;
    right: 14px;
    top: 92px;
  }

  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .participant {
    min-height: 168px;
  }

  .sotto-overlay {
    top: 252px;
    width: calc(100% - 28px);
  }

  .cue-grid {
    grid-template-columns: 1fr;
  }

  .dock {
    display: none;
  }

  .demo-layout {
    gap: 14px;
  }

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    padding: 16px 0;
  }

  .mini-visual {
    padding: 20px;
  }

  .pricing-stage {
    min-height: 880px;
  }

  .standard-pricing {
    padding-top: 84px;
  }

  .standard-pricing.is-revealed {
    padding-top: 0;
  }

  .founder-offer {
    padding: 24px;
  }

  .faq-shell {
    padding: 28px 20px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 18px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
