/* =========================================
   SystemSetup — Design Tokens
   ========================================= */
:root {
  /* Concrete / atmosphere */
  --bg-0: oklch(0.13 0.005 270);          /* deepest */
  --bg-1: oklch(0.16 0.006 270);          /* page */
  --bg-2: oklch(0.20 0.008 270);          /* card surface */
  --bg-3: oklch(0.24 0.010 270);          /* elevated */

  /* Type */
  --fg:    oklch(0.97 0.005 270);
  --fg-2:  oklch(0.82 0.008 270);
  --muted: oklch(0.62 0.012 270);
  --dim:   oklch(0.45 0.012 270);

  /* Hairlines */
  --line:    oklch(1 0 0 / 0.07);
  --line-2:  oklch(1 0 0 / 0.12);

  /* Glass */
  --glass-bg: oklch(0.98 0.005 270 / 0.04);
  --glass-bg-strong: oklch(0.98 0.005 270 / 0.07);
  --glass-line: oklch(1 0 0 / 0.12);

  /* Accent — deep luxury purple */
  --accent:      oklch(0.58 0.20 295);
  --accent-soft: oklch(0.58 0.20 295 / 0.18);
  --accent-glow: oklch(0.65 0.22 295);
  --accent-deep: oklch(0.36 0.16 295);

  /* Type stacks */
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 72px);
  --max:    1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-1);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Atmospheric fog layer — fixed for parallax feel */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmosphere::before,
.atmosphere::after {
  content: "";
  position: absolute;
  width: 90vw;
  height: 90vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
}
.atmosphere::before {
  top: -30vw;
  left: -20vw;
  background: radial-gradient(circle, oklch(0.45 0.18 295 / 0.45), transparent 60%);
  animation: drift1 32s ease-in-out infinite alternate;
}
.atmosphere::after {
  bottom: -40vw;
  right: -25vw;
  background: radial-gradient(circle, oklch(0.40 0.10 250 / 0.40), transparent 60%);
  animation: drift2 38s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(8vw, 5vw) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-6vw, -4vw) scale(1.1); }
}

/* Subtle film grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================
   Typography primitives
   ========================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--accent-glow);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 9vw, 140px); }
h2 { font-size: clamp(40px, 6vw, 88px); }
h3 { font-size: clamp(24px, 3vw, 40px); }

em, .italic {
  font-style: italic;
  font-family: var(--serif);
  color: var(--accent-glow);
}

p { color: var(--fg-2); text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.4vw, 21px); color: var(--fg-2); max-width: 60ch; }

/* =========================================
   Layout
   ========================================= */
.wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vw, 180px) 0;
}
.section-header {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 760px) {
  .section-header { grid-template-columns: 1fr; gap: 16px; }
}
.section-header .ix {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
}
.section-header .ix .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.section-header .ix .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg);
}

/* =========================================
   Glass surface
   ========================================= */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 18px;
}
.glass-strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  --bg: var(--fg);
  --color: var(--bg-0);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--bg);
  color: var(--color);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  display: inline-flex;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-0);
  color: var(--fg);
  align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: rotate(-45deg); }
.btn-accent {
  --bg: var(--accent);
  --color: white;
}
.btn-accent .arrow { background: white; color: var(--accent); }
.btn-ghost {
  --bg: transparent;
  --color: var(--fg);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-ghost .arrow { background: var(--fg); color: var(--bg-0); }

/* =========================================
   Nav
   ========================================= */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  background: oklch(0.13 0.005 270 / 0.55);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-2);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--fg); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* Monogram */
.monogram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  color: var(--fg);
  text-decoration: none;
}
.monogram svg { display: block; }
.monogram-text {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1;
}
.monogram-text em {
  font-style: italic;
  color: var(--accent-glow);
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  z-index: 5;
}
.hero h1 {
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: 0.92;
}
.hero h1 .line { display: block; }
.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 860px) {
  .hero-meta { grid-template-columns: 1fr; }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-trust strong { color: var(--fg); font-weight: 400; }
.hero-trust .stars { color: var(--accent-glow); letter-spacing: 0.1em; }

/* Pipeline canvas behind hero */
.pipeline-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hero stat ticker top */
.hero-marker-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(40px, 7vw, 96px);
}
.hero-marker-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-marker-row .pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}
@media (max-width: 760px) {
  .hero-marker-row .pill:nth-child(n+3) { display: none; }
}

