/* =====================================================================
   EverTwin — Warm Luxe design system
   Palette: cream · espresso ink · refined amber
   Craft rules applied from ui-ux-pro-max: a11y-first contrast, 4/8 grid,
   16px+ body, SVG icons, transform/opacity motion, reduced-motion.
   ===================================================================== */

:root {
  /* ---- color tokens (semantic) ---- */
  --bg:           #F7F5FF;   /* cool near-white, subtle violet */
  --bg-2:         #EEEAFC;   /* alt section, light violet */
  --card:         #FFFFFF;
  --card-2:       #FAF9FF;
  --ink:          #15111F;   /* primary text        ~13:1 on bg */
  --ink-2:        #46425C;   /* secondary text      ~7:1 on bg */
  --muted:        #635F7C;   /* small labels        ~5:1 on bg */
  --primary:      #6C4CF1;   /* electric violet — CTA, white text = ~5:1 */
  --primary-deep: #5A3FD6;   /* hover / text-on-light accent */
  --primary-tint: #E9E3FE;   /* icon bg / pills */
  --accent:       #FF5C7A;   /* coral pop — energy, used sparingly */
  --accent-deep:  #E63E5F;
  --mint:         #37D7C4;   /* secondary pop — verified / variety */
  --line:         #E4E0F4;
  --ink-deep:     #14102A;   /* dark surfaces (deep violet-black) */
  --ink-deep-2:   #1D1740;
  --bg-on-dark:   #F1EEFF;

  /* ---- radius ---- */
  --r-card: 18px;
  --r-sm:   12px;
  --r-pill: 999px;

  /* ---- shadow (cool) ---- */
  --shadow-sm: 0 1px 2px rgba(24,18,50,.06);
  --shadow-md: 0 14px 34px -16px rgba(30,20,80,.28);
  --shadow-lg: 0 30px 64px -26px rgba(24,14,70,.40);

  /* ---- type ---- */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* ---- layout ---- */
  --container: 1180px;
  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 10vw, 128px);

  /* ---- motion ---- */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input { font: inherit; }
[hidden] { display: none !important; }
::selection { background: var(--primary); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }

/* ---- focus (a11y) ---- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: var(--h); padding-inline: 26px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: transform .18s var(--ease), background-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn--sm { --h: 42px; padding-inline: 18px; font-size: .9rem; }
.btn--lg { --h: 58px; padding-inline: 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--primary); color: #fff; box-shadow: 0 8px 22px -10px rgba(108,76,241,.7); }
.btn--solid:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(90,62,214,.8); }

.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--primary-deep); }

/* variants on dark surfaces */
.is-dark .btn--outline { color: var(--bg-on-dark); box-shadow: inset 0 0 0 1.5px rgba(243,236,222,.4); }
.is-dark .btn--outline:hover { background: var(--bg-on-dark); color: var(--ink); }

/* =====================================================================
   Nav
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled { background: color-mix(in srgb, var(--bg) 94%, transparent); border-bottom-color: var(--line); box-shadow: 0 6px 24px -14px rgba(30,20,80,.35); }
.nav.scrolled .nav__inner { height: 64px; }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 74px; transition: height .25s var(--ease); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; letter-spacing: .16em; font-size: 1.12rem; color: var(--ink); }
.brand__mark { width: 28px; height: 28px; border-radius: 26%; background: url("kuma-icon-256.png") center / cover no-repeat; box-shadow: 0 8px 18px -12px rgba(108,76,241,.62), 0 2px 7px rgba(255,92,122,.14); }
.brand--light { color: var(--bg-on-dark); }
.brand--light .brand__mark { box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 2px 8px rgba(0,0,0,.35); }

.nav__links { display: flex; gap: 26px; margin-left: 8px; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink-2); position: relative; padding: 6px 0; transition: color .2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--primary); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.lang { font-size: .82rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); padding: 4px 8px; border: 1px solid var(--line); border-radius: var(--r-pill); }

.nav__burger { display: none; width: 44px; height: 44px; margin-left: auto; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 14px var(--pad-x) 22px; border-top: 1px solid var(--line); background: var(--bg); }
.nav__mobile a { padding: 12px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mobile a.btn { justify-content: center; margin-top: 12px; border-bottom: 0; }

/* =====================================================================
   Shared section bits
   ===================================================================== */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.01em; }
.section__sub { margin-top: 16px; font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
.section__sub--fine { font-size: .95rem; color: var(--muted); font-style: italic; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 20px; }
.eyebrow--light { color: var(--primary); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); }
.eyebrow--light .dot { box-shadow: 0 0 0 4px rgba(108,76,241,.2); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 104px) var(--section-y);
  background: linear-gradient(174deg, #EBE4FF 0%, var(--bg) 60%); }
/* animated aurora background — vibrant, "MCN energy", still light enough for dark text */
.hero__bg { position: absolute; inset: -14% -8%; z-index: 0; pointer-events: none; filter: blur(6px); }
.hero__bg::before, .hero__bg::after { content: ""; position: absolute; inset: 0; }
.hero__bg::before {
  background:
    radial-gradient(33% 33% at 80% 6%, rgba(108,76,241,.48), transparent 62%),
    radial-gradient(30% 30% at 97% 50%, rgba(196,60,158,.32), transparent 64%);
  animation: heroDrift1 19s ease-in-out infinite alternate; }
.hero__bg::after {
  background:
    radial-gradient(30% 30% at 5% 14%, rgba(255,92,122,.28), transparent 62%),
    radial-gradient(28% 34% at 26% 98%, rgba(55,215,196,.26), transparent 62%),
    radial-gradient(26% 26% at 54% 42%, rgba(154,107,255,.24), transparent 64%);
  animation: heroDrift2 24s ease-in-out infinite alternate; }
@keyframes heroDrift1 { to { transform: translate3d(-3%, 4%, 0) scale(1.1); } }
@keyframes heroDrift2 { to { transform: translate3d(4%, -3%, 0) scale(1.12); } }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--primary-deep);
  background: rgba(255,255,255,.72); backdrop-filter: blur(8px); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: var(--r-pill); margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: clamp(2.7rem, 5.6vw, 4.5rem); line-height: 1.02; letter-spacing: -.02em; }
