:root {
  --bg: #100b18;
  --bg-2: #191025;
  --ink: #fff8ef;
  --muted: #c9b9cf;
  --card: rgba(255, 248, 239, 0.08);
  --card-strong: rgba(255, 248, 239, 0.13);
  --line: rgba(255, 248, 239, 0.16);
  --rose: #ff6f91;
  --coral: #ff9671;
  --gold: #ffc75f;
  --violet: #b39cd0;
  --blue: #74d2ff;
  --green: #7ee081;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 111, 145, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(116, 210, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 55%, rgba(179, 156, 208, 0.16), transparent 24rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 55%, #210f1f);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 239, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(#000, transparent 80%);
}

a { color: inherit; text-decoration: none; }
code {
  display: block;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(0,0,0,0.24);
  color: #fff1bd;
  white-space: normal;
  word-break: break-word;
}

.ambient { position: fixed; border-radius: 50%; filter: blur(42px); opacity: 0.55; pointer-events: none; }
.a1 { width: 260px; height: 260px; background: var(--rose); top: 18%; left: -80px; }
.a2 { width: 340px; height: 340px; background: #4f46e5; top: 52%; right: -120px; }
.a3 { width: 180px; height: 180px; background: var(--gold); bottom: 8%; left: 12%; opacity: 0.28; }

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 11, 24, 0.72);
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 14px; background: linear-gradient(135deg, var(--rose), var(--gold)); color: #180d1f;
}
nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav a { color: var(--muted); font-weight: 750; padding: 9px 11px; border-radius: 999px; }
nav a:hover { color: var(--ink); background: var(--card); }