/* =========================================
   Problem cards
   ========================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1000px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  position: relative;
  background: var(--bg-1);
  padding: 36px 28px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .4s ease;
}
.problem-card:hover { background: var(--bg-2); }
.problem-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
}
.problem-card .glyph {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent-glow);
  margin-top: 8px;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin: 24px 0 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--muted);
}

/* =========================================
   Close.com section
   ========================================= */
.close-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 860px) { .close-hero { grid-template-columns: 1fr; } }

.close-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; gap: 10px; align-items: center;
}
.close-tag::before {
  content: "↗";
  display: inline-block;
  color: var(--accent-glow);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.compare-col.bad { background: oklch(0.18 0.01 30 / 0.5); border-color: oklch(0.4 0.08 25 / 0.3); }
.compare-col.good { background: oklch(0.18 0.04 295 / 0.5); border-color: oklch(0.4 0.12 295 / 0.4); }
.compare-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--muted);
}
.compare-col h4 .tag {
  font-family: var(--mono);
  margin-right: 8px;
}
.compare-col.bad .tag { color: oklch(0.65 0.15 25); }
.compare-col.good .tag { color: var(--accent-glow); }
.compare-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.compare-col li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 22px;
  position: relative;
}
.compare-col.bad li::before { content: "—"; position: absolute; left: 0; color: oklch(0.65 0.15 25); }
.compare-col.good li::before { content: "→"; position: absolute; left: 0; color: var(--accent-glow); }

.close-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 900px) { .close-features { grid-template-columns: repeat(2, 1fr); } }
.close-feat {
  background: var(--bg-1);
  padding: 28px;
}
.close-feat .ico {
  width: 32px; height: 32px;
  margin-bottom: 18px;
  color: var(--accent-glow);
}
.close-feat h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.close-feat p { font-size: 13px; color: var(--muted); }

.close-quote {
  margin-top: 64px;
  padding: 48px;
  border-radius: 24px;
  background:
    radial-gradient(120% 100% at 0% 0%, oklch(0.4 0.16 295 / 0.25), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  color: var(--fg);
  font-style: italic;
}
.close-quote::before { content: "“"; font-size: 96px; line-height: 0; vertical-align: -0.3em; color: var(--accent-glow); margin-right: 6px; }

/* =========================================
   CHLOE BETA
   ========================================= */
.chloe {
  position: relative;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 80px);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 20% 0%, oklch(0.45 0.20 295 / 0.45), transparent 60%),
    radial-gradient(80% 60% at 90% 100%, oklch(0.35 0.18 270 / 0.45), transparent 60%),
    oklch(0.10 0.02 290);
  border: 1px solid oklch(0.5 0.15 295 / 0.3);
}
.chloe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: oklch(0.25 0.12 295 / 0.5);
  border: 1px solid oklch(0.55 0.15 295 / 0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.85 0.10 295);
  margin-bottom: 28px;
}
.chloe-badge .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 14px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.chloe h2 { margin-bottom: 28px; }
.chloe-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 900px) { .chloe-grid { grid-template-columns: 1fr; } }

.chloe-viz {
  position: relative;
  height: 320px;
  border-radius: 20px;
  background: oklch(0.07 0.02 290);
  border: 1px solid oklch(0.5 0.15 295 / 0.3);
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* =========================================
   Numbers bento
   ========================================= */
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }
.bento-cell {
  position: relative;
  padding: 36px;
  border-radius: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.bento-cell .stat {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.bento-cell .stat em { color: var(--accent-glow); }
.bento-cell .desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 30ch;
}
.bento-cell.hero-cell {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background:
    radial-gradient(120% 100% at 100% 0%, oklch(0.4 0.18 295 / 0.4), transparent 60%),
    var(--bg-2);
  min-height: 0;
}
.bento-cell.hero-cell .stat { font-size: clamp(80px, 11vw, 200px); }
@media (max-width: 900px) {
  .bento-cell.hero-cell { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .bento-cell.hero-cell { grid-column: auto; }
}

/* =========================================
   Offers
   ========================================= */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; } }
