:root {
  color-scheme: dark;
  --field: #101016;
  --field-deep: #08080d;
  --surface: rgba(25, 25, 35, 0.78);
  --surface-solid: #191923;
  --silver: #e8e9ee;
  --muted: #a7a7b3;
  --dim: #72727f;
  --gold: #f2a42d;
  --pink: #f0289a;
  --violet: #7138e7;
  --green: #38b05e;
  --cyan: #21c9e9;
  --red: #d63b42;
  --line: rgba(232, 233, 238, 0.12);
  --line-strong: rgba(232, 233, 238, 0.22);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --max: 1240px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* Grounded guide preview */
.guide-section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.guide-shell {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(232, 233, 238, 0.13);
  border-radius: 1.5rem;
  background: rgba(232, 233, 238, 0.12);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.28);
}

.guide-intro,
.guide-answer {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(16, 16, 22, 0.96);
}

.guide-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--silver);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-status i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--aurora);
  box-shadow: 0 0 1rem rgba(56, 176, 94, 0.8);
}

.guide-intro h3 {
  margin: 1.2rem 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.guide-intro > p,
.guide-answer p {
  color: var(--muted);
  line-height: 1.75;
}

.guide-prompts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.guide-prompts button {
  border: 1px solid rgba(232, 233, 238, 0.13);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  color: var(--silver);
  background: rgba(232, 233, 238, 0.035);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.guide-prompts button:hover,
.guide-prompts button:focus-visible,
.guide-prompts button[aria-pressed="true"] {
  border-color: rgba(33, 201, 233, 0.55);
  background: rgba(33, 201, 233, 0.09);
  transform: translateX(0.25rem);
}

.guide-answer {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(113, 56, 231, 0.2), transparent 42%),
    radial-gradient(circle at 15% 85%, rgba(33, 201, 233, 0.12), transparent 38%),
    #12121a;
}

.guide-answer > span,
.guide-answer small {
  color: rgba(232, 233, 238, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-answer p {
  margin: 1.4rem 0 2rem;
  color: var(--silver);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

@media (max-width: 760px) {
  .guide-shell {
    grid-template-columns: 1fr;
  }

  .guide-answer {
    min-height: 16rem;
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--field-deep);
  color: var(--silver);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
button, select, a { font: inherit; }
a { color: inherit; }
button, select { color: inherit; }
button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--field);
  background: var(--silver);
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 47% 3%, rgba(113, 56, 231, 0.12), transparent 32%),
    linear-gradient(180deg, #11111a 0%, #09090e 100%);
}
.aurora {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  animation: ambient-drift 18s var(--ease) infinite alternate;
}
.aurora-one { left: -42vw; top: 20vh; background: var(--pink); }
.aurora-two { right: -48vw; top: 95vh; background: var(--cyan); animation-delay: -8s; }
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
}
@keyframes ambient-drift {
  to { transform: translate3d(10vw, 8vh, 0) scale(1.16); }
}

.prototype-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 16px;
  border-bottom: 1px solid rgba(242, 164, 45, 0.22);
  color: #d2c3aa;
  background: rgba(242, 164, 45, 0.055);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(242, 164, 45, 0.8);
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(20px);
}
.brand-link { display: flex; width: 210px; text-decoration: none; }
.brand-link img { display: block; width: 100%; height: auto; }
.primary-navigation {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}
.primary-navigation a {
  position: relative;
  padding: 8px 0;
  color: #bebec8;
  font-size: 13px;
  text-decoration: none;
}
.primary-navigation a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transition: right 180ms ease;
}
.primary-navigation a:hover { color: var(--silver); }
.primary-navigation a:hover::after { right: 0; }
.performance-control {
  display: grid;
  gap: 3px;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.performance-control select {
  min-width: 138px;
  padding: 7px 28px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d7d7df;
  background: #16161f;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.menu-button { display: none; }

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.hero {
  display: grid;
  overflow: clip;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  min-height: calc(100svh - 114px);
  padding-block: 88px 110px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .trust-intro h2, .pricing-heading h2, .closing-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.hero h1 { max-width: 680px; font-size: clamp(52px, 6.1vw, 88px); }
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, #d7d7de 35%, #9e9eaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: #b9b9c3;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  border-color: rgba(242, 164, 45, 0.7);
  color: #111117;
  background: linear-gradient(135deg, #ffc260, var(--gold));
  box-shadow: 0 14px 34px rgba(242, 164, 45, 0.17);
}
.button.secondary { background: rgba(255, 255, 255, 0.035); }
.button.secondary:hover { border-color: rgba(232, 233, 238, 0.38); background: rgba(255, 255, 255, 0.06); }
.availability-note { margin: 18px 0 0; color: var(--dim); font-size: 12px; }

.hero-visual { position: relative; min-height: 610px; perspective: 1200px; }
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(113, 56, 231, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
  pointer-events: none;
}
.orbit-one { width: 690px; height: 400px; }
.orbit-two { width: 530px; height: 660px; border-color: rgba(33, 201, 233, 0.14); transform: translate(-50%, -50%) rotate(32deg); }
.workspace-card {
  border: 1px solid rgba(232, 233, 238, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(34, 34, 47, 0.94), rgba(16, 16, 23, 0.97));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,0.05);
}
.workspace-main {
  position: absolute;
  left: 3%;
  top: 7%;
  width: 91%;
  min-height: 510px;
  padding: 28px;
  transform: rotateY(-5deg) rotateX(2deg);
}
.workspace-main::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at 88% 6%, rgba(113, 56, 231, 0.16), transparent 35%);
}
.card-topline, .workspace-greeting, .signal { position: relative; }
.card-topline { display: flex; justify-content: space-between; color: var(--dim); font-size: 11px; }
.save-state { color: #a5dcb6; }
.save-state i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(56,176,94,.8); }
.workspace-greeting { margin-top: 52px; }
.workspace-greeting p { margin: 0 0 8px; color: #a8a8b4; font-size: 13px; }
.workspace-greeting h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(26px, 3vw, 38px); font-weight: 400; }
.signal-grid { display: grid; gap: 12px; margin-top: 34px; }
.signal {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.028);
}
.signal-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--gold); background: rgba(242,164,45,.1); }
.signal-project .signal-icon { color: var(--pink); background: rgba(240,40,154,.1); }
.signal-recipe .signal-icon { color: var(--cyan); background: rgba(33,201,233,.1); }
.signal strong, .signal small { display: block; }
.signal strong { font-size: 14px; }
.signal small { margin-top: 3px; color: var(--dim); font-size: 11px; }
.signal b { color: var(--dim); font-weight: 400; }
.float-card {
  position: absolute;
  z-index: 3;
  padding: 17px 18px;
  border: 1px solid rgba(232,233,238,.16);
  border-radius: 16px;
  background: rgba(18,18,26,.88);
  box-shadow: 0 18px 50px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}
