/* ============================================================
   SUPPORT CENTER — support.css
   All sp-* prefixed classes are local to this page.
   ============================================================ */

/* ── Font faces ── */
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/AeonikPro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Design tokens ── */
:root {
  --primary: #0060FF;
  --primary-hover: #0050DD;
  --accent-mint: #00D4AA;
  --dark-bg: #0A0A0F;
  --dark-elevated: #111118;
  --dark-card: #1A1A24;
  --surface: #FAFAFA;
  --surface-card: #FFFFFF;
  --surface-muted: #F4F4F8;
  --text-primary: #0A0A0F;
  --text-secondary: #6B7280;
  --text-on-dark: #F0F0F5;
  --text-muted-on-dark: #9CA3AF;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --font-display: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Aeonik Mono', 'SF Mono', monospace;
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 96px; --sp-8: 128px;
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 20px; --radius-pill: 99px;
  --max-w: 1280px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(0, 96, 255, 0.15);
  --transition: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 58px;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01' on, 'cv01' on, 'cv11' on;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* ── Shared typography ── */
.sp-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.sp-eyebrow--light { color: rgba(100, 160, 255, 0.85); }

.sp-section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.sp-section-title--light { color: var(--text-on-dark); }

.sp-section-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 540px;
}
.sp-section-sub--light { color: var(--text-muted-on-dark); }
.sp-section-sub--center { margin: 0 auto; text-align: center; }

.sp-section-header { margin-bottom: var(--sp-6); }
.section-header--left { text-align: left; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ── Shared buttons ── */
.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.sp-btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 60px rgba(0, 96, 255, 0.28);
  transform: translateY(-1px);
}

/* ============================================================
   S1 — HERO
   ============================================================ */
.sp-hero {
  position: relative;
  background: var(--dark-bg);
  padding-top: calc(var(--nav-height) + var(--sp-7));
  padding-bottom: var(--sp-8);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 96, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 70%, rgba(99, 102, 241, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── ORBIT ANIMATION ── */
.sp-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Hub */
.sp-anim-hub {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
}
.sp-anim-hub-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 96, 255, 0.25), rgba(99, 102, 241, 0.2));
  border: 1.5px solid rgba(0, 96, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(100, 160, 255, 0.9);
  box-shadow: 0 0 40px rgba(0, 96, 255, 0.2), inset 0 0 20px rgba(0, 96, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.sp-anim-hub-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 96, 255, 0.3);
  animation: sp-hub-pulse 3s ease-out infinite;
}
.sp-anim-hub-pulse--2 { animation-delay: 1s; }
.sp-anim-hub-pulse--3 { animation-delay: 2s; }
@keyframes sp-hub-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Orbit rings (static, decoration) */
.sp-anim-ring {
  position: absolute;
  top: 50%;
  left: 75%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
}
.sp-anim-ring--1 { width: 200px; height: 200px; border-color: rgba(0, 96, 255, 0.1); }
.sp-anim-ring--2 { width: 360px; height: 360px; border-color: rgba(0, 96, 255, 0.06); }
.sp-anim-ring--3 { width: 520px; height: 520px; border-color: rgba(0, 96, 255, 0.03); }