.offer {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition: transform .35s ease, border-color .35s ease;
}
.offer:hover { transform: translateY(-4px); border-color: var(--line-2); }
.offer.featured {
  background:
    radial-gradient(120% 100% at 0% 0%, oklch(0.4 0.18 295 / 0.35), transparent 60%),
    var(--bg-3);
  border-color: oklch(0.5 0.15 295 / 0.5);
}
.offer-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.offer.featured .offer-tag { color: var(--accent-glow); }
.offer-tag .num {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--fg);
}
.offer h3 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 16px;
}
.offer .who {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.offer ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.offer li {
  font-size: 13px;
  color: var(--fg-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.offer li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-glow);
  font-family: var(--mono);
}
.offer .result {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.3;
}
.offer .result span {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.offer .btn { align-self: flex-start; margin-top: auto; }

/* =========================================
   Fit check
   ========================================= */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 760px) { .fit { grid-template-columns: 1fr; } }
.fit-col {
  padding: 36px;
  border-radius: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.fit-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.fit-col.yes h4 { color: var(--accent-glow); }
.fit-col.no h4 { color: oklch(0.62 0.12 25); }
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-col li {
  font-size: 15px;
  color: var(--fg-2);
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.fit-col.yes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-glow);
}
.fit-col.no li::before {
  content: "×"; position: absolute; left: 0; color: oklch(0.62 0.12 25);
}

/* =========================================
   About Larissa
   ========================================= */
.about {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.4fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

.about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 4/5;
  background: var(--bg-2);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, oklch(0.10 0.02 290 / 0.5));
}
.about-photo .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
}
.about-photo .badge .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
}
.about-body h2 { margin-bottom: 28px; }
.about-body p { font-size: 17px; line-height: 1.55; margin-bottom: 18px; }
.about-body .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--fg-2);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 40px;
  border-radius: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.testimonial .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  margin-bottom: 28px;
  color: var(--fg);
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial .author .who {
  color: var(--fg);
}

/* =========================================
   Final CTA
   ========================================= */
