/* ─── Seekami Website Design System ─── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07090d;
  --bg-card: rgba(255,255,255,0.035);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.48);
  --accent: #00c8e0;
  --accent-dim: rgba(0,200,224,0.15);
  --accent-glow: rgba(0,200,224,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

html { color-scheme: dark; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ─── Background rays ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 45%, rgba(0,120,180,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 55% 50%, rgba(0,80,140,0.08) 0%, transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ─── Layout shell ─── */
.site-shell { position: relative; z-index: 1; overflow-x: hidden; padding-top: 68px; }

/* ─── Header ─── */
.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: border-color 0.4s, box-shadow 0.4s;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.03) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 8px 32px rgba(0,0,0,0.2);
}

/* top specular line */
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.35) 30%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.35) 70%,
    transparent 100%);
  pointer-events: none;
}

.site-header.scrolled {
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 8px 40px rgba(0,0,0,0.35);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.brand-lockup img { width: 24px; height: 24px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}

.site-nav a:hover { color: var(--text); background: var(--bg-card); }
.site-nav a.is-active { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #07090d;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
}

.btn-lang {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.btn-lang:hover { color: var(--text); border-color: var(--border-strong); }

/* ─── Hero ─── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
  min-height: calc(100vh - 68px);
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7,9,13,0.65) 0%, rgba(7,9,13,0.4) 45%, rgba(7,9,13,0) 100%),
    linear-gradient(to top, rgba(7,9,13,0.4) 0%, transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding-bottom: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-h1 {
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }


/* keep legacy cockpit selector alive for responsive overrides below */
.cockpit-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cockpit-row-head span { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 400; }
.cockpit-row-head b { font-size: 15px; font-weight: 600; color: var(--text); }

.cockpit-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.cockpit-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b8d9, rgba(0,200,224,0.4));
  border-radius: 2px;
}

.cockpit-tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.cockpit-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

/* ─── Belief / intro section ─── */
.belief h2 {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.belief p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ─── Numbers strip ─── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 80px;
  position: relative;
  z-index: 1;
}

.numbers article {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.numbers strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.numbers span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.numbers p { font-size: 13px; color: var(--text-muted); }

/* ─── Explore grid ─── */
.explore {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.explore-grid-sub {
  display: contents;
}

.explore-card {
  position: relative;
  background:
    linear-gradient(145deg,
      rgba(255,255,255,0.11) 0%,
      rgba(0,180,220,0.06)  40%,
      rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 24px 48px rgba(0,0,0,0.25);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

/* top specular highlight */
.explore-card::before {
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.5) 30%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0.5) 70%,
    transparent 100%);
  border-radius: 100%;
  filter: blur(1px);
  pointer-events: none;
}

/* liquid blob */
.explore-card::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 120%; height: 70%;
  background: radial-gradient(ellipse at 50% 80%,
    rgba(0,200,224,0.10) 0%,
    rgba(0,150,200,0.05) 40%,
    transparent 70%);
  border-radius: 60% 40% 50% 50% / 40% 40% 60% 60%;
  animation: liquidBlob 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.explore-card:hover {
  border-color: rgba(0,200,224,0.45);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 0 0 1px rgba(0,200,224,0.2),
    0 12px 64px rgba(0,200,224,0.2),
    0 32px 80px rgba(0,0,0,0.3);
  transform: translateY(-6px) scale(1.01);
}

.explore-card > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.explore-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.explore-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.explore-card--featured {
  display: flex;
  flex-direction: column;
}

.explore-card-arrow {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
}

.mobile-menu-btn:hover { color: var(--text); background: var(--bg-card); }

/* ─── Pinterest Section ─── */
.pinterest-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pinterest-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.pinterest-embed-wrap iframe {
  display: block;
}

/* ─── Cases / Video Section ─── */
.cases-section {
  padding: 0 0 80px;
}

.cases-section .section-head {
  padding: 0 48px;
  margin-bottom: 36px;
}

/* Marquee wrapper with edge fade */
.cases-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.cases-marquee-wrap::before,
.cases-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cases-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.cases-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.cases-marquee {
  display: flex;
  gap: 16px;
  padding: 8px 0 24px;
  width: max-content;
  animation: cases-scroll 36s linear infinite;
}
.cases-marquee:hover { animation-play-state: paused; }

.cases-marquee--social {
  align-items: stretch;
  padding-bottom: 12px;
}
.cases-marquee--social .cases-card--social {
  flex: 0 0 300px;
  height: auto;
}

@keyframes cases-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cases-card {
  flex: 0 0 320px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  color: inherit;
  transition: border-color 0.2s, transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s;
}
.cases-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.cases-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f1117;
}
.cases-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cases-card:hover .cases-thumb img { transform: scale(1.04); }

.cases-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  transition: opacity 0.2s;
}
.cases-play-btn::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: block;
}
.cases-play-btn::after {
  content: "▶";
  position: absolute;
  font-size: 16px;
  color: #07090d;
  margin-left: 3px;
}
.cases-card:hover .cases-play-btn { opacity: 1; }

/* ── Belief + Shark reel ─────────────────────────────────── */
.belief-reel {
  display: grid;
  grid-template-columns: minmax(480px, 560px) minmax(360px, 440px);
  justify-content: center;
  gap: clamp(64px, 6vw, 96px);
  align-items: center;
  width: min(calc(100% - 96px), 1280px);
  max-width: none;
  margin: 0 auto;
  padding: 76px 0;
  min-height: calc(100vh - 68px);
  box-sizing: border-box;
}

.belief-reel-vid-wrap {
  width: 100%;
  max-width: 440px;
  justify-self: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 80px rgba(57,201,255,0.1);
  position: relative;
  aspect-ratio: 4 / 5;
  top: 14px;
}

.belief-reel-vid-wrap video {
  width: 100%;
  height: 108%;
  position: absolute;
  top: -8%;
  left: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.belief {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 22px;
}

.founder-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.belief-quote {
  border-left: 1px solid rgba(80, 220, 255, 0.28);
  padding-left: 20px;
  max-width: 480px;
}

.belief-quote p {
  margin: 0 0 16px;
}

.belief-quote p:last-of-type {
  margin-bottom: 0;
}

.belief-signature {
  margin-top: 18px !important;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}

/* reveal animation */
.belief-reel .belief { opacity: 0; transform: translateY(28px); }
.belief-reel .belief.br-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
}

@media (max-width: 900px) {
  .belief-reel {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 40px;
    padding: 56px 24px;
  }
  .belief,
  .belief-reel-vid-wrap { justify-self: center; }
  .belief-reel-vid-wrap { aspect-ratio: 16/9; max-width: 520px; }
}

/* Video lightbox */
.vid-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.vid-overlay.open { opacity: 1; pointer-events: all; }

.vid-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(7,9,13,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  cursor: pointer;
}

.vid-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.vid-overlay.open .vid-box { transform: scale(1); }

.vid-frame-wrap {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  background: #000;
}
.vid-frame-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.vid-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.vid-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

.cases-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cases-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.cases-info p {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.4;
}

/* ─── Final CTA ─── */
.final-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
}

.final-cta-copy h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}

.final-cta-copy p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-card img { width: 56px; height: 56px; border-radius: 14px; }
.final-cta-card strong { font-size: 15px; font-weight: 600; line-height: 1.4; max-width: 220px; }

/* ─── Stats big numbers ─── */
/* ── Stats section ── */
.stats-section {
  padding: 64px 80px 80px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* ambient liquid glow behind grid */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 80%, rgba(0,160,220,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0,200,224,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(0,120,200,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: liquidAmbient 8s ease-in-out infinite alternate;
}
@keyframes liquidAmbient {
  0%   { opacity: 0.7; transform: scale(1)   translateY(0); }
  50%  { opacity: 1;   transform: scale(1.04) translateY(-8px); }
  100% { opacity: 0.8; transform: scale(0.98) translateY(4px); }
}
.stats-section > .eyebrow { margin-bottom: 48px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  width: 100%;
}

/* ── Liquid Glass card ── */
.stat-item {
  position: relative;
  border-radius: 24px;
  padding: 24px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* layered glass background */
  background:
    linear-gradient(145deg,
      rgba(255,255,255,0.11) 0%,
      rgba(0,180,220,0.06)  40%,
      rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 24px 48px rgba(0,0,0,0.25);
}

/* top specular highlight */
.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.5) 30%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0.5) 70%,
    transparent 100%);
  border-radius: 100%;
  filter: blur(1px);
}

/* animated liquid blob inside card */
.stat-item::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 120%; height: 80%;
  background: radial-gradient(ellipse at 50% 80%,
    rgba(0,200,224,0.12) 0%,
    rgba(0,150,200,0.06) 40%,
    transparent 70%);
  border-radius: 60% 40% 50% 50% / 40% 40% 60% 60%;
  animation: liquidBlob 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes liquidBlob {
  0%   { transform: translateY(0)    scaleX(1)    skewX(0deg); border-radius: 60% 40% 50% 50% / 40% 40% 60% 60%; }
  33%  { transform: translateY(-6px) scaleX(1.04) skewX(1deg); border-radius: 55% 45% 60% 40% / 45% 35% 65% 55%; }
  66%  { transform: translateY(4px)  scaleX(0.97) skewX(-1deg);border-radius: 65% 35% 45% 55% / 35% 50% 50% 65%; }
  100% { transform: translateY(-3px) scaleX(1.02) skewX(0.5deg);border-radius: 58% 42% 52% 48% / 42% 44% 56% 58%; }
}

