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

:root {
  --bg:           #f7f9fc;
  --bg-warm:      #f2f5fb;
  --bg-card:      #ffffff;
  --bg-subtle:    #edf1f7;
  --text:         #171c26;
  --text-muted:   #5f6a7a;
  --text-subtle:  #8691a2;
  --accent:       #ff6600;
  --accent-hover: #e65c00;
  --accent-light: #ffe8d6;
  --accent-soft:  #fff2e8;
  --accent-cta:   #ffd1ad;
  --live:         #3aa37f;
  --border:       #dbe3ef;
  --border-light: #e7edf6;
  --white:        #ffffff;
  --black:        #000000;
  --accent-rgb:   255,102,0;
  --accent-hover-rgb: 230,92,0;
  --nav-bg:       rgba(247,249,252,0.86);
  --logo-mark-mid:#ffd7b5;
  --warn:         #ffc947;
  --danger:       #ff6b6b;
  --ok:           #69db7c;
  --warning-bg:   #fff3cd;
  --code-bg:      #1b2230;
  --code-title:   #212b3c;
  --code-border:  #273247;
  --code-border-2:#2e3b54;
  --code-comment: rgba(199,212,236,0.52);
  --code-keyword: #88aef5;
  --code-string:  #9bd2c7;
  --code-number:  #c5b3f4;
  --code-fn:      #9abfff;
  --code-prop:    #c7d4ec;
  --white-6:      rgba(255,255,255,0.06);
  --white-12:     rgba(255,255,255,0.12);
  --white-14:     rgba(255,255,255,0.14);
  --white-22:     rgba(255,255,255,0.22);
  --white-50:     rgba(255,255,255,0.5);
  --white-62:     rgba(255,255,255,0.62);
  --white-70:     rgba(255,255,255,0.7);
  --white-88:     rgba(255,255,255,0.88);
  --white-95:     rgba(255,255,255,0.95);
  --black-3:      rgba(0,0,0,0.03);
  --black-18:     rgba(0,0,0,0.18);
  --shadow-sm:    0 1px 2px rgba(17,24,39,0.04);
  --shadow-md:    0 8px 20px rgba(17,24,39,0.06), 0 2px 6px rgba(17,24,39,0.04);
  --shadow-lg:    0 20px 44px -14px rgba(17,24,39,0.12), 0 8px 24px -12px rgba(17,24,39,0.08);
  --radius-xs:    8px;
  --radius-sm:    12px;
  --radius:       16px;
  --radius-lg:    24px;
  --max-w:        1120px;
  --font-serif:   'Inter', system-ui, -apple-system, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.25px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--logo-mark-mid);
  box-shadow: inset 0 0 0 1px var(--black-3), 0 1px 4px rgba(var(--accent-rgb),0.25);
}

.nav-links { display: flex; gap: 2px; list-style: none; }

.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: color 0.12s, background 0.12s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-subtle); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s var(--ease), background 0.18s, color 0.12s, border-color 0.18s, box-shadow 0.22s;
  white-space: nowrap;
  letter-spacing: -0.05px;
  box-shadow: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 5px rgba(var(--accent-rgb),0.35);
}

.btn-ghost { color: var(--text-muted); background: transparent; border-color: transparent; box-shadow: none; }
.btn-ghost:hover { color: var(--text); background: var(--bg-subtle); border-color: var(--border-light); box-shadow: none; }

.btn-outline { color: var(--text); background: var(--bg-card); border-color: var(--border); }
.btn-outline:hover { border-color: rgba(var(--accent-rgb),0.42); color: var(--accent-hover); background: var(--white); box-shadow: none; }

.btn-primary {
  color: var(--white);
  background: var(--accent);
  border-color: rgba(var(--accent-hover-rgb),0.95);
  box-shadow: none;
}
.btn-primary:hover { background: var(--accent-hover); border-color: rgba(var(--accent-hover-rgb),1); box-shadow: none; }

.btn-arrow svg { width: 13px; height: 13px; transition: transform 0.18s var(--ease); }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

.btn-lg { font-size: 15px; min-height: 46px; padding: 0 24px; border-radius: 999px; }

