/* ============ RandomPips landing ============ */
:root {
  --blue: #0015ff;
  --blue-light: #0033ff;
  --blue-deep: #000eb0;
  --navy: #0f172a;
  --navy-card: #0a1145;
  --ink: #0a0b0b;
  --gray: #6b7280;
  --bg: #f7fbff;
  --bg-soft: #eff4ff;
  --card: #ffffff;
  --line: #dbe4f5;
  --green: #16a34a;
  --red: #dc2626;
  --radius: 18px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.accent { color: var(--blue); }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #b9c6e6; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 990;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), #7d8bff);
  box-shadow: 0 0 8px rgba(0, 21, 255, 0.5);
}

/* anchors clear the sticky nav */
section[id] { scroll-margin-top: 90px; }

/* ---------- scroll reveal ---------- */
[data-reveal], [data-reveal-stagger] > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}
[data-reveal].in, [data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* ---------- logo wordmark ---------- */
.logo-block {
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.5px;
  padding: 2px 7px 3px; border-radius: 6px; font-size: 1.05rem;
}
.logo-pips {
  color: var(--blue); font-family: var(--font-head); font-weight: 800;
  letter-spacing: 0.5px; margin-left: 5px; font-size: 1.05rem;
}
.logo-pips.light { color: #8fa1ff; }

/* ---------- splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 1000;
  background: linear-gradient(135deg, #0a13a8 0%, #1226d8 45%, #3448ea 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s;
}
.splash.hide { opacity: 0; visibility: hidden; }
.splash-logo { text-align: center; }
.splash-logo .logo-block { background: #fff; color: var(--blue); font-size: 2rem; padding: 4px 12px 6px; }
.splash-logo .logo-pips { color: #fff; font-size: 2rem; }
.splash-sub { color: #dfe6ff; margin-top: 10px; font-size: 1rem; letter-spacing: 1px; }
.splash-bar {
  width: 180px; height: 3px; margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.2); border-radius: 2px; overflow: hidden;
}
.splash-bar i {
  display: block; height: 100%; width: 40%;
  background: #fff; border-radius: 2px;
  animation: splashLoad 0.9s ease-in-out infinite;
}
@keyframes splashLoad { 0% { transform: translateX(-100%); } 100% { transform: translateX(450%); } }

/* ---------- navbar ---------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease;
}
.nav-wrap.scrolled { box-shadow: 0 6px 26px rgba(15, 23, 42, 0.11); }
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 16px 24px;
  transition: padding 0.3s ease;
}
.nav-wrap.scrolled .nav { padding: 10px 24px; }
.brand { display: flex; align-items: center; }
.brand-img { height: 34px; width: auto; display: block; }
.nav-wrap.scrolled .brand-img { height: 30px; }
.nav-links {
  display: flex; gap: 26px; list-style: none; margin-left: auto;
  font-weight: 500; font-size: 0.98rem; color: #171717;
}
.nav-links a { position: relative; padding-bottom: 3px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--blue); border-radius: 1px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.28s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { transform: scaleX(1); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 999px; font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arr { font-style: normal; transition: transform 0.22s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-member {
  background: var(--blue-deep); color: #fff;
  padding: 12px 26px; font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0, 21, 255, 0.25);
}
.btn-member:hover { box-shadow: 0 10px 26px rgba(0, 21, 255, 0.4); }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 4px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------- promo marquee ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--blue-light), #2a4bff 50%, var(--blue-light));
  color: #fff; overflow: hidden; white-space: nowrap;
  padding: 9px 0; font-size: 0.9rem;
}
.promo-track {
  display: inline-flex; gap: 48px; align-items: center;
  animation: marquee 24s linear infinite;
}
.promo-bar:hover .promo-track { animation-play-state: paused; }
.promo-pill { background: #fff; color: var(--blue); font-weight: 700; padding: 2px 12px; border-radius: 999px; }
.promo-dot { opacity: 0.5; font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* ---------- black banner ---------- */
.hybrid-banner {
  background: linear-gradient(90deg, #000 0%, #0a1030 50%, #000 100%);
  color: #fff; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 6vw;
}
.hybrid-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(90, 110, 255, 0.14) 50%, transparent 60%);
  animation: bannerSheen 5s ease-in-out infinite;
}
@keyframes bannerSheen { 0%, 100% { transform: translateX(-60%); } 50% { transform: translateX(60%); } }
.hybrid-word {
  font-family: var(--font-head); font-weight: 800; font-style: italic; font-size: 2.2rem;
  background: linear-gradient(100deg, #fff 20%, #7d8bff 40%, #fff 60%, #7d8bff 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: metalShift 4s linear infinite;
}
@keyframes metalShift { from { background-position: 0% 0; } to { background-position: 200% 0; } }
.hybrid-text { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; position: relative; }
.hybrid-cta {
  display: flex; align-items: center; gap: 12px; position: relative;
  background: linear-gradient(120deg, #ececec, #9aa0ad);
  color: #0a0b0b; font-weight: 600;
  padding: 10px 22px 10px 10px; border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hybrid-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 255, 255, 0.12); }
.hybrid-arrow { background: #0a0b0b; color: #fff; border-radius: 10px; padding: 8px 14px; font-size: 1.1rem; }

/* ---------- live ticker ---------- */
.ticker {
  background: #060814; color: #cbd5e1;
  display: flex; overflow: hidden; white-space: nowrap;
  padding: 8px 0; font-size: 0.78rem;
  border-bottom: 1px solid #131a33;
}
.ticker-track { display: inline-flex; gap: 40px; animation: marquee 30s linear infinite; padding-left: 20px; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.tk-item { display: inline-flex; align-items: center; gap: 8px; }
.tk-sym { font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.tk-price { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; transition: color 0.3s ease; }
.tk-chg { font-family: var(--font-mono); font-size: 0.72rem; }
.tk-item.up .tk-price, .tk-item.up .tk-chg { color: #4ade80; }
.tk-item.dn .tk-price, .tk-item.dn .tk-chg { color: #f87171; }
.tk-flash-up .tk-price { color: #bbf7d0 !important; }
.tk-flash-dn .tk-price { color: #fecaca !important; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 70px 6vw 40px; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0, 21, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 21, 255, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; will-change: transform;
}
.orb-a {
  width: 480px; height: 480px; top: -140px; right: -80px;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.22), transparent 65%);
  animation: orbFloat 11s ease-in-out infinite;
}
.orb-b {
  width: 380px; height: 380px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(125, 139, 255, 0.2), transparent 65%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-36px, 30px); }
}
.hero-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  display: inline-block; position: relative;
}
.live-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 0% { transform: scale(0.6); opacity: 1; } 80%, 100% { transform: scale(1.6); opacity: 0; } }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 600; line-height: 1.08; color: #171717;
}
.h-line { display: block; }
.h-line.accent { font-weight: 700; display: flex; align-items: center; gap: 14px; }
.hero-dash {
  display: inline-block; width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--blue), #7d8bff);
  border-radius: 2px; animation: dashPulse 2.4s ease-in-out infinite;
}
@keyframes dashPulse { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(0.55); opacity: 0.7; } }
.hero-sub { margin: 24px 0 28px; color: var(--gray); font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 21, 255, 0.35);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(0, 21, 255, 0.45); }
.btn-primary.glow { animation: ctaGlow 2.8s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 21, 255, 0.35); }
  50% { box-shadow: 0 10px 46px rgba(64, 92, 255, 0.65); }
}
.btn-outline {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-big { padding: 16px 34px; font-size: 1.02rem; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--gray); font-size: 0.95rem; }
.avatar-stack { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  border: 2px solid #fff; flex-shrink: 0;
}
.avatar-stack .avatar { margin-left: -9px; }
.avatar-stack .avatar:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.av-2 { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.av-3 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.av-4 { background: linear-gradient(135deg, #1d4ed8, #0f2fd8); }

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 290px; height: 580px;
  background: linear-gradient(160deg, #1a1a1e, #0b0b0e);
  border-radius: 46px; padding: 12px; position: relative;
  box-shadow: 0 50px 100px rgba(10, 17, 69, 0.4), inset 0 0 0 2px #2c2c33;
  transform: rotate(6deg);
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-14px); }
}
.phone-notch {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 25px; background: #0b0b0e; border-radius: 14px; z-index: 2;
}
.phone-screen {
  background: #fff; border-radius: 36px; height: 100%;
  padding: 58px 16px 16px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.ps-top { display: flex; align-items: baseline; gap: 8px; }
.ps-sym { font-weight: 700; font-size: 0.8rem; color: var(--navy); }
.ps-price { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-left: auto; font-variant-numeric: tabular-nums; }
.ps-chg { font-size: 0.68rem; font-weight: 700; font-family: var(--font-mono); }
.ps-chg.up { color: var(--green); }
.ps-chg.dn { color: var(--red); }
.ps-chart { width: 100%; height: 160px; background: #f8faff; border-radius: 12px; border: 1px solid #eef2fb; }
.ps-chart .wick { stroke: #94a3b8; stroke-width: 1; }
.ps-chart rect.up { fill: #22c55e; }
.ps-chart rect.dn { fill: #ef4444; }
.ps-positions { display: flex; flex-direction: column; gap: 8px; }
.ps-pos {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid #eef2fb; border-radius: 12px; padding: 10px 12px;
  font-size: 0.72rem; font-weight: 600; color: var(--gray);
}
.ps-pos b { font-family: var(--font-mono); font-size: 0.75rem; }
.ps-pos .up { color: var(--green); }
.ps-pos .dn { color: var(--red); }
.ps-btns { margin-top: auto; display: flex; gap: 10px; }
.ps-btns span {
  flex: 1; text-align: center; padding: 12px 0;
  border-radius: 12px; font-weight: 700; font-size: 0.8rem; color: #fff;
}
.ps-btns .sell { background: linear-gradient(120deg, #ef4444, #dc2626); }
.ps-btns .buy { background: linear-gradient(120deg, #22c55e, #16a34a); }

/* floating chips */
.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
}
.chip b { display: block; color: var(--navy); font-size: 0.82rem; }
.chip small { color: var(--gray); font-size: 0.7rem; }
.chip-ic {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #dcfce7; color: var(--green); font-weight: 800; font-size: 0.85rem;
}
.chip-ic.blue { background: #e0e7ff; color: var(--blue); }
.chip-payout { top: 12%; left: -6%; animation: chipFloat 6s ease-in-out infinite; }
.chip-passed { bottom: 14%; right: -4%; animation: chipFloat 7.5s ease-in-out 1s infinite; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- sections base ---------- */
section { padding: 90px 6vw; }
.section-head { max-width: 1200px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; color: #171717; }
.kicker { color: var(--blue); font-weight: 600; margin-bottom: 10px; letter-spacing: 0.4px; }

/* ---------- ecosystem ---------- */
.ecosystem { background: var(--bg-soft); }
.eco-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px;
}
.eco-card {
  background: var(--card); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eco-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.eco-card h3 { font-size: 1.25rem; }
.eco-card p { color: var(--gray); font-size: 0.95rem; }
.link-more { color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-more .arr { font-style: normal; transition: transform 0.22s ease; }
.link-more:hover .arr { transform: translateX(4px); }

/* eco photo header */
.eco-photo { position: relative; border-radius: 14px; overflow: hidden; }
.eco-photo img {
  display: block; width: 100%; height: 170px; object-fit: cover;
  transition: transform 0.5s ease;
}
.eco-card:hover .eco-photo img { transform: scale(1.05); }
.eco-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 8, 20, 0.75));
}
.photo-tag {
  position: absolute; left: 12px; bottom: 10px; z-index: 1;
  color: #fff; font-weight: 700; font-size: 0.82rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* leaderboard visual */
.leaderboard {
  background: #f6f9ff; border: 1px solid #e6edfb; border-radius: 14px;
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
}
.lb-head { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.lb-live { display: inline-flex; align-items: center; gap: 6px; color: #16a34a; font-size: 0.68rem; }
.lb-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #edf2fc; border-radius: 12px; padding: 8px 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.lb-row:hover { transform: translateX(4px); border-color: #c7d6f5; }
.lb-rank {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #eef2fb; color: var(--gray); font-size: 0.68rem; font-weight: 800;
}
.lb-rank.gold { background: #fef3c7; color: #b45309; }
.lb-info { line-height: 1.15; min-width: 0; }
.lb-info b { font-size: 0.78rem; color: var(--navy); display: block; }
.lb-info small { font-size: 0.65rem; color: var(--gray); }
.lb-spark { width: 64px; height: 22px; margin-left: auto; flex-shrink: 0; }
.lb-spark polyline {
  fill: none; stroke: #22c55e; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 120; stroke-dashoffset: 120;
}
.in .lb-spark polyline { animation: drawLine 1.4s ease forwards 0.4s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.lb-pnl { font-family: var(--font-mono); font-size: 0.72rem; color: var(--green); flex-shrink: 0; }

/* podcast visual */
.podcast-visual {
  background: linear-gradient(150deg, #0a1145, #17246e);
  border-radius: 14px; padding: 22px 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
}
.pod-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.eco-card:hover .pod-bg { transform: scale(1.05); opacity: 0.65; }
.podcast-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 17, 69, 0.25), rgba(6, 8, 20, 0.78));
}
.podcast-visual > *:not(.pod-bg) { position: relative; z-index: 2; }
.pod-play {
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: #fff; color: var(--navy-card); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.pod-play:hover { transform: scale(1.1); }
.waveform { display: flex; align-items: center; gap: 3px; height: 34px; }
.waveform i {
  width: 4px; border-radius: 2px; background: #8fa1ff; height: 30%;
  animation: wave 1.1s ease-in-out infinite;
}
.waveform i:nth-child(2n) { animation-delay: 0.15s; height: 60%; }
.waveform i:nth-child(3n) { animation-delay: 0.3s; height: 90%; }
.waveform i:nth-child(4n) { animation-delay: 0.45s; height: 45%; }
.waveform i:nth-child(5n) { animation-delay: 0.6s; height: 75%; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.15); } }
.waveform.slim { height: 24px; justify-content: center; }
.waveform.slim i { background: #94a3f8; }
.pod-ep { color: #aab6e8; font-size: 0.72rem; letter-spacing: 0.4px; }

/* podcast episode list */
.ep-list { display: flex; flex-direction: column; gap: 8px; }
.ep-item {
  display: flex; align-items: center; gap: 12px;
  background: #f6f9ff; border: 1px solid #e6edfb; border-radius: 12px;
  padding: 8px 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ep-item:hover { transform: translateX(4px); border-color: #c7d6f5; background: #fff; }
.ep-item img {
  width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.ep-info { min-width: 0; line-height: 1.25; }
.ep-info b { display: block; font-size: 0.78rem; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-info small { font-size: 0.68rem; color: var(--gray); }
.ep-info em { font-style: normal; color: var(--blue); font-weight: 700; }
.ep-play {
  margin-left: auto; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e8edff; color: var(--blue); font-size: 0.7rem; padding-left: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ep-item:hover .ep-play { background: var(--blue); color: #fff; transform: scale(1.1); }

/* pipnotes list */
.notes-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.note-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px; padding: 10px 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.note-item:hover { background: rgba(255, 255, 255, 0.22); transform: translateX(4px); }
.note-tag {
  flex-shrink: 0; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.6px;
  background: #fff; color: var(--blue); border-radius: 999px; padding: 3px 9px; margin-top: 2px;
}
.note-info { min-width: 0; line-height: 1.3; }
.note-info b { display: block; font-size: 0.78rem; color: #fff; }
.note-info small { font-size: 0.66rem; color: #cdd6ff; }

.cta-card {
  justify-content: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #4a5cf0 100%); color: #fff;
}
.cta-card .notes-list, .cta-card .btn-ghost { position: relative; z-index: 1; }
.cta-card p { color: #dfe6ff; }
.cta-orb {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 65%);
  top: -80px; right: -60px; animation: orbFloat 8s ease-in-out infinite;
}
.btn-ghost {
  border: 1.5px solid #fff; color: #fff; padding: 10px 22px;
  align-self: flex-start; position: relative;
}
.btn-ghost:hover { background: #fff; color: var(--blue); }

/* ---------- advantages ---------- */
.adv-grid {
  max-width: 1200px; margin: 0 auto 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.adv-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.adv-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 21, 255, 0.06), transparent 45%);
  opacity: 0; transition: opacity 0.3s ease;
}
.adv-card:hover::before { opacity: 1; }
.adv-card:hover { transform: translateY(-5px); border-color: #b9c6f0; box-shadow: var(--shadow-md); }
.adv-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e8edff; color: var(--blue); margin-bottom: 14px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.adv-ic svg { width: 22px; height: 22px; }
.adv-card:hover .adv-ic { background: var(--blue); color: #fff; transform: scale(1.08) rotate(-4deg); }
.adv-card h4 { font-size: 1.12rem; margin-bottom: 6px; color: var(--navy); }
.adv-card p { color: var(--gray); font-size: 0.95rem; }

/* feature rows (photo + explanation) */
.features { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; padding-bottom: 60px; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img {
  display: block; width: 100%; height: 340px; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.feature-row:hover .feature-media img { transform: scale(1.02); }
.chip-mini {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 9px 16px;
  font-size: 0.78rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-md);
  animation: chipFloat 6s ease-in-out infinite;
}
.feature-copy h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 12px; color: var(--navy); }
.feature-copy > p { color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy); font-weight: 600; font-size: 0.95rem;
}
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e6f9ee; color: #15803d; font-size: 0.7rem; font-weight: 800;
}

/* bento layout + per-card visuals */
.adv-grid.bento { align-items: stretch; }
.adv-card { display: flex; flex-direction: column; }
.adv-card.span2 { grid-column: span 2; }
.adv-card.wide { grid-column: 1 / -1; }
.adv-top { display: flex; gap: 14px; align-items: flex-start; }
.adv-top .adv-ic { margin-bottom: 0; flex-shrink: 0; }
.adv-top h4 { margin-bottom: 2px; }
.adv-top p { font-size: 0.88rem; }
.adv-visual { margin-top: 18px; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

/* drawdown chart */
.dd-chart { width: 100%; height: 120px; }
.dd-band { opacity: 0.8; }
.dd-band.daily { fill: #fef3c7; }
.dd-band.max { fill: #fee2e2; }
.dd-line {
  fill: none; stroke: var(--blue); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 700; stroke-dashoffset: 700;
}
.in .dd-line { animation: drawLine 1.6s ease forwards 0.3s; }
.dd-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.68rem; font-weight: 700; }
.lbl-daily { color: #b45309; }
.lbl-max { color: var(--red); }

/* payout ring */
.ring-visual { flex-direction: row; align-items: center; justify-content: space-around; gap: 10px; }
.ring { width: 92px; height: 92px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 7; }
.ring-track { stroke: #e8edff; }
.ring-fill {
  stroke: var(--blue); stroke-linecap: round;
  stroke-dasharray: 188.5; stroke-dashoffset: 188.5;
}
.in .ring-fill { animation: ringFill 1.4s cubic-bezier(.4,0,.2,1) forwards 0.4s; }
@keyframes ringFill { to { stroke-dashoffset: 33; } }
.ring text {
  transform: rotate(90deg); transform-origin: 40px 40px;
  font-family: var(--font-mono); font-size: 15px; font-weight: 700; fill: var(--navy);
}
.coin-row { display: flex; flex-direction: column; gap: 8px; }
.coin-row span {
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e8edff; color: var(--blue); font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.adv-card:hover .coin-row span { background: var(--blue); color: #fff; }
.adv-card:hover .coin-row span:nth-child(1) { transition-delay: 0s; }
.adv-card:hover .coin-row span:nth-child(2) { transition-delay: 0.06s; }
.adv-card:hover .coin-row span:nth-child(3) { transition-delay: 0.12s; }
.adv-card:hover .coin-row span:nth-child(4) { transition-delay: 0.18s; }

/* account pills */
.acct-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.acct-pills span {
  background: #eef2fb; color: var(--navy); border: 1px solid var(--line);
  font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem;
  border-radius: 999px; padding: 6px 12px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.acct-pills span:hover, .adv-card:hover .acct-pills span:last-child {
  background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px);
}
.acct-total { margin-top: 12px; color: var(--gray); font-size: 0.85rem; }
.acct-total b { font-family: var(--font-head); font-size: 1.3rem; color: var(--blue); }

/* scale bars */
.scale-visual { flex-direction: row; align-items: flex-end; gap: 14px; }
.scale-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; flex: 1; }
.scale-bars i {
  flex: 1; border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  transform: scaleY(0); transform-origin: bottom;
}
.scale-bars i:nth-child(1) { height: 22%; }
.scale-bars i:nth-child(2) { height: 38%; }
.scale-bars i:nth-child(3) { height: 55%; }
.scale-bars i:nth-child(4) { height: 74%; }
.scale-bars i:nth-child(5) { height: 100%; }
.in .scale-bars i { animation: barGrow 0.7s cubic-bezier(.4,0,.2,1) forwards; }
.in .scale-bars i:nth-child(2) { animation-delay: 0.12s; }
.in .scale-bars i:nth-child(3) { animation-delay: 0.24s; }
.in .scale-bars i:nth-child(4) { animation-delay: 0.36s; }
.in .scale-bars i:nth-child(5) { animation-delay: 0.48s; }
@keyframes barGrow { to { transform: scaleY(1); } }
.scale-arrow {
  font-size: 1.6rem; font-weight: 800; color: var(--blue);
  animation: chipFloat 3s ease-in-out infinite;
}

/* index chips */
.idx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.idx-chips span {
  background: #eef2fb; border: 1px solid var(--line); color: var(--navy);
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.4px;
  border-radius: 999px; padding: 7px 12px;
  animation: chipFloat 5s ease-in-out infinite;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.idx-chips span:nth-child(2n) { animation-delay: 0.7s; }
.idx-chips span:nth-child(3n) { animation-delay: 1.4s; }
.idx-chips span:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* provably-fair terminal */
.adv-card.terminal {
  background: #0a0f24; border-color: #1c2440; padding: 0; overflow: hidden;
}
.adv-card.terminal:hover { border-color: #31408a; }
.adv-card.terminal::before { display: none; }
.term-head {
  display: flex; align-items: center; gap: 6px;
  background: #101636; padding: 12px 16px;
  font-size: 0.72rem; color: #64748b; font-weight: 600; letter-spacing: 0.4px;
}
.term-head i { width: 10px; height: 10px; border-radius: 50%; background: #2a3358; }
.term-head i:nth-child(1) { background: #f87171; }
.term-head i:nth-child(2) { background: #fbbf24; }
.term-head i:nth-child(3) { background: #34d399; }
.term-head span { margin-left: 10px; }
.term-body {
  margin: 0; padding: 18px 20px 22px;
  font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.9;
  color: #cbd5e1; white-space: pre-wrap; word-break: break-word;
}
.term-body .tl { display: block; opacity: 0; transform: translateY(6px); }
.in .term-body .tl { animation: termLine 0.4s ease forwards; }
.in .term-body .tl:nth-child(1) { animation-delay: 0.3s; }
.in .term-body .tl:nth-child(2) { animation-delay: 0.9s; }
.in .term-body .tl:nth-child(3) { animation-delay: 1.5s; }
@keyframes termLine { to { opacity: 1; transform: none; } }
.term-body .cmd { color: #8fa1ff; }
.term-body b { color: #fff; font-weight: 600; }
.term-body .ok { color: #4ade80; }
.caret {
  display: inline-block; width: 8px; height: 15px; margin-left: 4px;
  background: #8fa1ff; vertical-align: middle;
  animation: caretBlink 1s steps(2) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* device frames */
.devices-grid {
  max-width: 1200px; margin: 0 auto 54px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.device-card {
  background: var(--card); border-radius: var(--radius);
  padding: 20px; text-align: center; box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.device-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.device-card p { margin-top: 16px; color: var(--gray); font-size: 0.93rem; }
.device-card b { color: var(--ink); }
.mini-chart { width: 100%; display: block; background: #f8faff; }
.mini-chart .wick { stroke: #b6c2d9; stroke-width: 1; }
.mini-chart rect.up { fill: #22c55e; }
.mini-chart rect.dn { fill: #ef4444; }
.frame-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; font-size: 0.72rem; font-weight: 700; color: var(--navy);
}
.frame-row .up { color: var(--green); font-family: var(--font-mono); }
.btn-mini {
  flex: 1; text-align: center; margin: 0 3px; padding: 6px 0;
  border-radius: 8px; color: #fff; font-size: 0.66rem; font-weight: 700;
}
.btn-mini.sell { background: #ef4444; }
.btn-mini.buy { background: #22c55e; }
.frame-phone {
  width: 150px; margin: 0 auto; background: #0b0b0e;
  border-radius: 22px; padding: 8px; position: relative;
  box-shadow: 0 16px 36px rgba(10, 17, 69, 0.25);
}
.fp-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 10px; background: #0b0b0e; border-radius: 6px; z-index: 2;
}
.frame-phone .mini-chart { border-radius: 14px 14px 0 0; padding-top: 4px; }
.frame-phone .frame-row { background: #fff; border-radius: 0 0 14px 14px; }
.frame-laptop { width: 230px; margin: 0 auto; }
.fl-screen {
  background: #0b0b0e; border-radius: 12px 12px 0 0; padding: 8px;
  display: flex; gap: 6px;
  box-shadow: 0 16px 36px rgba(10, 17, 69, 0.25);
}
.fl-side { display: flex; flex-direction: column; gap: 5px; padding-top: 4px; }
.fl-side i { width: 18px; height: 10px; border-radius: 3px; background: #23233042; background: #2a2a35; }
.fl-screen .mini-chart { border-radius: 6px; flex: 1; }
.fl-base {
  height: 10px; background: linear-gradient(#d7dce8, #aab3c5);
  border-radius: 0 0 14px 14px; margin: 0 -14px;
}
.frame-browser {
  max-width: 260px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 36px rgba(10, 17, 69, 0.15);
}
.fb-bar {
  display: flex; align-items: center; gap: 5px;
  background: #eef2fb; padding: 7px 10px;
}
.fb-bar i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.fb-bar i:nth-child(1) { background: #fca5a5; }
.fb-bar i:nth-child(2) { background: #fcd34d; }
.fb-bar i:nth-child(3) { background: #86efac; }
.fb-url {
  flex: 1; background: #fff; border-radius: 6px;
  font-size: 0.6rem; color: var(--gray); padding: 2px 8px; text-align: left;
}

/* stats band */
.stats-band {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(120deg, var(--navy) 0%, #101b45 60%, #0c1233 100%);
  border-radius: var(--radius); position: relative; overflow: hidden;
  display: flex; justify-content: space-around; gap: 20px;
  padding: 44px 20px; color: #fff; text-align: center;
}
.stats-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.28;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9) 0%, rgba(16, 27, 69, 0.72) 60%, rgba(12, 18, 51, 0.9) 100%),
    linear-gradient(rgba(143, 161, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 161, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}
.stat { position: relative; z-index: 2; }
.stat b { display: block; font-family: var(--font-head); font-size: 2.3rem; color: #8fa1ff; font-variant-numeric: tabular-nums; }
.stat span { color: #cbd5e1; }
.sim-note { text-align: center; color: #94a3b8; margin-top: 18px; font-size: 0.85rem; }

/* ---------- markets ---------- */
.markets { background: var(--bg); }
.markets-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.mk-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.mk-card:hover { transform: translateY(-5px); border-color: #b9c6f0; box-shadow: 0 18px 40px rgba(0, 21, 255, 0.12); }
.mk-head { display: flex; justify-content: space-between; align-items: center; }
.mk-sym { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy); letter-spacing: 0.4px; }
.mk-247 {
  font-size: 0.58rem; font-weight: 800; letter-spacing: 1px;
  background: #e6f9ee; color: #15803d; border-radius: 999px; padding: 3px 8px;
}
.mk-price { font-family: var(--font-mono); font-weight: 600; font-size: 1.25rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.mk-chg { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; }
.mk-chg.up { color: var(--green); }
.mk-chg.dn { color: var(--red); }
.mk-spark { width: 100%; height: 44px; }
.mk-spark polyline { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mk-spark .fill { opacity: 0.12; stroke: none; }
.mk-spark.up polyline { stroke: #16a34a; }
.mk-spark.up .fill { fill: #16a34a; }
.mk-spark.dn polyline { stroke: #dc2626; }
.mk-spark.dn .fill { fill: #dc2626; }
.mk-foot { display: flex; justify-content: space-between; align-items: center; }
.mk-tag { font-size: 0.68rem; color: var(--gray); font-weight: 600; }
.vol-meter { display: flex; gap: 3px; align-items: flex-end; }
.vol-meter i { width: 4px; border-radius: 2px; background: #dbe4f5; }
.vol-meter i:nth-child(1) { height: 6px; }
.vol-meter i:nth-child(2) { height: 9px; }
.vol-meter i:nth-child(3) { height: 12px; }
.vol-meter i:nth-child(4) { height: 15px; }
.vol-meter i:nth-child(5) { height: 18px; }
.vol-meter i.on { background: var(--blue); }

/* ---------- why table ---------- */
.why { background: var(--bg-soft); }
.why-table {
  max-width: 980px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.why-row {
  display: grid; grid-template-columns: 1.1fr 1.2fr 1.2fr;
  border-bottom: 1px solid #edf2fc; align-items: stretch;
}
.why-row:last-child { border-bottom: none; }
.why-row > span {
  padding: 16px 22px; font-size: 0.92rem; color: var(--navy); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.why-row .wt-rp {
  background: linear-gradient(160deg, #0a1145, #131f6e);
  color: #fff; font-weight: 600;
}
.why-row .wt-other { color: var(--gray); font-weight: 500; }
.why-head > span { padding-top: 20px; padding-bottom: 20px; font-family: var(--font-head); font-weight: 700; }
.why-head .wt-other { color: var(--navy); }
.logo-block.sm, .logo-pips.sm { font-size: 0.85rem; }
.ck, .cx {
  display: inline-flex; width: 20px; height: 20px; flex-shrink: 0;
  align-items: center; justify-content: center; border-radius: 50%;
  font-style: normal; font-size: 0.7rem; font-weight: 800;
}
.ck { background: rgba(143, 161, 255, 0.25); color: #a5b4ff; }
.cx { background: #feeaea; color: var(--red); }

/* ---------- payout strip ---------- */
.payout-strip {
  background: #060814; border-top: 1px solid #131a33; border-bottom: 1px solid #131a33;
  display: flex; align-items: center; overflow: hidden;
  padding: 10px 0 10px 24px; gap: 18px;
}
.pay-label {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.4px;
}
.payout-marquee { overflow: hidden; flex: 1; }
.payout-track { display: inline-flex; gap: 14px; animation: marquee 40s linear infinite; }
.payout-strip:hover .payout-track { animation-play-state: paused; }
.pay-chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: #0d1430; border: 1px solid #1c2440; border-radius: 999px;
  padding: 6px 14px; font-size: 0.75rem; color: #cbd5e1;
}
.pay-chip b { color: #4ade80; font-family: var(--font-mono); }
.pay-chip small { color: #64748b; }

/* ---------- programs (FundingPips-style cards) ---------- */
.programs { background: var(--bg-soft); }
.programs-sub { color: var(--gray); margin-top: 14px; font-size: 1.05rem; }
.pricing-toolbar {
  max-width: 1300px; margin: 0 auto 34px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.tool-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; font-weight: 600; color: var(--navy); font-size: 0.95rem;
}
.tool-pill .chev { color: var(--gray); font-size: 0.8rem; }
.phases-toggle { cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.phases-toggle:not(.active) { color: var(--gray); }
.step-tabs {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 5px; box-shadow: var(--shadow-sm);
}
.step-tabs button {
  border: none; border-radius: 999px; padding: 11px 30px;
  font-weight: 700; font-size: 0.95rem; background: transparent; color: var(--gray);
}
.step-tabs button.active { background: var(--navy-card); color: #fff; }

.pricing-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 14px;
  align-items: start;
}
.fp-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fp-card:hover { transform: translateY(-6px); border-color: #b9c6f0; box-shadow: 0 20px 46px rgba(0, 21, 255, 0.13); }
.fp-head { display: flex; justify-content: space-between; align-items: flex-start; }
.fp-head .right { text-align: right; }
.fp-label {
  display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 1.2px;
  color: #94a3b8; margin-bottom: 4px;
}
.fp-size, .fp-price { font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; color: var(--navy); }
.fp-price i { font-style: normal; font-size: 0.95rem; color: #94a3b8; margin-right: 1px; }
.fp-buy {
  border: none; border-radius: 12px; padding: 14px 0;
  background: var(--navy-card); color: #fff; font-weight: 700; font-size: 0.95rem;
  position: relative; overflow: hidden;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.fp-buy::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.55s ease;
}
.fp-buy:hover::before { transform: translateX(120%); }
.fp-buy:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 14, 176, 0.35); }
.fp-rules { background: #f2f6fd; border-radius: 14px; padding: 6px 14px; display: flex; flex-direction: column; }
.fp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 0.85rem; color: var(--navy); font-weight: 600;
  border-bottom: 1px solid #e3eaf7;
}
.fp-rules > .fp-row:last-child { border-bottom: none; }
.fp-row b { font-weight: 700; }
.fp-sub {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; font-size: 0.8rem; color: #8b97ad; font-weight: 500;
}
.fp-subgroup { border-bottom: 1px solid #e3eaf7; padding-bottom: 6px; }
.fp-subgroup .fp-row { border-bottom: none; padding-bottom: 4px; }
.fp-card.hide-phases .fp-sub { display: none; }
.fp-info {
  display: inline-flex; width: 14px; height: 14px; align-items: center; justify-content: center;
  border: 1.2px solid #b6c2d9; border-radius: 50%;
  font-size: 0.58rem; color: #8b97ad; font-style: normal; font-weight: 600;
  margin-left: 6px; vertical-align: middle;
}
.fp-earn { text-align: center; font-size: 0.8rem; color: var(--gray); }
.fp-earn b { color: var(--navy); }

/* dark featured card */
.fp-card.dark {
  background: linear-gradient(160deg, #0a1145 0%, #101c6b 100%);
  border-color: #0a1145;
  animation: darkGlow 3.5s ease-in-out infinite;
}
@keyframes darkGlow {
  0%, 100% { box-shadow: 0 14px 40px rgba(10, 17, 69, 0.35); }
  50% { box-shadow: 0 14px 52px rgba(0, 21, 255, 0.45); }
}
.fp-card.dark .fp-size, .fp-card.dark .fp-price, .fp-card.dark .fp-row { color: #fff; }
.fp-card.dark .fp-label { color: #8fa1ff; }
.fp-card.dark .fp-buy { background: #fff; color: var(--navy-card); }
.fp-card.dark .fp-buy:hover { background: #dfe6ff; }
.fp-card.dark .fp-rules { background: rgba(255, 255, 255, 0.07); }
.fp-card.dark .fp-row { border-bottom-color: rgba(255, 255, 255, 0.12); }
.fp-card.dark .fp-subgroup { border-bottom-color: rgba(255, 255, 255, 0.12); }
.fp-card.dark .fp-sub { color: #aab6e8; }
.fp-card.dark .fp-info { border-color: #6b7ac9; color: #aab6e8; }
.fp-card.dark .fp-earn { color: #aab6e8; }
.fp-card.dark .fp-earn b { color: #fff; }
.fp-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(100deg, #27336e, #3a4a9e);
  color: #fff; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1.2px; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  overflow: hidden;
}
.fp-badge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  animation: badgeShine 3s ease-in-out infinite;
}
@keyframes badgeShine { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* ---------- community ---------- */
.community-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.community-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.community-copy p { color: var(--gray); margin-bottom: 14px; line-height: 1.65; }
.live-visual { position: relative; padding: 20px 20px 90px; }
.community-photo {
  display: block; width: 100%; height: 340px; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow-lg);
}
.live-card {
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 20px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  position: absolute; left: 6%; right: 18%; bottom: 0;
}
.lv-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.lv-head span { display: inline-flex; align-items: center; gap: 8px; }
.lv-head small { color: var(--gray); font-weight: 500; }
.lv-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.lv-tile {
  background: #f6f9ff; border: 1px solid #e6edfb; border-radius: 14px;
  padding: 14px 6px 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.lv-tile small { font-size: 0.62rem; color: var(--gray); }
.lv-tile .avatar { width: 40px; height: 40px; font-size: 0.75rem; }
.lv-tile.speaking .avatar { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.45); animation: speakRing 1.6s ease-in-out infinite; }
@keyframes speakRing {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18); }
}
.chat-bubble {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px; padding: 9px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-md);
}
.cb-1 { top: -4px; right: 4%; animation: chipFloat 6.5s ease-in-out infinite; }
.cb-2 { bottom: -6px; left: 2%; animation: chipFloat 8s ease-in-out 1.2s infinite; }

/* ---------- testimonials ---------- */
.testimonials { background: var(--bg-soft); overflow: hidden; }
.rating { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; }
.rating b { font-size: 1.6rem; font-family: var(--font-head); }
.rating span { color: #f59e0b; letter-spacing: 2px; }
.rating small { color: var(--gray); }
.testi-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-track { display: flex; gap: 18px; width: max-content; animation: marquee 65s linear infinite; }
.testi-track:hover { animation-play-state: paused; }
.testi-marquee.row2 { margin-top: 18px; }
.testi-track.reverse { animation-direction: reverse; animation-duration: 75s; }
.testi-card {
  width: 330px; background: var(--card); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-md); flex-shrink: 0;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.testi-card:hover { border-color: #c3d0f0; transform: translateY(-4px); }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-head .avatar { width: 40px; height: 40px; font-size: 0.72rem; border: none; }
.testi-id b { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--navy); }
.testi-id small { color: var(--gray); font-size: 0.72rem; }
.verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 0.58rem; font-weight: 800;
}
.testi-card .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; font-size: 0.85rem; }
.testi-card p { color: #334155; font-size: 0.9rem; line-height: 1.6; }

/* ---------- how ---------- */
.how-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  counter-reset: step;
}
.how-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.how-card:hover { transform: translateY(-5px); border-color: #b9c6f0; box-shadow: var(--shadow-md); }
.how-card::after {
  content: ""; position: absolute; left: 30px; right: 30px; bottom: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), #7d8bff);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.how-card:hover::after { transform: scaleX(1); }
.how-n {
  display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff;
  border-radius: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px; box-shadow: 0 8px 20px rgba(0, 21, 255, 0.25);
}
.how-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.how-card p { color: var(--gray); line-height: 1.6; font-size: 0.95rem; }

/* ---------- faq ---------- */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--card); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid transparent; transition: border-color 0.25s ease;
}
.faq-list details[open] { border-color: #c3d0f0; }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-family: var(--font-head);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s ease;
}
.faq-list summary:hover { color: var(--blue); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; color: var(--blue); font-size: 1.4rem; font-weight: 400;
  transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--gray); line-height: 1.65; font-size: 0.95rem; }
.faq-list details[open] .faq-body { animation: faqOpen 0.35s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.faq-body ul { margin: 10px 0 10px 18px; display: flex; flex-direction: column; gap: 6px; }

/* ---------- support ---------- */
.support-grid {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.support-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; text-align: center;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.support-card:hover { transform: translateY(-5px); border-color: #b9c6f0; box-shadow: var(--shadow-md); }
.support-card span { font-size: 1.8rem; transition: transform 0.25s ease; }
.support-card:hover span { transform: scale(1.2) rotate(-6deg); }
.support-card small { color: var(--gray); font-size: 0.8rem; }

/* ---------- final cta ---------- */
.final-cta {
  background: #060b2e; color: #fff; text-align: center;
  padding: 110px 6vw; position: relative; overflow: hidden;
}
.aurora {
  position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none;
}
.aurora-a {
  width: 560px; height: 560px; top: -220px; left: 8%;
  background: radial-gradient(circle, rgba(0, 51, 255, 0.4), transparent 65%);
  animation: orbFloat 12s ease-in-out infinite;
}
.aurora-b {
  width: 480px; height: 480px; bottom: -240px; right: 6%;
  background: radial-gradient(circle, rgba(125, 139, 255, 0.32), transparent 65%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(143, 161, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 161, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}
.cta-content { position: relative; }
.final-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 800px; margin: 0 auto 18px; }
.final-cta p { color: #c3cdf5; margin-bottom: 8px; }
.final-cta .peace { font-style: italic; margin-bottom: 34px; }

/* ---------- footer ---------- */
.footer { background: #060814; color: #94a3b8; padding: 60px 6vw 30px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px;
}
.footer-brand p { margin-top: 14px; font-size: 0.9rem; line-height: 1.6; }
.pay-icons { display: flex; gap: 10px; margin-top: 16px; }
.pay-icons span {
  width: 32px; height: 32px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #101527; color: #8fa1ff; font-weight: 700; font-size: 0.9rem;
  border: 1px solid #1c2440; transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pay-icons span:hover { transform: translateY(-3px); color: #fff; border-color: #3a4a9e; }
.footer-col h5 { color: #fff; font-family: var(--font-head); margin-bottom: 14px; font-size: 0.95rem; }
.footer-col a { display: block; margin-bottom: 8px; font-size: 0.9rem; transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-legal {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid #1e293b; padding-top: 24px;
  font-size: 0.78rem; line-height: 1.6;
}
.footer-legal p { margin-bottom: 10px; }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 940;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--blue); color: #fff; font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 10px 26px rgba(0, 21, 255, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-deep); }

/* ---------- live toast ---------- */
.live-toast {
  position: fixed; left: 24px; bottom: 24px; z-index: 940;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  max-width: min(340px, calc(100vw - 48px));
}
.live-toast.show { opacity: 1; visibility: visible; transform: none; }
.live-toast .lt-ic {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #e0e7ff; font-size: 0.9rem;
}
.live-toast small { display: block; color: var(--gray); font-weight: 500; font-size: 0.72rem; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .adv-card.span2 { grid-column: span 2; }
  .feature-row { grid-template-columns: 1fr; gap: 26px; }
  .feature-row.reverse .feature-media { order: 0; }
  .features { gap: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .btn-member { margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .phone { width: 240px; height: 480px; }
  .chip-payout { left: 0; }
  .chip-passed { right: 0; }
  .eco-grid, .adv-grid, .devices-grid, .how-grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hybrid-banner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .pricing-toolbar { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 780px) {
  .why-row { grid-template-columns: 1fr; }
  .why-row > span:first-child {
    padding-bottom: 4px; font-size: 0.78rem; letter-spacing: 0.6px;
    text-transform: uppercase; color: var(--gray);
  }
  .why-head > span:first-child { display: none; }
  .payout-strip { padding-left: 14px; }
  .pay-label { font-size: 0.72rem; }
}
@media (max-width: 620px) {
  .adv-card.span2 { grid-column: auto; }
  .ring-visual { flex-direction: row; }
  .live-visual { padding: 0 0 120px; }
  .live-card { left: 0; right: 0; }
  .community-photo { height: 240px; }
  .eco-grid, .adv-grid, .devices-grid, .how-grid, .support-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { flex-direction: column; gap: 26px; }
  .hybrid-word { font-size: 1.6rem; }
  .hybrid-text { font-size: 1.1rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}
