/* ═══════════════════════════════════════════════════════════════
   CARBONATE — REDESIGN V2 · "Techno-Luxe / Night Build"
   Near-black stage, purple→orange gradient bloom, giant ghost glyph,
   dotted grid, crop ticks, glass panels, gradient hairlines.
   Fonts: self-hosted Inter (everything) + Roboto for tabular labels.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #08060F;
  --bg-2: #0E0A1B;
  --panel: rgba(255, 255, 255, .045);
  --stroke: rgba(255, 255, 255, .1);
  --stroke-2: rgba(255, 255, 255, .18);
  --fg: #F3F1FA;
  --fg-2: #A9A3C2;
  --fg-3: #6C6689;
  --pur: #7B33C4;
  --pur-2: #511988;
  --org: #F2712C;
  --grad: linear-gradient(102deg, #A05BEA 0%, #F2712C 62%, #FFB45C 100%);
  --pad: clamp(20px, 5vw, 84px);
  --max: 1280px;
  --ui: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Roboto', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 8px; top: 8px; background: var(--pur); color: #fff; padding: 10px 16px; z-index: 999; }

/* ── ambience ──────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 110% 70% at 50% 0%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 110% 70% at 50% 0%, #000 25%, transparent 78%);
}
.glowstage {
  position: absolute; top: 0; left: 0; right: 0;
  height: clamp(900px, 130vh, 1500px);
  overflow: hidden; pointer-events: none; z-index: 0;
}
.bloom { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.bloom--1 { top: -18vh; left: -8vw; width: 62vw; height: 62vw; background: rgba(123, 51, 196, .34); }
.bloom--2 { top: 6vh; right: -14vw; width: 46vw; height: 46vw; background: rgba(242, 113, 44, .15); }

main, .nav, .foot { position: relative; z-index: 1; }

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 6, 15, .72);
  border-bottom: 1px solid var(--stroke);
}
.nav__in {
  max-width: var(--max); margin: 0 auto;
  padding: 15px var(--pad);
  display: flex; align-items: center; gap: clamp(16px, 4vw, 48px);
}
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: clamp(16px, 2.6vw, 36px); margin-left: auto; }
.nav__links a {
  font-size: 12px; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; text-decoration: none; color: var(--fg-2);
  transition: color .2s;
}
.nav__links a:hover { color: var(--fg); }

.pill {
  font-family: var(--ui);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--grad);
  border: 0; border-radius: 999px; padding: 11px 22px; cursor: pointer;
  box-shadow: 0 6px 22px rgba(160, 91, 234, .38);
  transition: transform .18s, box-shadow .18s;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(242, 113, 44, .44); }

/* ── hero ──────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 84px) 0 clamp(30px, 5vw, 60px); }
.hero__in {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
  gap: clamp(24px, 2.6vw, 34px);
  align-items: center;
}
/* type sits above the product shot so the headline can bleed across it */
.hero__type { min-width: 0; position: relative; z-index: 3; }
/* soft scrim keeps the copy legible where it crosses the laptop */
.hero__type::before {
  content: "";
  position: absolute; z-index: -1;
  top: -8%; bottom: -8%; left: -6%; right: -14%;
  background: radial-gradient(ellipse 62% 60% at 34% 50%, rgba(8, 6, 15, .82), transparent 72%);
  pointer-events: none;
}

.hero__wm {
  position: absolute; z-index: 0;
  top: -.24em; left: -.06em;
  font-family: var(--ui); font-weight: 900;
  font-size: min(74vh, 62vw); line-height: .78;
  letter-spacing: -.06em;
  background: linear-gradient(160deg, rgba(190, 140, 255, .26), transparent 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  pointer-events: none; user-select: none;
}

.chiprow { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-2);
  border: 1px solid var(--stroke); border-radius: 999px;
  padding: 6px 12px; background: var(--panel);
}
.chip b { width: 5px; height: 5px; border-radius: 50%; background: var(--org); flex: none; }