.final {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(40px, 6vw, 80px);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(80% 100% at 50% 0%, oklch(0.45 0.20 295 / 0.5), transparent 60%),
    oklch(0.10 0.01 290);
  border: 1px solid oklch(0.5 0.15 295 / 0.3);
  text-align: center;
}
.final h2 {
  font-size: clamp(48px, 8vw, 120px);
  margin-bottom: 32px;
}
.final .sub {
  max-width: 60ch;
  margin: 0 auto 48px;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.5;
}
.final .small {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================
   Footer
   ========================================= */
footer.foot {
  position: relative;
  z-index: 2;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color .2s;
}
.foot-col a:hover { color: var(--fg); }

.foot-wordmark {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  color: var(--fg);
}
.foot-wordmark em { color: var(--accent-glow); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (max-width: 560px) { .foot-bottom { flex-direction: column; gap: 12px; } }

/* =========================================
   Scroll reveal
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-0);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track span::after {
  content: "✦";
  color: var(--accent-glow);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   Trust + Partner badges (Hero)
   ========================================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
  border: 1px solid var(--line-2);
  background: oklch(1 0 0 / 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  white-space: nowrap;
}
.trust-pill:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  background: oklch(1 0 0 / 0.08);
}
.trust-pill .pill-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-pill .pill-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.trust-pill .pill-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-pill .pill-arrow {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}
.trust-pill:hover .pill-arrow { transform: translate(2px, -2px); color: var(--fg); }

/* Trustpilot (green) */
.trust-pill.trustpilot {
  border-color: oklch(0.65 0.18 158 / 0.4);
  background: oklch(0.65 0.18 158 / 0.10);
}
.trust-pill.trustpilot:hover {
  background: oklch(0.65 0.18 158 / 0.18);
  border-color: oklch(0.65 0.18 158 / 0.65);
}
.trust-pill.trustpilot .pill-ico {
  background: #00B67A;
  color: white;
}
.trust-pill.trustpilot .stars {
  display: inline-flex; gap: 2px;
  padding: 4px 6px;
  background: #00B67A;
  border-radius: 4px;
}
.trust-pill.trustpilot .stars i {
  width: 12px; height: 12px;
  background: white;
  display: inline-block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 2 L15 9 L22 9 L17 14 L19 21 L12 17 L5 21 L7 14 L2 9 L9 9 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Close.com Partner (accent) */
.trust-pill.close-partner {
  border-color: oklch(0.6 0.20 295 / 0.55);
  background:
    linear-gradient(90deg,
      oklch(0.6 0.20 295 / 0.18),
      oklch(0.6 0.20 295 / 0.08));
}
.trust-pill.close-partner:hover {
  background:
    linear-gradient(90deg,
      oklch(0.6 0.20 295 / 0.28),
      oklch(0.6 0.20 295 / 0.14));
  border-color: oklch(0.7 0.22 295);
  box-shadow: 0 0 24px oklch(0.5 0.20 295 / 0.45);
}
.trust-pill.close-partner .pill-ico {
  background: oklch(1 0 0 / 0.95);
  border: 1px solid oklch(1 0 0 / 0.15);
  width: 26px; height: 26px;
  padding: 3px;
}
.trust-pill.close-partner .pill-ico img {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
}

/* Animated dot for Live indicators */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* =========================================
   Morph Stage (stripes → logo)
   ========================================= */
.morph-wrap {
  position: relative;
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  border-radius: 24px;
  background:
    radial-gradient(80% 100% at 50% 50%, oklch(0.18 0.04 295 / 0.5), transparent 70%),
    oklch(0.10 0.01 290 / 0.6);
  border: 1px solid oklch(0.5 0.15 295 / 0.25);
  overflow: hidden;
}
.morph-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.morph-chloe {
  background:
    radial-gradient(80% 100% at 50% 50%, oklch(0.20 0.10 145 / 0.4), transparent 70%),
    oklch(0.10 0.01 290 / 0.6);
  border-color: oklch(0.5 0.12 145 / 0.30);
}

/* Morph CTA — link layered on top of the stage */
.morph-cta {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: oklch(0.13 0.005 270 / 0.7);
  border: 1px solid oklch(1 0 0 / 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.morph-cta:hover {
  transform: translateY(-2px);
  border-color: oklch(1 0 0 / 0.25);
  background: oklch(0.16 0.01 290 / 0.85);
}
.morph-cta-arrow {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg-0);
  font-family: var(--sans);
  font-size: 11px;
}
.morph-cta-close .morph-cta-arrow { background: #4EC375; color: white; }
.morph-cta-chloe .morph-cta-arrow { background: #34D399; color: white; }

/* Flow connector — between Close and Chloe sections */
.flow-connector {
  position: relative;
  width: 100%;
  height: 160px;
  margin: -32px 0;
  pointer-events: none;
}

/* =========================================
   Legal page (Impressum / DSGVO)
   ========================================= */
.legal-hero {
  position: relative;
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow {
  margin-bottom: 32px;
  display: inline-block;
}
.legal-hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  margin-bottom: 32px;
}
.legal-hero .lede { max-width: 70ch; }

.legal-body {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .legal-body { grid-template-columns: 1fr; } }

/* Sticky TOC */
.legal-toc {
  position: sticky;
  top: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 6px;
}
.legal-toc h6 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-toc a {
  color: var(--fg-2);
  text-decoration: none;
  transition: color .2s ease;
  display: flex;
  gap: 12px;
}
.legal-toc a:hover { color: var(--fg); }
.legal-toc a .num { color: var(--muted); min-width: 18px; }

.legal-content {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 72ch;
}
.legal-content > section { padding: 56px 0; border-top: 1px solid var(--line); }
.legal-content > section:first-child { border-top: 0; padding-top: 0; }
.legal-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1.05;
}
.legal-content h2 .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p { margin-bottom: 18px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong { color: var(--fg); font-weight: 500; }
.legal-content em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-glow);
}
.legal-content a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: oklch(0.65 0.22 295);
  transition: color .2s, text-decoration-color .2s;
}
.legal-content a:hover {
  color: var(--accent-glow);
  text-decoration-color: var(--accent-glow);
}
.legal-content ul, .legal-content ol {
  padding-left: 0;
  list-style: none;
  margin: 18px 0;
}
.legal-content ul li, .legal-content ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.legal-content ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-glow);
  font-family: var(--mono);
}
.legal-content .info-block {
  margin: 24px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: oklch(0.4 0.16 295 / 0.08);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
}
.legal-content .info-block strong { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }

.legal-content .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 640px) { .legal-content .card-grid { grid-template-columns: 1fr; } }
.legal-content .card-grid .card {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.legal-content .card-grid .card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.15;
}
.legal-content .card-grid .card p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--muted);
}
.legal-content .card-grid .card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 14px;
  display: block;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: oklch(1 0 0 / 0.04);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-meta .live-dot { width: 6px; height: 6px; }
