:root {
  color-scheme: dark;
  --bg: #06070d;
  --bg-2: #0b0d18;
  --surface: rgba(20, 22, 34, 0.66);
  --surface-strong: rgba(28, 30, 46, 0.86);
  --text: #fbf9ff;
  --muted: #c7c1d6;
  --soft: #8a849b;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --violet: #c084fc;
  --purple: #8b5cf6;
  --indigo: #6d28d9;
  --mint: #42d392;
  --amber: #f6c15b;
  --rose: #ff7ab6;
  --grad-text: linear-gradient(110deg, #ffffff 8%, #efe1ff 32%, #c084fc 60%, #8b5cf6 92%);
  --grad-card: linear-gradient(155deg, rgba(192, 132, 252, 0.16), rgba(66, 211, 146, 0.06) 64%, transparent 96%);
  --grad-edge: linear-gradient(135deg, rgba(192, 132, 252, 0.5), rgba(139, 92, 246, 0.06) 42%, rgba(66, 211, 146, 0.4) 96%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.32);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 40px 110px rgba(0, 0, 0, 0.56);
  --shadow-glow: 0 24px 80px rgba(139, 92, 246, 0.32);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(0.22, 0.8, 0.18, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 10%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 10%, black 30%, transparent 80%);
}

body::after {
  background:
    radial-gradient(60vmax 50vmax at 12% 0%, rgba(139, 92, 246, 0.30), transparent 55%),
    radial-gradient(48vmax 40vmax at 92% 12%, rgba(192, 132, 252, 0.22), transparent 60%),
    radial-gradient(70vmax 60vmax at 80% 78%, rgba(66, 211, 146, 0.10), transparent 60%),
    radial-gradient(30vmax 30vmax at 8% 80%, rgba(255, 122, 182, 0.08), transparent 60%);
  filter: saturate(115%);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

/* ---- Containers ---- */

.site-header,
.hero,
.overview,
.flow,
.promise-band,
.launch-grid,
.faq,
.simple-page,
.privacy-hero,
.privacy-promises,
.privacy-statement,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---- Header ---- */

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.72);
  padding: 8px 8px 8px 18px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.005em;
}

.brand img {
  width: 32px;
  height: 29px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(139, 92, 246, 0.35));
  transition: transform 0.5s var(--ease);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav a.nav-cta {
  background: linear-gradient(135deg, #ffffff, #d7c4ff 60%, #8b5cf6);
  color: #0a0c14;
  font-weight: 850;
  padding: 9px 16px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.32);
}

.nav a.nav-cta:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #ffffff, #d7c4ff 60%, #8b5cf6);
  color: #0a0c14;
}

/* ---- Typography ---- */

h1, h2, h3, h4, p, dl, dd {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 7.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 850;
}

h2 {
  letter-spacing: -0.018em;
  font-weight: 820;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 9s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid rgba(192, 132, 252, 0.30);
  border-radius: 999px;
  background: rgba(192, 132, 252, 0.08);
  padding: 6px 12px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

.lede {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 2.6vw, 2.06rem);
  line-height: 1.16;
  font-weight: 780;
  letter-spacing: -0.012em;
}

.intro,
.section-heading p,
.promise-band > p,
.launch-copy p,
.launch-card p,
.principles p,
.flow p,
.faq p,
.simple-page p,
.simple-page li,
.footer {
  color: var(--muted);
}

.intro {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

/* ---- Buttons ---- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.primary-action,
.secondary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  font-size: 0.96rem;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
  isolation: isolate;
}

.primary-action {
  background: linear-gradient(135deg, #ffffff, #d7c4ff 48%, #8b5cf6);
  color: #080a12;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.primary-action::after {
  content: "→";
  margin-left: 2px;
  transition: transform 0.3s var(--ease);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(139, 92, 246, 0.46), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.primary-action:hover::after {
  transform: translateX(3px);
}

.secondary-action {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  min-height: calc(100vh - 130px);
  min-height: calc(100svh - 130px);
  gap: 56px;
  padding: 40px 0 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* ---- Proof / stats row ---- */

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 12px;
  margin-bottom: 0;
}

.proof-row > div {
  position: relative;
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px 18px;
  overflow: hidden;
  isolation: isolate;
}

.proof-row > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-edge);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.proof-row dt {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-row dt::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--violet);
}