/* ── HERO ── */
.hero {
  padding: 74px 0 54px;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: -40px 0 0 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-glow::before, .hero-glow::after {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
}
.hero-glow::before {
  top: -200px; left: 50%; transform: translateX(-70%);
  background: var(--accent-light);
}
.hero-glow::after {
  top: -160px; left: 50%; transform: translateX(20%);
  background: var(--accent-light);
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 6px 5px 12px;
  border-radius: 100px;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.18s var(--ease), box-shadow 0.18s;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s var(--ease) both;
}
.hero-badge:hover { border-color: var(--text-subtle); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-badge-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: -0.02em;
}
.hero-badge svg { width: 11px; height: 11px; transition: transform 0.18s var(--ease); }
.hero-badge:hover svg { transform: translateX(2px); }

h1 {
  font-family: var(--font-sans);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.1px;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 24px;
  font-optical-sizing: auto;
}
h1 .accent { color: var(--accent); }
h1 .word {
  display: inline-block;
  animation: fadeUp 0.85s var(--ease) both;
}
h1 .word:nth-child(1) { animation-delay: 0.05s; }
h1 .word:nth-child(2) { animation-delay: 0.10s; }
h1 .word:nth-child(3) { animation-delay: 0.15s; }
h1 .word:nth-child(4) { animation-delay: 0.22s; }
h1 .word:nth-child(5) { animation-delay: 0.27s; }
h1 .word:nth-child(6) { animation-delay: 0.32s; }

.hero-sub {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.55;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 12.5px;
  color: var(--text-subtle);
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SHOWCASE ── */
.showcase { padding: 16px 0 60px; }

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  gap: 24px;
  flex-wrap: wrap;
}

.showcase-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.showcase-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse-dot 1.6s ease-out infinite;
}

.tabs-bar {
  display: flex;
  gap: 0;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  width: fit-content;
  margin-inline: auto;
  overflow: hidden;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.16s var(--ease), background-color 0.24s var(--ease);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active {
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  box-shadow: none;
}

.tab-panels { position: relative; }
.tab-panel { display: none; animation: fadeIn 0.28s var(--ease); }
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screenshot-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  position: relative;
}

/* ── PLACEHOLDERS ── */
.ph { width: 100%; aspect-ratio: 16/9; display: flex; flex-direction: column; background: var(--bg-card); position: relative; overflow: hidden; }
.ph-topbar { height: 44px; background: var(--bg); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; padding: 0 20px; gap: 12px; flex-shrink: 0; }
.ph-dot { width: 10px; height: 10px; border-radius: 50%; }
.ph-dot.r { background: var(--danger); } .ph-dot.y { background: var(--warn); } .ph-dot.g { background: var(--ok); }
.ph-tab-row { display: flex; align-items: center; gap: 6px; margin-left: 16px; }
.ph-tab { height: 24px; border-radius: 4px; background: var(--border-light); }
.ph-body { flex: 1; display: flex; overflow: hidden; }
.ph-sidebar { width: 180px; border-right: 1px solid var(--border-light); flex-shrink: 0; padding: 12px 10px; display: flex; flex-direction: column; gap: 4px; }
.ph-nav-item { height: 28px; border-radius: 5px; }
.ph-nav-item.active { background: var(--accent-light); }
.ph-nav-item.dim { background: var(--border-light); opacity: 0.5; }
.ph-main { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.ph-header-row { display: flex; align-items: center; gap: 10px; }
.ph-title-block { height: 20px; width: 160px; border-radius: 4px; background: var(--border-light); }
.ph-pill { height: 26px; width: 80px; border-radius: 100px; background: var(--border-light); margin-left: auto; }
.ph-pill.accent { background: var(--accent-light); }
.ph-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.ph-stat-card { background: var(--bg); border: 1px solid var(--border-light); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.ph-stat-label { height: 10px; width: 60%; border-radius: 3px; background: var(--border); }
.ph-stat-val { height: 18px; width: 45%; border-radius: 3px; background: var(--border-light); }
.ph-stat-val.accent { background: var(--accent-light); }
.ph-chart-wrap { flex: 1; background: var(--bg); border: 1px solid var(--border-light); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; min-height: 0; }
.ph-chart-label { height: 10px; width: 90px; border-radius: 3px; background: var(--border); }
.ph-lines { flex: 1; position: relative; min-height: 0; }
.ph-line-svg { width: 100%; height: 100%; }
.draw-path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: draw 1.6s var(--ease) 0.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.ph-funnel { flex: 1; display: flex; align-items: flex-end; gap: 10px; padding-top: 10px; min-height: 0; }
.ph-funnel-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.ph-funnel-bar { width: 100%; border-radius: 5px 5px 0 0; background: var(--accent-light); border: 1px solid rgba(var(--accent-rgb),0.2); transform-origin: bottom; animation: rise 0.8s var(--ease) both; }
.ph-funnel-bar.accent { background: var(--accent); border-color: var(--accent-hover); opacity: 0.85; }
@keyframes rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ph-funnel-step:nth-child(1) .ph-funnel-bar { animation-delay: 0.1s; }
.ph-funnel-step:nth-child(2) .ph-funnel-bar { animation-delay: 0.2s; }
.ph-funnel-step:nth-child(3) .ph-funnel-bar { animation-delay: 0.3s; }
.ph-funnel-step:nth-child(4) .ph-funnel-bar { animation-delay: 0.4s; }
.ph-funnel-step:nth-child(5) .ph-funnel-bar { animation-delay: 0.5s; }
.ph-funnel-label { height: 8px; width: 70%; border-radius: 3px; background: var(--border); }
.ph-profile-list { flex: 1; display: flex; flex-direction: column; gap: 0; min-height: 0; overflow: hidden; }
.ph-profile-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.ph-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-light); flex-shrink: 0; }
.ph-avatar.dim { background: var(--border-light); }
.ph-name { height: 10px; border-radius: 3px; background: var(--border-light); }
.ph-tag { height: 18px; width: 50px; border-radius: 100px; background: var(--border-light); margin-left: auto; }
.ph-tag.accent { background: var(--accent-light); }
.ph-campaign-list { flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 0; overflow: hidden; }
.ph-campaign-card { background: var(--bg); border: 1px solid var(--border-light); border-radius: 7px; padding: 10px 12px; display: flex; align-items: center; gap: 12px; }
.ph-channel-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent-light); flex-shrink: 0; }
.ph-channel-icon.dim { background: var(--border-light); }
.ph-campaign-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ph-cname { height: 10px; border-radius: 3px; background: var(--border-light); }
.ph-cmeta { height: 8px; width: 50%; border-radius: 3px; background: var(--border-light); opacity: 0.6; }
.ph-status { height: 20px; width: 60px; border-radius: 100px; background: var(--accent-light); font-size: 0; }
.ph-status.dim { background: var(--border-light); }
.ph-status.yellow { background: var(--warning-bg); }

