/* charactr — landing page · v3 (reference-matched) */

:root {
  --bg: #0A0520;
  --bg-deep: #050110;
  --panel: #120830;
  --panel-2: #1A0B40;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);

  --ink: #FFFFFF;
  --ink-2: #B8AED8;
  --ink-3: #7A6F98;
  --ink-4: #4A4070;

  --violet: #6C3BF4;
  --violet-2: #8B5BFF;
  --violet-3: #B691FF;
  --violet-soft: rgba(139,91,255,0.14);
  --magenta: #D46BFF;

  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Poppins', 'Space Grotesk', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ═════════ Backdrop ═════════ */
.aurora {
  position: fixed; inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 15%, rgba(108,59,244,0.35), transparent 55%),
    radial-gradient(50% 50% at 85% 20%, rgba(212,107,255,0.20), transparent 60%),
    radial-gradient(70% 50% at 50% 95%, rgba(80,140,255,0.14), transparent 60%);
  filter: blur(30px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -1%, 0) scale(1.04); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.spotlight {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,91,255,0.18), rgba(212,107,255,0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .5s ease;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 5; }

/* ═════════ Nav ═════════ */
.nav {
  position: sticky; top: 0; z-index: 40;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(10,5,32,0.85), rgba(10,5,32,0));
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 22px; letter-spacing: -0.02em;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links {
  display: flex; gap: 36px; font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }

.btn-app {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(108,59,244,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
  transition: transform .15s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.btn-app:hover { box-shadow: 0 12px 36px rgba(108,59,244,0.6), 0 1px 0 rgba(255,255,255,0.25) inset; }
.btn-app:active { transform: scale(0.96); }
.btn-app::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.5,.1,.2,1);
}
.btn-app:hover::before { transform: translateX(120%); }
.btn-app .apple { width: 14px; height: 14px; fill: currentColor; }

.magnet { display: inline-block; will-change: transform; transition: transform .5s cubic-bezier(.16,1,.3,1); }

/* ═════════ Hero ═════════ */
.hero {
  position: relative;
  padding: 48px 0 96px;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(460px, 1.2fr);
  gap: 40px;
  width: 100%;
  align-items: center;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-3);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}

h1.display {
  font-size: clamp(56px, 7.2vw, 104px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
}
h1.display .line { display: block; }
h1.display .grad {
  background: linear-gradient(100deg, #B691FF 0%, #8B5BFF 40%, #6C3BF4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 440px;
  margin: 0 0 36px;
  line-height: 1.5;
  font-weight: 400;
}
.lede .accent { color: var(--violet-3); font-weight: 500; }

.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #0F0628;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: border-color .25s ease, background .25s ease, transform .2s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.btn-store:hover { border-color: rgba(139,91,255,0.6); background: #140A32; }
.btn-store:active { transform: scale(0.97); }
.btn-store .apple { width: 24px; height: 24px; fill: #fff; }
.btn-store .stack { display: flex; flex-direction: column; line-height: 1.05; }
.btn-store .small { font-size: 10px; color: var(--ink-2); font-weight: 400; letter-spacing: 0.06em; }
.btn-store .big { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

.hero-join {
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 22px;
  max-width: 340px;
  line-height: 1.5;
}

/* Phone column */
.phone-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1800px;
  min-height: 720px;
}
.phone-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(45% 45% at 50% 50%, rgba(108,59,244,0.45), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: haloDrift 14s ease-in-out infinite;
}
.phone-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(212,107,255,0.3), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  top: 60%; left: 15%;
  animation: haloDrift 11s ease-in-out infinite reverse;
}
@keyframes haloDrift { 0%,100% { transform: translate(-20px,-10px); } 50% { transform: translate(20px,10px); } }
.phone-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.phone-img {
  filter: drop-shadow(0 50px 120px rgba(108,59,244,0.55)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  width: 100%;
}

/* Floating tags around phone */
.tag-card {
  position: absolute;
  z-index: 3;
  background: rgba(12,6,36,0.7);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: floatUp 1s ease-out both;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}
.tag-card .tc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 10px var(--violet-2);
}
.tag-card .tc-k { color: var(--ink-3); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; }
.tag-card .tc-v { color: var(--ink); font-size: 12px; }
.tag-1 { top: 10%; left: -6%; animation-delay: 0.4s; }
.tag-2 { top: 42%; right: -2%; animation-delay: 0.7s; }
.tag-3 { bottom: 18%; left: -2%; animation-delay: 1s; }
@keyframes floatUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ═════════ Features (icon cards) ═════════ */
.features {
  padding: 40px 0 80px;
}
.features-inner {
  background: rgba(18,8,48,0.5);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feat-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--violet-soft), rgba(108,59,244,0.06));
  border: 1px solid rgba(139,91,255,0.22);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--violet-3);
}
.feat-card .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.feat-card h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.feat-card p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* ═════════ Gallery ═════════ */
.gallery {
  padding: 48px 0 96px;
}
.gal-inner {
  background: linear-gradient(180deg, rgba(27,13,70,0.6), rgba(18,8,48,0.4));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 40px;
  align-items: center;
}
.gal-copy .eyebrow { color: var(--violet-3); margin-bottom: 20px; display: block; }
.gal-copy h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.gal-copy h2 .grad {
  background: linear-gradient(100deg, #B691FF 0%, #8B5BFF 40%, #6C3BF4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gal-copy p {
  color: var(--ink-2); font-size: 14.5px; line-height: 1.55;
  margin: 0 0 24px;
  max-width: 340px;
}
.gal-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.gal-check li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink);
}
.gal-check .ck {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(108,59,244,0.4);
}
.gal-check .ck svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.4; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Character cards — static presentation */
.char-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.char-art {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139,91,255,0.22);
  background: #0F0628;
  box-shadow:
    0 20px 50px rgba(8,4,24,0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
.char-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.char-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10,5,32,0.35));
  pointer-events: none;
}
.char-card figcaption {
  display: flex;
  flex-direction: column;
  padding: 0 2px;
}
.char-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.char-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-3);
  margin: 6px 0 0;
  letter-spacing: -0.005em;
}
.char-desc {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 10px 0 0;
  line-height: 1.5;
  max-width: 32ch;
}