.mega { margin: 0; display: flex; flex-direction: column; align-items: flex-start; }
.mega__pre {
  font-size: clamp(12px, 1.3vw, 16px); font-weight: 500;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--fg-2); margin-bottom: .8em;
}
.mega__hero {
  font-weight: 900;
  font-size: clamp(58px, 12.6vw, 188px);
  line-height: .84;
  letter-spacing: -.058em;
  white-space: nowrap;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 14px 50px rgba(160, 91, 234, .38));
}

.mega__strap {
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: -.022em;
  color: var(--fg);
  max-width: 25ch;
  margin: 26px 0 0;
}

.hero__cta { margin-top: 32px; display: grid; justify-items: start; gap: 15px; }
.hero__note {
  margin: 0; font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--fg-3);
}

.cta {
  font-family: var(--ui);
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  color: #fff;
  background: var(--grad);
  background-size: 180% 100%;
  border: 0; border-radius: 14px;
  padding: 20px 38px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 13px;
  box-shadow: 0 14px 40px rgba(123, 51, 196, .46), inset 0 1px 0 rgba(255, 255, 255, .3);
  transition: transform .18s, box-shadow .18s, background-position .5s;
}
.cta:hover { transform: translateY(-3px); background-position: 100% 0; box-shadow: 0 20px 52px rgba(242, 113, 44, .48); }
.cta:active { transform: translateY(-1px); }
.cta__ico { width: 19px; height: 19px; filter: brightness(0) invert(1); }
.cta--alt {
  background: var(--panel);
  border: 1px solid var(--stroke-2);
  box-shadow: none;
  color: var(--fg);
}
.cta--alt:hover { background: rgba(255, 255, 255, .1); box-shadow: 0 12px 34px rgba(0, 0, 0, .4); }

.disclosure { margin-top: 20px; }
.disclosure p {
  margin: 0; font-size: 11.5px; line-height: 1.55;
  color: var(--fg-3); max-width: 52ch;
}
.disclosure--c p { margin: 0 auto; }
.disclosure a { color: #C79BFF; text-decoration: none; border-bottom: 1px solid rgba(199, 155, 255, .35); }
.disclosure--c p { text-align: center; }

/* ── hero shot ─────────────────────────────────────────── */
.shot {
  margin: 0 0 0 auto; min-width: 0; width: 100%;
  position: relative; z-index: 1;
}
.shot__frame { position: relative; padding: clamp(10px, 1.5vw, 20px); }
.shot__halo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 48% at 50% 52%, rgba(160, 91, 234, .34), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 88%, rgba(242, 113, 44, .2), transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}
.shot__frame img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .7));
}
.tick { position: absolute; width: 13px; height: 13px; border: 1.5px solid var(--org); opacity: .8; }
.tick--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.tick--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.tick--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.tick--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

figcaption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3);
}
figcaption b { color: var(--fg-2); font-weight: 600; }

/* ── marquee ───────────────────────────────────────────── */
.marq {
  overflow: hidden;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  margin: clamp(26px, 3.5vw, 52px) 0 clamp(46px, 7vw, 92px);
  background: rgba(255, 255, 255, .022);
}
.marq__t { display: flex; width: max-content; animation: mv 34s linear infinite; }
.marq__t span {
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 13px 0;
  font-size: clamp(22px, 3.4vw, 42px);
  font-weight: 800; letter-spacing: -.035em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .19);
}
.marq__t i { color: var(--org); -webkit-text-stroke: 0; font-style: normal; font-size: .42em; padding: 0 .8em; }
@keyframes mv { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marq__t { animation: none; } }

/* ── shared section bits ───────────────────────────────── */
.what, .feat, .closer { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.lbl {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 26px;
}
.lbl span { color: var(--org); }
.lbl::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--stroke-2), transparent); }

