/* ============================================================
   SWAYO — swayo.co.za
   Palette, type scale & spacing mirrored from the TRYBE
   reference captures (desktop 2708×13506 / mobile 800×12450).
   ============================================================ */

:root {
  --violet: #7c5cff;
  --violet-deep: #6a45f2;
  --violet-soft: #efeafe;
  --ink: #111116;
  --muted: #5c5c6e;
  --faint: #8a8a99;
  --bg: #fbfaff;
  --lav-1: #f4f0fd;
  --lav-2: #e7ddfb;
  --tint-lavender: #f0eafe;
  --tint-peach: #fdeee2;
  --tint-sky: #e9f1fd;
  --tint-mint: #e8f7ee;
  --tint-pink: #fdeaf3;
  --card: #ffffff;
  --footer: #241b5e;
  --green: #1fae5c;
  --orange: #f07b28;
  --blue: #3d7bf5;
  --gold: #e8b73a;
  --r-card: 24px;
  --r-mock: 16px;
  --shadow-card: 0 14px 34px rgba(66, 43, 150, 0.10), 0 3px 8px rgba(66, 43, 150, 0.05);
  --shadow-soft: 0 8px 22px rgba(66, 43, 150, 0.08);
  --shadow-nav: 0 10px 28px rgba(66, 43, 150, 0.12);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(2.7rem, 6.6vw, 4.7rem); letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); text-align: center; }
h3 { font-size: 1.28rem; letter-spacing: -0.015em; }