/* ── SHIPPED MARQUEE ── */
.shipped {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
}
.marquee-track {
  display: flex;
  gap: 12px;
  animation: marquee 52s linear infinite;
  padding-right: 12px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ship-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.ship-pill-when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-subtle);
}
.ship-pill-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  letter-spacing: 0;
  font-weight: 500;
}
.ship-pill-tag.fix { color: var(--text-muted); background: var(--bg-subtle); }
.ship-pill-tag.perf { color: var(--accent-hover); background: var(--accent-light); }

/* ── TRUSTED ── */
.trusted { padding: 36px 0; text-align: center; }
.trusted-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-subtle); margin-bottom: 22px; font-weight: 500; font-family: var(--font-mono); }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trusted-logo { opacity: 0.42; font-family: var(--font-sans); font-weight: 600; font-size: 18px; color: var(--text); letter-spacing: -0.2px; transition: opacity 0.18s; }
.trusted-logo:hover { opacity: 0.78; }

/* ── SECTIONS ── */
section { padding: 88px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--accent);
}

h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--text);
  max-width: 640px;
  font-optical-sizing: auto;
}
h2 .accent { color: var(--accent); }

.section-sub { font-size: 16.5px; color: var(--text-muted); max-width: 540px; margin-top: 18px; line-height: 1.65; font-weight: 400; }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feat {
  background: var(--bg-card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.18s;
}
.feat:hover { background: var(--accent-soft); }
.feat-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.feat:hover .feat-icon { transform: rotate(-6deg) scale(1.06); }
.feat-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}
.feat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── INSIGHTS ── */
.insights-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 52px; }
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s var(--ease), border-color 0.22s, transform 0.22s var(--ease);
}
.insight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--accent-rgb),0.24);
  transform: translateY(-3px);
}
.insight-card-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--accent-light); display: grid; place-items: center; }
.insight-card-icon svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.insight-card-title { font-size: 17px; font-weight: 600; color: var(--text); letter-spacing: -0.2px; }
.insight-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.insight-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.insight-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

/* ── CHANNELS (consistent brand icons) ── */
.channels-section { background: var(--bg-warm); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.channels-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; margin-top: 52px; }
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.22s var(--ease);
}
.channel-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--accent-rgb),0.26);
  transform: translateY(-3px);
}
.channel-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  color: var(--text);
}
.channel-icon svg { width: 20px; height: 20px; }
.channel-icon svg.line { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.channel-icon svg.brand { fill: currentColor; }
.channel-name { font-size: 12.5px; font-weight: 500; color: var(--text-muted); }

.channel-meta { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; }
.channel-meta-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-muted); }
.channel-meta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ── SDKs (cleaner, aligned) ── */
.sdk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 56px;
}