.proof-row > div:nth-child(2) dt::before { background: var(--mint); }
.proof-row > div:nth-child(3) dt::before { background: var(--amber); }

.proof-row dd {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.005em;
}

/* ---- Device showcase (phone with cycling states) ---- */

.device-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.halo {
  position: absolute;
  width: min(540px, 96%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    conic-gradient(from 90deg at 50% 50%,
      rgba(192, 132, 252, 0.38),
      rgba(139, 92, 246, 0.16),
      rgba(66, 211, 146, 0.20),
      rgba(255, 122, 182, 0.16),
      rgba(192, 132, 252, 0.38));
  filter: blur(40px);
  opacity: 0.85;
  animation: halo-spin 24s linear infinite;
}

.halo::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.16), transparent 60%);
}

@keyframes halo-spin {
  to { transform: rotate(360deg); }
}

.sparkle-layer {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 1;
}

.sparkle-layer .spark {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.9));
  opacity: 0.0;
  animation: spark 6s ease-in-out infinite;
}

.sparkle-layer .spark:nth-child(1) { top: 12%; left: 8%; width: 22px; height: 22px; animation-delay: 0s; }
.sparkle-layer .spark:nth-child(2) { top: 6%; right: 14%; width: 14px; height: 14px; animation-delay: 1s; }
.sparkle-layer .spark:nth-child(3) { bottom: 22%; left: 4%; width: 16px; height: 16px; animation-delay: 2.4s; }
.sparkle-layer .spark:nth-child(4) { bottom: 10%; right: 8%; width: 24px; height: 24px; animation-delay: 3.6s; }
.sparkle-layer .spark:nth-child(5) { top: 38%; right: 2%; width: 12px; height: 12px; animation-delay: 4.2s; }
.sparkle-layer .spark:nth-child(6) { top: 60%; left: 12%; width: 14px; height: 14px; animation-delay: 0.6s; }

@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  35% { opacity: 1; transform: scale(1) rotate(60deg); }
  65% { opacity: 1; transform: scale(1.05) rotate(120deg); }
  85% { opacity: 0.2; transform: scale(0.7) rotate(160deg); }
}

.phone {
  position: relative;
  z-index: 2;
  width: min(340px, 80vw);
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 18%),
    #0b0d18;
  padding: 12px;
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.58),
    0 18px 60px rgba(139, 92, 246, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  padding: 0 18px 6px;
}

.phone-top span:first-child {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-top span:last-child {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(66, 211, 146, 0.85);
  box-shadow: 0 0 10px rgba(66, 211, 146, 0.6);
}

.phone-screen {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 52% 14%, rgba(192, 132, 252, 0.34), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 36%),
    #0a0c14;
  overflow: hidden;
}

.phone-states {
  position: relative;
  height: 560px;
}

.phone-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px;
  opacity: 0;
  animation: state-cycle 16s infinite var(--ease);
  animation-fill-mode: both;
}

.phone-state:nth-child(1) { animation-delay: 0s; }
.phone-state:nth-child(2) { animation-delay: 4s; }
.phone-state:nth-child(3) { animation-delay: 8s; }
.phone-state:nth-child(4) { animation-delay: 12s; }

@keyframes state-cycle {
  0% { opacity: 0; transform: translateY(14px) scale(0.98); }
  3%, 22% { opacity: 1; transform: translateY(0) scale(1); }
  25%, 100% { opacity: 0; transform: translateY(-10px) scale(0.99); }
}

.state-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.state-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.phone-state h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 850;
}

.phone-state p.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* State 1: meet (avatars) */
.state-meet .logo-card {
  display: grid;
  place-items: center;
  margin: 6px auto 14px;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 30%, rgba(192, 132, 252, 0.42), transparent 64%), #0e1020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.32);
}

.state-meet .logo-card img {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(139, 92, 246, 0.6));
}

.state-meet h3,
.state-meet p.sub {
  text-align: center;
}

.creator-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 22px;
}