.hero__title em { font-style: normal; background: linear-gradient(100deg, var(--primary) 10%, var(--accent-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero__lede { margin-top: 24px; font-size: 1.2rem; color: var(--ink-2); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; align-items: center; gap: clamp(16px, 3vw, 30px); margin-top: 46px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink); line-height: 1; }
.hero__stat span { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.hero__divider { width: 1px; height: 34px; background: var(--line); }

/* hero product mock */
.hero__visual { position: relative; justify-self: end; width: 100%; max-width: 440px; }
.mock {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px; box-shadow: var(--shadow-lg);
}
.mock__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mock__pill { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--primary-tint); padding: 6px 12px; border-radius: var(--r-pill); }
.mock__query { font-size: .86rem; color: var(--muted); font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock__card { display: flex; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; background: var(--card-2); }
.mock__card--lead { background: linear-gradient(120deg, #fff, var(--primary-tint)); border-color: rgba(108,76,241,.4); }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff; background: linear-gradient(135deg, #7C5CFC, #5A3FD6); flex-shrink: 0; }
.avatar--2 { background: linear-gradient(135deg, #FF7E9D, #E63E5F); }
.avatar--3 { background: linear-gradient(135deg, #37D7C4, #17A594); }
.mock__who { display: flex; flex-direction: column; min-width: 0; }
.mock__name { font-weight: 600; color: var(--ink); font-size: .96rem; }
.mock__handle { font-size: .8rem; color: var(--muted); }
.mock__score { margin-left: auto; text-align: center; }
.mock__scoreNum { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--primary-deep); line-height: 1; }
.mock__scoreLbl { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.mock__bar { margin-left: auto; width: 74px; height: 7px; border-radius: var(--r-pill); background: var(--bg-2); overflow: hidden; }
.mock__bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--primary), var(--primary-deep)); border-radius: inherit; }
.mock__foot { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag { font-size: .76rem; font-weight: 500; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: var(--r-pill); }
.mock__badge {
  position: absolute; bottom: -16px; left: -18px;
  background: var(--ink); color: var(--bg-on-dark);
  font-size: .82rem; font-weight: 600; padding: 11px 16px; border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.mock__badge::before { content: "◈"; color: var(--primary); margin-right: 8px; }

/* hero AI-persona portrait (placeholder frame — drop a real <img> inside) */
.portrait { position: relative; aspect-ratio: 4 / 5; border-radius: 26px; overflow: hidden;
  background: linear-gradient(158deg, #6C4CF1 0%, #C43C9E 56%, #FF7A66 100%);
  border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-lg); }
.portrait__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.portrait::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(58% 52% at 50% 20%, rgba(255,255,255,.55), transparent 62%); }
.portrait::after { content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(12,7,34,.6)); }
.portrait__figure { position: absolute; inset: 0; z-index: 1; display: grid; place-items: end center; }
.portrait__figure svg { width: 84%; height: 86%; fill: rgba(255,255,255,.92); filter: drop-shadow(0 12px 30px rgba(0,0,0,.18)); }
.portrait__live { position: absolute; top: 16px; right: 16px; z-index: 4; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; color: #fff; background: rgba(0,0,0,.4); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--r-pill); }
.portrait__live::first-letter { color: #6CF0A0; }
.portrait__caption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; }
.portrait__name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.portrait__wave { display: inline-flex; align-items: center; gap: 3px; height: 20px; }
.portrait__wave i { width: 3px; height: 40%; border-radius: 3px; background: rgba(255,255,255,.9);
  animation: wave 1s ease-in-out infinite; }
.portrait__wave i:nth-child(2){ animation-delay:.15s } .portrait__wave i:nth-child(3){ animation-delay:.3s }
.portrait__wave i:nth-child(4){ animation-delay:.45s } .portrait__wave i:nth-child(5){ animation-delay:.6s }
.portrait__wave i:nth-child(6){ animation-delay:.75s } .portrait__wave i:nth-child(7){ animation-delay:.9s }
@keyframes wave { 0%,100% { height: 30%; } 50% { height: 95%; } }
/* floating match chip over the portrait */
.portrait__chip { position: absolute; left: -22px; bottom: 44px; z-index: 5;
  display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px 10px 10px; box-shadow: var(--shadow-lg); }
.portrait__chip .avatar { width: 36px; height: 36px; }
.portrait__chipTxt { display: flex; flex-direction: column; line-height: 1.2; }
.portrait__chipTxt b { font-size: .9rem; color: var(--ink); }
.portrait__chipTxt span { font-size: .76rem; color: var(--muted); }
.portrait__score { margin-left: 6px; text-align: center; }
.portrait__score b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--primary-deep); line-height: 1; }
.portrait__score span { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }

/* hero float wrapper (mouse-parallax target) + gentle portrait float */
.hero__float { position: relative; transition: transform .18s ease-out; }
.hero__float .portrait { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
/* creator fan pill (bottom-right) — creator-network / 网红 signal */
.hero__creators { position: absolute; right: -14px; bottom: 28px; z-index: 6; display: flex; align-items: center;
  gap: 10px; padding: 8px 16px 8px 10px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-pill); box-shadow: var(--shadow-lg); }
.hero__fan { display: flex; }
.hero__fan span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--card); margin-left: -11px;
  display: grid; place-items: center; color: #fff; font-size: .68rem; font-weight: 700; }
.hero__fan span:first-child { margin-left: 0; }
.hero__fan span:nth-child(1){ background: linear-gradient(135deg,#7C5CFC,#5A3FD6); }
.hero__fan span:nth-child(2){ background: linear-gradient(135deg,#FF7E9D,#E63E5F); }
.hero__fan span:nth-child(3){ background: linear-gradient(135deg,#37D7C4,#17A594); }
.hero__fan span:nth-child(4){ background: linear-gradient(135deg,#F9CE34,#E68A00); }
.hero__creators b { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink); line-height: 1.05; }
.hero__creators small { display: block; font-size: .7rem; color: var(--muted); }
/* analytics chip (top-left) — data / marketing signal */
.hero__analytics { position: absolute; left: -26px; top: 22px; z-index: 6; display: flex; align-items: center; gap: 11px;
  padding: 11px 15px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); }
.hero__spark { display: flex; align-items: flex-end; gap: 3px; height: 30px; }
.hero__spark i { width: 5px; border-radius: 2px; background: linear-gradient(180deg, var(--primary), #9A6BFF); }
.hero__anaTxt b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1; }
.hero__anaTxt span { font-size: .72rem; color: #17A594; font-weight: 600; }

/* =====================================================================
   Trust strip
   ===================================================================== */
.trust { border-block: 1px solid var(--line); padding-block: 40px; background: var(--bg); }
.trust__label { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.trust__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 56px); }
.trust__logos .logo { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: .02em; color: var(--ink); opacity: .48; transition: opacity .2s var(--ease); }
.trust__logos .logo:hover { opacity: .82; }

/* =====================================================================
   Steps (how it works)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 26px; position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(108,76,241,.4); }
.step__num { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--primary-deep); background: var(--primary-tint); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: .98rem; color: var(--ink-2); }

/* =====================================================================
   Features (bento)
   ===================================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(108,76,241,.4); }
.feature--wide { grid-column: span 2; background: linear-gradient(130deg, var(--card), var(--primary-tint)); }
.feature--accent { background: linear-gradient(145deg, #6C4CF1, #A24BD8 68%, #C43C9E); border-color: transparent; box-shadow: 0 20px 44px -18px rgba(108,76,241,.55); }
.feature.feature--accent h3 { color: #fff; }
.feature.feature--accent p { color: rgba(255,255,255,.94); }
.feature--accent .feature__icon { background: rgba(255,255,255,.2); color: #fff; }
.feature--accent:hover { border-color: transparent; }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--primary-tint); color: var(--primary-deep); margin-bottom: 20px; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.feature p { font-size: 1rem; color: var(--ink-2); }

/* =====================================================================
   Digital IP spotlight (dark)
   ===================================================================== */
.spotlight { position: relative; overflow: hidden; background: var(--ink-deep); color: var(--bg-on-dark); text-align: center; padding-block: clamp(110px, 20vh, 220px); }

/* moving background — animated aurora (alive with no asset), upgrades to a video clip when present */
.spotlight__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(46% 58% at 18% 26%, rgba(108,76,241,.62), transparent 60%),
    radial-gradient(44% 56% at 82% 22%, rgba(196,60,158,.55), transparent 60%),
    radial-gradient(52% 62% at 62% 92%, rgba(255,122,102,.42), transparent 62%),
    var(--ink-deep);
  background-size: 190% 190%, 190% 190%, 190% 190%, auto;
  animation: spotlightAurora 20s ease-in-out infinite;
}
@keyframes spotlightAurora {
  0%   { background-position: 0% 50%, 100% 50%, 50% 100%, 0 0; }
  50%  { background-position: 100% 40%, 0% 60%, 40% 0%, 0 0; }
  100% { background-position: 0% 50%, 100% 50%, 50% 100%, 0 0; }
}
.spotlight__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity .9s ease; }
.spotlight__video.is-ready { opacity: 1; }
.spotlight__scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,7,26,.58), rgba(11,7,26,.30) 42%, rgba(11,7,26,.80)); }

.spotlight__inner { position: relative; z-index: 3; max-width: 780px; margin-inline: auto; display: grid; justify-items: center; gap: 20px; }
.spotlight__eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,236,222,.85); background: rgba(0,0,0,.32); border: 1px solid rgba(243,236,222,.16); padding: 7px 14px; border-radius: var(--r-pill); backdrop-filter: blur(6px); }
.spotlight__eyebrow::first-letter { color: #7CE0A3; }
.spotlight__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.05; color: var(--bg-on-dark); letter-spacing: -.01em; }
.spotlight__title em { font-style: normal; background: linear-gradient(100deg, #A98CFF, #FF7E9D); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.spotlight__sub { margin: 4px auto 0; font-size: 1.14rem; color: rgba(243,236,222,.82); max-width: 56ch; text-shadow: 0 1px 20px rgba(0,0,0,.35); }
.spotlight__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.spotlight__chips span { font-size: .84rem; font-weight: 600; color: rgba(243,236,222,.9); background: rgba(243,236,222,.08); border: 1px solid rgba(243,236,222,.18); padding: 8px 15px; border-radius: var(--r-pill); backdrop-filter: blur(5px); }
.spotlight .btn--solid { margin-top: 10px; }
@media (prefers-reduced-motion: reduce) { .spotlight__bg { animation: none; } }

.ticks { display: grid; gap: 13px; margin: 26px 0 30px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: 1.02rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-tint); }
.ticks li::after { content: "✓"; position: absolute; left: 5px; top: 1px; font-size: .74rem; font-weight: 700; color: var(--primary-deep); }
.ticks--light li { color: rgba(243,236,222,.82); }
.spotlight .ticks li { color: rgba(243,236,222,.82); }
.spotlight .ticks li::before { background: rgba(108,76,241,.22); }
.spotlight .ticks li::after { color: var(--primary); }

/* persona card */
.spotlight__visual { justify-self: end; width: 100%; max-width: 400px; }
.persona { background: var(--ink-deep-2); border: 1px solid rgba(243,236,222,.12); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-lg); }
.persona__portrait { position: relative; height: 190px; border-radius: 16px; background: linear-gradient(150deg, #6C4CF1, #C43C9E); display: grid; place-items: center; margin-bottom: 18px; overflow: hidden; }
.persona__portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 50% at 50% 35%, rgba(169,140,255,.55), transparent 70%); }
.persona__initials { font-family: var(--font-display); font-weight: 600; font-size: 3rem; color: rgba(255,255,255,.92); }
.persona__live { position: absolute; top: 12px; right: 12px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: #fff; background: rgba(0,0,0,.4); padding: 5px 10px; border-radius: var(--r-pill); }
.persona__live::first-letter { color: #7CE0A3; }
.persona__rows { display: grid; gap: 8px; }
.persona__row { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; background: rgba(243,236,222,.05); border: 1px solid rgba(243,236,222,.08); border-radius: 11px; font-size: .95rem; color: var(--bg-on-dark); }
.persona__row .ok { width: 22px; height: 22px; border-radius: 50%; background: rgba(124,224,163,.16); color: #7CE0A3; display: grid; place-items: center; font-size: .74rem; font-weight: 700; }

/* =====================================================================
   Split (brands / creators)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.split__card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: clamp(30px, 4vw, 46px); }
.split__card--dark { background: var(--ink-deep); border-color: var(--ink-deep); }
.split__tag { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 14px; }
.split__card--dark .split__tag { color: var(--primary); }
.split__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); line-height: 1.1; letter-spacing: -.01em; }
.split__card--dark .split__title { color: var(--bg-on-dark); }

/* =====================================================================
   Pricing
   ===================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { background: var(--ink-deep); border-color: var(--ink-deep); box-shadow: var(--shadow-lg); }
.plan__ribbon { position: absolute; top: -12px; left: 30px; background: var(--accent); color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .04em; padding: 6px 14px; border-radius: var(--r-pill); box-shadow: 0 8px 18px -8px rgba(255,92,122,.7); }
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--ink); margin-bottom: 12px; }
.plan--featured .plan__name { color: var(--bg-on-dark); }
.plan__price { font-family: var(--font-display); font-weight: 600; font-size: 3rem; color: var(--ink); line-height: 1; display: flex; align-items: baseline; gap: 2px; }
.plan__price span { font-size: 1.4rem; }
.plan__price small { font-size: .9rem; font-weight: 400; font-family: var(--font-body); color: var(--muted); margin-left: 6px; }
.plan__price--word { font-size: 2.1rem; }
.plan--featured .plan__price { color: var(--bg-on-dark); }
.plan--featured .plan__price small { color: rgba(243,236,222,.6); }
.plan__note { font-size: .96rem; color: var(--ink-2); margin: 14px 0 22px; }
.plan--featured .plan__note { color: rgba(243,236,222,.72); }
.plan__list { display: grid; gap: 12px; margin-bottom: 28px; }
.plan__list li { position: relative; padding-left: 26px; font-size: .98rem; color: var(--ink-2); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-deep); font-weight: 700; }
.plan--featured .plan__list li { color: rgba(243,236,222,.85); }
.plan--featured .plan__list li::before { color: var(--primary); }
.plan .btn { margin-top: auto; }
.plan--featured .btn--outline { color: var(--bg-on-dark); box-shadow: inset 0 0 0 1.5px rgba(243,236,222,.4); }
.plan--featured .btn--outline:hover { background: var(--bg-on-dark); color: var(--ink); }

/* =====================================================================
   Stats
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 26px; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--primary-deep); line-height: 1; }
.stat span { display: block; margin-top: 12px; font-size: .96rem; color: var(--ink-2); }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta { padding-block: var(--section-y); }
.cta__inner { background: var(--ink-deep); border-radius: 28px; padding: clamp(44px, 7vw, 88px) clamp(28px, 5vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(108,76,241,.28), transparent 60%); }
.cta__title { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--bg-on-dark); line-height: 1.08; letter-spacing: -.01em; }
.cta__sub { position: relative; margin-top: 16px; font-size: 1.16rem; color: rgba(243,236,222,.76); }
.cta__form { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta__form input { min-width: min(340px, 82vw); height: 58px; padding-inline: 22px; border-radius: var(--r-pill); border: 1px solid rgba(243,236,222,.24); background: rgba(243,236,222,.06); color: var(--bg-on-dark); font-size: 1rem; }
.cta__form input::placeholder { color: rgba(243,236,222,.5); }
.cta__form input:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.cta__fine { position: relative; margin-top: 18px; font-size: .88rem; color: rgba(243,236,222,.6); }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--ink-deep); color: rgba(243,236,222,.7); padding-block: clamp(56px, 8vw, 88px) 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(243,236,222,.1); }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: .98rem; color: rgba(243,236,222,.6); }
.footer__col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,236,222,.5); margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; font-size: .98rem; color: rgba(243,236,222,.78); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--primary); }
.footer__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .86rem; color: rgba(243,236,222,.5); }

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .hero__grid, .spotlight__grid { grid-template-columns: 1fr; }
  .hero__visual, .spotlight__visual { justify-self: start; margin-top: 12px; }
  .hero__analytics { display: none; }
  .steps, .features, .plans { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.show { display: flex; }
  .steps, .features, .plans, .split, .stats { grid-template-columns: 1fr; }
  .feature--wide { grid-column: span 1; }
  .hero__meta { gap: 14px; }
  .hero__divider { display: none; }
  .hero__creators { right: 4px; bottom: 10px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   SHOWCASE 1 — Infinite client-logo marquee
   (influcio "Our clients come from")
   ===================================================================== */
.marquee-sec { padding-block: 46px; border-block: 1px solid var(--line); background: var(--bg); }
.marquee { position: relative; margin-top: 26px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: clamp(40px, 6vw, 72px); width: max-content;
  animation: marquee-x 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.24rem; letter-spacing: .01em; color: var(--ink); opacity: .92;
  white-space: nowrap; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.marquee .logo:hover { opacity: 1; transform: translateY(-1px); }
.marquee .logo svg { width: 26px; height: 26px; color: var(--primary); }
/* brand colours per platform (8-logo cycle, repeated) */
.marquee .logo:nth-child(8n+1) svg { color: #010101; } /* TikTok */
.marquee .logo:nth-child(8n+2) svg { color: #E1306C; } /* Instagram */
.marquee .logo:nth-child(8n+3) svg { color: #FF0000; } /* YouTube */
.marquee .logo:nth-child(8n+4) svg { color: #010101; } /* X */
.marquee .logo:nth-child(8n+5) svg { color: #0A66C2; } /* LinkedIn */
.marquee .logo:nth-child(8n+6) svg { color: #1877F2; } /* Facebook */
.marquee .logo:nth-child(8n+7) svg { color: #9146FF; } /* Twitch */
.marquee .logo:nth-child(8n)   svg { color: #E60023; } /* Pinterest */
@keyframes marquee-x { to { transform: translateX(-50%); } }

/* =====================================================================
   SHOWCASE 2 — The AI creator agent → draggable short-video reel
   ===================================================================== */
.agent { padding-block: var(--section-y); text-align: center; overflow: hidden; }
.agent__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink); line-height: 1.08; letter-spacing: -.01em; margin-bottom: 12px; }
.agent__title em { font-style: normal; background: linear-gradient(100deg, var(--primary), #C43C9E);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.agent__lede { color: var(--ink-2); font-size: 1.12rem; max-width: 54ch; margin: 0 auto clamp(26px, 4vw, 40px); }

/* toolbar: live "AI working" status · drag hint · prev/next */
.reel__bar { display: flex; align-items: center; gap: 16px; text-align: left; }
.reel__live { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--ink); }
.reel__pulse { width: 9px; height: 9px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.55); animation: reelPulse 1.9s infinite; }
.reel__status { font-style: normal; color: var(--primary); font-weight: 700; }
.reel__hint { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .88rem; margin-right: auto; }
.reel__hint svg { width: 16px; height: 16px; animation: hintNudge 1.6s var(--ease) infinite; }
.reel__nav { display: inline-flex; gap: 8px; }
.reel__btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--card);
  color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease); }
.reel__btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.reel__btn:disabled { opacity: .35; cursor: default; transform: none; box-shadow: none; }
@keyframes reelPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
@keyframes hintNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* the scroller — full-bleed, first card aligned to the container edge */
.reel { margin-top: clamp(20px, 3vw, 30px); overflow-x: auto; overflow-y: hidden; cursor: grab;
  scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  padding-left: max(var(--pad-x), calc((100vw - var(--container)) / 2 + var(--pad-x))); }
.reel::-webkit-scrollbar { display: none; }
.reel:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 20px; }
.reel.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.reel__track { display: flex; gap: 16px; width: max-content; padding: 6px var(--pad-x) 10px 0; }

.reel__card { position: relative; flex: 0 0 auto; width: clamp(198px, 20vw, 248px); aspect-ratio: 9 / 16;
  border-radius: 20px; overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow-md);
  background: var(--g, linear-gradient(155deg, var(--primary), #C43C9E));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.reel__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reel__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s var(--ease); }
.reel__media.is-on { opacity: 1; }
.reel__card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,8,32,.18) 0%, rgba(12,8,32,0) 26%, rgba(12,8,32,.12) 56%, rgba(12,8,32,.72) 100%); }

.reel__step { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .68rem; font-weight: 700; letter-spacing: .01em;
  color: #fff; background: rgba(255,255,255,.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); padding: 5px 11px; border-radius: 999px; }
.reel__dur { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: .64rem; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.42); padding: 4px 7px; border-radius: 7px; font-variant-numeric: tabular-nums; }
.reel__play { position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--primary);
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.reel__play svg { width: 20px; height: 20px; margin-left: 2px; }
.reel__card:hover .reel__play { transform: translate(-50%,-50%) scale(1.12); }
.reel__card.playing .reel__play { opacity: 0; }

.reel__foot { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; text-align: left; }
.reel__cap { color: rgba(255,255,255,.92); font-size: .72rem; line-height: 1.32; margin-bottom: 8px; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.reel__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.reel__who { display: flex; flex-direction: column; color: #fff; min-width: 0; }
.reel__who b { font-size: .82rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reel__who i { font-style: normal; font-size: .66rem; opacity: .85; }
.reel__metric { flex: 0 0 auto; font-size: .64rem; font-weight: 700; color: #fff; background: rgba(108,76,241,.9);
  border: 1px solid rgba(255,255,255,.25); padding: 4px 7px; border-radius: 7px; white-space: nowrap; }

.reel__dots { display: flex; gap: 7px; justify-content: center; margin-top: clamp(18px, 2.5vw, 26px); }
.reel__dots span { width: 7px; height: 7px; border-radius: 999px; background: var(--line); cursor: pointer; transition: all .3s var(--ease); }
.reel__dots span.on { width: 22px; background: var(--primary); }

/* =====================================================================
   SHOWCASE 3 — Case / company bento (influcio "Driving Success…")
   ===================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(0, auto); gap: 20px; }
.bento__intro { grid-column: span 2; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; }
.bento__intro h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink); line-height: 1.18; letter-spacing: -.01em; }
.bento__label { margin: 22px 0 12px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pill { font-size: .9rem; font-weight: 500; color: var(--ink-2); padding: 8px 16px; border-radius: var(--r-pill);
  position: relative; background: var(--card);
  border: 1.5px solid transparent;
  background-image: linear-gradient(var(--card), var(--card)), linear-gradient(100deg, var(--primary), var(--accent));
  background-origin: border-box; background-clip: padding-box, border-box; transition: transform .2s var(--ease); }
.pill:hover { transform: translateY(-2px); }
.bento__intro .btn { align-self: flex-start; margin-top: auto; }
.bento__case { grid-column: span 1; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; }
.bento__shot { height: 200px; background: linear-gradient(150deg, #1D1740, #4A2E8A); position: relative; color: #fff;
  display: flex; align-items: flex-end; padding: 18px; font-weight: 600; }
.bento__shot::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 75% 20%, rgba(108,76,241,.55), transparent 60%); }
.bento__shot span { position: relative; }
.bento__caseBody { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bento__brandline { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; color: var(--ink); }
.bento__logo { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--primary), #9A6BFF);
  display: grid; place-items: center; color: #fff; font-size: .9rem; font-weight: 700; }
.bento__case p { color: var(--ink-2); font-size: .98rem; }
.bento__metric { margin-top: auto; display: flex; align-items: baseline; gap: 12px; }
.bento__metric strong { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--primary-deep); line-height: 1; }
.bento__metric span { font-size: .92rem; color: var(--muted); }
.brand-card { position: relative; min-height: 190px; border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; padding: 22px; color: #fff; }
.brand-card--1 { background: linear-gradient(150deg, #2A1E63, #6C4CF1); }
.brand-card--2 { background: linear-gradient(150deg, #7A1E44, #FF5C7A); }
.brand-card--3 { background: linear-gradient(150deg, #0E4A45, #37D7C4); }
.brand-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: .02em; }
.brand-card__meta { font-size: .92rem; opacity: .9; }
.brand-card__stat { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }

/* =====================================================================
   SHOWCASE 4 — Social creator wall (influcio "Backed by 4M+…")
   ===================================================================== */
.social { position: relative; padding-block: var(--section-y); overflow: hidden; background: var(--bg); }
.social::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(108,76,241,.18) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 45% at 50% 12%, #000, transparent 70%);
          mask-image: radial-gradient(60% 45% at 50% 12%, #000, transparent 70%); }
.social__badges { position: relative; z-index: 2; display: flex; justify-content: center; gap: 14px; margin-bottom: 22px; }
.social__badge { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-md); }
.social__badge svg { width: 24px; height: 24px; }
.social__badge:nth-child(1) { background: #111; transform: translateY(6px); }
.social__badge:nth-child(2) { background: linear-gradient(135deg, #F9CE34, #EE2A7B 50%, #6228D7); }
.social__badge:nth-child(3) { background: #FF0000; transform: translateY(6px); }
.social__badge:nth-child(4) { background: #0A66C2; }
.social__badge:nth-child(5) { background: #111; transform: translateY(6px); }
.social__title { position: relative; z-index: 2; text-align: center; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ink); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 44px; }
.social__title em { font-style: normal; background: linear-gradient(100deg, var(--primary), #37D7C4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.social__cols { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  height: 660px; overflow: hidden; max-width: 1000px; margin-inline: auto;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent); }
.social__col { overflow: hidden; }
.social__track { display: grid; gap: 22px; animation: social-up 44s linear infinite; }
.social__col:nth-child(even) .social__track { animation-name: social-down; animation-duration: 52s; }
.social__col:hover .social__track { animation-play-state: paused; }
@keyframes social-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes social-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.scard { border-radius: 16px; overflow: hidden; aspect-ratio: 9 / 16; position: relative; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between; padding: 14px;
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-md); }
.scard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,0) 40%, rgba(0,0,0,.55)); z-index: 0; }
.scard > * { position: relative; z-index: 1; }
.scard--a { background: linear-gradient(150deg, #6C4CF1, #241B52); }
.scard--b { background: linear-gradient(150deg, #FF5C7A, #7A1E44); }
.scard--c { background: linear-gradient(150deg, #37D7C4, #0E4A45); }
.scard--d { background: linear-gradient(150deg, #F9CE34, #6228D7); }
.scard--e { background: linear-gradient(150deg, #2E86D8, #14102A); }
.scard--f { background: linear-gradient(150deg, #9A6BFF, #C43C9E); }
.scard__top { display: flex; align-items: center; gap: 8px; }
.scard__av { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.25);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700; border: 1.5px solid rgba(255,255,255,.6); }
.scard__handle { font-size: .8rem; font-weight: 600; }
.scard__plat { margin-left: auto; width: 22px; height: 22px; border-radius: 6px; background: rgba(0,0,0,.4);
  display: grid; place-items: center; }
.scard__plat svg { width: 13px; height: 13px; }
.scard__cap { font-size: .82rem; font-weight: 500; line-height: 1.35; }
.scard__eng { display: flex; gap: 14px; font-size: .76rem; font-weight: 600; margin-top: 8px; opacity: .95; }
.scard__eng span { display: inline-flex; align-items: center; gap: 4px; }

/* =====================================================================
   Showcase — responsive
   ===================================================================== */
@media (max-width: 960px) {
  .reel__card { width: clamp(180px, 46vw, 224px); }
  .reel__hint { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__intro { grid-column: span 2; }
  .bento__case { grid-column: span 1; grid-row: span 1; }
  .social__cols { grid-template-columns: repeat(2, 1fr); height: 600px; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento__intro, .bento__case { grid-column: span 1; }
  .social__cols { grid-template-columns: repeat(2, 1fr); height: 480px; gap: 14px; }
  .social__badge { width: 44px; height: 44px; border-radius: 13px; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .social__track { animation: none !important; }
}

/* =====================================================================
   PRODUCT / APP PROTOTYPE  (get-started · register · creator card)
   ===================================================================== */
.app-top { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
.app-top__inner { display: flex; align-items: center; gap: 16px; height: 64px; max-width: 1120px; margin-inline: auto; padding-inline: var(--pad-x); }
.app-top__exit { margin-left: auto; font-size: .92rem; font-weight: 500; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; transition: color .2s var(--ease); }
.app-top__exit:hover { color: var(--ink); }
.app-wrap { max-width: 780px; margin-inline: auto; padding: clamp(28px, 5vw, 52px) var(--pad-x) 90px; }

/* ---- dual-entry gateway ---- */
.gate { max-width: 1000px; margin-inline: auto; padding: clamp(44px, 7vw, 96px) var(--pad-x); text-align: center; }
.gate__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--ink); line-height: 1.08; letter-spacing: -.01em; }
.gate__title em { font-style: normal; background: linear-gradient(100deg, var(--primary), #C43C9E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.gate__sub { margin: 16px auto 0; max-width: 56ch; font-size: 1.14rem; color: var(--ink-2); }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: clamp(36px, 5vw, 56px); text-align: left; }
.choice { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px, 3.5vw, 40px); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.choice::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; }
.choice--creator::before { background: linear-gradient(90deg, var(--primary), #9A6BFF); }
.choice--brand::before { background: linear-gradient(90deg, var(--accent), #FF9F6B); }
.choice:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,76,241,.4); }
.choice__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.choice--creator .choice__ic { background: linear-gradient(135deg, var(--primary), #9A6BFF); }
.choice--brand .choice__ic { background: linear-gradient(135deg, var(--accent), #FF9F6B); }
.choice__ic svg { width: 28px; height: 28px; }
.choice__eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.choice h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin: 6px 0 12px; }
.choice p { color: var(--ink-2); font-size: 1rem; margin-bottom: 18px; }
.choice .ticks { margin: 0 0 26px; }
.choice .btn { margin-top: auto; }
.gate__foot { margin-top: 30px; font-size: .95rem; color: var(--muted); }
.gate__foot a { color: var(--primary-deep); font-weight: 600; }

/* ---- stepper ---- */
.stepper { display: flex; align-items: center; margin-bottom: 36px; }
.stepper__item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.stepper__num { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--card); border: 1.5px solid var(--line); color: var(--muted); font-size: .82rem; transition: all .2s var(--ease); }
.stepper__item.active { color: var(--ink); }
.stepper__item.active .stepper__num { background: var(--primary); border-color: var(--primary); color: #fff; }
.stepper__item.done .stepper__num { background: var(--primary-tint); border-color: var(--primary-tint); color: var(--primary-deep); }
.stepper__line { flex: 1; height: 2px; background: var(--line); margin: 0 10px; min-width: 16px; }
.stepper__line.done { background: var(--primary); }

/* ---- form ---- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.step-title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.step-sub { color: var(--muted); margin: 6px 0 26px; }
.field { margin-bottom: 20px; }
.field > label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.input, .select, textarea.input { width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--card-2); color: var(--ink); font-size: 1rem; font-family: var(--font-body); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
textarea.input { height: auto; padding: 12px 15px; resize: vertical; min-height: 90px; }
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-tint); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hint { font-size: .82rem; color: var(--muted); margin-top: 7px; }

.chips-select { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-opt { cursor: pointer; position: relative; }
.chip-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip-opt span { display: inline-block; padding: 9px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: all .18s var(--ease); }
.chip-opt input:checked + span { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip-opt input:focus-visible + span { box-shadow: 0 0 0 3px var(--primary-tint); }

.radio-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.radio-card { cursor: pointer; position: relative; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card > span { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 16px 8px; border: 1.5px solid var(--line); border-radius: 14px; text-align: center; font-size: .88rem; font-weight: 600; color: var(--ink-2); transition: all .18s var(--ease); height: 100%; }
.radio-card svg { width: 22px; height: 22px; color: var(--muted); transition: color .18s; }
.radio-card input:checked + span { border-color: var(--primary); background: var(--primary-tint); color: var(--primary-deep); }
.radio-card input:checked + span svg { color: var(--primary-deep); }
.radio-card input:focus-visible + span { box-shadow: 0 0 0 3px var(--primary-tint); }

/* ---- social connect ---- */
.social-row { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: var(--card); transition: border-color .25s var(--ease), background .25s var(--ease); }
.social-row.connected { border-color: rgba(55,215,196,.6); background: linear-gradient(90deg, rgba(55,215,196,.06), transparent); }
.social-row__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.social-row__ic svg { width: 22px; height: 22px; }
.social-row__who { min-width: 0; }
.social-row__name { font-weight: 600; color: var(--ink); }
.social-row__meta { font-size: .82rem; color: var(--muted); }
.social-row__stats { margin-left: auto; display: none; gap: 20px; text-align: right; }
.social-row.connected .social-row__stats { display: flex; }
.social-row.connected .social-row__cta { display: none; }
.social-row__stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1; }
.social-row__stat span { font-size: .72rem; color: var(--muted); }
.social-row__cta { margin-left: auto; }
.social-row__done { display: none; margin-left: 12px; color: #17A594; font-weight: 600; font-size: .85rem; align-items: center; gap: 5px; }
.social-row.connected .social-row__done { display: inline-flex; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.form-nav .spacer { flex: 1; }

/* ---- generating overlay ---- */
.gen { text-align: center; padding: 40px 0; }
.gen__orb { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 26px; background: conic-gradient(from 0deg, #6C4CF1, #C43C9E, #37D7C4, #6C4CF1); animation: orb-spin 3s linear infinite; box-shadow: 0 18px 50px -16px rgba(108,76,241,.6); position: relative; }
.gen__orb::after { content: ""; position: absolute; inset: 16%; border-radius: 50%; background: var(--card); }
.gen__orb::before { content: "✦"; position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; color: var(--primary-deep); font-size: 1.6rem; }

/* ---- creator card (result) ---- */
.cc-stage { display: grid; grid-template-columns: minmax(0, 524px) 1fr; gap: 40px; align-items: start; }
.cc-poster { width: 100%; padding: clamp(28px, 3.4vw, 52px); border-radius: 22px; display: flex; justify-content: center; align-items: center;
  background: linear-gradient(135deg, #6C4CF1, #C43C9E 58%, #FF7A66); }
.cc-poster .creatorcard { box-shadow: 0 26px 60px -22px rgba(15, 8, 50, .55); }
/* ===== Creator Card · "EverTwin Glow" — warm violet→magenta→coral, glossy 3D-look avatar ===== */
.creatorcard { width: 100%; max-width: 420px; border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(70,20,95,.55); border: 1px solid rgba(255,255,255,.7); background: var(--card); }
/* header — layered warm light: violet + coral + a mint kiss, with glossy highlights */
.cc__top { position: relative; height: 154px; background:
  radial-gradient(120% 95% at 10% 16%, #7C5CFC 0%, transparent 56%),
  radial-gradient(95% 95% at 94% 4%, #FF7A66 0%, transparent 54%),
  radial-gradient(70% 78% at 80% 98%, rgba(55,215,196,.6) 0%, transparent 55%),
  linear-gradient(135deg, #6C4CF1 0%, #C43C9E 58%, #FF7A66 100%); }
.cc__top::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(56% 68% at 74% 8%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(38% 42% at 22% 92%, rgba(255,255,255,.18), transparent 60%); }
.cc__brandtag { position: absolute; top: 15px; left: 18px; z-index: 1; display: inline-flex; align-items: center; gap: 7px; color: #fff; font-family: var(--font-display); font-weight: 600; letter-spacing: .16em; font-size: .82rem; text-shadow: 0 1px 6px rgba(50,10,70,.3); }
.cc__brandtag i { width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, #fff, #E9E3FE 60%, #C7B8FF); display: inline-block; }
.cc__body { padding: 0 24px 26px; margin-top: -54px; position: relative; }
/* glossy, dimensional avatar — placeholder for the creator's Digital IP (swap in an <img> later) */
.cc__avatar { position: relative; width: 108px; height: 108px; border-radius: 32px; display: grid; place-items: center; overflow: hidden;
  font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; color: #fff;
  background: linear-gradient(152deg, #8E6DFF 0%, #6C4CF1 40%, #C43C9E 76%, #FF7A66 100%);
  border: 4px solid var(--card);
  box-shadow: 0 18px 38px -12px rgba(108,76,241,.7), inset 0 3px 12px rgba(255,255,255,.5), inset 0 -12px 26px rgba(60,10,80,.32);
  text-shadow: 0 2px 10px rgba(40,10,70,.4); }
.cc__avatar::before { content: ""; position: absolute; top: 6px; left: 10px; right: 30px; height: 38px; z-index: 1;
  border-radius: 24px 24px 44px 44px; background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0)); pointer-events: none; }
.cc__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc__idrow { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.cc__name { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--ink); letter-spacing: -.01em; }
.cc__verified { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 700; color: #0F9D76; background: rgba(55,215,196,.16); padding: 4px 9px; border-radius: var(--r-pill); }
.cc__handle { color: var(--muted); font-size: .92rem; margin-top: 3px; }
.cc__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.cc__tags span { font-size: .78rem; font-weight: 600; color: var(--primary-deep);
  background: linear-gradient(135deg, rgba(108,76,241,.13), rgba(196,60,158,.13)); border: 1px solid rgba(108,76,241,.16); padding: 5px 12px; border-radius: var(--r-pill); }
.cc__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0;
  padding: 16px 12px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(108,76,241,.05), rgba(255,122,102,.07)); }
.cc__stat { text-align: center; }
.cc__stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--primary-deep); line-height: 1; }
.cc__stat span { font-size: .72rem; color: var(--muted); margin-top: 3px; display: block; }
.cc__intro { font-size: .96rem; color: var(--ink-2); line-height: 1.62; margin-top: 2px; }
.cc__dirs { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.cc__dir { font-size: .8rem; font-weight: 500; color: var(--ink-2); background: var(--card-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--r-pill); }
.cc__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted); }
.cc__qr { width: 40px; height: 40px; border-radius: 8px; background:
  conic-gradient(#15111F 25%, transparent 0 50%, #15111F 0 75%, transparent 0) 0/10px 10px; opacity: .85; }

/* card side actions */
.cc-actions h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.cc-actions p { color: var(--ink-2); margin: 8px 0 22px; }
.share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 50px; padding: 0 10px; white-space: nowrap; border-radius: 12px; border: 1px solid var(--line); background: var(--card); font-weight: 600; font-size: .88rem; color: var(--ink); cursor: pointer; transition: transform .18s var(--ease), border-color .2s, background .2s; }
.share-btn:hover { transform: translateY(-2px); border-color: rgba(108,76,241,.4); }
.share-btn svg { width: 18px; height: 18px; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); background: var(--ink-deep); color: #fff; padding: 12px 20px; border-radius: var(--r-pill); font-size: .92rem; font-weight: 500; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 100; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 800px) {
  .choices { grid-template-columns: 1fr; }
  .cc-stage { grid-template-columns: 1fr; justify-items: center; }
  .cc-actions { max-width: 420px; }
  .radio-cards { grid-template-columns: repeat(2, 1fr); }
  .stepper__label { display: none; }
}

/* =====================================================================
   ASSET SLOTS + NEW SECTIONS  (Product Tour · Testimonials · Client logos)
   Drop a file at the documented path and it auto-appears; until then a
   styled placeholder shows.  See ASSETS-README.md for every slot.
   ===================================================================== */

/* ---- generic image slot: <img onerror="this.remove()"> over a fallback ---- */
.ph { position: relative; overflow: hidden; }
.ph > img, .ph > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }

/* ---- Hero background-video slot (optional; falls back to aurora) ---- */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  opacity: 0; transition: opacity .6s var(--ease); background: transparent; pointer-events: none; }
.hero.has-video .hero__video { opacity: 1; }
.hero.has-video .hero__bg { opacity: .35; }
.hero.has-video::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(247,245,255,.92) 0%, rgba(247,245,255,.72) 42%, rgba(247,245,255,.15) 100%); }

/* =====================================================================
   Product Tour ("See it in action") — real product screenshots
   ===================================================================== */
.tour { padding-block: var(--section-y); }
.tour__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; margin-top: clamp(40px, 6vw, 72px); }
.tour__row:first-of-type { margin-top: clamp(30px, 4vw, 52px); }
.tour__row:nth-of-type(even) .tour__media { order: 2; }
.tour__eyebrow { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 14px; }
.tour__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--ink); line-height: 1.14; letter-spacing: -.01em; }
.tour__copy p { margin-top: 14px; color: var(--ink-2); font-size: 1.08rem; }
.tour__copy .ticks { margin-top: 20px; }

/* macOS-style window frame around each screenshot */
.frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--card); }
.frame__bar { height: 36px; background: var(--card-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding-inline: 15px; }
.frame__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.frame__bar i:nth-child(1) { background: #FF5F57; } .frame__bar i:nth-child(2) { background: #FEBC2E; } .frame__bar i:nth-child(3) { background: #28C840; }
.frame__url { margin-left: 12px; font-size: .74rem; color: var(--muted); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 12px; }
.frame img { display: block; width: 100%; height: auto; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.tmls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tml { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.tml__stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.tml__quote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; flex: 1; }
.tml__foot { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tml__avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-weight: 700; font-size: .95rem; color: #fff; background: linear-gradient(135deg, #7C5CFC, #C43C9E); }
.tml__who { min-width: 0; }
.tml__name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.tml__role { font-size: .84rem; color: var(--muted); }
.tml__logo { margin-left: auto; font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: .95rem; opacity: .8; }
.tml__logo .ph { width: 84px; height: 30px; }

/* placeholder badge for illustrative content */
.slot-note { display: inline-block; margin-top: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--muted); background: var(--card-2); border: 1px dashed var(--line); border-radius: var(--r-pill); padding: 3px 10px; }

/* =====================================================================
   Trusted-by client logo wall (empty slots for real clients)
   ===================================================================== */
.clients { padding-block: clamp(40px, 6vw, 64px); text-align: center; }
.clients__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.clients__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 940px; margin-inline: auto; }
.client-slot { position: relative; height: 66px; border: 1px dashed var(--line); border-radius: 12px; overflow: hidden;
  display: grid; place-items: center; background: var(--card); }
.client-slot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 12px; z-index: 2; background: var(--card); }
.client-slot__ph { font-size: .72rem; color: var(--muted); opacity: .7; }

@media (max-width: 900px) {
  .tour__row { grid-template-columns: 1fr; gap: 26px; }
  .tour__row:nth-child(even) .tour__media { order: 0; }
  .tmls { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================================
   MORE ASSET SLOTS  (Digital IP persona · case bento · product-tour video)
   ===================================================================== */
/* Digital IP persona — real face image (or drop a talking-head video) */
.persona__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.persona__live { z-index: 2; }

/* generic cover image for gradient panels (case bento etc.) */
.media-slot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.bento__shot::before { z-index: 2; }
.bento__shot span { z-index: 3; }
.bento__shot:has(img.media-slot)::before { background: linear-gradient(180deg, transparent 45%, rgba(15,11,34,.8)); }
.brand-card > span { position: relative; z-index: 3; }
.brand-card:has(img.media-slot)::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(160deg, rgba(20,16,42,.30), rgba(20,16,42,.78)); }

/* Product Tour — image OR looping video (drop assets/slots/tour-N.mp4) */
.frame__media { position: relative; line-height: 0; }
.frame__media img { display: block; width: 100%; height: auto; }
.frame__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s var(--ease); z-index: 2; }
.frame__video.is-on { opacity: 1; }

/* =====================================================================
   Influcio-style flip case card (light summary → hover/tap dark detail)
   ===================================================================== */
.casecard { position: relative; min-height: 460px; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); cursor: pointer; }
.casecard__face { position: absolute; inset: 0; display: flex; flex-direction: column; transition: opacity .45s var(--ease); }
.casecard__front { background: var(--card); }
.casecard__shot { height: 46%; position: relative; overflow: hidden; background: linear-gradient(150deg, #1D1740, #4A2E8A); display: flex; align-items: flex-end; padding: 16px; }
.casecard__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.casecard__shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,11,34,.5)); z-index: 2; }
.casecard__shotlabel { position: relative; z-index: 3; color: #fff; font-weight: 600; font-size: .86rem; }
.casecard__fbody { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.casecard__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.casecard__logo { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .92rem; background: linear-gradient(135deg, var(--primary), #9A6BFF); overflow: hidden; flex-shrink: 0; }
.casecard__logo img { width: 100%; height: 100%; object-fit: cover; }
.casecard__front p { color: var(--ink-2); font-size: .98rem; }
.casecard__metric { margin-top: auto; display: flex; align-items: baseline; gap: 10px; }
.casecard__metric strong { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.casecard__metric span { font-size: .9rem; color: var(--muted); }
.casecard__fliphint { position: absolute; top: 14px; right: 14px; z-index: 4; font-size: .68rem; font-weight: 600; letter-spacing: .04em; color: #fff; background: rgba(0,0,0,.35); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: var(--r-pill); }
.casecard__back { opacity: 0; background: var(--ink-deep); color: var(--bg-on-dark); padding: 26px; overflow: auto; }
.casecard__back::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 82% 12%, rgba(108,76,241,.35), transparent 60%); pointer-events: none; }
.casecard__back > * { position: relative; z-index: 1; }
.casecard__tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0; }
.casecard__tags span { font-size: .78rem; color: var(--bg-on-dark); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-pill); padding: 4px 12px; }
.casecard__back p { color: rgba(241,238,255,.8); font-size: .95rem; line-height: 1.5; }
.casecard__metrics { display: flex; gap: 30px; margin: 16px 0; }
.casecard__metrics strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1; color: #fff; }
.casecard__metrics span { font-size: .78rem; color: rgba(241,238,255,.6); }
.casecard__quote { font-style: italic; color: var(--bg-on-dark); font-size: .98rem; line-height: 1.55; margin: 6px 0 16px; }
.casecard__by { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(241,238,255,.85); }
.casecard__by .casecard__logo { width: 30px; height: 30px; font-size: .8rem; }
@media (hover: hover) { .casecard:hover .casecard__front { opacity: 0; } .casecard:hover .casecard__back { opacity: 1; } }
.casecard.flipped .casecard__front { opacity: 0; }
.casecard.flipped .casecard__back { opacity: 1; }

/* =====================================================================
   Interactive product demo stepper (replaces the dry flow + product tour)
   ===================================================================== */
.demo { padding-block: var(--section-y); --demo-dur: 4.2s; }
.demo__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.demo__steps { display: flex; flex-direction: column; gap: 4px; }
.demo__step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 15px 16px; border-radius: 14px; cursor: pointer; border: 1px solid transparent; background: transparent; text-align: left; transition: background .3s var(--ease), border-color .3s var(--ease); overflow: hidden; }
.demo__step:hover { background: var(--card); }
.demo__step.active { background: var(--card); border-color: var(--line); box-shadow: var(--shadow-sm); }
.demo__num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .82rem; background: var(--primary-tint); color: var(--primary-deep); transition: background .3s var(--ease), color .3s var(--ease); }
.demo__step.active .demo__num { background: var(--primary); color: #fff; }
.demo__stepbody h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.demo__stepbody p { font-size: .92rem; color: var(--muted); margin-top: 3px; }
.demo__step.active .demo__stepbody p { color: var(--ink-2); }
.demo__prog { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--primary); }
.demo__step.active .demo__prog { width: 100%; }
/* right: browser frame with crossfading real screens */
.demo__frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--card); }
.demo__bar { height: 36px; background: var(--card-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding-inline: 15px; }
.demo__bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.demo__bar i:nth-child(1) { background: #FF5F57; } .demo__bar i:nth-child(2) { background: #FEBC2E; } .demo__bar i:nth-child(3) { background: #28C840; }
.demo__url { margin-left: 12px; font-size: .74rem; color: var(--muted); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 12px; transition: color .3s; }
.demo__imgs { position: relative; aspect-ratio: 16 / 10; background: var(--card-2); }
.demo__img, .demo__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transition: opacity .55s var(--ease); }
.demo__img.active, .demo__vid.active { opacity: 1; }

/* creator reel — respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reel__pulse, .reel__hint svg { animation: none; }
  .reel { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .demo__grid { grid-template-columns: 1fr; }
  .demo__steps { order: 2; }
}