.sdk-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sdk-block-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: 14px;
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sdk-block-label .count {
  font-size: 10.5px;
  color: var(--text-subtle);
  opacity: 0.7;
}

.sdk-clients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sdk-client {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, transform 0.18s var(--ease), box-shadow 0.18s;
}
.sdk-client:hover { border-color: rgba(var(--accent-rgb),0.42); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.sdk-client-icon {
  width: 28px; height: 28px;
  border-radius: var(--radius-xs);
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.sdk-client-icon svg { width: 16px; height: 16px; }
.sdk-client-name { font-size: 13.5px; font-weight: 500; color: var(--text); letter-spacing: -0.1px; }
.sdk-client-lang { font-size: 11px; color: var(--text-subtle); font-family: var(--font-mono); margin-top: 1px; }
.sdk-client-text { display: flex; flex-direction: column; gap: 0; min-width: 0; }

.sdk-langs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.sdk-lang {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  text-align: center;
}
.sdk-lang:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.code-window {
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.code-titlebar {
  background: var(--code-title);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--code-border-2);
  flex-shrink: 0;
}
.code-titlebar-dots { display: flex; gap: 6px; }
.code-titlebar-dots span { width: 11px; height: 11px; border-radius: 50%; }
.code-titlebar-dots span:nth-child(1) { background: var(--danger); }
.code-titlebar-dots span:nth-child(2) { background: var(--warn); }
.code-titlebar-dots span:nth-child(3) { background: var(--ok); }
.code-file-tabs { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.code-file-tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--white-62);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: color 0.16s var(--ease), background-color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.code-file-tab:hover { color: var(--white-88); }
.code-file-tab.active {
  color: var(--white);
  background: rgba(var(--accent-rgb),0.24);
  border-color: rgba(var(--accent-rgb),0.45);
}
.code-body {
  padding: 22px 24px;
  color: var(--white-88);
  flex: 1;
  overflow: auto;
  white-space: pre;
}
.code-body-panel { display: none; }
.code-body-panel.active { display: block; }
.code-comment { color: var(--code-comment); }
.code-keyword { color: var(--code-keyword); }
.code-string { color: var(--code-string); }
.code-number { color: var(--code-number); }
.code-fn { color: var(--code-fn); }
.code-prop { color: var(--code-prop); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  margin: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--accent-rgb),0.14);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); max-width: 540px; margin: 0 auto 16px; }
.cta-banner h2 .accent { color: var(--accent-cta); }
.cta-banner p {
  color: var(--white-70);
  font-size: 15.5px;
  max-width: 440px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.cta-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  box-shadow: none;
}
.cta-banner .btn-primary:hover { background: var(--bg-subtle); }
.cta-banner .btn-outline {
  color: var(--white-95);
  border-color: var(--white-22);
  background: transparent;
}
.cta-banner .btn-outline:hover { background: var(--white-6); border-color: var(--white-50); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border-light); padding: 52px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { display: inline-flex; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; max-width: 200px; }
.footer-col-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text); margin-bottom: 16px; font-family: var(--font-mono); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; transition: color 0.12s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 44px;
  border-top: 1px solid var(--border-light);
  font-size: 12.5px;
  color: var(--text-subtle);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-meta { display: inline-flex; align-items: center; gap: 12px; }
.footer-meta-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .ship-strip-inner { gap: 10px; }
  .ship-spacer { display: none; }
  .nav-links { display: none; }
  .hero { padding: 56px 0 40px; }
  h1 { font-size: 38px; letter-spacing: -0.8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .insights-cards { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: repeat(4,1fr); }
  .sdk-split { grid-template-columns: 1fr; gap: 28px; }
  .sdk-clients-list { grid-template-columns: 1fr 1fr; }
  .sdk-langs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 44px 24px; }
  .ph-sidebar { display: none; }
  .ph-stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .wrap, .nav-inner, .ship-strip-inner { padding-left: 18px; padding-right: 18px; }
  .tabs-bar { flex-wrap: wrap; justify-content: center; }
  .channels-grid { grid-template-columns: repeat(3,1fr); }
  .sdk-clients-list { grid-template-columns: 1fr; }
  .sdk-langs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}