.creator {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 850;
  color: #0a0c14;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.creator:nth-child(1) { background: linear-gradient(140deg, #c084fc, #8b5cf6); }
.creator:nth-child(2) { background: linear-gradient(140deg, #42d392, #16a085); }
.creator:nth-child(3) { background: linear-gradient(140deg, #f6c15b, #f59e0b); color: #211107; }
.creator:nth-child(4) { background: linear-gradient(140deg, #ff7ab6, #d946ef); }

.creator.selected::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid var(--mint);
  box-shadow: 0 0 12px rgba(66, 211, 146, 0.6);
}

/* State 2: prompt */
.prompt-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 14px 12px;
  margin-bottom: 14px;
}

.prompt-card .label {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prompt-card .field {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.prompt-card .caret {
  display: inline-block;
  width: 2px;
  height: 14px;
  margin-left: 1px;
  vertical-align: -2px;
  background: var(--violet);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.swatches {
  display: flex;
  gap: 10px;
  margin: 6px 0 14px;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.swatch:nth-child(1) { background: linear-gradient(140deg, #c084fc, #8b5cf6); }
.swatch:nth-child(2) { background: linear-gradient(140deg, #ff7ab6, #d946ef); }
.swatch:nth-child(3) { background: linear-gradient(140deg, #42d392, #16a085); }
.swatch:nth-child(4) { background: linear-gradient(140deg, #f6c15b, #f59e0b); }
.swatch:nth-child(5) { background: linear-gradient(140deg, #60a5fa, #3b82f6); }
.swatch:nth-child(6) { background: linear-gradient(140deg, #fbf9ff, #c7c1d6); }

.swatch.selected {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

/* State 3: crafting */
.state-craft .canvas {
  position: relative;
  margin: 4px 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.22), transparent 60%),
    #0e1020;
  height: 240px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.craft-spark {
  position: relative;
  width: 84px;
  height: 84px;
}

.craft-spark::before,
.craft-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--violet) 70deg, transparent 140deg);
  animation: spinner 1.6s linear infinite;
  mask: radial-gradient(circle, transparent 32px, black 33px);
  -webkit-mask: radial-gradient(circle, transparent 32px, black 33px);
}

.craft-spark::after {
  animation-direction: reverse;
  animation-duration: 2.4s;
  background: conic-gradient(from 180deg, transparent 0deg, var(--mint) 60deg, transparent 130deg);
  opacity: 0.7;
  mask: radial-gradient(circle, transparent 24px, black 25px, black 32px, transparent 33px);
  -webkit-mask: radial-gradient(circle, transparent 24px, black 25px, black 32px, transparent 33px);
}

.craft-spark .core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--violet);
  filter: drop-shadow(0 0 12px var(--violet));
}

.craft-spark .core svg {
  width: 32px;
  height: 32px;
  animation: rotate-soft 6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

@keyframes rotate-soft {
  to { transform: rotate(360deg); }
}

.progress {
  height: 10px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--violet), var(--mint));
  background-size: 200% 100%;
  animation: load-fill 16s infinite var(--ease), bar-shimmer 2s linear infinite;
  animation-delay: 8s, 0s;
}

@keyframes load-fill {
  0% { width: 0%; }
  17% { width: 92%; }
  22% { width: 100%; }
  100% { width: 0%; }
}

@keyframes bar-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.progress-text {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* State 4: ready */
.state-ready .preview {
  position: relative;
  margin: 4px 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 122, 182, 0.28), transparent 60%),
    radial-gradient(circle at 76% 78%, rgba(66, 211, 146, 0.20), transparent 50%),
    #0e1020;
  height: 240px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.preview svg {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(255, 122, 182, 0.32));
}

.action-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 850;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-pill.primary {
  background: linear-gradient(135deg, #ffffff, #d7c4ff 50%, #8b5cf6);
  color: #080a12;
  border: none;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.34);
}

/* Floating chips */
.signal {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.78);
  padding: 9px 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 0.86rem;
  font-weight: 800;
}

.signal::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.signal-left {
  left: -4px;
  top: 110px;
  animation: chip-float-a 7s ease-in-out infinite;
}

.signal-right {
  right: -8px;
  bottom: 140px;
  animation: chip-float-b 8s ease-in-out infinite;
}

.signal-right::before {
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
}

.signal-top {
  right: 18px;
  top: 28px;
  animation: chip-float-c 6.5s ease-in-out infinite;
}

.signal-top::before {
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}

@keyframes chip-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes chip-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes chip-float-c {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(-4px); }
}

/* ---- Marquee ---- */

.marquee {
  position: relative;
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(192, 132, 252, 0.05), transparent 70%);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  padding: 22px 30px;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- Sections base ---- */

.overview,
.flow,
.promise-band,
.launch-grid,
.faq,
.simple-page {
  border-top: 1px solid var(--line);
}

.section-heading h2,
.promise-band h2,
.launch-copy h2,
.simple-page h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
}

.section-heading p,
.promise-band > p,
.launch-copy p,
.simple-page p,
.simple-page li {
  font-size: clamp(0.98rem, 1.3vw, 1.06rem);
  line-height: 1.72;
}

/* ---- Overview / principles ---- */

.overview {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  padding: 78px 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.principles article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.principles article::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-edge);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.principles article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(192, 132, 252, 0.36);
}

.principles article:hover::before {
  opacity: 1;
}

.principles .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(192, 132, 252, 0.40), transparent 65%),
    rgba(20, 22, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--violet);
}

.principles .icon svg {
  width: 22px;
  height: 22px;
}

.principles article:nth-child(2) .icon { color: var(--mint); }
.principles article:nth-child(2) .icon { background: radial-gradient(circle at 30% 25%, rgba(66, 211, 146, 0.36), transparent 65%), rgba(20, 22, 34, 0.88); }

.principles article:nth-child(3) .icon { color: var(--amber); }
.principles article:nth-child(3) .icon { background: radial-gradient(circle at 30% 25%, rgba(246, 193, 91, 0.36), transparent 65%), rgba(20, 22, 34, 0.88); }

.principles h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.012em;
  font-weight: 820;
}

.principles p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---- Flow / How it works ---- */

.flow {
  padding: 78px 0;
}

.flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 38px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 16%, var(--line-strong) 84%, transparent);
  z-index: 0;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 1;
}

.flow-step .num {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 32% 28%, rgba(192, 132, 252, 0.45), transparent 64%),
    var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
  color: var(--violet);
}

.flow-step .num svg {
  width: 30px;
  height: 30px;
}

.flow-step:nth-child(2) .num { color: var(--mint); background: radial-gradient(circle at 32% 28%, rgba(66, 211, 146, 0.42), transparent 64%), var(--surface-strong); }
.flow-step:nth-child(3) .num { color: var(--amber); background: radial-gradient(circle at 32% 28%, rgba(246, 193, 91, 0.42), transparent 64%), var(--surface-strong); }
.flow-step:nth-child(4) .num { color: var(--rose); background: radial-gradient(circle at 32% 28%, rgba(255, 122, 182, 0.42), transparent 64%), var(--surface-strong); }

.flow-step .step-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-step h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 820;
}

.flow-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---- Promise band ---- */

.promise-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 56px;
  padding: 72px 0;
}

.promise-band > p {
  margin-bottom: 0;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--mint), var(--violet)) 1;
  padding-left: 24px;
  font-size: 1.05rem;
}

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