/* water droplet decoration — corner of card */
.stat-item .odo-digits::after {
  content: "";
  position: absolute;
  top: -32px; right: -20px;
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,255,255,0.9),
    rgba(0,200,224,0.5) 50%,
    rgba(0,150,200,0.2));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 2px 6px rgba(0,200,224,0.3);
  opacity: 0.7;
  animation: droplet 4s ease-in-out infinite alternate;
}
@keyframes droplet {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  50%  { transform: translateY(-3px) scale(1.1); opacity: 0.9; }
  100% { transform: translateY(1px) scale(0.95); opacity: 0.5; }
}

.stat-item:hover {
  border-color: rgba(0,200,224,0.45);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset,
    0 0 0 1px rgba(0,200,224,0.2),
    0 12px 64px rgba(0,200,224,0.2),
    0 32px 80px rgba(0,0,0,0.3);
  transform: translateY(-6px) scale(1.01);
}
.stat-item:hover::after {
  animation-duration: 3s;
  background: radial-gradient(ellipse at 50% 80%,
    rgba(0,200,224,0.2) 0%,
    rgba(0,150,200,0.1) 40%,
    transparent 70%);
}

/* ── Odometer roller ── */
.stat-num {
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0;
  font-variant-numeric: tabular-nums;
}
.odo-digits {
  display: flex;
  align-items: baseline;
}
.odo-digit-wrap {
  position: relative;
  overflow: hidden;
  height: 1.1em;
  display: inline-flex;
  align-items: flex-start;
}
/* frosted top/bottom fade */
.odo-digit-wrap::before,
.odo-digit-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 35%;
  z-index: 2;
  pointer-events: none;
}
.odo-digit-wrap::before {
  top: 0;
  background: linear-gradient(to bottom,
    rgba(20,24,32,0.95) 0%,
    rgba(20,24,32,0.4)  60%,
    transparent 100%);
}
.odo-digit-wrap::after {
  bottom: 0;
  background: linear-gradient(to top,
    rgba(20,24,32,0.95) 0%,
    rgba(20,24,32,0.4)  60%,
    transparent 100%);
}
.odo-reel {
  display: flex;
  flex-direction: column;
  /* start position: top (digit 9, rolling down to target) */
  transform: translateY(-90%);
  transition: transform 1.6s cubic-bezier(0.16, 1.4, 0.3, 1);
  will-change: transform;
}
.odo-reel span {
  display: block;
  line-height: 1.1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.odo-sep {
  align-self: flex-end;
  padding-bottom: 0.08em;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  font-size: 0.6em;
  margin: 0 1px;
}
.odo-unit {
  font-size: 0.55em;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  align-self: flex-end;
  padding-bottom: 0.12em;
  margin-left: 2px;
  text-shadow: 0 0 12px rgba(0,200,224,0.4);
  transition: text-shadow 0.3s;
}
.stat-item:hover .odo-unit {
  text-shadow: 0 0 24px rgba(0,200,224,0.8);
}

.stat-label {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.stat-desc {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-footer {
  margin-top: 72px;
  max-width: 1200px;
  width: 100%;
}

.stats-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.stats-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .stats-section { padding: 64px 24px; min-height: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; }
  .stat-item:nth-child(2n) { border-left: 1px solid var(--border); padding-left: 24px; }
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.03) 0%,
    rgba(0,0,0,0) 100%);
}

.site-footer > div { display: flex; flex-direction: column; gap: 2px; }
.site-footer strong { font-size: 14px; font-weight: 600; }
.site-footer span { font-size: 12px; color: var(--text-muted); }

.site-footer nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 32px;
}