/* Orbit containers (rotate around hub) */
.sp-anim-orbit {
  position: absolute;
  top: 50%;
  left: 75%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.sp-anim-orbit--1 {
  width: 200px;
  height: 200px;
  animation: sp-orbit-cw 18s linear infinite;
}
.sp-anim-orbit--2 {
  width: 360px;
  height: 360px;
  animation: sp-orbit-ccw 28s linear infinite;
}
@keyframes sp-orbit-cw  { from { transform: translate(-50%,-50%) rotate(0deg);   } to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes sp-orbit-ccw { from { transform: translate(-50%,-50%) rotate(0deg);   } to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Nodes (counter-rotate so icons stay upright) */
.sp-anim-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 15, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 12px rgba(0,96,255,0.1);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-anim-node img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }

/* Orbit 1 — 200×200 container, radius 100px, 2 nodes at 0° / 180° */
/* center = (100,100). Node size = 48px → offset -24px */
.sp-anim-node--a {
  top: -24px;         /* y = 0  → 0   - 24 */
  left: 76px;         /* x = 100 → 100 - 24 */
  animation: sp-counter-cw 18s linear infinite;
}
.sp-anim-node--b {
  top: 176px;         /* y = 200 → 200 - 24 */
  left: 76px;
  animation: sp-counter-cw 18s linear infinite;
}

/* Orbit 2 — 360×360 container, radius 180px, 3 nodes at 0° / 120° / 240° */
/* center = (180,180). sin/cos values: sin120=0.866, cos120=-0.5 */
.sp-anim-node--c {
  top: -24px;         /* y = 180-180 = 0  → 0   - 24 */
  left: 156px;        /* x = 180+0  = 180 → 180 - 24 */
  animation: sp-counter-ccw 28s linear infinite;
}
.sp-anim-node--d {
  top: 246px;         /* y = 180 - 180*cos120 = 180+90 = 270 → 270 - 24 */
  left: 312px;        /* x = 180 + 180*sin120 = 180+156 = 336 → 336 - 24 */
  animation: sp-counter-ccw 28s linear infinite;
}
.sp-anim-node--e {
  top: 246px;         /* y = 180 - 180*cos240 = 180+90 = 270 → 270 - 24 */
  left: 0px;          /* x = 180 + 180*sin240 = 180-156 = 24  →  24 - 24 */
  animation: sp-counter-ccw 28s linear infinite;
}

@keyframes sp-counter-cw  { from { transform: rotate(0deg);    } to { transform: rotate(-360deg);  } }
@keyframes sp-counter-ccw { from { transform: rotate(0deg);    } to { transform: rotate(360deg);   } }

/* Connection lines */
.sp-anim-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sp-line {
  stroke-dashoffset: 0;
  animation: sp-dash 3s linear infinite;
}
.sp-line--2 { animation-delay: 1s; }
.sp-line--3 { animation-delay: 2s; }
@keyframes sp-dash { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -32; } }

/* Status chips */
.sp-anim-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(15, 15, 28, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.sp-anim-chip svg { color: var(--accent-mint); }

.sp-anim-chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-anim-chip-dot--green  { background: #22C55E; box-shadow: 0 0 6px #22C55E; animation: sp-dot-blink 2s ease-in-out infinite; }
.sp-anim-chip-dot--blue   { background: #60A5FA; box-shadow: 0 0 6px #60A5FA; animation: sp-dot-blink 2.5s 0.4s ease-in-out infinite; }
.sp-anim-chip-dot--purple { background: #A78BFA; box-shadow: 0 0 6px #A78BFA; animation: sp-dot-blink 2.2s 0.8s ease-in-out infinite; }
@keyframes sp-dot-blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.sp-anim-chip--1 { top: 18%; right: 30%; animation: sp-chip-float-a 5s ease-in-out infinite; }
.sp-anim-chip--2 { top: 36%; right: 6%;  animation: sp-chip-float-b 6s 0.8s ease-in-out infinite; }
.sp-anim-chip--3 { top: 62%; right: 22%; animation: sp-chip-float-c 5.5s 0.4s ease-in-out infinite; }
.sp-anim-chip--4 { top: 78%; right: 38%; animation: sp-chip-float-a 6.5s 1.2s ease-in-out infinite; }

@keyframes sp-chip-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes sp-chip-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes sp-chip-float-c { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.sp-hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.sp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}

.sp-hero-copy { max-width: 700px; }

.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(100, 160, 255, 0.8);
  margin-bottom: var(--sp-2);
}
.sp-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0, 96, 255, 0.7);
  animation: sp-pulse 2.2s ease-in-out infinite;
}
@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.sp-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.sp-hero-headline-em {
  background: linear-gradient(135deg, #60A5FA, #0060FF, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
  margin: 0 auto;
}

/* Search */
.sp-search-wrap {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sp-search {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  gap: 12px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.sp-search:focus-within {
  border-color: rgba(0, 96, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 96, 255, 0.1);
}
.sp-search-icon { color: rgba(255, 255, 255, 0.35); flex-shrink: 0; }
.sp-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.sp-search-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.sp-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.sp-search-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.sp-search-hints {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.sp-search-hints a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition), border-color var(--transition);
}
.sp-search-hints a:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Stats */
.sp-hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
}
.sp-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sp-hero-stat-n {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
  line-height: 1;
}
.sp-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.sp-hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   S2 — CHANNELS
   ============================================================ */
.sp-channels {
  background: var(--surface-card);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
}
.sp-channels-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sp-channel-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--surface-card);
  transition: transform var(--transition-smooth), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sp-channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 96, 255, 0.03), transparent);
  transition: opacity var(--transition);
}
.sp-channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 96, 255, 0.2);
  box-shadow: var(--shadow-hover);
}
.sp-channel-card:hover::before { opacity: 1; }