.promise-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 18px;
}

.promise-cards .label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promise-cards .label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.promise-cards article:nth-child(2) .label::before { background: var(--rose); }

.promise-cards h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: -0.008em;
  font-weight: 820;
}

.promise-cards p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---- Launch grid ---- */

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 40px;
  padding: 68px 0;
}

.launch-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(192, 132, 252, 0.18), rgba(66, 211, 146, 0.06) 60%, transparent),
    var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.launch-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.42), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

.launch-card .label {
  display: block;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.7rem;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-weight: 850;
}

.launch-card .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 850;
}

.launch-card .pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}

.launch-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---- FAQ ---- */

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  padding: 72px 0 90px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0 20px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq details:hover {
  border-color: rgba(192, 132, 252, 0.30);
}

.faq details[open] {
  background: rgba(192, 132, 252, 0.04);
  border-color: rgba(192, 132, 252, 0.34);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 0;
  color: var(--text);
  font-weight: 820;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  list-style: none;
  gap: 16px;
}

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

.faq summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 8px;
  background:
    linear-gradient(0deg, var(--text) 0 1.2px, transparent 1.2px) 50% 50% / 12px 1.2px no-repeat,
    linear-gradient(90deg, var(--text) 0 1.2px, transparent 1.2px) 50% 50% / 1.2px 12px no-repeat,
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(0deg, var(--text) 0 1.2px, transparent 1.2px) 50% 50% / 12px 1.2px no-repeat,
    linear-gradient(90deg, var(--text) 0 1.2px, transparent 1.2px) 50% 50% / 1.2px 12px no-repeat,
    rgba(192, 132, 252, 0.18);
}