.float-cost { right: -4%; top: 3%; width: 190px; }
.float-cost span, .float-cost strong, .float-cost small { display: block; }
.float-cost span { color: var(--dim); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.float-cost strong { margin: 7px 0; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.float-cost small { color: #9ed8b0; font-size: 10px; }
.trend-line { display: inline-block; width: 22px; height: 7px; margin-right: 5px; border-top: 1px solid var(--green); transform: skewY(-18deg); }
.float-preserve { left: -2%; bottom: 0; display: flex; align-items: center; gap: 12px; width: 230px; }
.float-preserve strong, .float-preserve small { display: block; }
.float-preserve strong { font-size: 12px; }
.float-preserve small { margin-top: 2px; color: var(--dim); font-size: 10px; }
.mini-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--cyan); background: rgba(33,201,233,.08); box-shadow: inset 0 0 18px rgba(33,201,233,.08); }

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 62px);
  min-height: 76px;
  padding: 18px 28px;
  border-block: 1px solid var(--line);
  color: #9696a3;
  background: rgba(255,255,255,.018);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-strip p { margin: 0; }
.proof-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.pain-section { padding-block: 140px; }
.section-heading { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.65fr); gap: 60px; align-items: end; margin-bottom: 64px; }
.section-heading.narrow { display: block; max-width: 800px; }
.section-heading h2, .trust-intro h2, .pricing-heading h2, .closing-section h2 { font-size: clamp(40px, 5vw, 66px); }
.section-heading > p:last-child, .section-heading.narrow > p:last-child { margin: 0; color: #a9a9b4; font-size: 16px; line-height: 1.75; }
.section-heading.narrow > p:last-child { max-width: 720px; margin-top: 28px; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.journey-grid article { position: relative; min-height: 390px; padding: 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); transition: background 220ms ease, transform 220ms ease; }
.journey-grid article:last-child { border-right: 0; }
.journey-grid article:hover { background: rgba(255,255,255,.032); }
.journey-number { color: var(--dim); font-family: Georgia, serif; font-size: 13px; }
.journey-icon { position: relative; width: 64px; height: 64px; margin: 48px 0 30px; border: 1px solid var(--line-strong); border-radius: 50%; }
.journey-icon::before, .journey-icon::after { position: absolute; content: ""; }
.capture-icon::before { inset: 17px; border: 1px solid var(--pink); border-radius: 4px; }
.capture-icon::after { width: 7px; height: 7px; left: 28px; top: 28px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 14px var(--pink); }
.understand-icon::before { width: 28px; height: 20px; left: 17px; top: 20px; border-left: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: skewY(-23deg); }
.understand-icon::after { width: 5px; height: 5px; right: 14px; top: 15px; border-radius: 50%; background: var(--gold); }
.act-icon::before { inset: 16px; border: 1px solid var(--green); transform: rotate(45deg); }
.act-icon::after { inset: 25px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px rgba(56,176,94,.8); }
.carry-icon::before { inset: 15px; border: 1px solid var(--cyan); border-radius: 50%; }
.carry-icon::after { width: 22px; height: 10px; left: 20px; top: 24px; border-left: 1px solid var(--cyan); border-bottom: 1px solid var(--cyan); transform: rotate(-45deg); }
.journey-grid h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.journey-grid p { margin: 0 0 24px; color: #9696a2; font-size: 13px; line-height: 1.7; }
.truth-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #aaaab5;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.truth-tag::before { width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; content: ""; background: var(--dim); }
.truth-tag.roadmap::before, .truth-tag.planned::before { background: var(--gold); }
.truth-tag.build::before { background: var(--green); }

.workspace-section { position: relative; padding-block: 140px; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(113,56,231,.045), rgba(33,201,233,.025)); }
.workspace-section::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 100% 35%, rgba(33,201,233,.08), transparent 35%); }
.workspace-demo { position: relative; border: 1px solid var(--line-strong); border-radius: 28px; overflow: hidden; background: rgba(13,13,19,.78); box-shadow: var(--shadow); }
.workspace-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.workspace-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #868692;
  background: rgba(255,255,255,.018);
  cursor: pointer;
}
.workspace-tabs button:last-child { border-right: 0; }
.workspace-tabs button[aria-selected="true"] { color: var(--silver); background: rgba(255,255,255,.045); box-shadow: inset 0 -2px var(--gold); }
.tab-mark { width: 7px; height: 7px; border-radius: 50%; }
.tab-mark.costs { background: var(--gold); }
.tab-mark.projects { background: var(--pink); }
.tab-mark.recipes { background: var(--cyan); }
.tab-mark.preservation { background: var(--green); }
.demo-stage { min-height: 590px; }
.demo-panel { display: none; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; min-height: 590px; padding: clamp(38px, 6vw, 78px); }
.demo-panel.active { display: grid; animation: panel-enter 420ms var(--ease) both; }
@keyframes panel-enter { from { opacity: 0; transform: translateY(10px); } }
.panel-kicker { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; }
.panel-copy h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 52px); font-weight: 400; line-height: 1.05; }
.panel-copy > p:not(.panel-kicker) { margin: 24px 0; color: #a1a1ad; font-size: 14px; line-height: 1.75; }
.panel-copy ul { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.panel-copy li { display: flex; gap: 10px; color: #c5c5ce; font-size: 12px; }
.panel-copy li i { flex: 0 0 auto; width: 5px; height: 5px; margin-top: 7px; border-radius: 50%; background: var(--gold); }
.panel-visual { position: relative; min-height: 380px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(35,35,48,.8), rgba(17,17,24,.95)); box-shadow: 0 20px 60px rgba(0,0,0,.32); overflow: hidden; }
.visual-label { margin-bottom: 22px; color: var(--dim); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.cost-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: center; gap: 14px; min-height: 70px; border-bottom: 1px solid var(--line); color: #bdbdc7; font-size: 11px; }
.cost-row.heading { min-height: 34px; color: var(--dim); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.cost-row strong { color: var(--silver); font-size: 12px; }
.cost-row small, .cost-row b { display: block; margin-top: 3px; font-size: 9px; font-weight: 500; }
.cost-row small { color: var(--dim); }
.cost-row b.up { color: #ef9098; }
.cost-row b.down { color: #91d6a5; }
.cost-row b.steady { color: #bbb; }
.source-line { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: var(--dim); font-size: 9px; }
.source-line span:first-child { color: var(--gold); }
.project-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 20px; }
.project-head small, .recipe-title small { display: block; color: var(--dim); font-size: 8px; letter-spacing: .1em; }
.project-head strong, .recipe-title strong { display: block; margin-top: 5px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.project-head > span { padding: 6px 10px; border: 1px solid rgba(240,40,154,.3); border-radius: 99px; color: #ee91cb; font-size: 9px; }
.progress-track { height: 3px; margin: 0 0 28px; border-radius: 4px; background: rgba(255,255,255,.08); }
.progress-track i { display: block; width: 66%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--violet)); }
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.project-grid article { min-height: 115px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.project-grid small, .project-grid strong, .project-grid span { display: block; }
.project-grid small { color: var(--dim); font-size: 8px; letter-spacing: .08em; }
.project-grid strong { margin: 12px 0 3px; font-size: 15px; }
.project-grid span { color: #8f8f9a; font-size: 10px; }
.recipe-title { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 8px 0 24px; border-bottom: 1px solid var(--line); }
.lock-symbol { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(33,201,233,.25); border-radius: 50%; color: var(--cyan); }
.recipe-title b { color: var(--dim); font-size: 10px; }
.recipe-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 26px; }
.recipe-metrics div { padding: 16px; border: 1px solid var(--line); border-radius: 13px; }
.recipe-metrics small, .recipe-metrics strong { display: block; }
.recipe-metrics small { color: var(--dim); font-size: 9px; }
.recipe-metrics strong { margin-top: 8px; font-size: 13px; }
.recipe-note { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 15px; border: 1px solid rgba(242,164,45,.2); border-radius: 12px; color: #c9ae84; background: rgba(242,164,45,.04); font-size: 10px; }
.recipe-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(242,164,45,.7); }
.history-status { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(56,176,94,.2); border-radius: 14px; background: rgba(56,176,94,.04); }
.history-check { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #a8e0b9; background: rgba(56,176,94,.12); }
.history-status strong, .history-status small { display: block; }
.history-status strong { font-size: 12px; }
.history-status small { margin-top: 3px; color: #7d9e86; font-size: 9px; }
.history-visual ol { margin: 26px 0 0; padding: 0; list-style: none; }
.history-visual li { display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 12px; min-height: 68px; border-bottom: 1px solid var(--line); }
.history-visual li > i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.history-visual li strong, .history-visual li small { display: block; }
.history-visual li strong { font-size: 11px; }
.history-visual li small { margin-top: 3px; color: var(--dim); font-size: 9px; }
.history-visual button { padding: 5px 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--dim); background: transparent; font-size: 8px; }

.trust-section { padding-block: 140px; }
.trust-intro { max-width: 920px; margin-bottom: 70px; }
.trust-intro h2 span { color: #a7a7b2; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.trust-feature { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.trust-feature-large { grid-column: span 2; display: grid; grid-template-columns: 230px 1fr; align-items: center; gap: 28px; }
.trust-index { color: var(--gold); font-family: Georgia, serif; font-size: 12px; }
.trust-feature h3 { margin: 36px 0 12px; font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.trust-feature p { margin: 0; color: #9898a4; font-size: 13px; line-height: 1.75; }
.trust-feature-large h3 { margin-top: 18px; }
.trust-orbit { position: relative; display: grid; place-items: center; width: 180px; height: 180px; margin: auto; border: 1px solid rgba(33,201,233,.24); border-radius: 50%; }
.trust-orbit::before, .trust-orbit::after { position: absolute; border: 1px solid rgba(113,56,231,.22); border-radius: 50%; content: ""; }
.trust-orbit::before { width: 125px; height: 125px; }
.trust-orbit::after { width: 74px; height: 74px; border-color: rgba(242,164,45,.32); box-shadow: inset 0 0 24px rgba(242,164,45,.07); }
.trust-orbit span { position: relative; z-index: 2; color: var(--silver); font-size: 10px; letter-spacing: .12em; }

.pricing-section { padding-block: 140px; border-block: 1px solid var(--line); background: rgba(255,255,255,.014); }
.pricing-heading > p { max-width: 480px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; align-items: stretch; }
.pricing-grid article { position: relative; min-height: 420px; padding: 28px 24px; border: 1px solid var(--line); border-radius: 18px; background: #12121a; overflow: hidden; }
.pricing-grid article.featured { border-color: rgba(242,164,45,.4); transform: translateY(-12px); }
.tier-glow { position: absolute; z-index: 0; width: 180px; height: 180px; right: -70px; top: -90px; border-radius: 50%; background: var(--gold); filter: blur(75px); opacity: .16; }
.pricing-grid article > *:not(.tier-glow) { position: relative; }
.pricing-grid p { margin: 0; color: #b8b8c2; font-size: 13px; }
.pricing-grid h3 { margin: 24px 0 2px; font-family: Georgia, serif; font-size: 42px; font-weight: 400; }
.pricing-grid h3 em { color: var(--dim); font-family: inherit; font-size: 13px; font-style: normal; }
.pricing-grid article > small { color: var(--dim); font-size: 10px; }
.pricing-grid ul { display: grid; gap: 12px; margin: 34px 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.pricing-grid li { color: #a5a5b0; font-size: 11px; }
.pricing-grid li::before { margin-right: 8px; color: var(--gold); content: "·"; }
.pricing-footnote { margin: 34px 0 0; text-align: center; color: #b9a27f; font-family: Georgia, serif; font-size: 15px; font-style: italic; }

.founder-section { display: grid; grid-template-columns: .58fr 1.42fr; align-items: center; gap: clamp(60px,9vw,140px); padding-block: 160px; }
.founder-mark-image { display: block; width: min(300px, 100%); height: auto; margin: auto; filter: drop-shadow(0 0 34px rgba(113,56,231,.16)); }
.founder-copy blockquote { max-width: 780px; margin: 0 0 34px; font-family: Georgia, serif; font-size: clamp(42px,5vw,72px); line-height: 1.04; letter-spacing: -.04em; }
.founder-copy > p:not(.eyebrow) { max-width: 700px; margin: 0 0 18px; color: #a5a5b0; line-height: 1.8; }

.closing-section { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 650px; padding: 100px 20px; border-top: 1px solid var(--line); text-align: center; overflow: hidden; }
.closing-section > * { position: relative; }
.closing-section img { margin-bottom: 26px; }
.closing-mark { width: min(132px, 34vw); height: auto; filter: drop-shadow(0 0 28px rgba(33,201,233,.14)); }
.closing-section h2 { max-width: 900px; }
.closing-section > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 30px; color: #9898a4; }
.closing-glow { position: absolute; width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(113,56,231,.17), rgba(33,201,233,.06) 45%, transparent 70%); filter: blur(24px); }
.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; min-height: 120px; padding: 30px clamp(20px,4vw,64px); border-top: 1px solid var(--line); color: var(--dim); font-size: 11px; }
.site-footer img { width: 160px; height: auto; }
.site-footer p { margin: 0; }
.footer-status { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }

.reveal-ready .journey-grid article,
.reveal-ready .trust-feature,
.reveal-ready .pricing-grid article,
.reveal-ready .section-heading,
.reveal-ready .founder-copy {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-ready .revealed { opacity: 1; transform: translateY(0); }

body[data-performance="efficient"] .ambient-field .aurora,
body[data-performance="efficient"] .orbit,
body[data-performance="efficient"] .grain,
body[data-performance="accessibility"] .ambient-field .aurora,
body[data-performance="accessibility"] .orbit,
body[data-performance="accessibility"] .grain { display: none; }
body[data-performance="efficient"] *,
body[data-performance="accessibility"] * { backdrop-filter: none !important; box-shadow: none !important; }
body[data-performance="balanced"] .aurora { opacity: .08; filter: blur(120px); }
body[data-performance="accessibility"] { --muted: #c6c6ce; --dim: #a5a5af; --line: rgba(232,233,238,.24); --line-strong: rgba(232,233,238,.42); }
body[data-performance="accessibility"] .truth-tag,
body[data-performance="accessibility"] .eyebrow,
body[data-performance="accessibility"] .prototype-ribbon { letter-spacing: .08em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .aurora { display: none; }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .primary-navigation {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #14141c;
    box-shadow: var(--shadow);
  }
  .primary-navigation.open { display: flex; }
  .primary-navigation a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .primary-navigation a:last-child { border-bottom: 0; }
  .menu-button {
    display: grid;
    grid-column: 2;
    place-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
  }
  .menu-button span:not(.visually-hidden) { display: block; width: 17px; height: 1px; background: var(--silver); }
  .performance-control { justify-self: end; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(720px,100%); margin: 0 auto; }
  .journey-grid { grid-template-columns: repeat(2,1fr); }
  .journey-grid article:nth-child(2) { border-right: 0; }
  .journey-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid article.featured { transform: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-feature-large { grid-column: span 2; }
}

@media (max-width: 760px) {
  .prototype-ribbon { font-size: 9px; text-align: center; }
  .site-header { min-height: 68px; gap: 10px; padding: 10px 16px; }
  .brand-link { width: 145px; }
  .performance-control span { display: none; }
  .performance-control select { min-width: 0; max-width: 125px; }
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; padding-block: 80px 90px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-lede { font-size: 16px; }
  .hero-visual { min-height: 530px; margin-top: 20px; }
  .workspace-main { left: 0; width: 100%; min-height: 470px; padding: 20px; transform: none; }
  .float-cost { right: -5px; top: -30px; }
  .float-preserve { left: -4px; bottom: -18px; }
  .orbit { display: none; }
  .proof-strip { justify-content: flex-start; overflow-x: auto; }
  .proof-strip p { flex: 0 0 auto; }
  .pain-section, .workspace-section, .trust-section, .pricing-section { padding-block: 100px; }
  .section-heading { display: block; }
  .section-heading > p:last-child { margin-top: 24px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .journey-grid article:last-child { border-bottom: 0; }
  .workspace-tabs { display: flex; overflow-x: auto; }
  .workspace-tabs button { flex: 0 0 125px; }
  .demo-panel { grid-template-columns: 1fr; gap: 40px; padding: 28px 20px 32px; }
  .panel-visual { min-height: 340px; padding: 18px; }
  .cost-row { grid-template-columns: 1.1fr 1fr; }
  .cost-row > *:nth-child(2) { display: none; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .recipe-metrics { grid-template-columns: 1fr; }
  .trust-grid, .pricing-grid { grid-template-columns: 1fr; }
  .trust-feature-large { grid-column: auto; grid-template-columns: 1fr; }
  .trust-orbit { width: 150px; height: 150px; }
  .founder-section { grid-template-columns: 1fr; padding-block: 110px; }
  .founder-mark-image { width: min(230px, 64vw); }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-status { justify-content: center; }
}

@media (max-width: 430px) {
  .performance-control select { width: 104px; font-size: 10px; }
  .hero-actions .button { width: 100%; }
  .float-cost { width: 155px; padding: 13px; }
  .float-preserve { width: 205px; }
  .signal { grid-template-columns: 38px 1fr; }
  .signal b { display: none; }
  .project-grid { grid-template-columns: 1fr; }
}

/* Persistent Layer 0: OVARANT Living Canvas */
body { position: relative; isolation: isolate; }
.prototype-ribbon, .site-header, main, .site-footer { position: relative; z-index: 1; }

.living-canvas {
  --signal-x: 50%;
  --signal-y: 42%;
  --focus-x: 50%;
  --focus-y: 50%;
  --scroll-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  contain: strict;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 0%, rgba(113, 56, 231, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 16, 22, 0.2), rgba(8, 8, 13, 0.88));
}

.canvas-glow {
  position: absolute;
  left: var(--signal-x);
  top: var(--signal-y);
  width: min(72rem, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(110px);
  opacity: 0.14;
  transition: left 900ms var(--ease), top 900ms var(--ease), opacity 500ms ease;
  animation: canvas-breathe 16s ease-in-out infinite;
}

.canvas-glow-primary { background: radial-gradient(circle, rgba(240, 40, 154, 0.55), rgba(113, 56, 231, 0.2) 48%, transparent 72%); }
.canvas-glow-secondary {
  left: calc(100% - var(--signal-x));
  top: calc(100% - var(--signal-y));
  width: min(54rem, 72vw);
  background: radial-gradient(circle, rgba(33, 201, 233, 0.45), rgba(56, 176, 94, 0.16) 50%, transparent 74%);
  animation-delay: -8s;
}

.canvas-mark {
  position: absolute;
  right: -10vw;
  top: 20vh;
  width: min(48rem, 62vw);
  height: auto;
  opacity: 0.045;
  filter: saturate(0.9);
  animation: canvas-heartbeat 18s ease-in-out infinite;
}

.canvas-thread {
  position: absolute;
  right: clamp(0.7rem, 2vw, 2rem);
  top: 12vh;
  width: 1px;
  height: 76vh;
  transform: scaleY(max(0.04, var(--scroll-progress)));
  transform-origin: top;
  background: linear-gradient(var(--gold), var(--pink), var(--cyan));
  box-shadow: 0 0 14px rgba(33, 201, 233, 0.28);
  opacity: 0.5;
  transition: transform 260ms ease-out;
}

.canvas-focus {
  position: absolute;
  left: var(--focus-x);
  top: var(--focus-y);
  width: 12rem;
  aspect-ratio: 1;
  border: 1px solid rgba(33, 201, 233, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: left 500ms var(--ease), top 500ms var(--ease), transform 400ms ease, opacity 400ms ease;
}

.living-canvas[data-focus="active"] .canvas-focus { transform: translate(-50%, -50%) scale(1); opacity: 0.42; }
.canvas-grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

body[data-canvas-mode="full"] .living-canvas { opacity: 1; }
body[data-canvas-mode="calm"] .living-canvas { opacity: 0.72; }
body[data-canvas-mode="calm"] .canvas-glow { opacity: 0.09; animation-duration: 28s; }
body[data-canvas-mode="calm"] .canvas-mark { opacity: 0.04; animation-duration: 30s; }
body[data-canvas-mode="calm"] .canvas-focus { display: none; }
body[data-canvas-mode="off"] .living-canvas { display: none; }
.living-canvas[data-quality="lean"] .canvas-glow-secondary,
.living-canvas[data-quality="lean"] .canvas-grain { display: none; }
.living-canvas[data-quality="lean"] .canvas-mark { right: -28vw; width: 92vw; opacity: 0.04; }
.living-canvas[data-activity="resting"] { opacity: 0.55; }

@keyframes canvas-breathe { 0%, 100% { scale: 0.94; } 50% { scale: 1.04; } }
@keyframes canvas-heartbeat { 0%, 100% { opacity: 0.035; transform: scale(0.99); } 50% { opacity: 0.055; transform: scale(1.01); } }

.site-footer a, .legal-copy a, .support-grid a { color: var(--cyan); text-underline-offset: 0.2em; }
.noscript-guide { display: grid; gap: 0.7rem; margin-top: 1.2rem; padding: 1rem; border: 1px solid var(--line); border-radius: 0.8rem; color: var(--muted); }
body:not(.js-enabled) .workspace-tabs,
body:not(.js-enabled) .menu-button { display: none !important; }
body:not(.js-enabled) .demo-panel { display: grid !important; margin-top: 1rem; }

.legal-main { width: min(calc(100% - 40px), 920px); margin: 0 auto; padding: clamp(7rem, 13vw, 11rem) 0 clamp(5rem, 9vw, 8rem); }
.legal-hero { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 0.5rem 0 0.8rem; font-size: clamp(3rem, 8vw, 6.2rem); line-height: 0.96; letter-spacing: -0.055em; }
.legal-hero > p:last-of-type { color: var(--muted); }
.legal-notice { margin-top: 1.5rem; padding: 1rem 1.1rem; border: 1px solid rgba(242, 164, 45, 0.32); border-radius: 0.8rem; color: #f6d69f; background: rgba(242, 164, 45, 0.08); }
.legal-copy { display: grid; gap: 1rem; }
.legal-copy section, .support-grid section { padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 1rem; background: rgba(18, 18, 26, 0.84); box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.14); }
.legal-copy h2, .support-grid h2 { margin: 0 0 0.65rem; font-size: clamp(1.05rem, 2.4vw, 1.35rem); }
.legal-copy p, .support-grid p, .support-grid address { margin: 0; color: var(--muted); line-height: 1.75; font-style: normal; }
.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.support-grid .support-primary { grid-column: 1 / -1; padding: clamp(1.8rem, 5vw, 3.5rem); background: radial-gradient(circle at 90% 10%, rgba(113, 56, 231, 0.2), transparent 45%), rgba(18, 18, 26, 0.9); }
.support-primary h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 5vw, 3.2rem); }
.support-primary .button { margin-top: 1.5rem; }

@media (max-width: 1100px) {
  body:not(.js-enabled) .primary-navigation { position: static; display: flex; flex-wrap: wrap; flex-direction: row; padding: 0; border: 0; background: transparent; box-shadow: none; }
}

@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
  .legal-main { width: min(calc(100% - 28px), 920px); }
}

@media (prefers-reduced-motion: reduce) {
  .living-canvas .canvas-glow,
  .living-canvas .canvas-mark { display: block; animation-name: canvas-low-motion-life; animation-duration: 28s !important; animation-iteration-count: infinite !important; }
  .living-canvas .canvas-glow { transform: translate(-50%, -50%); }
  .living-canvas .canvas-focus { display: none; }
}

@keyframes canvas-low-motion-life { 0%, 100% { opacity: 0.035; } 50% { opacity: 0.055; } }
