:root {
  color-scheme: light;
  --bg: #f7f4f9;
  --bg-2: #eee8f4;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-strong: #fbf9fc;
  --ink: #171022;
  --ink-soft: #5f5668;
  --muted: #8a8292;
  --line: rgba(42, 25, 61, 0.12);
  --line-strong: rgba(42, 25, 61, 0.2);
  --purple: #6e3cb5;
  --purple-dark: #3b1d70;
  --purple-deep: #120a2b;
  --violet: #9967ef;
  --lilac: #e9dcfb;
  --cream: #f8f0cf;
  --lime: #c9ed70;
  --coral: #f37a86;
  --shadow-sm: 0 16px 45px rgba(39, 22, 59, 0.08);
  --shadow-lg: 0 34px 90px rgba(39, 22, 59, 0.16);
  --container: min(1380px, calc(100vw - 48px));
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0718;
  --bg-2: #130d24;
  --surface: #171125;
  --surface-soft: rgba(24, 17, 40, 0.74);
  --surface-strong: #1d1530;
  --ink: #fbf8ff;
  --ink-soft: #c1b8cb;
  --muted: #948ba0;
  --line: rgba(238, 226, 255, 0.12);
  --line-strong: rgba(238, 226, 255, 0.2);
  --purple: #9c6ded;
  --purple-dark: #c8a9ff;
  --purple-deep: #080415;
  --lilac: #2f214a;
  --cream: #ece0af;
  --shadow-sm: 0 16px 50px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 40px 110px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Onest, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  transition: background-color .35s ease, color .35s ease;
}
body.dialog-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
em { color: var(--purple); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { transform: none; }
.site-noise {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  transition: top .3s ease;
}
.site-header.scrolled { top: 8px; }
.nav-shell {
  width: min(1450px, 100%);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 12px 50px rgba(32, 17, 50, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}
html[data-theme="dark"] .nav-shell { box-shadow: 0 16px 45px rgba(0, 0, 0, .32); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand img { border-radius: 13px; box-shadow: 0 8px 22px rgba(80, 47, 138, .2); }
.brand span, .brand strong, .brand small { display: block; }
.brand strong { font-size: 17px; letter-spacing: -.02em; line-height: 1.15; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; margin: auto; }
.main-nav a { padding: 10px 14px; border-radius: 999px; color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none; transition: .2s ease; }
.main-nav a:hover { background: var(--lilac); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.text-link { color: var(--ink-soft); font-size: 14px; font-weight: 650; text-decoration: none; }
.text-link:hover { color: var(--purple); }
.theme-switch { display: inline-flex; align-items: center; gap: 8px; padding: 6px; border: 0; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: 12px; font-weight: 700; }
.theme-switch-track { width: 42px; height: 24px; position: relative; border-radius: 999px; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
.theme-switch-track i { position: absolute; top: 4px; left: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--purple); box-shadow: 0 3px 10px rgba(76, 36, 125, .25); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
html[data-theme="dark"] .theme-switch-track i { transform: translateX(18px); }
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button span { font-size: 18px; line-height: 1; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover > span:last-child { transform: translate(2px, -2px); }
.button-small { min-height: 46px; padding-inline: 17px; background: var(--ink); color: var(--bg); }
.button-primary { background: var(--purple); color: #fff; box-shadow: 0 16px 30px rgba(105, 58, 173, .24); }
.button-primary:hover { background: #7d48c7; box-shadow: 0 20px 42px rgba(105, 58, 173, .34); }
.button-ghost { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button-ghost:hover { border-color: var(--purple); background: var(--surface); }
.button-light { background: #fff; color: #1c112b; box-shadow: 0 18px 38px rgba(0, 0, 0, .15); }
.button-full { width: 100%; }

.hero {
  min-height: 940px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: clamp(40px, 5vw, 90px);
  width: var(--container);
  margin: 0 auto;
  padding: 155px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 8% -20% auto 28%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--lilac) 75%, transparent), transparent 68%);
  filter: blur(16px);
}
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-orb-one { width: 210px; height: 210px; top: 165px; left: -150px; background: linear-gradient(145deg, rgba(150, 90, 235, .22), rgba(247, 122, 134, .08)); }
.hero-orb-two { width: 100px; height: 100px; right: -40px; bottom: 130px; background: rgba(201, 237, 112, .2); }
.hero-copy { position: relative; z-index: 3; padding-left: clamp(0px, 2vw, 28px); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 1px; background: currentColor; }
.hero h1 { margin: 25px 0 27px; font-size: clamp(58px, 6.3vw, 104px); line-height: .92; letter-spacing: -.065em; font-weight: 660; }
.hero h1 em { display: inline-block; margin-left: clamp(0px, 3vw, 52px); white-space: nowrap; }
.hero-lead { max-width: 640px; margin: 0; color: var(--ink-soft); font-size: clamp(18px, 1.45vw, 23px); line-height: 1.55; letter-spacing: -.015em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-actions .button { min-height: 60px; padding-inline: 26px; border-radius: 18px; font-size: 15px; }
.play-dot { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--lilac); color: var(--purple); font-size: 9px !important; }
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 42px; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.hero-proof strong { color: var(--ink); font-size: 13px; }
.proof-avatars { display: flex; padding-left: 8px; }
.proof-avatars span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -8px; border: 3px solid var(--bg); border-radius: 50%; background: linear-gradient(145deg, #d9c4f4, #7542b7); color: #fff; font-size: 10px; font-weight: 800; }
.proof-avatars span:nth-child(2) { background: linear-gradient(145deg, #f7d7d9, #b55775); }
.proof-avatars span:nth-child(3) { background: linear-gradient(145deg, #e6efb7, #77973d); }
.proof-avatars span:last-child { background: var(--ink); }

.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1.12 / 1; border-radius: 48% 48% 30px 30px; background: var(--lilac); box-shadow: var(--shadow-lg); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(20, 9, 37, .22)); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.visual-glow { position: absolute; inset: 4% 4% auto auto; width: 40%; height: 38%; border-radius: 50%; background: rgba(255,255,255,.3); filter: blur(40px); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.5); border-radius: 16px; background: rgba(255,255,255,.78); color: #241633; box-shadow: 0 18px 45px rgba(44, 24, 67, .2); backdrop-filter: blur(14px); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #766a80; font-size: 10px; }
.floating-card strong { font-size: 12px; }
.floating-card b { margin-left: 18px; font-size: 18px; }
.floating-card-top { top: 12%; left: -7%; }
.floating-card-bottom { right: -4%; bottom: 11%; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #7bb937; box-shadow: 0 0 0 5px rgba(123,185,55,.15); }
.mini-chart { width: 50px; height: 29px; display: flex; align-items: flex-end; gap: 3px; }
.mini-chart i { flex: 1; border-radius: 3px; background: #8f5fc8; }
.mini-chart i:nth-child(1) { height: 32%; }.mini-chart i:nth-child(2) { height: 58%; }.mini-chart i:nth-child(3) { height: 46%; }.mini-chart i:nth-child(4) { height: 83%; }.mini-chart i:nth-child(5) { height: 68%; background: #badd68; }
.hero-stamp { position: absolute; z-index: 5; left: 4%; bottom: -45px; width: 142px; height: 142px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--purple-deep); color: #fff; box-shadow: 0 18px 50px rgba(23, 10, 45, .28); transform: rotate(-8deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; }
.hero-stamp strong { font-family: Georgia, serif; font-size: 43px; font-weight: 400; }
.hero-stamp span { font-size: 10px; line-height: 1.35; text-transform: uppercase; }
.scroll-cue { position: absolute; left: 8px; bottom: 50px; display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--line-strong); border-radius: 50%; font-style: normal; }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface-soft); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 19px 0; color: var(--ink-soft); font-size: 13px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; animation: ticker 34s linear infinite; }
.ticker-track i { color: var(--purple); font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { width: var(--container); margin: 0 auto; padding: clamp(90px, 10vw, 160px) 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .6fr); gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading.compact { display: block; }
.section-heading h2, .launch-intro h2, .faq-title h2, .principles-copy h2 { margin: 18px 0 0; font-size: clamp(45px, 5vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 620; }
.section-heading > p { max-width: 520px; margin: 0 0 7px; color: var(--ink-soft); font-size: 18px; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.product-card { position: relative; overflow: hidden; min-height: 690px; display: grid; grid-template-rows: 1fr auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.product-card-wide { min-height: 650px; grid-column: 1 / -1; grid-template-columns: minmax(360px, .75fr) minmax(0, 1.25fr); grid-template-rows: none; }
.product-copy { position: relative; z-index: 2; display: flex; flex-direction: column; padding: clamp(32px, 4vw, 58px); }
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: auto; }
.product-index { color: var(--muted); font-family: Georgia, serif; font-size: 15px; }
.product-badge { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 58px 0 18px; font-size: clamp(34px, 3vw, 51px); line-height: 1; letter-spacing: -.045em; font-weight: 620; }
.product-card p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: 16px; }
.feature-list { display: grid; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 13px; }
.feature-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 10px; border-radius: 50%; background: var(--lilac); color: var(--purple); font-size: 10px; font-weight: 900; }
.card-link { align-self: flex-start; margin-top: 28px; padding: 0 0 6px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--purple); cursor: pointer; font-weight: 800; }
.card-link span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.card-link:hover span { transform: translate(3px, -3px); }
.product-media { position: relative; overflow: hidden; min-height: 340px; background: var(--bg-2); }
.product-media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); pointer-events: none; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1); }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-card-wide .product-media { margin: 18px; border-radius: 30px; }
.product-card-wide .product-media img { object-position: center; }
.product-camera .product-media, .product-essay .product-media { margin: 18px 18px 0; border-radius: 30px; }
.product-builder .product-media { order: 2; margin: 0 18px 18px; border-radius: 30px; }
.product-builder .product-copy { order: 1; padding-bottom: 35px; }
.product-camera .product-copy, .product-essay .product-copy { min-height: 315px; padding-top: 32px; }
.product-camera h3, .product-essay h3 { margin-top: 36px; }
.media-chip, .live-chip { position: absolute; z-index: 2; padding: 9px 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(255,255,255,.82); color: #322342; box-shadow: 0 12px 25px rgba(25,11,41,.13); backdrop-filter: blur(12px); font-size: 10px; font-weight: 800; }
.media-chip-one { top: 23px; right: 22px; }.media-chip-two { bottom: 22px; left: 22px; }
.media-chip i, .live-chip i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #65b63a; }
.live-chip { top: 22px; left: 22px; }
.live-chip i { background: var(--coral); box-shadow: 0 0 0 4px rgba(243,122,134,.16); }

.ecosystem-section { width: 100%; padding-inline: max(24px, calc((100vw - 1380px) / 2)); background: var(--surface-strong); }
.ecosystem-shell { min-height: 720px; position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 40px; padding: clamp(45px, 6vw, 84px); border-radius: 46px; background: radial-gradient(circle at 75% 45%, #4e2785 0, #231142 34%, #110925 72%); color: #fff; box-shadow: var(--shadow-lg); }
.ecosystem-shell::before { content: ""; position: absolute; width: 540px; height: 540px; right: -120px; bottom: -240px; border-radius: 50%; background: rgba(162,102,239,.18); filter: blur(2px); }
.section-kicker-light { color: #d6baff; }
.ecosystem-copy { position: relative; z-index: 4; max-width: 540px; }
.ecosystem-copy h2 { margin: 20px 0 26px; font-size: clamp(47px, 5.2vw, 78px); line-height: .96; letter-spacing: -.06em; font-weight: 600; }
.ecosystem-copy h2 em { color: #c9a5ff; }
.ecosystem-copy p { max-width: 500px; margin: 0 0 34px; color: #bdb1ca; font-size: 18px; }
.orbit { position: relative; min-height: 590px; }
.orbit-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(212,183,255,.2); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-ring-one { width: 390px; height: 390px; }.orbit-ring-two { width: 570px; height: 570px; border-style: dashed; animation: orbit-spin 55s linear infinite; }
@keyframes orbit-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit-core { position: absolute; z-index: 3; left: 50%; top: 50%; width: 180px; height: 180px; display: grid; place-content: center; justify-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.08); box-shadow: 0 0 70px rgba(154,99,236,.35); backdrop-filter: blur(18px); transform: translate(-50%,-50%); }
.orbit-core img { width: 50px; height: 50px; margin-bottom: 8px; border-radius: 14px; }.orbit-core strong { font-size: 14px; }.orbit-core span { color: #9f91ad; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.orbit-node { position: absolute; z-index: 4; min-width: 140px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.17); border-radius: 17px; background: rgba(255,255,255,.08); box-shadow: 0 16px 40px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.orbit-node b, .orbit-node span { display: block; }.orbit-node b { font-size: 13px; }.orbit-node span { color: #a99db5; font-size: 10px; }
.orbit-node-one { left: 2%; top: 16%; }.orbit-node-two { right: 0; top: 20%; }.orbit-node-three { left: 5%; bottom: 16%; }.orbit-node-four { right: 4%; bottom: 15%; }
.value-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-block: 1px solid var(--line); }
.value-row > div { display: flex; align-items: center; gap: 22px; padding: 28px 24px; border-right: 1px solid var(--line); }
.value-row > div:last-child { border-right: 0; }.value-row strong { color: var(--purple); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }.value-row span { color: var(--ink-soft); font-size: 13px; line-height: 1.35; }

.role-section { padding-bottom: 80px; }
.role-explorer { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.role-tabs { display: grid; grid-template-columns: repeat(4, 1fr); padding: 9px; border-bottom: 1px solid var(--line); background: var(--surface-strong); }
.role-tab { padding: 15px 12px; border: 0; border-radius: 14px; background: transparent; color: var(--muted); cursor: pointer; font-weight: 750; transition: .2s ease; }
.role-tab.active { background: var(--ink); color: var(--bg); box-shadow: 0 8px 22px rgba(21, 12, 33, .15); }
.role-panel { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(40px, 7vw, 110px); align-items: center; min-height: 540px; padding: clamp(38px, 6vw, 82px); }
.role-label { color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.role-content h3 { margin: 18px 0 22px; font-size: clamp(38px, 4vw, 59px); line-height: 1.02; letter-spacing: -.05em; font-weight: 620; }
.role-content > p { max-width: 590px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.role-content ul { display: grid; gap: 11px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 14px; }
.role-content li::before { content: "↗"; margin-right: 11px; color: var(--purple); font-weight: 800; }
.role-dashboard { padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: #160c2d; color: #fff; box-shadow: 0 35px 80px rgba(44,24,67,.26); transform: rotate(1.5deg); }
.dash-top { display: flex; align-items: center; gap: 7px; color: #d8cbeb; font-size: 11px; }.dash-top span { margin-right: auto; }.dash-top i { width: 8px; height: 8px; border-radius: 50%; background: #55436c; }
.dash-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 28px 0; }
.dash-metrics div { padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.05); }.dash-metrics small, .dash-metrics strong, .dash-metrics span { display: block; }.dash-metrics small { color: #8f7ea4; font-size: 9px; }.dash-metrics strong { margin: 5px 0; font-size: 26px; }.dash-metrics span { color: #b9e55b; font-size: 9px; }
.dash-chart { height: 185px; display: flex; align-items: end; gap: 9px; padding: 23px 16px 0; border-radius: 18px; background: linear-gradient(180deg, rgba(155,103,239,.14), transparent); }
.dash-chart span { flex: 1; min-height: 20px; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #a976ed, #5c318d); box-shadow: 0 0 18px rgba(159,105,236,.16); }
.dash-chart span:last-child { background: linear-gradient(180deg, #d8ef7c, #7fa23d); }
.dash-foot { display: flex; justify-content: space-between; margin-top: 18px; color: #827390; font-size: 9px; }.dash-foot i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #b7da5b; }

.launch-section { padding-top: 100px; }
.launch-intro { max-width: 950px; margin-bottom: 55px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.step-card { min-height: 380px; position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); }
.step-card::after { content: ""; position: absolute; right: -60px; bottom: -90px; width: 190px; height: 190px; border-radius: 50%; background: var(--lilac); opacity: .7; }
.step-card > span { align-self: flex-start; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.step-number { margin: 45px 0 auto; color: var(--purple); font-family: Georgia, serif; font-size: 58px; line-height: 1; }
.step-card h3 { margin: 25px 0 9px; font-size: 25px; }.step-card p { position: relative; z-index: 2; margin: 0; color: var(--ink-soft); font-size: 14px; }
.step-card.featured { background: var(--purple); color: #fff; transform: translateY(-18px); box-shadow: 0 25px 65px rgba(104,58,174,.28); }.step-card.featured > span { border-color: rgba(255,255,255,.27); color: #e9d9ff; }.step-card.featured .step-number { color: #e9cfff; }.step-card.featured p { color: #eadff6; }.step-card.featured::after { background: rgba(255,255,255,.1); }

.principles-section { width: 100%; padding: 70px max(24px, calc((100vw - 1380px) / 2)); background: var(--surface-strong); }
.principles-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; padding: clamp(40px, 6vw, 82px); border: 1px solid var(--line); border-radius: 38px; background: var(--surface); }
.principles-copy p { max-width: 480px; color: var(--ink-soft); font-size: 17px; }.principles-list { display: grid; border-top: 1px solid var(--line); }
.principles-list > div { display: grid; grid-template-columns: 55px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }.principles-list > div > span { color: var(--purple); font-family: Georgia, serif; font-size: 18px; }.principles-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }.principles-list strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 16px; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); box-shadow: var(--shadow-sm); }
.package-label { color: var(--purple); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }.package-card h3 { margin: 28px 0 7px; font-size: 32px; letter-spacing: -.04em; }.package-card > p { margin: 0; color: var(--ink-soft); }.package-card ul { display: grid; gap: 10px; margin: 35px 0 42px; padding: 0; list-style: none; color: var(--ink-soft); font-size: 13px; }.package-card li::before { content: "✓"; margin-right: 9px; color: var(--purple); font-weight: 900; }.package-card .button { margin-top: auto; }
.package-card-accent { border: 2px solid var(--purple); box-shadow: 0 30px 75px rgba(105,58,174,.19); transform: translateY(-12px); }.popular { position: absolute; top: -13px; right: 24px; padding: 6px 11px; border-radius: 999px; background: var(--purple); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.faq-title { position: sticky; top: 130px; }.faq-title p { max-width: 390px; margin-top: 24px; color: var(--ink-soft); }.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }.faq-list summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--purple); font-size: 20px; font-weight: 400; transition: transform .25s ease, background .25s ease; }.faq-list details[open] summary span { background: var(--purple); color: #fff; transform: rotate(45deg); }.faq-list details p { max-width: 720px; margin: -4px 50px 28px 0; color: var(--ink-soft); font-size: 14px; }

.final-cta { padding-top: 40px; }
.cta-card { min-height: 610px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; border-radius: 46px; background: radial-gradient(circle at 78% 25%, #6a3aa5 0, #321761 32%, #120926 72%); color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }.cta-card::before { width: 560px; height: 560px; left: -180px; bottom: -260px; }.cta-card::after { width: 370px; height: 370px; right: -100px; top: -170px; }.cta-orb { position: absolute; width: 160px; height: 160px; left: 10%; top: 18%; border-radius: 50%; background: rgba(196,154,255,.15); filter: blur(2px); }
.cta-card h2 { position: relative; z-index: 2; max-width: 1020px; margin: 22px 0; font-size: clamp(48px, 6vw, 85px); line-height: .96; letter-spacing: -.058em; font-weight: 580; }.cta-card h2 em { color: #c9a5ff; }.cta-card > p { position: relative; z-index: 2; margin: 0 0 34px; color: #c2b5cf; font-size: 17px; }.cta-card > div:last-child { position: relative; z-index: 2; display: flex; align-items: center; gap: 28px; }.cta-card > div a { color: #d4c5e4; font-size: 13px; }

.footer { width: var(--container); margin: 0 auto; padding: 40px 0 24px; }.footer-top { min-height: 240px; display: grid; grid-template-columns: .65fr .7fr 1fr; gap: 60px; align-items: start; padding: 45px 0; border-bottom: 1px solid var(--line); }.footer-brand { align-self: start; }.footer-top > p { margin: 7px 0 0; color: var(--ink-soft); }.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }.footer-links div { display: grid; align-content: start; gap: 8px; }.footer-links strong { margin-bottom: 8px; font-size: 12px; }.footer-links a { color: var(--ink-soft); font-size: 12px; text-decoration: none; }.footer-links a:hover { color: var(--purple); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }.footer-bottom a { text-decoration: none; }

.lead-dialog { width: min(960px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 32px; background: var(--surface); color: var(--ink); box-shadow: 0 40px 130px rgba(9,3,20,.55); }.lead-dialog::backdrop { background: rgba(9,5,18,.64); backdrop-filter: blur(8px); }.dialog-shell { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 600px; }.dialog-close { position: absolute; z-index: 4; top: 18px; right: 18px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); cursor: pointer; font-size: 23px; }.dialog-copy { display: flex; flex-direction: column; padding: 58px 45px; border-radius: 32px 0 0 32px; background: radial-gradient(circle at 15% 80%, #56308a, #170b31 58%); color: #fff; }.dialog-copy h2 { margin: 21px 0; font-size: 40px; line-height: 1.02; letter-spacing: -.045em; }.dialog-copy > p { color: #bfb2ca; font-size: 14px; }.dialog-note { display: flex; align-items: center; gap: 12px; margin-top: auto; }.dialog-note > span { font-family: Georgia, serif; font-size: 52px; color: #cda9ff; }.dialog-note p { margin: 0; color: #bfb2ca; font-size: 11px; }.dialog-note strong { color: #fff; }.lead-form { display: grid; align-content: center; gap: 15px; padding: 58px 50px; }.lead-form label { display: grid; gap: 6px; color: var(--ink-soft); font-size: 11px; font-weight: 700; }.lead-form input, .lead-form select { width: 100%; height: 49px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: var(--surface-strong); color: var(--ink); transition: border .2s, box-shadow .2s; }.lead-form input:focus, .lead-form select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px color-mix(in srgb, var(--purple) 15%, transparent); }.lead-form .form-consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 9px; margin: 2px 0; font-weight: 500; }.form-consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--purple); }.form-status { min-height: 18px; margin: 0; color: var(--purple); font-size: 11px; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .8s cubic-bezier(.2,.75,.2,1); }.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .main-nav { gap: 0; }.main-nav a { padding-inline: 9px; }.theme-switch > span:last-child, .login-link { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 28px; min-height: 850px; }.hero h1 { font-size: clamp(54px, 6.5vw, 78px); }.hero-image-wrap { aspect-ratio: .95 / 1; }.hero-image-wrap img { object-position: 58% center; }
  .product-card-wide { grid-template-columns: .8fr 1.2fr; }.orbit { transform: scale(.88); }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 30px, 720px); }
  .site-header { top: 10px; padding: 0 12px; }.nav-shell { min-height: 64px; border-radius: 20px; }.main-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-lg); }.main-nav.open { display: grid; }.main-nav a { padding: 13px 15px; }.menu-toggle { order: 2; width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; margin-left: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }.menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: .2s; }.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }.menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }.nav-actions { order: 3; }.nav-actions .button-small { display: none; }.theme-switch > span:last-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 60px; padding: 135px 0 110px; }.hero-copy { padding-left: 0; }.hero h1 { font-size: clamp(58px, 11vw, 88px); }.hero-lead { max-width: 650px; }.hero-visual { width: min(100%, 680px); margin: 0 auto; }.hero-image-wrap { aspect-ratio: 1.15/1; }.hero-stamp { left: 4%; }.scroll-cue { display: none; }
  .section-heading, .faq-section { grid-template-columns: 1fr; gap: 25px; }.section-heading > p { font-size: 16px; }.product-grid { grid-template-columns: 1fr; }.product-card-wide { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }.product-card-wide .product-media { min-height: 420px; }.product-card { min-height: auto; }
  .ecosystem-shell { grid-template-columns: 1fr; }.orbit { min-height: 520px; }.value-row { grid-template-columns: repeat(2,1fr); }.value-row > div:nth-child(2) { border-right: 0; }.value-row > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .role-panel, .principles-card { grid-template-columns: 1fr; }.role-dashboard { width: min(100%, 560px); }.steps, .package-grid { grid-template-columns: 1fr; }.step-card { min-height: 310px; }.step-card.featured, .package-card-accent { transform: none; }.faq-title { position: static; }.footer-top { grid-template-columns: 1fr 1fr; }.footer-links { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 22px); --radius-lg: 28px; }
  .brand small { display: none; }.brand img { width: 38px; height: 38px; }.brand strong { font-size: 15px; }.nav-shell { gap: 10px; padding-left: 12px; }.theme-switch { padding: 4px; }.menu-toggle { margin-left: auto; }.nav-actions { gap: 5px; }
  .hero { padding-top: 120px; gap: 45px; }.eyebrow { font-size: 10px; }.hero h1 { margin-block: 20px; font-size: clamp(47px, 15vw, 68px); line-height: .93; }.hero h1 br { display: none; }.hero h1 em { display: block; margin: 6px 0 0; white-space: normal; }.hero-lead { font-size: 17px; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.hero-proof { align-items: flex-start; }.hero-image-wrap { aspect-ratio: .85/1; border-radius: 42% 42% 24px 24px; }.hero-image-wrap img { object-position: 62% center; }.floating-card-top { left: 4%; top: 7%; }.floating-card-bottom { right: 3%; bottom: 8%; }.floating-card b { display: none; }.hero-stamp { width: 112px; height: 112px; bottom: -35px; }.hero-stamp strong { font-size: 34px; }.hero-stamp span { font-size: 8px; }
  .ticker-track { gap: 20px; padding-block: 15px; font-size: 10px; }
  .section { padding-block: 90px; }.section-heading { margin-bottom: 36px; }.section-heading h2, .launch-intro h2, .faq-title h2, .principles-copy h2 { font-size: 43px; }.section-heading h2 br { display: none; }
  .product-grid { gap: 14px; }.product-copy { padding: 27px 24px; }.product-card h3 { margin-top: 42px; font-size: 36px; }.product-card-wide .product-media, .product-camera .product-media, .product-essay .product-media, .product-builder .product-media { margin: 10px; border-radius: 22px; min-height: 300px; }.product-camera .product-copy, .product-essay .product-copy { min-height: 290px; }.media-chip-two { display: none; }
  .ecosystem-section, .principles-section { padding-inline: 11px; }.ecosystem-shell { padding: 38px 23px; border-radius: 30px; }.ecosystem-copy h2 { font-size: 47px; }.ecosystem-copy p { font-size: 16px; }.orbit { min-height: 420px; transform: scale(.78); margin-inline: -40px; }.orbit-ring-one { width: 310px; height: 310px; }.orbit-ring-two { width: 440px; height: 440px; }.orbit-node { min-width: 120px; }.value-row { margin-top: 25px; }.value-row > div { gap: 12px; padding: 20px 10px; }.value-row strong { font-size: 20px; }.value-row span { font-size: 11px; }
  .role-tabs { grid-template-columns: repeat(2,1fr); }.role-panel { min-height: 0; padding: 34px 22px; }.role-content h3 { font-size: 38px; }.role-dashboard { padding: 17px; }.dash-chart { height: 140px; }
  .step-card, .package-card { padding: 27px; }.principles-card { gap: 40px; padding: 35px 24px; border-radius: 28px; }.package-section { padding-top: 90px; }.faq-list summary { min-height: 76px; font-size: 15px; }
  .cta-card { min-height: 560px; padding-inline: 22px; border-radius: 30px; }.cta-card h2 { font-size: 44px; }.cta-card h2 br { display: none; }.cta-card > div:last-child { flex-direction: column; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }.footer-links { grid-column: auto; }.footer-bottom { flex-direction: column; }.dialog-shell { grid-template-columns: 1fr; }.dialog-copy { min-height: 250px; padding: 40px 26px; border-radius: 30px 30px 0 0; }.dialog-copy h2 { font-size: 32px; }.dialog-note { display: none; }.lead-form { padding: 32px 24px; }.lead-dialog { max-height: calc(100vh - 16px); overflow: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