.faq p {
  margin: 0 0 20px;
  line-height: 1.7;
}

/* ---- Simple page (privacy, 404) ---- */

.simple-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 86px 0 100px;
}

.simple-page .single {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.simple-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.simple-card + .simple-card {
  margin-top: 12px;
}

.simple-card h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.012em;
  font-weight: 820;
}

.simple-card p:last-child,
.simple-page p:last-child {
  margin-bottom: 0;
}

.simple-page ul {
  margin: 0;
  padding-left: 20px;
}

/* ---- Privacy page ---- */

.privacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 72px;
}

.privacy-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.privacy-hero .lede {
  max-width: 560px;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
}

.privacy-hero .intro {
  max-width: 580px;
}

.privacy-badge {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.badge-halo {
  position: absolute;
  width: min(440px, 88%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    conic-gradient(from 220deg at 50% 50%,
      rgba(192, 132, 252, 0.42),
      rgba(255, 122, 182, 0.22),
      rgba(66, 211, 146, 0.20),
      rgba(192, 132, 252, 0.42));
  filter: blur(44px);
  opacity: 0.8;
  animation: halo-spin 26s linear infinite;
}

.badge-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.badge-rings span {
  position: absolute;
  border: 1px solid rgba(192, 132, 252, 0.20);
  border-radius: 999px;
}

.badge-rings span:nth-child(1) {
  width: 320px;
  height: 320px;
  border-color: rgba(192, 132, 252, 0.26);
  animation: ring-pulse 5s ease-in-out infinite;
}

.badge-rings span:nth-child(2) {
  width: 400px;
  height: 400px;
  border-color: rgba(192, 132, 252, 0.16);
  animation: ring-pulse 5s ease-in-out infinite 1s;
}

.badge-rings span:nth-child(3) {
  width: 480px;
  height: 480px;
  border-color: rgba(192, 132, 252, 0.08);
  animation: ring-pulse 5s ease-in-out infinite 2s;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.privacy-badge .sparkle-layer {
  position: absolute;
  inset: -20px;
}

.privacy-badge .sparkle-layer .spark:nth-child(1) { top: 8%; left: 14%; width: 18px; height: 18px; animation-delay: 0s; }
.privacy-badge .sparkle-layer .spark:nth-child(2) { top: 22%; right: 10%; width: 22px; height: 22px; animation-delay: 1.2s; }
.privacy-badge .sparkle-layer .spark:nth-child(3) { bottom: 18%; left: 6%; width: 14px; height: 14px; animation-delay: 2.4s; }
.privacy-badge .sparkle-layer .spark:nth-child(4) { bottom: 6%; right: 22%; width: 20px; height: 20px; animation-delay: 3.6s; }
.privacy-badge .sparkle-layer .spark:nth-child(5) { top: 52%; right: 4%; width: 12px; height: 12px; animation-delay: 0.6s; }

.badge-art {
  position: relative;
  z-index: 2;
  width: min(320px, 80%);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(139, 92, 246, 0.42));
  animation: badge-float 6s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Promise grid ---- */

.privacy-promises {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.privacy-promises .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 38px;
}

.privacy-promises .section-heading h2 {
  margin-bottom: 0;
}

.privacy-promises .section-heading p {
  margin: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px 24px 22px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-edge);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(192, 132, 252, 0.36);
}

.promise-card:hover::before {
  opacity: 1;
}

.promise-card .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(192, 132, 252, 0.42), transparent 65%),
    rgba(20, 22, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--violet);
}

.promise-card .icon svg {
  width: 22px;
  height: 22px;
}

.promise-card:nth-child(2) .icon { color: var(--mint); background: radial-gradient(circle at 30% 25%, rgba(66, 211, 146, 0.36), transparent 65%), rgba(20, 22, 34, 0.88); }
.promise-card:nth-child(3) .icon { color: var(--amber); background: radial-gradient(circle at 30% 25%, rgba(246, 193, 91, 0.36), transparent 65%), rgba(20, 22, 34, 0.88); }
.promise-card:nth-child(4) .icon { color: var(--rose); background: radial-gradient(circle at 30% 25%, rgba(255, 122, 182, 0.36), transparent 65%), rgba(20, 22, 34, 0.88); }