.site-footer nav a,
.footer-nav-btn {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.site-footer nav a:hover,
.footer-nav-btn:hover { color: var(--text-secondary); }
.site-footer small { font-size: 12px; color: var(--text-muted); }

/* ─── Mobile menu ─── */
.mobile-menu { display: none; position: relative; }

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(7,9,13,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(20px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.mobile-menu-panel a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.mobile-menu-panel a:hover { color: var(--text); background: var(--bg-card); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero { padding: 0 40px 72px; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .final-cta { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .belief-reel { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .belief { padding: 0; }
  .site-header { padding: 0 24px; }
  .site-nav { display: none; }
  .mobile-menu { display: block; }
  .header-actions .btn-primary { display: none; }
  .hero { padding: 0 24px 64px; min-height: 90vh; }
  .hero-h1 { font-size: 40px; }
  .hero-bg-overlay {
    background:
      linear-gradient(to right, rgba(7,9,13,0.88) 0%, rgba(7,9,13,0.6) 100%),
      linear-gradient(to top, rgba(7,9,13,0.75) 0%, transparent 50%);
  }
  .belief { padding: 60px 0 0; }
  .explore { padding: 0 24px 80px; }
  .explore-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .final-cta { padding: 0 24px 80px; }
  .site-footer { padding: 24px; flex-wrap: wrap; }
  .site-footer nav { margin-left: 0; }
}

/* ════════════════════════════════════════
   Seekami Motion System
   ════════════════════════════════════════ */

/* ── Scroll Reveal ── */
.sk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sk-reveal.sk-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance ── */
@keyframes sk-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll progress bar ── */
.sk-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── Reveal: slide up from below ── */
.sk-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sk-reveal.sk-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Numbers articles: slide from bottom with scale ── */
.numbers .sk-reveal {
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.numbers .sk-reveal.sk-visible {
  transform: translateY(0) scale(1);
}

/* ── Explore cards: slide + subtle rotate ── */
.explore-grid .sk-reveal {
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.explore-grid .sk-reveal.sk-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sk-reveal { opacity: 1; transform: none; transition: none; }
  .sk-progress-bar { display: none; }
}


/* ── Floating animation — brand logo ── */
@keyframes sk-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

.brand-lockup svg {
  animation: sk-logo-float 5s ease-in-out infinite;
  display: block;
}

/* ── Parallax background layers ── */
.sk-bg-glow {
  position: fixed;
  top: -10%;
  right: -5%;
  width: 65vw;
  height: 70vh;
  background: radial-gradient(ellipse at center,
    rgba(0, 100, 160, 0.14) 0%,
    rgba(0, 60, 120, 0.07) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.sk-bg-ring {
  position: fixed;
  bottom: 5%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 220, 0.06);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.sk-bg-ring::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 220, 0.04);
}

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .sk-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .brand-lockup svg {
    animation: none;
  }
}

/* ── Mobile: lighter effects ── */
@media (max-width: 768px) {
  .sk-reveal {
    transform: translateY(16px);
    transition-duration: 0.45s;
  }
}

/* Fix icon-badge inside grid containers (blockification) */
.icon-badge,
.avatar-mark {
  justify-self: start;
  align-self: start;
  width: auto;
  min-width: 42px;
  height: auto;
  min-height: 42px;
  padding: 6px 10px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   Premium Layer — visual elevation
   ══════════════════════════════════════════ */

/* ── Pure dark background ── */
body {
  background: #07090d;
}

/* ── Diagonal light beams ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* center glow source */
    radial-gradient(ellipse 50% 60% at 72% 38%, rgba(30, 60, 100, 0.22) 0%, transparent 65%),
    /* beam 1 */
    linear-gradient(128deg, transparent 30%, rgba(80, 140, 200, 0.055) 48%, transparent 52%),
    /* beam 2 */
    linear-gradient(118deg, transparent 35%, rgba(60, 120, 180, 0.04) 50%, transparent 54%),
    /* beam 3 */
    linear-gradient(138deg, transparent 28%, rgba(100, 160, 220, 0.045) 46%, transparent 50%),
    /* beam 4 */
    linear-gradient(108deg, transparent 40%, rgba(40, 100, 160, 0.035) 54%, transparent 58%),
    /* beam 5 */
    linear-gradient(148deg, transparent 22%, rgba(70, 130, 190, 0.03) 42%, transparent 46%);
}

/* ── Noise grain ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Hero H1: solid white ── */
.hero-h1 {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}


/* ── Explore cards: glass hover ── */
.explore-card {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 26, 40, 0.8), rgba(6, 14, 22, 0.7));
  border-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.explore-card:hover {
  background: linear-gradient(145deg, rgba(14, 34, 52, 0.9), rgba(8, 18, 30, 0.85));
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow:
    0 0 0 1px rgba(103, 232, 249, 0.08) inset,
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(103, 232, 249, 0.08);
  transform: translateY(-4px);
}

/* ── Primary button (header): outlined, not filled ── */
.btn-primary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
  letter-spacing: -0.01em;
  font-weight: 550;
}

.btn-primary:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* ── Ghost button: dark glass pill ── */
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ── Cockpit bar fills: gradient ── */
.cockpit-bar-fill {
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.9), rgba(52, 211, 153, 0.5));
  box-shadow: 0 0 8px rgba(103, 232, 249, 0.4);
}

/* ── Numbers strip: glass cell ── */
.numbers article {
  background: linear-gradient(145deg, rgba(10, 22, 34, 0.85), rgba(5, 12, 20, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.numbers strong {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

/* ── Header: always frosted ── */
.site-header {
  background: rgba(7, 9, 13, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Final CTA card ── */
.final-cta-card {
  background: linear-gradient(145deg, rgba(12, 28, 42, 0.9), rgba(6, 16, 26, 0.8));
  border-color: rgba(103, 232, 249, 0.18);
  box-shadow: 0 0 32px rgba(103, 232, 249, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
}

/* ══════════════════════════════════════════
   液态玻璃水滴 — Liquid Glass Layer
   ══════════════════════════════════════════ */

@keyframes sk-shimmer {
  0%   { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(300%) rotate(25deg); }
}


/* ── Ghost buttons: liquid glass pill ── */
.btn-ghost {
  position: relative;
  overflow: hidden;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset,
    0 8px 24px rgba(0,0,0,0.28) !important;
  color: rgba(230, 245, 252, 0.88) !important;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.28) inset,
    0 -1px 0 rgba(0,0,0,0.1) inset,
    0 14px 36px rgba(0,0,0,0.38) !important;
}

/* ── Primary button (header): outlined glass ── */
.btn-primary {
  border-radius: 100px !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.12) !important;
  transform: translateY(-1px) !important;
}

/* ── Explore cards: frosted glass drops ── */
.explore-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 20px 48px rgba(0,0,0,0.32) !important;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s !important;
}

.explore-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}

.explore-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(103, 232, 249, 0.32) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(103,232,249,0.1) inset,
    0 28px 60px rgba(0,0,0,0.45),
    0 0 30px rgba(103,232,249,0.08) !important;
  transform: translateY(-4px) !important;
}

/* ── Numbers strip: glass tiles ── */
.numbers article {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
}

/* ─── KOL Masonry (Pinterest-style) ─── */

.kol-module .section-heading { margin-bottom: 20px; }
.section-lede { color: var(--text-secondary); margin-top: 10px; max-width: 520px; }

/* ─── Service quicknav (hero area) ─── */
.service-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-quicknav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 14px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.service-quicknav a:hover {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(0,200,224,0.3);
}

.kol-masonry {
  columns: 3;
  column-gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 900px) { .kol-masonry { columns: 2; } }
@media (max-width: 560px) { .kol-masonry { columns: 1; } }

.kol-pin {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.kol-pin:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.kol-pin-visual {
  position: relative;
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  justify-content: space-between;
}

.kol-pin--tall .kol-pin-visual { height: 160px; }

.kol-pin-visual--yt { background: linear-gradient(135deg, #1a0a0a 0%, #3d0f0f 100%); }
.kol-pin-visual--tt { background: linear-gradient(135deg, #0a0a1a 0%, #1a1040 100%); }
.kol-pin-visual--nl { background: linear-gradient(135deg, #0a1a10 0%, #0f3020 100%); }
.kol-pin-visual--tw { background: linear-gradient(135deg, #0a0f1a 0%, #0f1d35 100%); }

.kol-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.kol-avatar--photo {
  width: 64px; height: 64px;
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  border-width: 2px;
}
.kol-avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kol-followers-big {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.kol-followers-big span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.kol-platform {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.kol-platform--accent {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: rgba(0,200,224,0.25);
}

.kol-pin-body {
  padding: 14px 16px 16px;
}

.kol-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kol-niche {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.kol-followers {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.kol-pin-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.kol-pin-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* hover overlay */
.kol-pin-hover {
  position: absolute;
  inset: 0;
  background: rgba(7,9,13,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: var(--radius);
}

.kol-pin:hover .kol-pin-hover { opacity: 1; }

.kol-hover-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.kol-pin-hover ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.kol-pin-hover ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}

.kol-pin-hover ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 11px;
  top: 1px;
}

.kol-stats {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.kol-stats span {
  font-size: 12px;
  color: var(--text-muted);
}

.kol-stats strong {
  color: var(--text);
  font-weight: 600;
}

/* CTA pin */
.kol-pin--cta {
  background: var(--accent-dim);
  border-color: rgba(0,200,224,0.2);
}

.kol-cta-inner {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kol-cta-inner h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.kol-cta-inner p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* remaining service cards below masonry */
.kol-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 800px) { .kol-service-cards { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   Full-page service sections
══════════════════════════════════════ */
.svc-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 80px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.svc-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.svc-page-inner--rev { direction: rtl; }
.svc-page-inner--rev > * { direction: ltr; }

/* Copy side */
.svc-page-copy { display: flex; flex-direction: column; gap: 0; }
.svc-page-copy h2 { font-size: clamp(36px,4vw,56px); font-weight: 700; line-height: 1.1; margin: 12px 0 16px; letter-spacing: -0.03em; }
.svc-page-copy h2 strong { color: var(--accent); }

.svc-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.svc-check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.svc-check-icon { color: var(--accent); font-size: 12px; margin-top: 4px; flex-shrink: 0; }

/* Visual side shared */
.svc-page-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Product Hunt mockup ── */
.ph-mockup {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ph-badge {
  background: linear-gradient(135deg, rgba(255,130,50,0.15), rgba(255,80,20,0.08));
  border: 1px solid rgba(255,130,50,0.3);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #ff8232;
  text-align: center;
  letter-spacing: -0.01em;
}

.ph-stats-row { display: flex; gap: 0; }
.ph-stat {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ph-stat:last-child { border-right: none; }
.ph-stat strong { display: block; font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.ph-stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.ph-timeline { display: flex; align-items: center; }
.ph-tl-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.ph-tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
}
.ph-tl-item span:last-child { font-size: 10px; color: var(--text-muted); text-align: center; white-space: nowrap; }
.ph-tl-item--done .ph-tl-dot { background: var(--accent); border-color: var(--accent); }
.ph-tl-item--done span:last-child { color: var(--accent); }
.ph-tl-item--active .ph-tl-dot { background: #ff8232; border-color: #ff8232; box-shadow: 0 0 8px rgba(255,130,50,0.6); }
.ph-tl-item--active span:last-child { color: #ff8232; font-weight: 600; }
.ph-tl-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

/* Product Hunt launch proof — isolated from legacy .ph-* case-study styles */
.phx-showcase {
  width: min(100%, 560px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(24,31,40,.97), rgba(9,13,18,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.04);
}

.phx-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.phx-logo {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: #ff6154;
  color: white;
  font-size: 29px;
  font-weight: 750;
  line-height: 1;
}

.phx-brand-row div { display: grid; gap: 4px; }
.phx-brand-row strong { color: #f3f4f5; font-size: 14px; font-weight: 760; letter-spacing: .03em; }
.phx-brand-row small { color: #727b85; font-size: 9px; font-weight: 750; letter-spacing: .13em; }

.phx-winner-banner {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
  padding: 18px 22px;
  border: 1px solid rgba(255,97,84,.62);
  border-radius: 18px;
  background: rgba(255,97,84,.055);
}

.phx-medal {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 3px solid #ffd24a;
  border-radius: 50%;
  background: #eebc16;
  color: #fff8d1;
  font-size: 19px;
  font-weight: 900;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.2);
}

.phx-medal::before,
.phx-medal::after {
  position: absolute;
  top: -13px;
  width: 9px;
  height: 18px;
  background: #484c8f;
  content: "";
  z-index: -1;
}
.phx-medal::before { left: 9px; transform: rotate(-8deg); }
.phx-medal::after { right: 9px; transform: rotate(8deg); }
.phx-winner-banner div { display: grid; gap: 5px; }
.phx-winner-banner small { color: #ff756a; font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.phx-winner-banner strong { color: #f6f7f8; font-size: 27px; font-weight: 680; letter-spacing: -.035em; }

.phx-awards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.phx-award-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 24px 15px 20px;
  border: 1px solid rgba(198,202,230,.19);
  border-radius: 18px;
  background: rgba(245,247,252,.04);
  text-align: center;
}

.phx-award-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 14px;
  clip-path: polygon(50% 0, 91% 24%, 91% 76%, 50% 100%, 9% 76%, 9% 24%);
  background: #b9bbe2;
}

.phx-award-icon i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid #eef0ff;
  border-radius: 50%;
  color: #eef0ff;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.phx-award-icon--day i { border-radius: 10px; }
.phx-award-card > small { color: #929aae; font-size: 11px; }
.phx-award-card > strong { min-height: 40px; display: grid; align-items: center; margin-top: 10px; color: #f1f3f7; font-size: 15px; line-height: 1.28; }
.phx-award-card > p { margin: 8px 0 0; color: #8a93a4; font-size: 11px; }

.phx-proof {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 16px 3px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #69737d;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .1em;
}

.phx-proof span:first-child { color: #ff756a; }

@media (max-width: 560px) {
  .phx-showcase { padding: 18px; border-radius: 22px; }
  .phx-winner-banner { padding: 15px; }
  .phx-award-card { padding-inline: 9px; }
  .phx-award-card > strong { font-size: 13px; }
  .phx-proof { align-items: flex-start; flex-direction: column; }
}

/* ── Brand film kinetic ── */
.svc-page-visual--film { position: relative; }
.film-kinetic {
  width: 100%;
  max-width: 440px;
  height: 340px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.fk-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 12px 0;
  animation: fk-scroll 10s linear infinite;
}
.fk-track span { padding: 0 12px; }
.fk-track em { color: rgba(0,200,224,0.5); font-style: normal; }
.fk-track--slow { animation-duration: 16s; font-size: 24px; color: rgba(255,255,255,0.4); }
.fk-track--rev { animation-direction: reverse; }

@keyframes fk-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fk-center-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* ── Reddit mockup ── */
.reddit-mockup {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rm-post {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.rm-post:hover { border-color: rgba(255,69,0,0.3); }
.rm-post--hot { border-color: rgba(255,69,0,0.2); }

.rm-votes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  min-width: 40px;
}
.rm-votes span { color: rgba(255,69,0,0.7); font-size: 12px; }
.rm-votes strong { font-size: 13px; font-weight: 700; color: #fff; }

.rm-body { display: flex; flex-direction: column; gap: 4px; }
.rm-sub { font-size: 10px; font-weight: 600; color: rgba(255,69,0,0.8); letter-spacing: 0.04em; text-transform: uppercase; }
.rm-title { font-size: 13px; font-weight: 500; color: var(--text-primary); line-height: 1.4; }
.rm-meta { font-size: 11px; color: var(--text-muted); }

/* Mobile */
@media (max-width: 900px) {
  .svc-page { padding: 60px 24px; align-items: center; }
  .svc-page-inner { grid-template-columns: 1fr; gap: 40px; align-items: center; }
  .svc-page-inner--rev { direction: ltr; }
  .kol-cta-row { margin-top: 24px; padding-top: 0; }
}

/* ─── KOL Orbit Scene ─── */

/* ─── KOL detail popup ─── */
.kol-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(0.92);
  z-index: 500;
  width: 300px;
  background: linear-gradient(
    150deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(0,200,224,0.06) 100%
  );
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.kol-popup.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.kol-popup-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 26px; height: 26px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.kol-popup-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.kol-popup-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kol-popup-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,200,224,0.35);
  box-shadow: 0 0 16px rgba(0,200,224,0.2);
}
.kol-popup-handle {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.kol-popup-niche {
  font-size: 11px;
  color: var(--accent);
  margin-top: 2px;
  font-weight: 500;
}

.kol-popup-stats {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 14px;
  padding: 4px 0;
}
.kol-popup-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  position: relative;
}
.kol-popup-stat + .kol-popup-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.kps-val {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}
.kps-wide .kps-val {
  font-size: 17px;
}
.kps-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kol-popup-collab {
  background: rgba(0,200,224,0.06);
  border: 1px solid rgba(0,200,224,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.kpl-label {
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.kpl-value {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.kol-popup-cta {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.kol-popup-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── Floating service sidebar nav ─── */
.svc-sidenav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 10px;
  /* liquid glass */
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(0,200,224,0.06) 100%
  );
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset;
}

.ssn-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
  position: relative;
}

.ssn-item:hover {
  background: rgba(255,255,255,0.07);
}

.ssn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ssn-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.25s ease;
  /* hidden by default, reveal on hover */
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.25s ease, color 0.25s ease;
}

.svc-sidenav:hover .ssn-label {
  max-width: 120px;
  opacity: 1;
}

/* active state */
.ssn-item.is-active .ssn-dot {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,200,224,0.6), 0 0 3px rgba(0,200,224,0.9);
  transform: scale(1.3);
}
.ssn-item.is-active .ssn-label {
  color: var(--accent);
}

@media (max-width: 900px) {
  .svc-sidenav { display: none; }
}

/* ─── KOL section two-column split ─── */
/* KOL section two-column split */
.module-section.kol-module {
  min-height: 100vh;
  max-width: none;
  padding: 80px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.kol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  min-height: calc(100vh - 160px);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.kol-split-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kol-split-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.kol-split-copy h2 strong {
  color: var(--accent);
}

.kol-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 0;
}

/* Keep each service action visually attached to the content above it. */
.kol-split-copy > .kol-cta-row {
  margin-top: 28px;
}

.kol-cta-btn {
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
}

.kol-cta-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.kol-plugin-link {
  font-size: 13px;
  color: rgba(0,200,224,0.55);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  margin-top: 16px;
}
.kol-plugin-link:hover {
  color: rgba(0,200,224,0.9);
}

.kol-split-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.kol-split-orbit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

@media (max-width: 900px) {
  .module-section.kol-module {
    min-height: auto;
    padding: 60px 24px;
  }
  .kol-split {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    min-height: auto;
    padding: 0;
  }
  .kol-split-orbit { margin-top: 0; }
  .kol-cta-row { margin-top: 24px; padding-top: 0; }
}

.orbit-scene {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  overflow: visible;
}

/* visual ring circles — static, centered, 3D-lit */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ring-1 — inner */
.orbit-ring--1 {
  width: 200px; height: 200px;
  border: 1px solid rgba(100,210,140,0.25);
  box-shadow: 0 0 12px rgba(100,210,140,0.12) inset, 0 0 8px rgba(100,210,140,0.1);
  animation: ring-pulse-1 8s ease-in-out infinite;
}

/* ring-2 — middle */
.orbit-ring--2 {
  width: 320px; height: 320px;
  border: 1px solid rgba(0,200,224,0.22);
  box-shadow: 0 0 14px rgba(0,200,224,0.10) inset, 0 0 10px rgba(0,200,224,0.08);
  animation: ring-pulse-2 11s ease-in-out infinite 1.5s;
}

@keyframes ring-pulse-1 {
  0%, 100% { box-shadow: 0 0 8px rgba(100,210,140,0.10) inset, 0 0 6px rgba(100,210,140,0.08); }
  50%       { box-shadow: 0 0 18px rgba(100,210,140,0.22) inset, 0 0 14px rgba(100,210,140,0.18); }
}
@keyframes ring-pulse-2 {
  0%, 100% { box-shadow: 0 0 10px rgba(0,200,224,0.08) inset, 0 0 8px rgba(0,200,224,0.06); }
  50%       { box-shadow: 0 0 22px rgba(0,200,224,0.20) inset, 0 0 16px rgba(0,200,224,0.15); }
}

/* Each dot is a zero-size anchor at center; its children are offset by radius */
.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  /* allow hover detection on inner */
  pointer-events: none;
}

/* the inner wrapper translates to the radius, keeps contents upright */
.orbit-dot-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  cursor: default;
}

/* ring-1: slow, 50s forward */
.orbit-scene .orbit-dot--r1 {
  animation: orbit-spin 50s linear infinite;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 50s);
}
.orbit-scene .orbit-dot--r1 .orbit-dot-inner {
  animation: counter-spin 50s linear infinite;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 50s);
  translate: 100px -22px;
}

/* ring-2: 80s reverse — gentle counter-drift */
.orbit-scene .orbit-dot--r2 {
  animation: orbit-spin 80s linear infinite reverse;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 80s);
}
.orbit-scene .orbit-dot--r2 .orbit-dot-inner {
  animation: counter-spin-rev 80s linear infinite;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 80s);
  translate: 160px -22px;
}

/* ring-3: 110s forward — outermost, stateliest */
.orbit-scene .orbit-dot--r3 {
  animation: orbit-spin 110s linear infinite;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 110s);
}
.orbit-scene .orbit-dot--r3 .orbit-dot-inner {
  animation: counter-spin 110s linear infinite;
  animation-delay: calc(-1 * (var(--start, 0deg) / 360deg) * 110s);
  translate: 200px -22px;
}

/* pause orbit only when hovering an avatar */
.orbit-scene:has(.orbit-avatar:hover) .orbit-dot,
.orbit-scene:has(.orbit-avatar:hover) .orbit-dot-inner {
  animation-play-state: paused;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes counter-spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ring glow pulse */
@keyframes ring-pulse {
  0%, 100% { opacity: 0.18; }
  50%       { opacity: 0.35; }
}
/* ring animations now defined per-ring with ring-pulse-1/2/3 */

.orbit-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* ring-color glow per tier */
.orbit-dot--r1 .orbit-avatar {
  box-shadow: 0 0 0 3px rgba(100,210,140,0.12), 0 0 18px rgba(100,210,140,0.18);
  border-color: rgba(100,210,140,0.3);
}
.orbit-dot--r2 .orbit-avatar {
  box-shadow: 0 0 0 3px rgba(0,200,224,0.12), 0 0 18px rgba(0,200,224,0.18);
  border-color: rgba(0,200,224,0.3);
}
.orbit-dot--r3 .orbit-avatar {
  box-shadow: 0 0 0 3px rgba(255,180,50,0.12), 0 0 18px rgba(255,180,50,0.18);
  border-color: rgba(255,180,50,0.3);
}

.orbit-dot-inner:hover .orbit-avatar {
  transform: scale(1.12);
}
.orbit-dot--r1 .orbit-dot-inner:hover .orbit-avatar {
  box-shadow: 0 0 0 4px rgba(100,210,140,0.3), 0 0 28px rgba(100,210,140,0.4);
}
.orbit-dot--r2 .orbit-dot-inner:hover .orbit-avatar {
  box-shadow: 0 0 0 4px rgba(0,200,224,0.3), 0 0 28px rgba(0,200,224,0.4);
}
.orbit-dot--r3 .orbit-dot-inner:hover .orbit-avatar {
  box-shadow: 0 0 0 4px rgba(255,180,50,0.3), 0 0 28px rgba(255,180,50,0.4);
}

.orbit-avatar--photo { background: transparent; overflow: hidden; padding: 0; }
.orbit-avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* compact orbit label — always visible, minimal */
.orbit-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(8,12,20,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 4px 9px;
  white-space: nowrap;
}
.orbit-label strong {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.orbit-label span {
  font-size: 10px;
  color: rgba(255,255,255,0.42);
  line-height: 1.2;
}

/* center */
.orbit-center {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.orbit-center::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle, rgba(6,10,18,0.92) 40%, rgba(6,10,18,0.6) 65%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.orbit-center-eye {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.orbit-center h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-secondary);
}

.orbit-center h3 strong {
  color: var(--text);
  font-weight: 700;
  display: block;
}

@media (max-width: 600px) {
  .orbit-scene { height: 420px; }
  .orbit-ring--1 { width: 180px; height: 180px; }
  .orbit-ring--2 { width: 320px; height: 320px; }
  .orbit-dot--r1 .orbit-dot-inner { translate: 90px -20px; }
  .orbit-dot--r2 .orbit-dot-inner { translate: 160px -20px; }
  .orbit-label { display: none; }
}

/* ─── Brand Film Card (kinetic typography) ─── */

.brand-film-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

/* scrolling ticker at top */
.brand-film-ticker {
  position: absolute;
  top: 0; left: 0; right: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 55%);
  pointer-events: none;
  white-space: nowrap;
}

/* single container scrolls — seamless because content is duplicated */
.bft-track {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  animation: bft-scroll 14s linear infinite;
  will-change: transform;
}

.bft-track span {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.88);
  padding: 0 0.18em;
}

.bft-track em {
  font-style: normal;
  font-size: clamp(44px, 6vw, 76px);
  color: var(--accent);
  padding: 0 0.1em;
}

@keyframes bft-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-film-body {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
  justify-content: flex-end;
}

.brand-film-body h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand-film-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── KOL Ticker Strip ─── */
.kol-ticker-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * var(--section-px, 0px));
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
  position: relative;
}

.kol-ticker-wrap::before,
.kol-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.kol-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary, #0a0e16), transparent);
}
.kol-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary, #0a0e16), transparent);
}

.kol-ticker-track {
  display: inline-flex;
  gap: 12px;
  animation: kol-ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

.kol-ticker-wrap:hover .kol-ticker-track {
  animation-play-state: paused;
}

@keyframes kol-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.kol-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 8px 16px 8px 8px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.kol-ticker-item:hover {
  background: rgba(0,200,224,0.07);
  border-color: rgba(0,200,224,0.2);
}

.kol-ticker-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

.kol-ticker-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kol-ticker-handle {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.kol-ticker-followers {
  font-size: 11px;
  color: var(--accent, #00c8e0);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.kol-ticker-tag {
  font-size: 10px;
  color: var(--text-muted, #6b7a9a);
  letter-spacing: 0.02em;
}

/* ring-3 — outer */
.orbit-ring--3 {
  width: 400px; height: 400px;
  border: 1px solid rgba(255,180,50,0.20);
  box-shadow: 0 0 14px rgba(255,180,50,0.08) inset, 0 0 10px rgba(255,180,50,0.06);
  animation: ring-pulse-3 14s ease-in-out infinite 3s;
}
@keyframes ring-pulse-3 {
  0%, 100% { box-shadow: 0 0 10px rgba(255,180,50,0.06) inset, 0 0 8px rgba(255,180,50,0.05); }
  50%       { box-shadow: 0 0 20px rgba(255,180,50,0.18) inset, 0 0 14px rgba(255,180,50,0.14); }
}

/* ─── Orbit price legend ─── */
.orbit-price-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 16px auto 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 40px;
  padding: 12px 28px;
  width: fit-content;
  flex-wrap: wrap;
}

.opl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.opl-ring {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

.opl-item--1 .opl-ring { border-color: rgba(100,210,140,0.8); box-shadow: 0 0 6px rgba(100,210,140,0.4); }
.opl-item--2 .opl-ring { border-color: rgba(0,200,224,0.8); box-shadow: 0 0 6px rgba(0,200,224,0.4); }
.opl-item--3 .opl-ring { border-color: rgba(255,180,50,0.8); box-shadow: 0 0 6px rgba(255,180,50,0.4); }

.opl-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.opl-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.opl-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.opl-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


@media (max-width: 700px) {
  .orbit-ring--3 { width: 320px; height: 320px; }
  .orbit-dot--r3 .orbit-dot-inner { translate: 160px -20px; }
}

/* Twitter header divider card */
.kol-pin--tw-header {
  background: linear-gradient(135deg, rgba(29,161,242,0.08) 0%, rgba(29,161,242,0.04) 100%);
  border-color: rgba(29,161,242,0.2);
  break-inside: avoid;
}

.kol-tw-header-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kol-tw-header-inner p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.kol-tw-header-inner .kol-platform {
  color: rgb(29,161,242);
  background: rgba(29,161,242,0.1);
  border-color: rgba(29,161,242,0.2);
}

/* ─── Playbooks / 方法论 section (merged into insights) ─── */
.playbooks-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.playbooks-header {
  text-align: center;
  margin-bottom: 52px;
}

.playbooks-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.playbooks-header h2 strong { color: var(--accent); }

.playbooks-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.playbook-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.playbook-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.playbook-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.playbook-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.playbook-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.playbook-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,200,224,0.65);
  background: rgba(0,200,224,0.08);
  border: 1px solid rgba(0,200,224,0.16);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 768px) {
  .playbooks-grid { grid-template-columns: 1fr 1fr; }
  .playbooks-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .playbooks-grid { grid-template-columns: 1fr; }
}

/* ── Social Post Case Cards ─────────────────────────────── */
.cases-card--social {
  flex: 0 0 300px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  transition: border-color 0.2s, transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s;
}
.cases-card--social:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

/* Tweet card */
.social-header { display: flex; align-items: center; gap: 10px; }
.social-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,224,0.4), rgba(255,180,50,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.social-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; }
.social-handle { font-size: 11px; color: var(--text-muted); }
.social-platform-x { margin-left: auto; color: rgba(255,255,255,0.5); font-size: 16px; }
.social-platform-reddit { margin-left: auto; color: rgba(255,90,0,0.7); font-size: 14px; }

.social-body {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.social-body strong { color: rgba(0,200,224,0.9); }

.social-img {
  border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06);
}
.social-img img { width: 100%; display: block; object-fit: cover; max-height: 120px; }

.social-stats {
  display: flex; gap: 16px; margin-top: auto;
  font-size: 11px; color: var(--text-muted);
}
.social-stats span { display: flex; align-items: center; gap: 4px; }

.social-tag { display: inline-block; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05);
  border-radius: 100px; padding: 2px 8px; }
.social-tag--x { color: rgba(255,255,255,0.5); }
.social-tag--reddit { color: rgba(255,90,0,0.65); background: rgba(255,90,0,0.08); }

.reddit-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.reddit-sub { font-size: 11px; color: rgba(255,90,0,0.65); font-weight: 600; }

/* ── Cases channel rows ──────────────────────────────────── */
.cases-channel { margin-bottom: 48px; }
.cases-channel:last-child { margin-bottom: 0; }

.cases-channel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}

.cases-channel-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.cases-strip {
  display: flex;
  gap: 16px;
  padding: 4px 0 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cases-strip::-webkit-scrollbar { display: none; }

/* ── About / Sub-page components ── */
.page-hero {
  display: block;
  padding: 80px 80px 64px;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero .hero-lede {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.hero-visual-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(0,180,220,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 0 rgba(255,255,255,0.06) inset, 0 16px 40px rgba(0,0,0,0.2);
}
.hero-visual-card .icon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-support {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.route-line {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.route-line span {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.route-line span:last-child { border-bottom: none; }
.route-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.route-line span::after {
  content: " →";
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}

.module-section {
  padding: 0 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.avatar-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(0,180,220,0.05) 40%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 24px 28px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 2px 0 rgba(255,255,255,0.07) inset, 0 16px 40px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.35s;
}
.avatar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4) 50%, transparent);
  pointer-events: none;
}
.avatar-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(0,200,224,0.35);
  box-shadow: 0 2px 0 rgba(255,255,255,0.1) inset, 0 8px 48px rgba(0,200,224,0.15), 0 24px 64px rgba(0,0,0,0.3);
}
.avatar-mark {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.avatar-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.avatar-card strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.avatar-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 80px 80px;
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(0,200,224,0.08) 0%, rgba(0,120,200,0.05) 100%);
  border: 1px solid rgba(0,200,224,0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.cta-panel h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-panel p { font-size: 14px; color: var(--text-secondary); }
.primary-button, .contact-actions a {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #07090d;
  border: none;
  border-radius: 100px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,200,224,0.3);
}
.primary-button:hover, .contact-actions a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,200,224,0.45);
}

@media (max-width: 768px) {
  .page-hero { grid-template-columns: 1fr; padding: 40px 24px 32px; }
  .module-section { padding: 0 24px 48px; }
  .avatar-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; margin: 0 24px 48px; padding: 32px 28px; }
}

/* ══════════════════════════════════════
   Tools page (tools-zh.html)
   ══════════════════════════════════════ */

.tool-card {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px;
  margin-bottom: 24px;
  position: relative;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.09) 0%,
    rgba(0,180,220,0.05) 50%,
    rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  box-shadow: 0 2px 0 rgba(255,255,255,0.07) inset, 0 20px 48px rgba(0,0,0,0.22);
  overflow: hidden;
}
.tool-card::before {
  content: "";
  position: absolute;
  top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4) 50%, transparent);
  pointer-events: none;
}
.tool-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,200,224,0.06);
  border: 1px solid rgba(0,200,224,0.15);
  border-radius: 16px;
  padding: 32px;
  aspect-ratio: 1;
}
.tool-visual img { width: 64px; height: 64px; object-fit: contain; }

.tool-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.tool-copy h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.tool-copy p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.feature-grid span {
  background: rgba(0,200,224,0.08);
  border: 1px solid rgba(0,200,224,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.pro-entry-card {
  background: linear-gradient(145deg, rgba(0,200,224,0.1) 0%, rgba(0,120,200,0.06) 100%);
  border: 1px solid rgba(0,200,224,0.22);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pro-entry-card > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.pro-entry-card strong { font-size: 15px; font-weight: 700; }
.pro-entry-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.pro-entry-card .primary-button { margin-top: 8px; }

.tool-mockup {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
}
.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-row b { color: var(--text); font-weight: 600; }
.mockup-row span { color: var(--text-muted); }

.ghost-button {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ghost-button:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tool-card { grid-template-columns: 1fr; padding: 28px 24px; }
}

.tools-soon-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tools-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.tool-soon-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  filter: grayscale(1);
  opacity: 0.55;
}

.tool-soon-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tool-soon-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tool-soon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}

/* ─── Scout conversion landing ─── */
.scout-landing {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 72px 64px 112px;
}

.scout-conversion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(56px, 6vw, 96px);
  align-items: center;
  min-height: calc(100vh - 212px);
}

.scout-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.scout-hero-copy h1 strong {
  color: var(--accent);
  font-weight: inherit;
}

.scout-hero-lede {
  max-width: 690px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.scout-primary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.scout-action {
  min-height: 152px;
  padding: 22px 24px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.scout-action:hover {
  transform: translateY(-4px);
}

.scout-action--install {
  color: #061014;
  background: linear-gradient(135deg, #67e8f9 0%, #09c2dd 58%, #00a7cb 100%);
  border: 1px solid rgba(126, 241, 255, .72);
  box-shadow: 0 18px 52px rgba(0, 200, 224, .2), 0 1px 0 rgba(255,255,255,.46) inset;
}

.scout-action--install:hover {
  box-shadow: 0 24px 70px rgba(0, 200, 224, .3), 0 1px 0 rgba(255,255,255,.5) inset;
}

.scout-action--pro {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(190, 255, 118, .15), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(190, 255, 118, .34);
  box-shadow: 0 18px 52px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.1) inset;
}

.scout-action--pro:hover {
  border-color: rgba(190, 255, 118, .64);
  box-shadow: 0 24px 70px rgba(113, 181, 61, .14), 0 1px 0 rgba(255,255,255,.12) inset;
}

.scout-action-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .68;
}

.scout-action strong {
  margin: 8px 0 5px;
  font-size: 20px;
  line-height: 1.2;
}

.scout-action small {
  font-size: 12px;
  line-height: 1.5;
  opacity: .68;
}

.scout-action small b {
  margin-left: 5px;
  font-size: 14px;
}

.scout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 12px;
}

.scout-product-console {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(103, 232, 249, .2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 200, 224, .15), transparent 36%),
    linear-gradient(150deg, rgba(255,255,255,.075), rgba(3,13,20,.86));
  box-shadow: 0 34px 100px rgba(0,0,0,.42), 0 1px 0 rgba(255,255,255,.12) inset;
  overflow: hidden;
}

.scout-product-console::after {
  content: "";
  position: absolute;
  inset: auto -15% -35% 18%;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 200, 224, .12), transparent 67%);
  pointer-events: none;
}

.scout-console-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 0 2px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.scout-console-head img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.scout-console-head div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.scout-console-head div strong {
  font-size: 15px;
}

.scout-console-head div span {
  color: var(--text-muted);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scout-console-head > b {
  color: #8fffd2;
  background: rgba(52, 211, 153, .1);
  border: 1px solid rgba(52, 211, 153, .24);
  border-radius: 100px;
  padding: 4px 9px;
  font-size: 9px;
  letter-spacing: .12em;
}

.scout-console-list {
  position: relative;
  z-index: 1;
  padding: 9px 0;
}

.scout-console-list > div {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.scout-console-list > div:last-child {
  border-bottom: 0;
}

.scout-console-code {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(0, 200, 224, .08);
  border: 1px solid rgba(0, 200, 224, .2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.scout-console-list p,
.scout-console-pro p {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.scout-console-list p strong,
.scout-console-pro p strong {
  font-size: 13px;
}

.scout-console-list p small,
.scout-console-pro p small {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.5;
}

.scout-console-list i {
  color: #78ebcc;
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.scout-console-pro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(190, 255, 118, .24);
  border-radius: 17px;
  background: rgba(190, 255, 118, .055);
}

.scout-console-pro > span {
  color: #d8ff9d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.scout-capabilities {
  padding-top: 112px;
}

.scout-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.scout-section-heading h2 {
  margin-top: 12px;
  max-width: 720px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.scout-section-heading > p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  max-width: 390px;
}

.scout-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scout-capability-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  overflow: hidden;
}

.scout-capability-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: var(--card-glow, rgba(0,200,224,.13));
  filter: blur(6px);
}

.scout-capability-card--ph { --card-glow: rgba(255, 110, 55, .13); }
.scout-capability-card--dr { --card-glow: rgba(96, 165, 250, .13); }

.scout-capability-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 10px;
}

.scout-capability-top span {
  font-variant-numeric: tabular-nums;
}

.scout-capability-top b {
  padding: 4px 9px;
  border: 1px solid rgba(0,200,224,.24);
  border-radius: 100px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .08em;
}

.scout-capability-card--ph .scout-capability-top b {
  color: #ff8a5b;
  border-color: rgba(255, 110, 55, .28);
}

.scout-capability-card--dr .scout-capability-top b {
  color: #83b8ff;
  border-color: rgba(96, 165, 250, .28);
}

.scout-capability-top i {
  margin-left: auto;
  font-style: normal;
}

.scout-capability-card h3 {
  position: relative;
  margin: 34px 0 14px;
  max-width: 310px;
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: -.025em;
}

.scout-capability-card > p {
  position: relative;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.75;
}

.scout-capability-card ul {
  position: relative;
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scout-capability-card li {
  position: relative;
  padding-left: 15px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.55;
}

.scout-capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px rgba(0, 200, 224, .45);
}

.scout-capability-card--ph li::before { background: #ff7b46; box-shadow: 0 0 9px rgba(255,123,70,.4); }
.scout-capability-card--dr li::before { background: #70aaff; box-shadow: 0 0 9px rgba(112,170,255,.4); }

.scout-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  margin-top: 88px;
  padding: 44px 48px;
  border: 1px solid rgba(103, 232, 249, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 200, 224, .12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
}

.scout-final-cta h2 {
  margin: 9px 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.scout-final-cta > div > p:last-child {
  max-width: 660px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.scout-final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 224px;
}

.scout-final-actions a {
  justify-content: center;
  text-align: center;
}

@media (max-width: 1040px) {
  .scout-conversion-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
    gap: 42px;
  }
  .scout-primary-actions { grid-template-columns: 1fr; }
  .scout-action { min-height: 126px; }
  .scout-capability-card { padding: 24px; }
}

@media (max-width: 820px) {
  .scout-landing { padding: 54px 24px 80px; }
  .scout-conversion-hero { grid-template-columns: 1fr; min-height: 0; }
  .scout-hero-copy h1 { font-size: clamp(42px, 10vw, 64px); }
  .scout-primary-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scout-product-console { max-width: 620px; width: 100%; }
  .scout-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .scout-capability-grid { grid-template-columns: 1fr; }
  .scout-capability-card { min-height: 0; }
  .scout-final-cta { grid-template-columns: 1fr; gap: 28px; padding: 34px 28px; }
  .scout-final-actions { display: grid; grid-template-columns: 1fr 1fr; min-width: 0; }
}

@media (max-width: 560px) {
  .scout-primary-actions,
  .scout-final-actions { grid-template-columns: 1fr; }
  .scout-action { min-height: 136px; }
  .scout-console-head { grid-template-columns: 42px 1fr auto; }
  .scout-console-head img { width: 42px; height: 42px; }
  .scout-console-list > div { grid-template-columns: 42px 1fr; }
  .scout-console-list i { grid-column: 2; }
}

/* ══════════════════════════════════════
   Insights page (insights-zh.html)
   ══════════════════════════════════════ */

.lib-hero {
  padding: 64px 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.lib-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}
.lib-hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.lib-shelf {
  padding: 0 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.lib-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lib-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lib-tab:hover, .lib-tab.active {
  background: rgba(0,200,224,0.1);
  border-color: rgba(0,200,224,0.3);
  color: var(--text);
}

.lib-track-wrap { margin-bottom: 40px; }
.lib-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.lib-card {
  position: relative;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.09) 0%,
    rgba(0,180,220,0.04) 50%,
    rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 2px 0 rgba(255,255,255,0.06) inset, 0 12px 32px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.35s;
}
.lib-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(0,200,224,0.3);
  box-shadow: 0 2px 0 rgba(255,255,255,0.08) inset, 0 8px 48px rgba(0,200,224,0.12), 0 20px 56px rgba(0,0,0,0.28);
}
.lib-card-cover {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lib-card-cover-grad {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grad-kol  { background: linear-gradient(135deg, rgba(0,200,224,0.25) 0%, rgba(0,80,160,0.3) 100%); }
.grad-ph   { background: linear-gradient(135deg, rgba(220,100,0,0.25) 0%, rgba(180,40,0,0.3) 100%); }
.grad-x    { background: linear-gradient(135deg, rgba(180,180,200,0.2) 0%, rgba(60,60,80,0.35) 100%); }
.grad-reddit { background: linear-gradient(135deg, rgba(200,80,0,0.2) 0%, rgba(150,40,0,0.3) 100%); }
.grad-seo  { background: linear-gradient(135deg, rgba(0,180,120,0.2) 0%, rgba(0,100,80,0.3) 100%); }
.grad-icon { font-size: 40px; }

.lib-card-body { padding: 20px 20px 24px; }
.lib-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.lib-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.lib-card-hint {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .lib-hero, .lib-shelf { padding-left: 24px; padding-right: 24px; }
  .lib-track { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   ACTI case study
   ══════════════════════════════════════ */
.case-study-page { --case-lime: #b8ff58; --case-orange: #ff6b35; }
.case-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(32px, 7vw, 100px);
}
.case-hero h1 { font-size: clamp(48px, 6vw, 88px); line-height: .98; letter-spacing: -.065em; margin: 26px 0 30px; max-width: 900px; }
.case-hero h1 em { color: var(--case-lime); font-style: normal; }
.case-lede { color: var(--text-secondary); font-size: clamp(17px, 1.55vw, 21px); max-width: 670px; line-height: 1.75; }
.case-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.case-text-link { color: var(--text); font-size: 14px; font-weight: 650; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.32); padding: 6px 0; }
.acti-stage { min-height: 620px; position: relative; border: 1px solid rgba(184,255,88,.22); border-radius: 40px; background: radial-gradient(circle at 50% 45%, rgba(184,255,88,.16), transparent 44%), linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.015)); display: grid; place-items: center; overflow: hidden; }
.acti-stage::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-12deg); }
.stage-label { position: absolute; top: 28px; left: 32px; color: var(--case-lime); font-size: 11px; letter-spacing: .18em; font-weight: 800; }
.acti-phone { width: 270px; height: 548px; border: 7px solid #252b32; border-radius: 40px; background: #eef1f4; color: #11161b; box-shadow: 0 38px 90px rgba(0,0,0,.55), 0 0 60px rgba(184,255,88,.12); padding: 20px 14px 14px; display: flex; flex-direction: column; transform: rotate(4deg); }
.phone-status { display: flex; justify-content: space-between; font-size: 9px; font-weight: 800; padding: 0 9px 18px; }
.phone-chat { flex: 1; padding: 4px 8px; }
.phone-chat > span { font-size: 12px; font-weight: 800; }
.chat-bubble { background: #fff; padding: 12px; border-radius: 14px 14px 4px 14px; margin-top: 30px; font-size: 12px; line-height: 1.45; box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.intent-line { background: #151a20; color: #fff; padding: 12px; border-radius: 14px 14px 14px 4px; margin: 12px 18px 0 0; font-size: 12px; }
.keyboard { background: #cdd2d7; border-radius: 14px 14px 26px 26px; padding: 10px; }
.keys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.keys i { height: 32px; display: grid; place-items: center; background: #fff; border-radius: 6px; font-style: normal; font-size: 11px; font-weight: 800; box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.acti-bar { margin-top: 8px; background: #11161b; color: var(--case-lime); border-radius: 8px; font-size: 8px; font-weight: 900; text-align: center; padding: 10px; letter-spacing: .12em; }
.stage-orbit { position: absolute; padding: 7px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; background: rgba(7,9,13,.72); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.orbit-one { right: 18px; top: 31%; transform: rotate(7deg); }.orbit-two { left: 18px; bottom: 23%; transform: rotate(-7deg); color: var(--case-lime); }

.case-result-band { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1240px; margin: 0 auto 120px; border: 1px solid var(--border-strong); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.035); }
.case-result-band > div { padding: 30px 28px; border-right: 1px solid var(--border); }.case-result-band > div:last-child { border: 0; }
.case-result-band strong { display: block; color: var(--case-lime); font-size: clamp(26px, 3vw, 42px); letter-spacing: -.04em; line-height: 1; }
.case-result-band span { display: block; color: var(--text-secondary); font-size: 12px; margin-top: 9px; }
.case-intro { max-width: 1240px; margin: 0 auto 150px; display: grid; grid-template-columns: 240px 1fr; gap: 70px; padding: 0 24px; }
.case-kicker, .case-takeaway > p { color: var(--case-lime); font-size: 11px; letter-spacing: .18em; font-weight: 800; padding-top: 10px; }
.case-intro h2 { font-size: clamp(34px, 4.5vw, 64px); line-height: 1.08; letter-spacing: -.045em; max-width: 900px; }
.case-intro div > p { max-width: 770px; margin-top: 32px; color: var(--text-secondary); font-size: 18px; line-height: 1.85; }.case-intro strong { color: #fff; }

.case-journey { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 58px; padding: 0 40px; }
.case-rail { position: sticky; top: 110px; align-self: start; padding-left: 6px; }
.case-rail > p { color: var(--text-muted); font-size: 9px; font-weight: 800; letter-spacing: .18em; margin-bottom: 20px; }
.case-rail ol { list-style: none; border-left: 1px solid var(--border-strong); }.case-rail li a { color: var(--text-muted); text-decoration: none; display: block; padding: 9px 0 9px 18px; font-size: 12px; transition: color .2s; }.case-rail li a:hover { color: var(--case-lime); }
.case-phase { scroll-margin-top: 100px; display: grid; grid-template-columns: 58px minmax(280px, .9fr) minmax(330px, 1.1fr); gap: clamp(20px, 3vw, 46px); align-items: center; min-height: 680px; padding: 80px 0; border-top: 1px solid var(--border); }
.case-phase:last-child { border-bottom: 1px solid var(--border); }.phase-index { color: var(--text-muted); font-size: 13px; align-self: start; padding-top: 6px; }
.phase-copy > span { color: var(--case-lime); font-size: 10px; letter-spacing: .17em; font-weight: 850; }.phase-copy h2 { font-size: clamp(30px, 3.2vw, 50px); line-height: 1.08; letter-spacing: -.04em; margin: 16px 0 24px; }.phase-copy p { color: var(--text-secondary); line-height: 1.8; }.phase-copy strong { color: #fff; }.phase-copy ul { margin-top: 24px; list-style: none; display: grid; gap: 9px; }.phase-copy li { color: var(--text-secondary); font-size: 13px; padding-left: 17px; position: relative; }.phase-copy li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--case-lime); position: absolute; left: 0; top: 8px; }
.phase-visual { border: 1px solid var(--border-strong); border-radius: 26px; min-height: 420px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); box-shadow: 0 24px 70px rgba(0,0,0,.25); overflow: hidden; }
.label-stack { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 64px); }.label-stack > span { color: var(--text-muted); font-weight: 800; font-size: 20px; letter-spacing: -.03em; margin-bottom: 8px; }.label-stack .crossed { text-decoration: line-through; opacity: .55; }.label-stack strong { color: var(--case-lime); font-size: clamp(45px, 6vw, 82px); line-height: .82; letter-spacing: -.07em; margin: 45px 0 28px; }.label-stack small { font-size: 9px; letter-spacing: .18em; color: var(--text-muted); }
.deliverables { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }.deliverables b { font-size: 10px; color: var(--text-secondary); border: 1px solid var(--border-strong); padding: 7px 10px; border-radius: 100px; }
.film-frame { text-decoration: none; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; position: relative; padding: 36px; background: radial-gradient(circle at 50% 45%, rgba(184,255,88,.22), transparent 35%), linear-gradient(155deg,#171e24,#080a0d 70%); }.film-frame::before { content: "ACTI"; position: absolute; font-size: clamp(90px, 15vw, 190px); font-weight: 900; letter-spacing: -.12em; color: rgba(255,255,255,.035); left: 50%; top: 45%; transform: translate(-50%,-50%); }.film-top { position: absolute; left: 30px; top: 26px; font-size: 9px; letter-spacing: .15em; color: var(--text-muted); }.play-disc { position: absolute; width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; background: var(--case-lime); color: #101510; left: 50%; top: 45%; transform: translate(-50%,-50%); padding-left: 4px; box-shadow: 0 0 60px rgba(184,255,88,.25); }.film-frame strong { font-size: 29px; letter-spacing: -.04em; }.film-frame small { color: var(--case-lime); margin-top: 5px; }
.x-post { padding: 34px; display: flex; flex-direction: column; }.post-head { display: flex; align-items: center; gap: 12px; }.post-head > b { margin-left: auto; font-size: 20px; }.post-head div { display: flex; flex-direction: column; line-height: 1.2; }.post-head small { color: var(--text-muted); }.post-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--case-lime); color: #101510; font-weight: 900; }.x-post > p { font-size: clamp(20px, 2.2vw, 29px); line-height: 1.3; font-weight: 650; margin: 36px 0 28px; }.x-post > small { margin-top: 14px; color: var(--text-muted); }.post-video { flex: 1; min-height: 150px; border: 1px solid var(--border); border-radius: 16px; background: radial-gradient(circle, rgba(184,255,88,.12), transparent 55%), #0a0c10; display: flex; align-items: center; justify-content: center; gap: 18px; }.post-video span { font-size: 12px; letter-spacing: .14em; font-weight: 900; }.post-video i { color: var(--case-lime); font-style: normal; }
.reddit-card { color: #fff; text-decoration: none; display: grid; grid-template-columns: 78px 1fr; align-items: center; padding: 34px; gap: 24px; background: linear-gradient(145deg, rgba(255,69,0,.16), rgba(255,255,255,.02)); }.reddit-vote { height: 180px; border-right: 1px solid var(--border-strong); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; }.reddit-vote b { color: #ff6b35; font-size: 40px; }.reddit-vote span { writing-mode: vertical-rl; font-size: 9px; letter-spacing: .18em; }.reddit-card small { color: #ff8b65; }.reddit-card strong { display: block; font-size: clamp(24px, 3vw, 38px); line-height: 1.1; letter-spacing: -.04em; margin: 18px 0; }.reddit-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }.reddit-link { display: inline-block; margin-top: 24px; font-size: 11px; color: #ff8b65; }
.phase-highlight { position: relative; }.phase-highlight::before { content: ""; position: absolute; inset: 30px -30px; background: rgba(255,107,53,.035); border: 1px solid rgba(255,107,53,.11); border-radius: 30px; z-index: -1; }.phase-highlight .phase-copy > span { color: #ff8b65; }
.phase-proof { display: grid; grid-template-columns: repeat(3,1fr); margin: 26px 0 18px; border: 1px solid var(--border); border-radius: 14px; }.phase-proof div { padding: 14px; border-right: 1px solid var(--border); }.phase-proof div:last-child { border: 0; }.phase-proof strong { display: block; font-size: 22px; color: #ff8b65; }.phase-proof span { font-size: 9px; color: var(--text-muted); }.inline-proof-link { color: #ff8b65; font-size: 12px; text-decoration: none; }
.ph-board { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 45%, rgba(255,107,53,.25), transparent 52%), #100b09; }.ph-badge { width: 58px; height: 58px; border-radius: 50%; background: #ff6b35; color: #fff; font-size: 34px; font-weight: 900; display: grid; place-items: center; }.ph-board > p { font-size: 10px; letter-spacing: .18em; margin: 18px 0 20px; color: #ff8b65; }.ph-board > strong { font-size: clamp(46px, 6vw, 72px); line-height: .86; letter-spacing: -.07em; }.ph-board > span { margin: 20px 0; font-size: 10px; color: var(--text-muted); letter-spacing: .12em; }.ph-upvote { border: 1px solid rgba(255,107,53,.35); border-radius: 10px; padding: 8px 18px; color: #ff8b65; font-weight: 800; }
.phase-conclusion { color: #fff !important; font-size: 20px; font-weight: 700; margin-top: 24px; }.media-stack { padding: 14px; display: flex; flex-direction: column; gap: 10px; }.media-stack a { flex: 1; color: #fff; text-decoration: none; border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; transition: border-color .2s, transform .2s; }.media-stack a:hover { border-color: rgba(184,255,88,.4); transform: translateX(3px); }.media-stack span { color: var(--case-lime); font-size: 9px; letter-spacing: .14em; font-weight: 850; }.media-stack strong { font-size: 16px; line-height: 1.35; margin: 8px 0; }.media-stack small { color: var(--text-muted); font-size: 10px; }
.case-takeaway { max-width: 1240px; margin: 160px auto 130px; padding: 80px clamp(30px, 6vw, 80px); border-radius: 30px; border: 1px solid rgba(184,255,88,.2); background: radial-gradient(circle at 75% 45%, rgba(184,255,88,.1), transparent 40%), rgba(255,255,255,.025); }.case-takeaway h2 { font-size: clamp(36px, 5vw, 67px); line-height: 1.08; letter-spacing: -.05em; margin: 20px 0 50px; }.case-takeaway h2 span { color: var(--case-lime); }.takeaway-flow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }.takeaway-flow span { font-size: 12px; color: var(--text-secondary); text-align: center; }.takeaway-flow i { color: var(--case-lime); font-style: normal; }

@media (max-width: 1050px) {
  .case-hero { grid-template-columns: 1fr 420px; padding-left: 40px; padding-right: 40px; }.acti-stage { min-height: 560px; }.case-result-band { margin-left: 30px; margin-right: 30px; }.case-journey { grid-template-columns: 1fr; }.case-rail { display: none; }.case-phase { grid-template-columns: 44px 1fr 1fr; }.case-takeaway { margin-left: 30px; margin-right: 30px; }
}
@media (max-width: 768px) {
  .case-hero { min-height: auto; grid-template-columns: 1fr; padding: 56px 24px 80px; }.case-hero h1 { font-size: clamp(43px, 13vw, 64px); }.case-hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }.acti-stage { min-height: 500px; border-radius: 28px; }.acti-phone { transform: rotate(2deg) scale(.83); }.stage-orbit { display: none; }
  .case-result-band { grid-template-columns: 1fr 1fr; margin: 0 24px 90px; }.case-result-band > div { border-bottom: 1px solid var(--border); }.case-result-band > div:nth-child(2) { border-right: 0; }.case-result-band > div:nth-child(3), .case-result-band > div:nth-child(4) { border-bottom: 0; }.case-result-band > div { padding: 24px 20px; }
  .case-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 100px; }.case-intro div > p { font-size: 16px; }
  .case-journey { padding: 0 24px; }.case-phase { grid-template-columns: 34px 1fr; gap: 12px; min-height: 0; padding: 70px 0; }.phase-copy { grid-column: 2; }.phase-visual { grid-column: 1 / -1; min-height: 360px; margin-top: 22px; }.phase-highlight::before { inset: 20px -12px; }.label-stack strong { font-size: 62px; }
  .case-takeaway { margin: 90px 24px; padding: 50px 26px; }.takeaway-flow { align-items: stretch; flex-direction: column; }.takeaway-flow i { transform: rotate(90deg); text-align: center; }
}
@media (max-width: 480px) {
  .case-result-band { grid-template-columns: 1fr; }.case-result-band > div { border-right: 0; border-bottom: 1px solid var(--border) !important; }.case-result-band > div:last-child { border-bottom: 0 !important; }
  .reddit-card { grid-template-columns: 48px 1fr; padding: 24px 18px; gap: 16px; }.reddit-vote { align-items: center; }.phase-proof { grid-template-columns: 1fr; }.phase-proof div { border-right: 0; border-bottom: 1px solid var(--border); }.phase-proof div:last-child { border-bottom: 0; }.media-stack { min-height: 500px; }
}