.sp-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-channel-icon--blue   { background: rgba(0, 96, 255, 0.1); color: var(--primary); }
.sp-channel-icon--purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.sp-channel-icon--mint   { background: rgba(0, 212, 170, 0.1); color: var(--accent-mint); }
.sp-channel-icon--orange { background: rgba(249, 115, 22, 0.1); color: #F97316; }

.sp-channel-body { flex: 1; min-width: 0; }
.sp-channel-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.sp-channel-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.sp-channel-arrow {
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform var(--transition), color var(--transition);
}
.sp-channel-card:hover .sp-channel-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* ============================================================
   S3 — PRODUCT SUPPORT
   ============================================================ */
.sp-products {
  padding: var(--sp-8) 0;
  background: var(--surface-muted);
}

.sp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-product-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition);
}
.sp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 96, 255, 0.15);
}

.sp-product-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sp-product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.sp-product-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.sp-product-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.sp-product-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.sp-product-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
}
.sp-product-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}
.sp-product-links a svg { color: var(--primary); flex-shrink: 0; opacity: 0.7; }
.sp-product-links a:hover {
  background: rgba(0, 96, 255, 0.05);
  color: var(--primary);
}
.sp-product-links a:hover svg { opacity: 1; }

/* ============================================================
   S4 — COMMUNITY
   ============================================================ */
.sp-community {
  position: relative;
  background: var(--dark-bg);
  padding: var(--sp-8) 0;
  overflow: hidden;
}
.sp-community-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0, 212, 170, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0, 96, 255, 0.08) 0%, transparent 60%);
}

.sp-community-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.sp-community-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}

.sp-community-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sp-forum-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  transition: background var(--transition), border-color var(--transition), transform var(--transition-smooth);
}
.sp-forum-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.sp-forum-card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(0, 96, 255, 0.12);
  border: 1px solid rgba(0, 96, 255, 0.2);
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-forum-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.sp-forum-card a {
  font-size: 12px;
  color: rgba(0, 96, 255, 0.7);
  font-weight: 500;
  transition: color var(--transition);
}
.sp-forum-card a:hover { color: #60A5FA; }

/* ============================================================
   S5 — TIERS  (two-world comparison layout)
   ============================================================ */
.sp-tiers {
  position: relative;
  padding: var(--sp-8) 0;
  background: var(--dark-bg);
  overflow: hidden;
}

/* Noise texture overlay */
.sp-tiers-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Blue glow emanating from right (licensed side) */
.sp-tiers-glow {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 96, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Section header overrides for dark bg */
.sp-tiers .sp-section-title--light { color: var(--text-on-dark); }
.sp-tiers .sp-section-sub--muted   { color: var(--text-muted-on-dark); }

/* ── Comparison layout ── */
.sp-tiers-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

/* ── Panel base ── */
.sp-tier-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.sp-tier-panel-inner {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  height: 100%;
}

/* ── Trial panel — muted, desaturated ── */
.sp-tier-panel--trial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Licensed panel — vivid, illuminated ── */
.sp-tier-panel--licensed {
  background: var(--dark-card);
  border: 1px solid rgba(0, 96, 255, 0.3);
}

.sp-tier-panel-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 96, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Labels ── */
.sp-tier-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
}

.sp-tier-label--trial {
  background: rgba(100, 116, 139, 0.1);
  color: #64748B;
  border: 1px solid rgba(100, 116, 139, 0.15);
}

.sp-tier-label--licensed {
  background: rgba(0, 96, 255, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(0, 96, 255, 0.3);
}

.sp-tier-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: sp-tier-dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes sp-tier-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 96, 255, 0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(0, 96, 255, 0); }
}

/* ── Panel headers ── */
.sp-tier-panel-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-tier-panel-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(240, 240, 245, 0.45);
  margin-top: 4px;
}

.sp-tier-panel--licensed .sp-tier-panel-name {
  color: var(--text-on-dark);
}

.sp-tier-panel-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(156, 163, 175, 0.45);
  margin-top: 2px;
}

.sp-tier-panel--licensed .sp-tier-panel-desc {
  color: var(--text-muted-on-dark);
  opacity: 0.8;
}

/* ── Big metric display ── */
.sp-tier-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-3);
  border-radius: var(--radius-md);
}

.sp-tier-metric--trial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-tier-metric--licensed {
  background: rgba(0, 96, 255, 0.07);
  border: 1px solid rgba(0, 96, 255, 0.15);
  flex: 1;
  align-items: center;
}

.sp-tier-metric-n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sp-tier-metric--trial .sp-tier-metric-n { color: rgba(240, 240, 245, 0.22); }
.sp-tier-metric--licensed .sp-tier-metric-n {
  color: #93C5FD;
}