.h2 {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 76px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.h2--center { text-align: center; margin-bottom: clamp(34px, 5vw, 62px); }
.grad {
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ── what is ───────────────────────────────────────────── */
.what__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.what__copy p { margin: 0 0 20px; color: var(--fg-2); }
.what__copy .big {
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -.012em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(40px, 6vw, 76px) 0 0;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: clamp(20px, 2.6vw, 32px);
  position: relative;
  transition: background .28s;
}
.stat:hover { background: #150F26; }
.stat__k {
  font-family: var(--mono);
  font-size: 11px; font-weight: 700; letter-spacing: .24em;
  color: var(--org);
  display: block; margin-bottom: 16px;
}
.stat h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700; letter-spacing: -.02em;
}
.stat p { margin: 0; font-size: 14px; color: var(--fg-3); line-height: 1.55; }

/* ── features ──────────────────────────────────────────── */
.feat { padding-top: clamp(56px, 9vw, 118px); }
.feat__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

.acc { display: grid; gap: 12px; }
.acc details {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.acc details[open] { border-color: rgba(160, 91, 234, .48); background: rgba(123, 51, 196, .1); }
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 15px;
  padding: 19px 22px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600; letter-spacing: -.022em;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary img { width: 32px; height: 32px; flex: none; filter: saturate(1.15) brightness(1.35); }
.acc summary span { flex: 1; }
.acc summary b {
  width: 22px; height: 22px; flex: none; position: relative;
}
.acc summary b::before, .acc summary b::after {
  content: ""; position: absolute; background: var(--org);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: opacity .2s, transform .25s;
}
.acc summary b::before { width: 13px; height: 1.5px; }
.acc summary b::after { width: 1.5px; height: 13px; }
.acc details[open] summary b::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.acc details p {
  margin: 0; padding: 0 22px 22px 69px;
  font-size: 15px; color: var(--fg-2); line-height: 1.6;
}

/* dark/light hover swap */
.swap { margin: 0; }
.swap__stack {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 20px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(123, 51, 196, .22), rgba(255, 255, 255, .02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  overflow: hidden;
}
.swap__stack img { width: 100%; }
.swap__b {
  position: absolute; inset: 20px;
  width: calc(100% - 40px) !important;
  opacity: 0; transition: opacity .5s ease;
}
.swap__stack:hover .swap__b { opacity: 1; }
.swap__hint {
  position: absolute; bottom: 14px; right: 16px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--org);
}

/* ── closer ────────────────────────────────────────────── */
.closer { padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(40px, 6vw, 80px); }
.closer__card {
  position: relative; overflow: hidden;
  border: 1px solid var(--stroke-2);
  border-radius: 28px;
  padding: clamp(38px, 6vw, 78px) clamp(24px, 5vw, 60px);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
  display: grid; justify-items: center; gap: 18px;
}
.closer__glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(160, 91, 234, .35), transparent 62%);
  pointer-events: none;
}
.closer__mark { width: 52px; position: relative; }
.closer__h {
  position: relative; margin: 0;
  font-size: clamp(32px, 5.4vw, 68px);
  font-weight: 200; line-height: 1.03; letter-spacing: -.045em;
}
.closer__p { position: relative; margin: 0; color: var(--fg-2); font-size: 15.5px; }
.closer__card .cta, .closer__card .disclosure { position: relative; }

/* ── footer ────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--stroke); }
.foot__in {
  max-width: var(--max); margin: 0 auto; padding: 32px var(--pad) 48px;
  display: grid; gap: 13px; justify-items: center; text-align: center;
}
.foot__co { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--fg-3); font-weight: 700; }
.foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.foot__links a {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--fg-2); text-decoration: none;
}
.foot__links a:hover { color: var(--org); }
.foot__fine { margin: 0; font-size: 11px; color: var(--fg-3); }

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__in { grid-template-columns: 1fr; gap: 34px; }
  .shot { order: -1; max-width: 720px; margin: 0 auto; width: 100%; }
  .shot figcaption, figcaption { text-align: center; }
  .hero__type figcaption { text-align: left; }
  .what__grid, .feat__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .pill { margin-left: auto; }
  .stats { grid-template-columns: 1fr; }
  .cta { width: 100%; justify-content: center; }
  .hero__cta { justify-items: stretch; }
  .acc details p { padding-left: 22px; }
  .mega__pre { letter-spacing: .3em; }
}


.tooltipRect img {
  display: inline !important;
}