/* ═════════ CTA band ═════════ */
.cta {
  padding: 0 0 90px;
}
.cta-inner {
  background: linear-gradient(100deg, rgba(27,13,70,0.7), rgba(18,8,48,0.5));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 26px 28px;
  display: flex; align-items: center; gap: 24px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  width: 700px; height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 50%, rgba(139,91,255,0.25), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #0A0520;
  border: 1px solid var(--line-2);
  transition: border-color .25s, background .25s, transform .2s cubic-bezier(.34,1.56,.64,1);
}
.cta-store:hover { border-color: rgba(139,91,255,0.5); background: #140A32; }
.cta-store:active { transform: scale(0.97); }
.cta-store .apple { width: 22px; height: 22px; fill: #fff; }
.cta-store .stack { display: flex; flex-direction: column; line-height: 1.05; }
.cta-store .small { font-size: 9.5px; color: var(--ink-2); letter-spacing: 0.06em; }
.cta-store .big { font-size: 14px; font-weight: 600; }
.cta-text { flex: 1; position: relative; z-index: 2; }
.cta-text h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 4px; }
.cta-text p { color: var(--ink-2); font-size: 14px; margin: 0; }
.cta-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--violet);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  box-shadow: 0 10px 30px rgba(108,59,244,0.5);
  position: relative; z-index: 2;
}
.cta-arrow:hover { transform: translateX(4px); box-shadow: 0 14px 36px rgba(108,59,244,0.7); }
.cta-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }

/* ═════════ Footer ═════════ */
footer { padding: 48px 0 32px; position: relative; z-index: 5; border-top: 1px solid var(--line); }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand .brand { font-size: 20px; }
.footer-brand .brand img { width: 34px; height: 34px; }
.footer-copy { color: var(--ink-3); font-size: 12.5px; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a {
  color: var(--ink-2); font-size: 13.5px; transition: color .2s;
}
.footer-col a:hover { color: var(--violet-3); }
.footer-tag {
  color: var(--ink-2); font-size: 13px; line-height: 1.5; max-width: 260px; margin: 28px 0 0;
}

/* ═════════ Reveal ═════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-d="1"] { transition-delay: 0.08s; }
[data-reveal-d="2"] { transition-delay: 0.16s; }
[data-reveal-d="3"] { transition-delay: 0.24s; }
[data-reveal-d="4"] { transition-delay: 0.32s; }

/* ════════════════════════════════════════════════════════
   HERO v6 — brand plate + capability carousel (side by side)
   ════════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  padding: 20px 0 64px;
  z-index: 5;
  overflow: hidden;
}
.heroV2-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}
.heroV2-grid > * { min-width: 0; }

/* ─── Brand plate (left) ─── */
.bplate {
  position: relative;
  z-index: 3;
  padding: 28px 30px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24,12,62,0.55) 0%, rgba(14,6,36,0.35) 100%);
  border: 1px solid rgba(139,91,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 40px 80px rgba(8,4,24,0.45);
  backdrop-filter: blur(6px);
}
.bplate::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(150deg, rgba(139,91,255,0.5) 0%, rgba(139,91,255,0) 45%, rgba(212,107,255,0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bplate-mark {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 44px;
}
.bplate-icon {
  width: 52px; height: 52px; border-radius: 14px;
  box-shadow: 0 10px 28px rgba(108,59,244,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.bplate-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
  color: var(--ink);
}
.bm-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.bm-row svg { width: 12px; height: 12px; }
.bm-row .apple-mini { fill: #fff; }
.bm-row svg:not(.apple-mini) { fill: #F7C96B; }
.bm-dim { color: var(--ink-2); font-weight: 400; }
.bm-dim b { color: var(--ink); font-weight: 600; }
.bm-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7CF2A8;
  box-shadow: 0 0 0 0 rgba(124,242,168,0.8);
  animation: bmPulse 2.2s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes bmPulse {
  0% { box-shadow: 0 0 0 0 rgba(124,242,168,0.8); }
  70% { box-shadow: 0 0 0 10px rgba(124,242,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,242,168,0); }
}

/* MASSIVE trademark wordmark */
.bplate-word {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(44px, 6vw, 132px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0 0 22px;
  color: #FFFFFF;
  position: relative;
  display: block;
  white-space: nowrap;
  filter: drop-shadow(0 2px 30px rgba(139,91,255,0.35));
}
.bplate-word .bw-letter {
  display: inline-block;
  will-change: transform;
  transition: transform .4s cubic-bezier(.16,1,.3,1), color .4s ease;
}
.bplate-word:hover .bw-letter { color: var(--violet-3); }
.bplate-word:hover .bw-letter:nth-child(odd) { transform: translateY(-4px); }
.bplate-word:hover .bw-letter:nth-child(even) { transform: translateY(4px); }
.bw-tm {
  font-size: 0.2em;
  font-weight: 500;
  color: var(--violet-3);
  vertical-align: super;
  margin-left: 0.06em;
  letter-spacing: 0;
  font-family: 'JetBrains Mono', monospace;
  top: -0.9em;
  position: relative;
  display: inline-block;
}

/* Rule + tag under the wordmark */
.bplate-rule {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.br-line {
  flex: 0 0 44px; height: 2px;
  background: linear-gradient(90deg, var(--violet-2), transparent);
  border-radius: 2px;
}
.br-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.bplate-lede {
  font-size: 20px;
  color: var(--ink);
  max-width: 480px;
  margin: 0 0 28px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.bp-grad {
  background: linear-gradient(100deg, #E8DAFF 0%, #B691FF 30%, #8B5BFF 60%, #6C3BF4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.bplate-keys {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bplate-keys li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(139,91,255,0.08);
  border: 1px solid rgba(139,91,255,0.22);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
}
.bk-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 8px var(--violet-2);
}

.bplate-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.bplate-join {
  color: var(--ink-3);
  font-size: 13px;
}
.bplate-join b { color: var(--ink); font-weight: 600; }

/* ─── Showcase carousel (right, narrower) ─── */
/* ─── Showcase carousel (right, narrower) ─── */
.showcase {
  position: relative;
  padding: 20px 0 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.sc-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(45% 45% at 50% 50%, rgba(108,59,244,0.55), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  transition: background 0.9s ease;
  animation: haloDrift 14s ease-in-out infinite;
}
.sc-halo-2 {
  width: 440px; height: 440px;
  transform: translate(-15%, -55%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(212,107,255,0.32), transparent 70%);
  animation: haloDrift 11s ease-in-out infinite reverse;
}

/* Scroll rail — bounded to showcase column */
.sc-rail {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 32px calc(50% - 115px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 2;
}
.sc-rail::-webkit-scrollbar { display: none; }

.sc-card {
  flex: 0 0 auto;
  width: clamp(210px, 22vw, 300px);
  aspect-ratio: 488 / 1000;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.6s cubic-bezier(.16,1,.3,1),
    opacity 0.6s cubic-bezier(.16,1,.3,1),
    filter 0.6s cubic-bezier(.16,1,.3,1);
  transform: scale(0.82);
  opacity: 0.42;
  filter: saturate(0.65) brightness(0.82);
}
.sc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  user-select: none;
  -webkit-user-drag: none;
}
.sc-card.active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1) brightness(1);
}
.sc-card.active img {
  box-shadow:
    0 60px 120px rgba(108,59,244,0.55),
    0 20px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(139,91,255,0.28);
}

/* Arrows */
.sc-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(16,8,42,0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, border-color .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
}
.sc-nav:hover { background: rgba(139,91,255,0.25); border-color: rgba(139,91,255,0.5); }
.sc-nav:active { transform: translateY(-50%) scale(0.92); }
.sc-nav svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sc-prev { left: 8px; }
.sc-next { right: 8px; }

/* Footer under carousel */
.sc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 0;
  position: relative;
  z-index: 3;
}
.sc-label {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: var(--ink);
}
.sc-label .sc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--violet-3);
}
.sc-label .sc-name {
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.sc-dots {
  list-style: none; padding: 0; margin: 0;
  display: inline-flex; gap: 6px;
}
.sc-dots .sc-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: none; border: none;
  cursor: pointer; padding: 0;
  display: grid; place-items: center;
}
.sc-dots .sc-dot i {
  display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: all .25s;
}
.sc-dots .sc-dot:hover i { background: rgba(255,255,255,0.5); }
.sc-dots .sc-dot.active i {
  background: var(--violet-2);
  box-shadow: 0 0 12px var(--violet-2);
  width: 20px;
  border-radius: 4px;
}

/* ═════════ Responsive ═════════ */
@media (max-width: 820px) {
  .heroV2-grid { grid-template-columns: 1fr; gap: 24px; }
  .bplate-mark { justify-content: flex-start; }
  .bplate-word { font-size: clamp(64px, 18vw, 140px); }
  .sc-rail { padding: 32px calc(50% - 120px); }
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-col { min-height: 540px; margin-top: 20px; }
  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gal-inner { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-wrap: wrap; }
  .sc-prev { left: 6px; } .sc-next { right: 6px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  h1.display { font-size: 56px; }
  .bplate-word { font-size: 72px; }
  .features-inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .tag-card { display: none; }
  .sc-rail { padding: 24px 18vw; gap: 12px; }
  .sc-card { width: 72vw; }
  .sc-nav { display: none; }
  .sc-foot { flex-direction: column; }
}
.hero-v2 {
  position: relative;
  padding: 36px 0 72px;
  min-height: calc(100vh - 90px);
  z-index: 5;
  overflow: hidden;
}

.hero-top {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}
.hero-top .eyebrow {
  margin: 0 0 18px;
  justify-content: center;
}
.hero-lead {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 auto 18px;
  max-width: 900px;
  color: var(--ink);
}
.hero-lead .grad {
  background: linear-gradient(100deg, #E8DAFF 0%, #B691FF 30%, #8B5BFF 60%, #6C3BF4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-tag {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

/* Arrow nav buttons */
.sc-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(16,8,42,0.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, border-color .2s, transform .2s cubic-bezier(.34,1.56,.64,1);
}
.sc-nav:hover { background: rgba(139,91,255,0.25); border-color: rgba(139,91,255,0.5); }
.sc-nav:active { transform: translateY(-50%) scale(0.92); }
.sc-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sc-prev { left: 28px; }
.sc-next { right: 28px; }

/* Footer: label, dots, CTA */
.sc-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
}
.sc-label {
  display: inline-flex; align-items: baseline; gap: 12px;
  color: var(--ink);
  font-size: 14px;
}
.sc-label .sc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--violet-3);
}
.sc-label .sc-name {
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.sc-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  justify-self: center;
}
.sc-dots .sc-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: grid; place-items: center;
}
.sc-dots .sc-dot i {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: background .25s, transform .25s, box-shadow .25s, width .25s;
}
.sc-dots .sc-dot:hover i { background: rgba(255,255,255,0.5); }
.sc-dots .sc-dot.active i {
  background: var(--violet-2);
  box-shadow: 0 0 12px var(--violet-2);
  width: 22px;
  border-radius: 4px;
}
.sc-cta { justify-self: end; }

/* ═════════ Responsive ═════════ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-col { min-height: 540px; margin-top: 20px; }
  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gal-inner { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-wrap: wrap; }
  .sc-prev { left: 12px; } .sc-next { right: 12px; }
  .sc-footer { grid-template-columns: 1fr; justify-items: center; gap: 20px; }
  .sc-cta { justify-self: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  h1.display { font-size: 56px; }
  .hero-lead { font-size: 40px; }
  .features-inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .tag-card { display: none; }
  .sc-nav { display: none; }
}