.sp-tier-metric-unit {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-tier-metric--trial .sp-tier-metric-unit   { color: rgba(156, 163, 175, 0.3); }
.sp-tier-metric--licensed .sp-tier-metric-unit { color: rgba(156, 163, 175, 0.6); }

/* Row of 3 metrics for licensed */
.sp-tier-metrics-row {
  display: flex;
  gap: var(--sp-2);
}

/* ── Feature lists ── */
.sp-tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-dark);
  flex: 1;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sp-tier-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(156, 163, 175, 0.45);
  transition: color var(--transition);
}

.sp-tier-list-item--lit {
  color: rgba(156, 163, 175, 0.85);
}

.sp-tier-list-item--locked {
  opacity: 0.25;
  text-decoration: line-through;
  text-decoration-color: rgba(156, 163, 175, 0.25);
}

.sp-tier-list-item--lit strong {
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 13px;
}

/* Check icons */
.sp-tier-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sp-tier-check--dim {
  background: rgba(100, 116, 139, 0.12);
  color: #64748B;
}

.sp-tier-check--bright {
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-mint);
}

/* Lock icon */
.sp-tier-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.08);
  color: rgba(100, 116, 139, 0.4);
  flex-shrink: 0;
}

/* ── Actions ── */
.sp-tier-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.sp-tier-action--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(156, 163, 175, 0.7);
}

.sp-tier-action--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-muted-on-dark);
}

.sp-tier-action--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 32px rgba(0, 96, 255, 0.3);
}

.sp-tier-action--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 60px rgba(0, 96, 255, 0.45);
  transform: translateY(-1px);
}

.sp-tier-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--sp-2);
}

.sp-tier-action-note {
  font-size: 11px;
  font-weight: 500;
  color: rgba(156, 163, 175, 0.4);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Center divider with upgrade arrow ── */
.sp-tiers-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-3);
}

.sp-tiers-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.sp-tiers-upgrade-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 96, 255, 0.3);
  background: rgba(0, 96, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  animation: sp-upgrade-pulse 3s ease-in-out infinite;
}

@keyframes sp-upgrade-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 96, 255, 0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(0, 96, 255, 0); }
}

/* ============================================================
   S6 — CONTACT
   ============================================================ */
.sp-contact {
  position: relative;
  background: var(--dark-bg);
  padding: var(--sp-8) 0;
  overflow: hidden;
}
.sp-contact-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(0, 96, 255, 0.1) 0%, transparent 60%);
}

.sp-contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.sp-contact-header {
  text-align: center;
  max-width: 600px;
}

.sp-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
}

.sp-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform var(--transition-smooth), border-color var(--transition), background var(--transition);
}
.sp-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.sp-contact-card--primary {
  border-color: rgba(0, 96, 255, 0.3);
  background: rgba(0, 96, 255, 0.06);
}
.sp-contact-card--primary:hover {
  border-color: rgba(0, 96, 255, 0.5);
  background: rgba(0, 96, 255, 0.1);
}
.sp-contact-card--info { cursor: default; }
.sp-contact-card--info:hover { transform: none; }

.sp-contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.sp-contact-card--primary .sp-contact-card-icon {
  background: rgba(0, 96, 255, 0.15);
  border-color: rgba(0, 96, 255, 0.3);
  color: #60A5FA;
}

.sp-contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}
.sp-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-on-dark);
  flex: 1;
}
.sp-contact-card address {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-on-dark);
}
.sp-contact-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}
.sp-contact-card-action {
  font-size: 14px;
  font-weight: 600;
  color: #60A5FA;
  transition: color var(--transition);
}
.sp-contact-card:hover .sp-contact-card-action { color: #93C5FD; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sp-channels-inner { grid-template-columns: repeat(2, 1fr); }
  .sp-product-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-community-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .sp-hero-stats { gap: var(--sp-3); }
  .sp-hero-stat-div { display: none; }
  .sp-channels-inner { grid-template-columns: 1fr; }
  .sp-product-grid { grid-template-columns: 1fr; }
  .sp-community-cards { grid-template-columns: 1fr; }
  .sp-tiers-comparison {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .sp-tiers-divider {
    flex-direction: row;
    padding: var(--sp-3) 0;
    height: 56px;
  }
  .sp-tiers-divider-line {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  }
  .sp-tiers-upgrade-ring {
    transform: rotate(90deg);
  }
  .sp-tier-metrics-row {
    flex-direction: column;
  }
  /* keep old grid ref for safety */
  .sp-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .sp-contact-cards { grid-template-columns: 1fr; max-width: 480px; }
  .sp-hero-headline { font-size: clamp(40px, 12vw, 64px); }
}

@media (max-width: 480px) {
  .sp-search-hints { gap: 8px; }
}