main > section { padding: clamp(84px, 11vw, 150px) 24px 0; }
.section-sub {
  max-width: 560px; margin: 18px auto 0; text-align: center;
  color: var(--muted); font-size: 1.08rem;
}
.eyebrow {
  text-align: center; color: var(--violet); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.18em;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ============================================================
   NAV — floating pill
   ============================================================ */
.nav-wrap { position: fixed; inset: 18px 0 auto; z-index: 50; padding: 0 16px; }
.nav {
  max-width: 1060px; margin: 0 auto; height: 62px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px);
  border-radius: 999px; box-shadow: var(--shadow-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px 0 20px; position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-tile {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(145deg, #9a79ff 0%, #6a45f2 60%, #5334d6 100%);
  color: #fff; font-weight: 800; font-size: 1.35rem; line-height: 1;
  box-shadow: 0 6px 16px rgba(106, 69, 242, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.brand-tile.lg { width: 56px; height: 56px; border-radius: 16px; font-size: 1.9rem; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 30px; font-weight: 550; font-size: 0.98rem; }
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-signin {
  font-weight: 600; font-size: 0.95rem; padding: 10px 20px; border-radius: 999px;
  transition: background 0.2s;
}
.nav-signin:hover { background: var(--violet-soft); }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 999px; position: relative; }
.nav-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 18px; }
.nav-burger span:nth-child(2) { top: 25px; }
.nav-open .nav-burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(130px, 18vw, 190px) !important;
  background:
    radial-gradient(90% 60% at 50% 88%, var(--lav-2) 0%, rgba(231, 221, 251, 0) 70%),
    linear-gradient(180deg, #fdfcff 0%, var(--lav-1) 100%);
  overflow: hidden;
}
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.proof-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border-radius: 999px; padding: 7px 16px 7px 8px;
  box-shadow: var(--shadow-soft); font-size: 0.88rem; color: var(--muted);
  margin-bottom: 30px;
}
.proof-chip strong { color: var(--ink); font-weight: 650; }
.proof-avatar {
  width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, #f3a469, #d96a9e); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.02em;
}
.hero-sub { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.18rem); max-width: 620px; margin: 22px auto 0; }
.btn-primary {
  display: inline-block; margin-top: 30px; padding: 15px 32px; border-radius: 999px;
  background: linear-gradient(180deg, #8d67ff 0%, #7048f0 100%);
  color: #fff; font-weight: 650; font-size: 1.02rem;
  box-shadow: 0 12px 26px rgba(112, 72, 240, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(112, 72, 240, 0.45), inset 0 1px 0 rgba(255,255,255,0.28); }

/* --- hero connector diagram --- */
.hero-diagram { position: relative; max-width: 1200px; height: 360px; margin: 26px auto 0; }
.wires { position: absolute; inset: 0; width: 100%; height: 100%; }
.wire {
  fill: none; stroke: #c9b8f6; stroke-width: 2;
  stroke-dasharray: 700; stroke-dashoffset: 700;
}
.drawn .wire { animation: draw 1.5s var(--ease-out) forwards; }
.drawn .wire:nth-child(2) { animation-delay: 0.1s; }
.drawn .wire:nth-child(3) { animation-delay: 0.2s; }
.drawn .wire:nth-child(4) { animation-delay: 0.15s; }
.drawn .wire:nth-child(5) { animation-delay: 0.25s; }
.drawn .wire:nth-child(6) { animation-delay: 0.35s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.node { fill: #fff; stroke: #b49bf3; stroke-width: 2; }

.logo-tile-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 168px; height: 168px; border-radius: 44px;
  background: linear-gradient(180deg, #f2ecff, #e4d9fc);
  box-shadow: 0 24px 60px rgba(106, 69, 242, 0.18);
  display: grid; place-items: center;
}
.logo-tile {
  width: 118px; height: 118px; border-radius: 32px; display: grid; place-items: center;
  background: linear-gradient(145deg, #9a79ff 0%, #6a45f2 60%, #5334d6 100%);
  color: #fff; font-weight: 800; font-size: 4rem; line-height: 1;
  box-shadow: 0 14px 30px rgba(83, 52, 214, 0.4), inset 0 2px 0 rgba(255,255,255,0.4);
}

.float-card { position: absolute; animation: bob 6s ease-in-out infinite alternate; }
.f-video1 { left: 8%; top: 6%; animation-delay: 0.3s; }
.f-video2 { right: 7%; top: 4%; animation-delay: 1.1s; }
.f-coin  { left: 3%; top: 58%; animation-delay: 0.7s; }
.f-ava1  { left: 42%; top: 82%; animation-delay: 1.5s; }
.f-ava2  { right: 12%; top: 78%; animation-delay: 0.1s; }
@keyframes bob { from { transform: translateY(-7px); } to { transform: translateY(7px); } }

.mini-video {
  width: 74px; height: 96px; border-radius: 16px; position: relative;
  box-shadow: 0 12px 26px rgba(66, 43, 150, 0.22); border: 3px solid #fff;
}
.mv-a { background: linear-gradient(160deg, #f7c07a 0%, #d96a9e 55%, #7a4ff0 100%); }
.mv-b { background: linear-gradient(160deg, #7ad3f7 0%, #6a8df0 55%, #3b2f9e 100%); }
.mv-tag {
  position: absolute; right: 6px; bottom: 6px; background: rgba(0,0,0,0.45);
  color: #fff; font-size: 0.5rem; font-weight: 700; padding: 2px 5px; border-radius: 5px;
}
.money-chip {
  position: absolute; right: -30px; top: 26px; background: #fff; border-radius: 999px;
  padding: 5px 11px; font-size: 0.76rem; font-weight: 700; color: var(--green);
  box-shadow: var(--shadow-soft); white-space: nowrap;
}
.coin {
  width: 54px; height: 54px; border-radius: 999px; display: grid; place-items: center;
  background: radial-gradient(circle at 32% 28%, #ffe9a8 0%, #f2c94c 55%, #d3a119 100%);
  color: #8a6206; font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 10px 22px rgba(211, 161, 25, 0.35), inset 0 2px 2px rgba(255,255,255,0.6);
}
.coin.sm { width: 42px; height: 42px; font-size: 1.15rem; }
.coin.sm.d { opacity: 0.85; }
.mini-ava {
  width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center;
  color: #fff; font-size: 0.72rem; font-weight: 700; border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
}
.mini-ava.sm { width: 36px; height: 36px; font-size: 0.6rem; border-width: 2px; }
.ma-a { background: linear-gradient(135deg, #f3a469, #d96a9e); }
.ma-b { background: linear-gradient(135deg, #69c9f3, #5a76e8); }
.ma-c { background: linear-gradient(135deg, #83e0a5, #2fa87b); }
.ma-d { background: linear-gradient(135deg, #b58cf5, #7048f0); }

/* ============================================================
   QUOTE + PHONE
   ============================================================ */
.quote-phone { text-align: center; background: linear-gradient(180deg, var(--lav-1) 0%, #fdfcff 100%); }
.pull-quote { font-style: italic; color: var(--muted); font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 500; }
.phone {
  width: min(300px, 78vw); margin: 34px auto 0; border-radius: 44px; background: #fff;
  padding: 10px; box-shadow: 0 30px 70px rgba(66, 43, 150, 0.18);
  position: relative;
}
.phone-progress {
  position: absolute; top: 22px; left: 34px; right: 34px; height: 3px;
  background: rgba(255,255,255,0.5); border-radius: 3px; z-index: 2; overflow: hidden;
}
.phone-progress span { display: block; height: 100%; width: 34%; background: var(--violet); border-radius: 3px; animation: progress 7s linear infinite; }
@keyframes progress { from { width: 6%; } to { width: 96%; } }
.phone-screen {
  border-radius: 36px; height: 520px; position: relative; overflow: hidden;
  background: linear-gradient(165deg, #ffd9a8 0%, #f0949e 38%, #9a70e8 78%, #4a3ab0 100%);
}
.ugc-shape { position: absolute; border-radius: 999px; filter: blur(2px); opacity: 0.5; }
.u1 { width: 220px; height: 220px; background: #fff3; left: -60px; top: 40px; }
.u2 { width: 160px; height: 160px; background: #ffffff2b; right: -40px; top: 180px; }
.u3 { width: 260px; height: 260px; background: #00000022; left: 30px; bottom: -90px; filter: blur(10px); }
.ugc-meta {
  position: absolute; left: 18px; bottom: 64px; display: flex; gap: 10px; align-items: center;
  color: #fff; text-align: left; text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.ugc-ava {
  width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, #83e0a5, #2fa87b); font-size: 0.68rem; font-weight: 700;
  border: 2px solid #fff; flex: none;
}
.ugc-name { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.ugc-line { font-size: 0.82rem; opacity: 0.92; }
.phone-chip {
  position: absolute; left: 18px; bottom: 18px; background: rgba(0, 0, 0, 0.45);
  color: #fff; font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.phone-mute {
  position: absolute; right: 18px; bottom: 18px; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(0, 0, 0, 0.45); color: #fff; display: grid; place-items: center; font-size: 0.85rem;
}

/* ============================================================
   LAUNCH STRIP
   ============================================================ */
.strip {
  background: #f5f4f8; border-top: 1px solid #ebe9f2; border-bottom: 1px solid #ebe9f2;
  padding: 46px 0 !important; text-align: center;
}
.strip-line { color: var(--muted); font-size: 0.95rem; padding: 0 24px; }
.strip-line strong { color: var(--ink); font-weight: 650; }
.marquee { overflow: hidden; margin-top: 26px; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 34px; white-space: nowrap;
  animation: marquee 30s linear infinite; padding-left: 34px;
}
.marquee-track span { font-weight: 650; font-size: 1.05rem; color: #9b98ab; }
.marquee-track i { color: #cfcbdd; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  max-width: 1120px; margin: 60px auto 0; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.how-card {
  background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow-card);
  padding: 18px 26px 30px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.how-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(66, 43, 150, 0.14), 0 4px 10px rgba(66,43,150,0.06); }
.how-visual {
  border-radius: 18px; min-height: 218px; display: grid; place-items: center;
  padding: 24px 18px; margin: 0 -8px;
}
.tint-lavender { background: var(--tint-lavender); }
.tint-peach { background: var(--tint-peach); }
.tint-sky { background: var(--tint-sky); }
.tint-mint { background: var(--tint-mint); }
.tint-pink { background: var(--tint-pink); }
.how-num { margin-top: 22px; font-weight: 800; font-size: 1.05rem; }
.n-violet { color: var(--violet); }
.n-orange { color: var(--orange); }
.n-blue { color: var(--blue); }
.how-card h3 { margin-top: 6px; }
.how-card > p:last-child { color: var(--muted); margin-top: 8px; font-size: 0.99rem; }

/* --- mock cards (shared) --- */
.mock {
  background: #fff; border-radius: var(--r-mock); box-shadow: var(--shadow-soft);
  padding: 16px; width: 100%; max-width: 270px; font-size: 0.9rem;
}
.mock-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mock-row:last-child { margin-bottom: 0; }
.mock-title { font-weight: 700; font-size: 0.95rem; line-height: 1.25; }
.mock-title.sm { font-size: 0.88rem; }
.mock-sub { color: var(--faint); font-size: 0.78rem; }
.mock-logo {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.1rem; flex: none;
}
.mock-logo.sm { width: 34px; height: 34px; font-size: 0.95rem; border-radius: 9px; }
.lg-green { background: linear-gradient(145deg, #35b168, #0e7e41); }
.lg-violet { background: linear-gradient(145deg, #9a79ff, #6a45f2); }
.lg-gold { background: linear-gradient(145deg, #f2c94c, #d3a119); }
.lg-mint { background: linear-gradient(145deg, #6fd6a3, #2fa87b); }
.dots { display: inline-flex; }
.dots i { width: 20px; height: 20px; border-radius: 999px; border: 2px solid #fff; margin-right: -7px; }
.dt-pink { background: #f5a3b7; }
.dt-gold { background: #f2ce6b; }
.dt-mint { background: #8fdcb0; }
.dt-sky { background: #92bff2; }
.pill-grey { background: #f1f0f6; border-radius: 999px; padding: 4px 11px; font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.pill-violet {
  display: inline-block; background: linear-gradient(180deg, #8d67ff, #7048f0); color: #fff;
  border-radius: 999px; padding: 6px 16px; font-size: 0.82rem; font-weight: 650;
}
.pill-violet.sm { padding: 3px 10px; font-size: 0.72rem; }
.pill-mint { background: #def3e6; color: #157347; border-radius: 999px; padding: 3px 10px; font-size: 0.74rem; font-weight: 650; }
.pill-sky { background: #e2edfd; color: #2b62c9; border-radius: 999px; padding: 3px 10px; font-size: 0.74rem; font-weight: 650; }

.ads-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 8px; }
.ads-icons { display: inline-flex; gap: 6px; align-items: center; }
.ic-meta { font-style: normal; color: #1877f2; font-weight: 800; font-size: 1rem; }
.ic-ig {
  width: 16px; height: 16px; border-radius: 5px; display: inline-block;
  background: radial-gradient(circle at 30% 70%, #fdc468, #df4996 55%, #8a3ab9);
}
.ads-row {
  display: flex; align-items: center; gap: 8px; background: #f8f7fc; border-radius: 10px;
  padding: 8px 10px; margin-bottom: 7px; font-size: 0.83rem; font-weight: 550;
}
.ads-row:last-child { margin-bottom: 0; }
.ads-row .live { margin-left: auto; }
.ads-row .pending { margin-left: auto; }
.ads-row.dim { color: var(--faint); }
.check {
  width: 18px; height: 18px; border-radius: 999px; background: var(--green); color: #fff;
  display: inline-grid; place-items: center; font-size: 0.62rem; font-weight: 800; flex: none;
}
.cross {
  width: 18px; height: 18px; border-radius: 999px; background: #e2564b; color: #fff;
  display: inline-grid; place-items: center; font-size: 0.62rem; font-weight: 800; flex: none;
  margin-left: auto;
}
.samp-row .check { margin-left: auto; }
.spin { color: var(--faint); }
.live { color: var(--green); font-size: 0.72rem; font-weight: 700; }
.pending { background: #efeef4; color: var(--faint); border-radius: 999px; padding: 2px 9px; font-size: 0.7rem; font-weight: 650; }
.paid-chip { color: var(--green); font-size: 0.74rem; font-weight: 700; background: #e6f6ec; border-radius: 999px; padding: 3px 10px; }

.earn-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.earn-box { background: #f8f7fc; border-radius: 10px; padding: 9px 10px; }
.earn-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; color: var(--faint); }
.earn-label .up { margin-left: 4px; }
.earn-big { font-weight: 800; font-size: 1.05rem; margin-top: 2px; }
.earn-big em, .up { font-style: normal; color: var(--green); font-size: 0.72rem; font-weight: 700; }
.spark { width: 100%; height: 26px; margin-top: 4px; }
.spark path { fill: none; stroke: var(--violet); stroke-width: 2.4; stroke-linecap: round; }
.spark.lg { height: 34px; }
.top-videos .tv-row {
  display: flex; align-items: center; gap: 8px; font-size: 0.76rem; margin-top: 6px;
}
.tv-row span:first-child { flex: none; width: 96px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tv-row b { margin-left: auto; font-size: 0.74rem; }
.bar { height: 6px; border-radius: 6px; background: linear-gradient(90deg, #8d67ff, #6a8df0); }
.b1 { width: 52px; }
.b2 { width: 36px; }
.b3 { width: 22px; }

/* ============================================================
   CREATORS EARN. BRANDS SCALE.
   ============================================================ */
.u-underline { text-decoration: underline; text-decoration-color: var(--violet); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.creator-rail {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 56px 24px 20px; max-width: 1240px; margin: 0 auto;
  scrollbar-width: none;
}
.creator-rail::-webkit-scrollbar { display: none; }
.creator-card {
  flex: none; width: 252px; height: 440px; border-radius: 22px; position: relative;
  scroll-snap-align: center; overflow: hidden; color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out);
}
.creator-card:hover { transform: translateY(-6px); }
.cc-a { background: linear-gradient(170deg, #f7c07a 0%, #d96a9e 55%, #5c3ec2 100%); }
.cc-b { background: linear-gradient(170deg, #9fe6c3 0%, #4aa8c9 55%, #2b3f9e 100%); }
.cc-c { background: linear-gradient(170deg, #b0b6c5 0%, #5b6478 60%, #23293c 100%); }
.cc-d { background: linear-gradient(170deg, #f79a9a 0%, #c05ac2 55%, #4a2fa0 100%); }
.cc-e { background: linear-gradient(170deg, #ffd98a 0%, #ef8a5b 55%, #93325f 100%); }
.cc-shade { position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(10, 6, 30, 0.72)); }
.cc-hook {
  position: absolute; top: 22px; left: 16px; right: 16px;
  font-weight: 800; font-size: 1.02rem; line-height: 1.3; text-transform: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.cc-meta { position: absolute; left: 14px; bottom: 52px; display: flex; gap: 9px; align-items: center; }
.cc-ava {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.25); border: 2px solid rgba(255,255,255,0.6);
  font-size: 0.62rem; font-weight: 700; flex: none;
}
.cc-name { font-weight: 700; font-size: 0.9rem; line-height: 1.25; }
.cc-line { font-size: 0.74rem; opacity: 0.85; }
.cc-chips { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 7px; }
.cc-chips span {
  background: rgba(8, 5, 24, 0.5); backdrop-filter: blur(4px); border-radius: 999px;
  font-size: 0.68rem; font-weight: 650; padding: 5px 10px;
}

/* ============================================================
   FEATURE GRID / OS
   ============================================================ */
.os h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.feature-rail {
  display: grid; grid-template-rows: 1fr 1fr; grid-auto-flow: column;
  gap: 24px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 60px 24px 24px; max-width: 1240px; margin: 0 auto;
  scrollbar-width: none;
}
.feature-rail::-webkit-scrollbar { display: none; }
.feature-card {
  width: 292px; background: var(--card); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 14px 22px 24px; scroll-snap-align: start;
  transition: transform 0.3s var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); }
.feat-visual {
  border-radius: 16px; min-height: 150px; display: grid; place-items: center;
  padding: 18px 14px; margin: 0 -6px;
}
.feature-card h3 { font-size: 1.08rem; margin-top: 16px; }
.feature-card > p:last-child { color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
.samp-row {
  display: flex; align-items: center; gap: 8px; background: #f8f7fc; border-radius: 10px;
  padding: 7px 9px; margin-top: 7px; font-size: 0.8rem; font-weight: 550;
}
.samp-thumb { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, #cdbdf7, #9a79ff); flex: none; }
.btn-mock-row { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.btn-mock-row span { border-radius: 999px; padding: 5px 11px; font-size: 0.72rem; font-weight: 700; color: #fff; }
.bm-green { background: var(--green); }
.bm-amber { background: #f0a028; }
.bm-grey { background: #b9b7c6; }
.chat-l, .chat-r {
  border-radius: 14px; padding: 8px 13px; font-size: 0.8rem; font-weight: 550; width: fit-content;
}
.chat-l { background: #f0eafe; border-bottom-left-radius: 4px; }
.chat-r { background: linear-gradient(180deg, #8d67ff, #7048f0); color: #fff; border-bottom-right-radius: 4px; margin: 8px 0 0 auto; }
.attr-row { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.attr-line { flex: 1 1 14px; height: 2px; background: #ddd7ee; border-radius: 2px; }
.ai-badge {
  width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, #f256a8, #b13ad6); color: #fff; font-size: 0.85rem;
}
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.tag { background: #fdeaf3; color: #c2347c; border-radius: 999px; padding: 4px 11px; font-size: 0.72rem; font-weight: 650; }

/* ============================================================
   PILOT
   ============================================================ */
.pilot { background: linear-gradient(180deg, #fdfcff 0%, var(--lav-1) 100%); padding-bottom: 40px !important; }
.pilot h2 { margin-top: 12px; }
.pilot-rail {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 54px 24px 16px; max-width: 1120px; margin: 0 auto;
  scrollbar-width: none;
}
.pilot-rail::-webkit-scrollbar { display: none; }
.pilot-card {
  flex: none; width: min(420px, 84vw); background: var(--card); border-radius: 26px;
  box-shadow: var(--shadow-card); border: 1.5px solid #eee9fb;
  padding: 26px 30px 30px; scroll-snap-align: center;
}
.pc-head { display: flex; gap: 12px; align-items: center; margin-bottom: 22px; }
.pc-label { font-size: 0.68rem; font-weight: 750; letter-spacing: 0.14em; color: var(--faint); }
.pc-big { font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); letter-spacing: -0.03em; line-height: 1.1; margin-top: 4px; }
.pc-big span { font-size: 1rem; font-weight: 650; color: var(--muted); letter-spacing: 0; margin-left: 8px; }
.pc-big em { font-style: normal; color: var(--violet); font-weight: 700; font-size: 1.9rem; }
.pc-note { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }
.rail-dots { display: flex; gap: 8px; justify-content: center; padding: 8px 0 4px; }
.rail-dots button {
  width: 8px; height: 8px; border-radius: 999px; background: #d4cbeb; padding: 0;
  transition: width 0.25s var(--ease-out), background 0.25s;
}
.rail-dots button.active { width: 22px; background: var(--violet); }

/* ============================================================
   HOW WILL YOU USE
   ============================================================ */
.use-grid {
  max-width: 1080px; margin: 40px auto 0; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 30px 0 20px;
}
.use-card {
  background: var(--card); border-radius: 26px; box-shadow: var(--shadow-card);
  padding: 26px 26px 30px; transition: transform 0.35s var(--ease-out);
}
.tilt-l { transform: rotate(-5deg); }
.tilt-r { transform: rotate(5deg); }
.use-card:hover { transform: rotate(0) translateY(-6px); }
.use-collage {
  min-height: 190px; border-radius: 18px; background: #faf9fe;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center;
  padding: 22px 16px; margin-bottom: 20px;
}
.stat-chip {
  background: #fff; border-radius: 999px; box-shadow: var(--shadow-soft);
  padding: 7px 13px; font-size: 0.78rem; font-weight: 700;
}
.stat-chip.lift { transform: rotate(-4deg); }
.use-card h3 { font-size: 1.35rem; }
.use-card p { color: var(--muted); margin-top: 4px; }
.arrow-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 650; margin-top: 14px; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.arrow-link span { font-size: 1.2rem; line-height: 1; transition: transform 0.2s; }
.arrow-link:hover span { transform: translateX(3px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-left: 12px !important; padding-right: 12px !important; padding-bottom: 0 !important; }
.faq-panel {
  max-width: 1240px; margin: 0 auto; border-radius: 44px 44px 0 0;
  background: linear-gradient(180deg, #ded3f8 0%, #ece5fb 40%, #e4dbf9 100%);
  padding: clamp(60px, 8vw, 96px) clamp(20px, 5vw, 90px) clamp(60px, 7vw, 80px);
}
.faq-toggle {
  display: flex; justify-content: center; gap: 0; margin: 30px auto 34px;
  background: rgba(255, 255, 255, 0.45); border-radius: 999px; width: fit-content; padding: 5px;
}
.ft-btn {
  border-radius: 999px; padding: 10px 22px; font-weight: 650; font-size: 0.95rem;
  color: var(--muted); transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.ft-btn.active { background: linear-gradient(180deg, #8d67ff, #7048f0); color: #fff; box-shadow: 0 8px 18px rgba(112, 72, 240, 0.35); }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list.hidden { display: none; }
.faq-item { background: rgba(255, 255, 255, 0.82); border-radius: 18px; overflow: hidden; transition: background 0.2s; }
.faq-item:hover { background: #fff; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; font-weight: 650; font-size: 1.06rem; padding: 20px 24px;
}
.fq-mark { font-size: 1.3rem; font-weight: 500; color: var(--ink); transition: transform 0.25s var(--ease-out); flex: none; }
.faq-item.open .fq-mark { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer); color: #cfc8f2; padding: 44px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: -1px;
}
.brand.foot .brand-tile { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.35); }
.foot-links { display: flex; gap: 30px; flex-wrap: wrap; font-size: 0.95rem; font-weight: 550; }
.foot-links a { opacity: 0.85; transition: opacity 0.2s; }
.foot-links a:hover { opacity: 1; }
.foot-note { font-size: 0.88rem; opacity: 0.65; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { max-width: 720px; margin: 0 auto; padding: 150px 24px 90px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--faint); font-size: 0.9rem; margin-bottom: 34px; }
.legal h2 { text-align: left; font-size: 1.3rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; }
.legal ul { padding-left: 22px; margin-top: 8px; }
.legal a { color: var(--violet); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .how-grid { grid-template-columns: 1fr; max-width: 480px; }
  .use-grid { grid-template-columns: 1fr; max-width: 440px; gap: 26px; }
  .tilt-l { transform: rotate(-2deg); }
  .tilt-r { transform: rotate(2deg); }
  .hero-diagram { height: 300px; }
  .logo-tile-glow { width: 132px; height: 132px; border-radius: 36px; }
  .logo-tile { width: 94px; height: 94px; border-radius: 26px; font-size: 3.2rem; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 12px; right: 12px;
    background: #fff; border-radius: 22px; box-shadow: var(--shadow-nav);
    flex-direction: column; gap: 4px; padding: 12px;
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }
  .nav-links a { padding: 12px 16px; border-radius: 14px; }
  .nav-links a:hover { background: var(--violet-soft); }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-burger { display: block; }
  .nav-signin { padding: 8px 14px; }

  .f-video1 { left: 2%; }
  .f-video2 { right: 4%; }
  .money-chip { right: -16px; }
  .f-coin { display: none; }
  .f-ava1 { left: 16%; top: 76%; }
  .f-ava2 { right: 8%; top: 72%; }
  .hero-diagram { height: 250px; }

  .feature-rail { grid-template-rows: 1fr; }
  .feature-card { width: 272px; }
  .footer { flex-direction: column; text-align: center; }
  .faq-panel { border-radius: 32px 32px 0 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  .wire { stroke-dashoffset: 0; animation: none !important; }
  .marquee-track { animation: none; }
  .phone-progress span { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