.promise-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.012em;
  font-weight: 820;
}

.promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---- Privacy statement ---- */

.privacy-statement {
  position: relative;
  padding: 72px 0 96px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.privacy-statement .eyebrow {
  margin-bottom: 24px;
}

.statement {
  position: relative;
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.32;
  letter-spacing: -0.012em;
  font-weight: 740;
  color: var(--text);
}

.statement em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.statement .quote-mark {
  display: inline-block;
  margin-right: 4px;
  color: var(--violet);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.18em;
  font-weight: 850;
  opacity: 0.7;
}

.privacy-statement .meta {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---- Footer ---- */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 36px 0 52px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.footer-brand img {
  width: 30px;
  height: 27px;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer a {
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--violet);
}

/* ---- Reveal animations (JS only) ---- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

html.js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 36px;
  }

  .overview,
  .promise-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .flow-steps::before {
    display: none;
  }

  .privacy-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 32px;
  }

  .privacy-promises .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .overview,
  .flow,
  .promise-band,
  .launch-grid,
  .faq,
  .simple-page,
  .footer {
    width: min(100% - 28px, 760px);
  }

  .site-header {
    padding: 8px 8px 8px 16px;
    border-radius: 22px;
  }

  .nav {
    gap: 0;
    font-size: 0.84rem;
  }

  .nav a {
    padding: 8px 10px;
  }

  .nav a:not(.nav-cta):not(:last-child) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding: 30px 0 48px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    min-height: 500px;
  }

  .phone {
    width: min(330px, 88vw);
  }

  .phone-screen {
    min-height: 520px;
  }

  .phone-states {
    height: 520px;
  }

  .phone-state {
    padding: 24px 18px 18px;
  }

  .signal-left {
    left: 0;
    top: 70px;
  }

  .signal-right {
    right: 0;
    bottom: 60px;
  }

  .signal-top {
    right: 4px;
    top: 14px;
  }

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

  .principles article {
    min-height: 0;
  }

  .promise-cards {
    grid-template-columns: 1fr;
  }

  .launch-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 56px 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 56px 0 70px;
  }

  .simple-page {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 56px 0 76px;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 48px;
  }

  .privacy-badge {
    min-height: 360px;
  }

  .badge-rings span:nth-child(1) { width: 260px; height: 260px; }
  .badge-rings span:nth-child(2) { width: 320px; height: 320px; }
  .badge-rings span:nth-child(3) { width: 380px; height: 380px; }

  .privacy-promises {
    padding: 56px 0;
  }

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

  .privacy-statement {
    padding: 56px 0 72px;
  }

  .flow {
    padding: 56px 0;
  }

  .overview {
    padding: 56px 0;
  }

  .promise-band {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    margin-top: 12px;
  }

  .brand img {
    width: 28px;
    height: 25px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .nav {
    font-size: 0.82rem;
  }

  body::before {
    background-size: 44px 44px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .device-showcase {
    min-height: 460px;
  }

  .phone {
    width: min(300px, 90vw);
    border-radius: 32px;
  }

  .phone-screen {
    min-height: 470px;
    border-radius: 24px;
  }

  .phone-states {
    height: 470px;
  }

  .phone-state {
    padding: 22px 16px 16px;
  }

  .phone-state h3 {
    font-size: 1.36rem;
  }

  .state-craft .canvas,
  .state-ready .preview {
    height: 200px;
  }

  .signal {
    font-size: 0.78rem;
    padding: 7px 11px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-step .num {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    margin-bottom: 14px;
  }

  .promise-band > p {
    padding-left: 18px;
  }

  .marquee-track {
    gap: 36px;
    padding: 16px 20px;
  }

  .marquee-item {
    font-size: 0.92rem;
    gap: 10px;
  }

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

  .footer div {
    justify-content: flex-start;
  }
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .phone-state {
    opacity: 1 !important;
    animation: none;
    position: relative;
  }

  .phone-state:not(:first-child) {
    display: none;
  }

  .gradient-text {
    animation: none;
    background-position: 0 0;
  }

  .halo {
    animation: none;
  }

  .phone {
    animation: none;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