.section { position: relative; z-index: 1; width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 78px 0; }
.hero { min-height: calc(100vh - 70px); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; padding-top: 44px; }
.hero-copy, .source-card, .panel, .insight-card, .archetype, .modules, .business, .safety, .next-steps, .loop-section, .big-idea {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-copy { padding: clamp(30px, 6vw, 72px); border-radius: 42px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; max-width: 850px; font-size: clamp(3.6rem, 8vw, 7.7rem); line-height: 0.88; letter-spacing: -0.085em; }
h2 { margin-bottom: 14px; font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 0.98; letter-spacing: -0.06em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; letter-spacing: -0.035em; }
.lead, .section-heading p, .positioning { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { padding: 15px 18px; border-radius: 999px; font-weight: 950; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, var(--rose), var(--coral)); color: #1b0d17; box-shadow: 0 18px 42px rgba(255,111,145,.24); }
.ghost { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,0.04); }
.source-card { padding: 26px; border-radius: 34px; }
.source-card h2 { color: var(--gold); }
.source-card p, .source-card li { color: var(--muted); line-height: 1.5; }
.card-label { display:inline-flex; padding:8px 12px; border-radius:999px; color:#170e1d; background:var(--gold); font-weight:950; }
.note { margin-top: 20px; }

.section-heading { max-width: 780px; margin-bottom: 30px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.big-idea, .loop-section, .modules, .business, .safety, .next-steps { padding: clamp(28px, 5vw, 56px); border-radius: 42px; }
.value-orbit {
  position: relative; min-height: 520px; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(255,199,95,.14), transparent 35%, rgba(255,255,255,.03) 36%, transparent 37%);
  border-radius: 36px; overflow: hidden;
}
.orbit-center { width: min(340px, 78vw); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 38px; background: linear-gradient(135deg, rgba(255,111,145,.9), rgba(255,199,95,.9)); color: #180d1f; box-shadow: 0 30px 80px rgba(255,111,145,.22); }
.orbit-center span { font-size: .8rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.orbit-center strong { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: .95; letter-spacing: -.07em; }
.orbit-item { position: absolute; padding: 14px 18px; border-radius: 20px; background: rgba(255,255,255,.12); border: 1px solid var(--line); font-weight: 950; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.mirror { top: 13%; left: 18%; } .map { top: 18%; right: 17%; } .scripts { left: 9%; top: 48%; } .rituals { right: 8%; top: 48%; } .dynamics { bottom: 14%; left: 18%; } .repair { bottom: 14%; right: 20%; }

.map-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { min-height: 260px; padding: 24px; border-radius: 30px; overflow: hidden; }
.insight-card .num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,.12); color: var(--gold); font-weight: 950; }
.insight-card p { color: var(--muted); line-height: 1.55; }
.formula { font-size: 1.08rem; }
.accent-blue { border-top: 4px solid var(--blue); } .accent-pink { border-top: 4px solid var(--rose); } .accent-gold { border-top: 4px solid var(--gold); } .accent-green { border-top: 4px solid var(--green); } .accent-violet { border-top: 4px solid var(--violet); } .accent-coral { border-top: 4px solid var(--coral); }

.loop-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: center; margin-top: 30px; }
.loop-flow i { display:none; }
.loop-flow div { min-height: 150px; padding: 20px; border-radius: 26px; background: rgba(255,255,255,.09); border: 1px solid var(--line); }
.loop-flow span { color: var(--gold); display:block; font-size:.8rem; text-transform:uppercase; letter-spacing:.15em; font-weight:900; }
.loop-flow strong { display:block; margin-top: 12px; font-size:1.3rem; line-height:1.1; }
.loop-types { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:14px; }
.loop-types article { padding:20px; border-radius:24px; background:rgba(0,0,0,.18); border:1px solid var(--line); }
.loop-types p { color:var(--muted); margin:0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.panel { padding: 30px; border-radius: 36px; }
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
ul { padding-left: 18px; }
li { margin: 8px 0; color: var(--muted); line-height: 1.45; }
.desire h3 { color: var(--green); }
.mismatch h3 { color: var(--rose); }
.translation-list { display:grid; gap: 12px; }
.translation-list p { margin: 0; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); color: var(--muted); }
.translation-list b { color: var(--ink); }

.archetype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.archetype { padding: 24px; border-radius: 30px; transition: transform .18s ease, background .18s ease; }
.archetype:hover { transform: translateY(-4px); background: var(--card-strong); }
.archetype span { color: var(--gold); font-weight: 950; }
.archetype h3 { color: var(--ink); }
.archetype p { margin: 8px 0; color: var(--muted); line-height: 1.45; }
.archetype b { color: var(--ink); }
.wide { grid-column: 2 / span 1; }

.module-list { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding:0; list-style:none; counter-reset: modules; }
.module-list li { position: relative; margin:0; padding: 18px 18px 18px 58px; border-radius: 20px; background: rgba(255,255,255,.08); color: var(--ink); font-weight: 800; }
.module-list li::before { counter-increment: modules; content: counter(modules); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 10px; display:grid; place-items:center; background: var(--gold); color:#170e1d; font-weight:950; }

.product-line { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-top:26px; }
.product-line span { padding: 13px 15px; border-radius:999px; background:rgba(255,255,255,.09); border:1px solid var(--line); font-weight:900; }

.safety-grid { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.safety-grid article { padding:24px; border-radius:28px; border:1px solid var(--line); background:rgba(255,255,255,.07); }
.do h3 { color: var(--green); } .dont h3 { color: var(--rose); }
.privacy-callout { margin-top: 18px; display:flex; gap:14px; align-items:flex-start; padding:20px; border-radius:24px; background: rgba(255,199,95,.12); border:1px solid rgba(255,199,95,.28); color: var(--muted); }
.privacy-callout strong { color: var(--gold); min-width: fit-content; }

.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.steps article { padding:24px; border-radius:28px; background:rgba(255,255,255,.08); border:1px solid var(--line); }
.steps span { display:grid; place-items:center; width:42px; height:42px; border-radius:14px; background:linear-gradient(135deg,var(--rose),var(--gold)); color:#180d1f; font-weight:950; }
.steps p { color:var(--muted); line-height:1.5; }
.footer { position:relative; z-index:1; text-align:center; color:var(--muted); padding: 34px 20px 54px; }
.footer p { margin: 6px 0; }

@media (max-width: 980px) {
  .hero, .split { grid-template-columns: 1fr; }
  .map-grid, .archetype-grid, .steps, .why { grid-template-columns: repeat(2, 1fr); }
  .loop-flow { grid-template-columns: 1fr; }
  .loop-types, .safety-grid { grid-template-columns:1fr; }
  .wide { grid-column:auto; }
  h1 { font-size: clamp(3.2rem, 13vw, 6rem); }
}
@media (max-width: 680px) {
  .topbar { position: relative; top: auto; flex-direction: column; align-items: flex-start; }
  nav { justify-content:flex-start; }
  .section { padding: 42px 0; }
  .hero-copy, .big-idea, .loop-section, .modules, .business, .safety, .next-steps { border-radius: 28px; padding: 24px; }
  .map-grid, .archetype-grid, .steps, .columns, .module-list { grid-template-columns: 1fr; }
  .value-orbit { min-height: 650px; }
  .orbit-item { position: static; margin: 5px; }
  .value-orbit { display:flex; flex-direction:column; justify-content:center; gap:8px; }
  .orbit-center { width: 240px; }
  .privacy-callout { flex-direction:column; }
}
