/* ============================================================
   COFFEECUP SOFTWARE — HOMEPAGE CSS
   Aesthetic: Heritage Dark Precision
   ============================================================ */

/* ── Font Faces (Aeonik Pro — local OTF) ── */
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik Pro';
  src: url('Aeonik/Aeonik%20Pro%201.005/OTF/AeonikPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --primary: #0060FF;
  --primary-hover: #1A74FF;
  --primary-light: rgba(0, 96, 255, 0.1);
  --accent-mint: #00D4AA;
  --accent-amber: #F59E0B;
  --accent-violet: #8B5CF6;

  --dark-bg: #0A0908;
  --dark-elevated: #111010;
  --dark-card: #181614;
  --dark-border: rgba(255, 255, 255, 0.07);
  --dark-border-hover: rgba(255, 255, 255, 0.12);

  --surface: #FAFAF9;
  --surface-card: #FFFFFF;
  --surface-subtle: #F5F4F2;

  --text-primary: #0A0908;
  --text-secondary: #6B6861;
  --text-on-dark: #F2F0ED;
  --text-muted-on-dark: rgba(242, 240, 237, 0.5);

  --font-display: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains 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: 24px;
  --radius-pill: 99px;

  --max-w: 1280px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(0, 96, 255, 0.2);
  --shadow-glow-lg: 0 0 80px rgba(0, 96, 255, 0.25);

  --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);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--dark-bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

.section {
  padding: var(--sp-8) 0;
}

.section--dark {
  background: var(--dark-bg);
  color: var(--text-on-dark);
}

.section--subtle {
  background: var(--surface-subtle);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-rl,
  .hero-rl-dot,
  .hero-rnode img {
    animation: none;
  }
  /* P7: Accordion — instant open, no transition */
  .faq-answer {
    transition: none;
  }
  .faq-icon {
    transition: none;
  }
  /* P7: Plan card hover — no transform */
  .pc,
  .pc--featured,
  .pc-cta--primary {
    transition: box-shadow var(--transition);
  }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-glow-lg);
  transform: translateY(-1px);
}

.btn-primary--large {
  padding: 15px 32px;
  font-size: 15px;
}

.btn-primary--full { width: 100%; justify-content: center; }

.btn-primary--glow {
  box-shadow: 0 0 60px rgba(0, 96, 255, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.btn-ghost:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.btn-outline--full { width: 100%; justify-content: center; }

/* ── Section Headers ── */
.section-header { margin-bottom: var(--sp-6); }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.section-title--light {
  color: var(--text-on-dark);
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: var(--sp-2);
  line-height: 1.65;
}

.section-sub--muted {
  color: var(--text-muted-on-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

/* Background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 96, 255, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: 100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Hero layout */
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.hero-content {
  max-width: 580px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-mint);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--accent-mint); }
  50% { box-shadow: 0 0 16px var(--accent-mint), 0 0 24px rgba(0, 212, 170, 0.3); }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

/* Trust logos */
.hero-logos {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--sp-4);
}

.hero-logos-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}

.hero-logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.hero-logo-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.hero-logo-item:hover { color: rgba(255, 255, 255, 0.45); }

/* Hero visual — browser mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-ui-frame {
  width: 100%;
  max-width: 540px;
  background: #1C1A17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(0, 96, 255, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth);
}

.hero-visual:hover .hero-ui-frame {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.hero-ui-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #141210;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-ui-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-ui-dot--red { background: #FF5F57; }
.hero-ui-dot--yellow { background: #FFBD2E; }
.hero-ui-dot--green { background: #28C840; }

.hero-ui-addressbar {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  text-align: center;
  margin: 0 8px;
}

.hero-ui-canvas {
  display: flex;
  height: 320px;
}

.hero-ui-sidebar {
  width: 48px;
  background: #141210;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-ui-tool {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-ui-tool--active {
  background: rgba(0, 96, 255, 0.25);
  box-shadow: 0 0 12px rgba(0, 96, 255, 0.2);
}

.hero-ui-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1A1714;
}

.hero-ui-header-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-ui-line {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-ui-line--h1 { height: 20px; width: 80%; }
.hero-ui-line--sub { height: 10px; width: 60%; background: rgba(255, 255, 255, 0.05); }

.hero-ui-btn-preview {
  width: 80px;
  height: 28px;
  background: rgba(0, 96, 255, 0.4);
  border-radius: 6px;
  margin-top: 4px;
}

.hero-ui-content-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.hero-ui-card {
  height: 72px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-ui-card--2 { background: rgba(0, 96, 255, 0.08); }
.hero-ui-card--3 { background: rgba(0, 212, 170, 0.06); }

.hero-ui-panel {
  width: 160px;
  background: #141210;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-ui-prop-row {
  height: 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.hero-ui-prop-row--short { width: 60%; }

.hero-ui-color-swatch {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0060FF 0%, #00D4AA 50%, #F59E0B 100%);
  margin: 4px 0;
}

/* Floating badges */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(20, 18, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: float-badge 4s ease-in-out infinite;
}

.hero-float span { color: var(--accent-mint); }

.hero-float--1 {
  bottom: -16px;
  left: -20px;
  animation-delay: 0.5s;
}

.hero-float--2 {
  top: 32px;
  right: -24px;
  animation-delay: 1.5s;
}

.hero-float-pulse {
  width: 8px;
  height: 8px;
  background: #28C840;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px #28C840;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   WHY COFFEECUP
   ============================================================ */
.why-section {
  background: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.why-card {
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-subtle);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: var(--sp-1);
}

.why-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  width: fit-content;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.25;
}

.why-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   THE SUITE — BENTO GRID
   ============================================================ */

/* ── Section wrapper ── */
.suite-section {
  background: var(--dark-bg);
  padding: 112px 0 120px;
  overflow: hidden;
}

/* ── Header split ── */
.suite-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-7);
}

.suite-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-top: var(--sp-2);
}

.suite-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-bottom: 6px;
}

.suite-header-desc {
  font-size: 16px;
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  max-width: 380px;
}

.suite-header-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.suite-header-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.suite-header-link:hover { color: rgba(255,255,255,0.8); }

/* ── Product grid — 4 columns, uniform cards ── */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ============================================================
   SC — SOFTWARE CARD
   ============================================================ */
.sc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111009;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;

  /* stagger start state */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity   0.6s  cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s  cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow   0.28s ease;
}

.sc.visible {
  opacity: 1;
  transform: translateY(0);
}

/* hover lift */
.sc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

/* press */
.sc:active { transform: translateY(-2px) scale(0.99); transition-duration: 0.08s; }

/* keyboard focus */
.sc:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  transform: none;
}

/* ── Accent border on hover (via data attribute) ── */
.sc[data-accent="blue"]:hover   { border-color: rgba(0, 96, 255, 0.45); }
.sc[data-accent="mint"]:hover   { border-color: rgba(0, 212, 170, 0.4); }
.sc[data-accent="amber"]:hover  { border-color: rgba(245, 158, 11, 0.4); }
.sc[data-accent="violet"]:hover { border-color: rgba(139, 92, 246, 0.4); }

/* ── App icon area ── */
.sc-icon {
  margin: 20px 20px 0;
  height: 112px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle radial gradient bg per accent */
.sc-icon--blue   { background: radial-gradient(ellipse 100% 120% at 50% 110%, rgba(0,96,255,0.18) 0%, rgba(255,255,255,0.03) 70%); border: 1px solid rgba(0,96,255,0.15); }
.sc-icon--mint   { background: radial-gradient(ellipse 100% 120% at 50% 110%, rgba(0,212,170,0.16) 0%, rgba(255,255,255,0.03) 70%); border: 1px solid rgba(0,212,170,0.14); }
.sc-icon--amber  { background: radial-gradient(ellipse 100% 120% at 50% 110%, rgba(245,158,11,0.15) 0%, rgba(255,255,255,0.03) 70%); border: 1px solid rgba(245,158,11,0.13); }
.sc-icon--violet { background: radial-gradient(ellipse 100% 120% at 50% 110%, rgba(139,92,246,0.16) 0%, rgba(255,255,255,0.03) 70%); border: 1px solid rgba(139,92,246,0.14); }

.sc-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc:hover .sc-icon img {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.55));
}

/* ── Card body ── */
.sc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
  gap: 0;
}

.sc-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Category tag ── */
.sc-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-tag--blue   { background: rgba(0,96,255,0.14);   color: #6BAEFF; }
.sc-tag--mint   { background: rgba(0,212,170,0.11);  color: #00D4AA; }
.sc-tag--amber  { background: rgba(245,158,11,0.12); color: #F6B93B; }
.sc-tag--violet { background: rgba(139,92,246,0.12); color: #A67FFF; }

/* ── Product name ── */
.sc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Description ── */
.sc-desc {
  font-size: 12.5px;
  color: rgba(242, 240, 237, 0.42);
  line-height: 1.6;
}

/* ── "Learn more" CTA — slides up on hover ── */
.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 7px 14px 7px 12px;
  width: fit-content;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);

  /* hidden until hover */
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity   0.22s ease,
    transform 0.3s  cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease,
    color        0.2s ease,
    background   0.2s ease;
}

.sc:hover .sc-cta {
  opacity: 1;
  transform: translateY(0);
}

/* CTA accent color on hover per product */
.sc[data-accent="blue"]:hover   .sc-cta { border-color: rgba(0,96,255,0.5);   color: #7EB3FF; background: rgba(0,96,255,0.08); }
.sc[data-accent="mint"]:hover   .sc-cta { border-color: rgba(0,212,170,0.45); color: #00D4AA; background: rgba(0,212,170,0.06); }
.sc[data-accent="amber"]:hover  .sc-cta { border-color: rgba(245,158,11,0.45);color: #F6B93B; background: rgba(245,158,11,0.06); }
.sc[data-accent="violet"]:hover .sc-cta { border-color: rgba(139,92,246,0.45);color: #A67FFF; background: rgba(139,92,246,0.06); }

/* ── Ambient glow layer ── */
.sc-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sc:hover .sc-border-glow { opacity: 1; }

.sc[data-accent="blue"]   .sc-border-glow { box-shadow: inset 0 0 40px rgba(0,96,255,0.05); }
.sc[data-accent="mint"]   .sc-border-glow { box-shadow: inset 0 0 40px rgba(0,212,170,0.05); }
.sc[data-accent="amber"]  .sc-border-glow { box-shadow: inset 0 0 40px rgba(245,158,11,0.05); }
.sc[data-accent="violet"] .sc-border-glow { box-shadow: inset 0 0 40px rgba(139,92,246,0.05); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .suite-header {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .suite-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .suite-section {
    padding: 72px 0 80px;
  }

  .suite-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .sc-icon { margin: 14px 14px 0; height: 96px; border-radius: 12px; }
  .sc-icon img { width: 68px; height: 68px; }
  .sc-body { padding: 14px 14px 16px; }
}

/* ============================================================
   SPOTLIGHT
   ============================================================ */
.spotlight-section {
  background: var(--surface);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}

.spotlight-content .section-eyebrow { margin-bottom: var(--sp-2); }

.spotlight-content .section-title {
  margin-bottom: var(--sp-3);
}

.spotlight-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.spotlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-5);
}

.spotlight-feature-pill {
  padding: 7px 14px;
  background: var(--surface-subtle);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spotlight-feature-pill::before {
  content: '✓';
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 11px;
}

.spotlight-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.spotlight-ctas .btn-ghost {
  color: var(--text-secondary);
  border-color: rgba(0, 0, 0, 0.12);
}

.spotlight-ctas .btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
}

/* Spotlight screen mockup */
.spotlight-visual {
  position: relative;
}

.spotlight-screen {
  background: #1A1714;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.spotlight-screen-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #141210;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spotlight-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-mono);
  text-align: center;
  margin: 0 8px;
}

.spotlight-canvas {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight-canvas-nav {
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.spotlight-canvas-hero {
  height: 100px;
  background: rgba(0, 96, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spotlight-canvas-h1 {
  height: 16px;
  width: 70%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.spotlight-canvas-p {
  height: 9px;
  width: 50%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.spotlight-canvas-cta {
  width: 70px;
  height: 24px;
  background: rgba(0, 96, 255, 0.5);
  border-radius: 6px;
  margin-top: 4px;
}

.spotlight-canvas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.spotlight-canvas-col {
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.spotlight-canvas-col--2 { background: rgba(0, 212, 170, 0.06); }
.spotlight-canvas-col--3 { background: rgba(245, 158, 11, 0.05); }

.spotlight-badge-live {
  position: absolute;
  top: 60px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(20, 18, 14, 0.95);
  border: 1px solid rgba(40, 200, 64, 0.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.spotlight-live-dot {
  width: 7px;
  height: 7px;
  background: #28C840;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px #28C840;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.prs-section {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding: var(--sp-8) 0;
}

.prs-section .section-title--light { color: var(--text-on-dark); }
.prs-section .section-sub--light   { color: var(--text-muted-on-dark); }
.prs-section .eyebrow              { color: rgba(255,255,255,0.45); }

.prs-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 75% 30%, rgba(0,96,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(99,102,241,0.05) 0%, transparent 60%);
}

/* ── Plan cards grid ── */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: start;
  margin-bottom: var(--sp-6);
}

.pc {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.pc--featured {
  background: rgba(0,60,180,0.12);
  border-color: rgba(0,96,255,0.35);
  box-shadow:
    0 0 0 1px rgba(0,96,255,0.18),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(0,96,255,0.08);
  transform: translateY(-10px);
}

.pc--featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 0 1px rgba(0,96,255,0.3),
    0 24px 72px rgba(0,0,0,0.6),
    0 0 100px rgba(0,96,255,0.12);
}

.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,96,255,0.4);
}

.pc-top { margin-bottom: 20px; }

.pc-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.pc--featured .pc-icon {
  background: rgba(0,96,255,0.2);
  border-color: rgba(0,96,255,0.3);
  color: #6fa8ff;
}

.pc-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.pc-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.52); /* ≥4.5:1 on --dark-bg */
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.pc--featured .pc-price { color: #fff; }

.pc-price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  flex: 1;
}

.pc-features li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.pc-feat--no { color: rgba(255,255,255,0.25); }

.pc-check {
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pc-check--gold { color: #f5c542; }

.pc-cross {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  flex-shrink: 0;
}

/* CTA buttons inside plan cards */
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px; /* P2: touch-target-size */
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  cursor: pointer; /* P2: cursor-pointer */
  touch-action: manipulation; /* P2: tap-delay */
}

/* P1: focus-visible ring for keyboard navigation */
.pc-cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.pc-cta--primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0,96,255,0.35);
}

.pc-cta--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 28px rgba(0,96,255,0.5);
  transform: translateY(-1px);
}

.pc-cta--outline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
}

.pc-cta--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}

.pc-cta--sm {
  padding: 8px 16px;
  min-height: 44px; /* maintain touch target even at small size */
  font-size: 12.5px;
  width: auto;
}

.pc-savings-hint {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  letter-spacing: -0.01em;
}

/* SVG icon alignment inside feature items */
.pc-check,
.pc-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ── Trust bar ── */
.pc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: -8px 0 var(--sp-6);
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}

.pc-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  padding: 0 20px;
}

.pc-trust-item svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }

.pc-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Feature comparison table ── */
.ptable-wrap {
  margin-bottom: var(--sp-7);
}

.ptable-scroll {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 560px;
}

.ptable-th {
  padding: 18px 20px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.4;
  background: rgba(255,255,255,0.02);
}

.ptable-th--feature {
  text-align: left;
  color: rgba(255,255,255,0.38);
  font-size: 12px; /* P6: min 12px — 10px was too small */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 36%;
}

.ptable-th--featured {
  background: rgba(0,96,255,0.08);
  color: rgba(255,255,255,0.8);
  border-left: 1px solid rgba(0,96,255,0.2);
  border-right: 1px solid rgba(0,96,255,0.2);
}

.ptable-th-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.03em;
  margin-top: 3px;
}

.ptable-th--featured .ptable-th-price { color: #fff; }

/* Group header rows */
.ptable-group td {
  padding: 14px 20px 6px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: transparent;
}

/* Feature label cells */
.ptable-feat {
  padding: 14px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: -0.01em;
  text-align: left;
}

.ptable-feat--footer { border-top: 1px solid rgba(255,255,255,0.06); }

/* Value cells */
.ptable-cell {
  padding: 14px 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.ptable-cell--featured {
  background: rgba(0,96,255,0.06);
  border-left: 1px solid rgba(0,96,255,0.15);
  border-right: 1px solid rgba(0,96,255,0.15);
}

.ptable-yes {
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ptable-cell--featured .ptable-yes {
  color: rgba(255,255,255,0.9);
}

.ptable-yes--gold {
  color: #f5c542;
  font-weight: 600;
}

.ptable-no {
  color: rgba(255,255,255,0.18);
  font-size: 16px;
}

/* tbody rows zebra */
.ptable tbody tr:hover .ptable-feat,
.ptable tbody tr:hover .ptable-cell {
  background: rgba(255,255,255,0.025);
}

.ptable tbody tr:hover .ptable-cell--featured {
  background: rgba(0,96,255,0.1);
}

/* tfoot CTA row */
.ptable-cta-row td {
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ptable-cta-row .ptable-cell--featured {
  background: rgba(0,96,255,0.08);
}

/* ── Savings vs competitors ── */
.pricing-vs {
  padding: var(--sp-5) var(--sp-4);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  margin-top: var(--sp-5);
}

.pricing-vs-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  text-align: center;
}

.pricing-vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.pvs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
}

.pvs-card--featured {
  background: rgba(0,96,255,0.08);
  border-color: rgba(0,96,255,0.25);
}

.pvs-badge {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(245,197,66,0.15);
  border: 1px solid rgba(245,197,66,0.25);
  color: #f5c542;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pvs-plan {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pvs-vs {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.pvs-competitor {
  font-size: 12px;
  color: rgba(255,80,80,0.8);
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255,60,60,0.07);
  border-radius: 6px;
  margin-bottom: 12px;
  display: inline-block;
}

.pvs-stats {
  display: flex;
  gap: var(--sp-2);
}

.pvs-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pvs-stat-n {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

.pvs-stat--savings .pvs-stat-n { color: #4ade80; }

.pvs-stat-l {
  font-size: 11px; /* P6: min 12px preferred, 11px acceptable for label */
  color: rgba(255,255,255,0.42);
  line-height: 1.3;
}

.pricing-vs-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   PRICING FAQ
   ============================================================ */
.pfaq-section {
  background: var(--dark-elevated);
  border-top: 1px solid var(--border-dark);
  padding: var(--sp-7) 0;
}

.pfaq-section .section-title {
  color: var(--text-on-dark);
}

.pfaq-section .eyebrow {
  color: var(--accent-mint);
}

.pfaq-container { max-width: 760px; }

.pfaq-container .section-title,
.faq-container .section-title {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--surface);
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-3);
  margin-bottom: var(--sp-7);
  text-align: center;
}

.stat-item {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.06);
  align-self: stretch;
  margin: var(--sp-2) 0;
}

/* ── Wall of Love — infinite scroll columns ── */
@keyframes twall-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.twall-mask {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-height: 760px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.twall-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  max-width: 340px;
  animation: twall-scroll-up var(--twall-dur, 28s) linear infinite;
}

.twall-track--1 { --twall-dur: 26s; }
.twall-track--2 { --twall-dur: 34s; animation-delay: -10s; }
.twall-track--3 { --twall-dur: 30s; animation-delay: -5s; }

@media (prefers-reduced-motion: reduce) {
  .twall-track { animation: none; }
  .twall-mask { max-height: none; mask-image: none; -webkit-mask-image: none; }
}

.twall-mask:hover .twall-track {
  animation-play-state: paused;
}

.twall-card {
  background: var(--surface-card);
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.twall-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 96, 255, 0.12);
}

.twall-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.twall-quote {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-secondary);
  font-style: normal;
  margin: 0;
  flex: 1;
}

.twall-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.055);
  padding-top: 14px;
  margin-top: auto;
}

.twall-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.twall-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-style: normal;
}

.twall-role {
  display: block;
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container {
  max-width: 760px;
}

/* ── Tabs ── */
.faq-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto var(--sp-5);
}

.faq-tab {
  padding: 9px 20px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  letter-spacing: -0.01em;
  font-family: inherit;
}

.faq-tab--active {
  background: var(--surface-card);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-tab:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-panel { display: none; }
.faq-panel--active { display: block; }

/* ── Accordion list — unified for all FAQ sections ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-card);
}

/* pfaq-section — dark variant */
.pfaq-container .faq-list {
  background: var(--dark-card);
  border-color: var(--border-dark);
}

.pfaq-container .faq-item {
  border-bottom-color: var(--border-dark);
}

.pfaq-container .faq-item.open {
  background: rgba(0, 96, 255, 0.06);
}

.pfaq-container .faq-question {
  color: var(--text-on-dark);
}

.pfaq-container .faq-question:hover,
.pfaq-container .faq-item.open .faq-question {
  color: #fff;
}

.pfaq-container .faq-icon {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
}

.pfaq-container .faq-answer p {
  color: var(--text-muted-on-dark);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition);
}

.faq-item:last-child { border-bottom: none; }

/* Left accent bar */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.faq-item.open::before { opacity: 1; }
.faq-item.open { background: rgba(0, 96, 255, 0.025); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  width: 100%;
  padding: 20px 24px;
  min-height: 64px;
  background: none;
  border: none;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.02em;
  font-family: var(--font-body);
  transition: color var(--transition);
  touch-action: manipulation;
}

.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); font-weight: 600; }

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* ── + / × icon ── */
.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  color: var(--text-secondary);
  background: transparent;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.faq-icon-h,
.faq-icon-v {
  transform-origin: center;
  transform-box: fill-box;
}

/* ── Answer — grid animation ── */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 22px 27px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ── Footer ── */
.faq-footer {
  margin-top: var(--sp-6);
  text-align: center;
  padding: var(--sp-5);
  background: var(--surface-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
}

.faq-footer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.faq-footer-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding: var(--sp-8) 0;
}

/* ── Video background ── */
.cta-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}

/* ── Dark gradient overlay — keeps text readable ── */
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.75) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.65) 100%);
  pointer-events: none;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 96, 255, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.cta-banner-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 2;
}

.cta-banner-inner {
  position: relative;
  z-index: 3;
}

.cta-banner-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.cta-banner-sub {
  font-size: 18px;
  color: var(--text-muted-on-dark);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}

.cta-banner-note {
  margin-top: var(--sp-3);
  font-size: 13px;
  color: var(--text-muted-on-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-elevated);
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-7);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--sp-2);
}

.footer-logo-svg {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-logo:hover .footer-logo-svg {
  opacity: 0.95;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted-on-dark);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--sp-1);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted-on-dark);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.footer-link:hover { color: var(--text-on-dark); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: var(--sp-3) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-heritage {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-heritage strong {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: var(--sp-5);
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub { max-width: 100%; }

  .hero-ctas { justify-content: center; }

  .hero-logos { justify-content: center; }

  .hero-logos-list { justify-content: center; }

  .hero-visual { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: var(--sp-3); }

  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-2px); }

  .twall-track--3 { display: none; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .stat-divider:nth-child(4),
  .stat-divider:nth-child(8) { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-5); }

  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: var(--sp-7) 0; }

  .products-grid { grid-template-columns: 1fr; }

  .twall-track--2, .twall-track--3 { display: none; }
  .twall-track--1 { max-width: 100%; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .faq-tabs {
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    width: 100%;
    justify-content: center;
  }

  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { text-align: center; justify-content: center; }

  .pricing-grid { max-width: 100%; }

  .stats-bar { grid-template-columns: 1fr 1fr; }

  .footer-nav { grid-template-columns: 1fr 1fr; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   EYEBROW UTILITY
   ============================================================ */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   BUTTONS — CTA VARIANTS
   ============================================================ */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  touch-action: manipulation;
}

.btn-cta-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-glow-lg);
  transform: translateY(-1px);
}

.btn-cta-primary:active { transform: scale(0.98); transition-duration: 0.08s; }

.btn-cta-primary--sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

.btn-cta-primary--lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-cta-primary--full { width: 100%; justify-content: center; }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
  touch-action: manipulation;
}

.btn-cta-ghost:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: gap var(--transition);
}

.btn-text-link:hover { gap: 8px; }

/* ============================================================
   HERO — ORBITAL RINGS SCENE
   ============================================================ */

@keyframes orbit-cw  { to { transform: rotate( 360deg); } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }
@keyframes icon-counter-cw  { to { transform: rotate(-360deg); } }
@keyframes icon-counter-ccw { to { transform: rotate( 360deg); } }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 0.55; }
}
@keyframes comet-fade {
  0%   { opacity: 1; box-shadow: 0 0 14px 5px rgba(0,96,255,0.85), 0 0 36px 12px rgba(0,96,255,0.4), 0 0 80px 24px rgba(0,96,255,0.15); }
  50%  { opacity: 0.7; }
  100% { opacity: 1; box-shadow: 0 0 10px 3px rgba(0,96,255,0.65), 0 0 28px 8px rgba(0,96,255,0.25), 0 0 60px 18px rgba(0,96,255,0.1); }
}

/* ── Full-screen tilt layer
   Perspective applied here — same architecture as the original React component.
   transform-origin: center 60% anchors the tilt mid-hero so the rings
   extend into the upper portion and frame the text content. ── */
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Dramatic perspective tilt — rings recede into the horizon */
  transform: perspective(1200px) rotateX(20deg);
  transform-origin: center 52%;
}

/* ── Aurora nebula — stacked radial gradients behind rings ── */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  pointer-events: none;
}

/* Layer 1 — deep blue core */
.hero-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 96, 255, 0.28) 0%,
    rgba(0, 96, 255, 0.1)  30%,
    rgba(99, 102, 241, 0.05) 55%,
    transparent 72%
  );
  filter: blur(40px);
  animation: ring-pulse 6s ease-in-out infinite;
}

/* Layer 2 — teal accent corona */
.hero-glow::after {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 45% 45%,
    rgba(0, 212, 170, 0.1) 0%,
    transparent 50%
  );
  filter: blur(60px);
  animation: ring-pulse 8s ease-in-out infinite reverse;
}

/* ── Ring base — centred with margin (never translate, conflicts with animation) ── */
.hero-rl {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  will-change: transform;
}

/* ── Outer ring — CW, comet dots ── */
.hero-rl--1 {
  width: 1120px; height: 1120px;
  margin: -560px 0 0 -560px;
  /* Conic gradient border: bright arc + fading segments */
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0A0A0F, #0A0A0F) padding-box,
    conic-gradient(
      from 0deg,
      rgba(0,96,255,0)    0deg,
      rgba(0,96,255,0.55) 60deg,
      rgba(99,102,241,0.35) 120deg,
      rgba(0,96,255,0)    180deg,
      rgba(0,212,170,0.25) 240deg,
      rgba(0,96,255,0.4)  300deg,
      rgba(0,96,255,0)    360deg
    ) border-box;
  box-shadow:
    0 0 0 1px rgba(0,96,255,0.04),
    0 0 120px rgba(0,96,255,0.07) inset;
  animation: orbit-cw 110s linear infinite;
}

/* Comet dots on outer ring — enhanced glow trails */
.hero-rl-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #fff;
  transform: rotate(var(--da)) translateX(560px) rotate(calc(-1 * var(--da)));
  animation:
    icon-counter-cw 110s linear infinite,
    comet-fade 3s ease-in-out infinite;
  animation-delay: 0s, calc(var(--da) * -0.008s);
  will-change: transform, box-shadow;
}

/* ── Middle ring — CCW, 8 app icons ── */
.hero-rl--2 {
  width: 720px; height: 720px;
  margin: -360px 0 0 -360px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0A0A0F, #0A0A0F) padding-box,
    conic-gradient(
      from 90deg,
      rgba(255,255,255,0)    0deg,
      rgba(255,255,255,0.22) 80deg,
      rgba(0,96,255,0.18)   160deg,
      rgba(255,255,255,0)   220deg,
      rgba(0,212,170,0.15)  290deg,
      rgba(255,255,255,0.1) 340deg,
      rgba(255,255,255,0)   360deg
    ) border-box;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 0 80px rgba(0,96,255,0.06) inset;
  animation: orbit-ccw 78s linear infinite;
  --ring-r: 360px;
  --node-size: 60px;
}

/* ── Inner ring — CW, 4 app icons ── */
.hero-rl--3 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0A0A0F, #0A0A0F) padding-box,
    conic-gradient(
      from 200deg,
      rgba(0,96,255,0)    0deg,
      rgba(0,96,255,0.5)  70deg,
      rgba(99,102,241,0.3) 130deg,
      rgba(0,96,255,0)    200deg,
      rgba(0,212,170,0.2) 280deg,
      rgba(0,96,255,0.35) 340deg,
      rgba(0,96,255,0)    360deg
    ) border-box;
  box-shadow:
    0 0 0 1px rgba(0,96,255,0.05),
    0 0 50px rgba(0,96,255,0.09) inset,
    0 0 100px rgba(0,96,255,0.04);
  animation: orbit-cw 56s linear infinite;
  --ring-r: 190px;
  --node-size: 68px;
}

/* ── Icon nodes ── */
.hero-rnode {
  position: absolute;
  top: 50%; left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--node-size, 60px);
  height: var(--node-size, 60px);
  margin: calc(-1 * var(--node-size, 60px) / 2) 0 0 calc(-1 * var(--node-size, 60px) / 2);
  transform: rotate(var(--a)) translateX(var(--ring-r)) rotate(calc(-1 * var(--a)));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(14, 12, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 0 0 1px rgba(0, 96, 255, 0.08),
    0 0 20px rgba(0, 96, 255, 0.1);
  padding: 6px;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.hero-rnode:hover {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(0, 96, 255, 0.2),
    0 0 32px rgba(0, 96, 255, 0.25);
}

.hero-rnode--lg {
  --node-size: 72px;
  margin: calc(-1 * var(--node-size, 72px) / 2) 0 0 calc(-1 * var(--node-size, 72px) / 2);
  border-radius: 18px;
  padding: 7px;
}

/* object-fit: contain — full icon visible, zero deformation */
.hero-rnode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Counter-rotate imgs so icons stay upright as rings spin */
.hero-rl--2 .hero-rnode img {
  animation: icon-counter-ccw 78s linear infinite;
}
.hero-rl--3 .hero-rnode img {
  animation: icon-counter-cw 56s linear infinite;
}

/* ── Gradient cover — strong bottom fade, light top fade ── */
.hero-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--dark-bg) 0%, rgba(10,10,15,0.3) 10%, transparent 25%),
    linear-gradient(to top,    var(--dark-bg) 0%, rgba(10,10,15,0.85) 30%, rgba(10,10,15,0.4) 55%, transparent 75%);
}

/* ── Noise grain over hero ── */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' 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");
}

@media (max-width: 1024px) {
  .hero-scene {
    transform: perspective(1000px) rotateX(18deg);
    transform-origin: center 52%;
  }
}
@media (max-width: 768px) {
  .hero-scene {
    transform: perspective(800px) rotateX(14deg) scale(0.72);
    transform-origin: center 52%;
  }
}
@media (max-width: 480px) {
  .hero-scene {
    transform: perspective(600px) rotateX(10deg) scale(0.48);
    transform-origin: center 52%;
  }
}

/* ============================================================
   HERO — CONTENT LAYOUT
   ============================================================ */

/* Hero content — bottom-aligned like the reference component.
   Rings form a corona/halo above and behind the content. */
.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;     /* content anchored at bottom */
  min-height: 100svh;
  padding-top: var(--nav-height);
  padding-bottom: clamp(56px, 8vh, 96px);
  gap: 0;
}

/* ── Announcement badge ── */
.hero-announce {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.hero-announce:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}
.hero-announce-pill {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 96, 255, 0.5);
}

/* ── Headline ── */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 20px;
  max-width: 700px;
  /* Subtle text shadow lifts headline off the rings */
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero-headline-em {
  background: linear-gradient(118deg, #e8f0ff 0%, #7eaaff 45%, #4d7dff 75%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Sub ── */
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  max-width: 480px;
}

/* ── Trust line ── */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  letter-spacing: 0em;
  margin-top: 24px;
}

.hero-trust strong { color: rgba(255, 255, 255, 0.5); font-weight: 600; }

.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 10px var(--accent-mint);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

/* ── Scroll hint — hidden when content is bottom-aligned ── */
.hero-scroll {
  display: none;
}

.hero-scroll-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ============================================================
   LOGO TICKER
   ============================================================ */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-section {
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
  overflow: hidden;
}

.logos-label { display: none; }

.logos-track-wrap {
  position: relative;
  overflow: hidden;
}

.logos-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.logos-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.logos-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.logos-item {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(10,9,8,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-family: var(--font-body);
  line-height: 1;
}

.logos-item:hover { color: rgba(10,9,8,0.5); }

.logos-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(10,9,8,0.12);
  border-radius: 50%;
  margin-left: 32px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-section {
  background: var(--surface);
  padding: 96px 0 80px;
}

.value-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}

.value-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.value-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}

.vcard {
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.vcard:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.vcard-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-subtle);
  border-radius: var(--radius-md);
  color: var(--primary);
  flex-shrink: 0;
}

.vcard-content { flex: 1; }

.vcard-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

.vcard-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vcard-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  width: fit-content;
  margin-top: auto;
}

/* Stats row */
.value-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-6);
}

.vstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-3) var(--sp-5);
  flex: 1;
  text-align: center;
}

.vstat-n {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.vstat-s {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.vstat-l {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.vstat-div {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.07);
  flex-shrink: 0;
}

/* ============================================================
   FEATURE SPOTLIGHT — TABS
   ============================================================ */
/* ============================================================
   IN ACTION — PRODUCT THEATER
   ============================================================ */

/* Legacy class bridges (JS still uses these) */
.feat-panel         { display: none; }
.feat-panel--active { display: block; }

/* ── Section shell ── */
.ia-section {
  position: relative;
  background: #0A0A0F;
  padding: 100px 0 120px;
  overflow: hidden;
  --ia-accent: #0060FF;
}

/* Ambient glow blob */
.ia-ambient {
  position: absolute;
  width: 700px; height: 600px;
  top: -100px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--ia-accent) 15%, transparent) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  transition: background 0.8s ease;
  z-index: 0;
}

/* Subtle dot grid */
.ia-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ── */
.ia-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-7);
  align-items: start;
}

/* ── Left nav ── */
.ia-nav { display: flex; flex-direction: column; gap: var(--sp-5); }

.ia-header { }
.ia-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ia-accent, #0060FF);
  margin-bottom: var(--sp-2);
  transition: color 0.5s ease;
}
.ia-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #F0F0F5;
  margin-bottom: var(--sp-2);
}
.ia-sub {
  font-size: 15px;
  color: rgba(240,240,245,0.5);
  line-height: 1.65;
  max-width: 300px;
}

/* ── Tab buttons ── */
.ia-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ia-tab {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px 14px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.ia-tab:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.ia-tab--active {
  background: rgba(255,255,255,0.06);
  border-color: color-mix(in srgb, var(--ia-accent) 40%, transparent);
  box-shadow: inset 3px 0 0 var(--ia-accent);
}

.ia-tab-num {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.ia-tab--active .ia-tab-num { color: var(--ia-accent); }

.ia-tab-body {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ia-tab-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.ia-tab-icon img { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; }
.ia-tab-icon--cloud { color: rgba(255,255,255,0.5); }
.ia-tab--active .ia-tab-icon { border-color: color-mix(in srgb, var(--ia-accent) 30%, transparent); }

.ia-tab-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ia-tab-label strong {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.2s ease;
}
.ia-tab-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.ia-tab--active .ia-tab-label strong { color: #F0F0F5; }
.ia-tab--active .ia-tab-label span   { color: rgba(255,255,255,0.5); }

/* Progress bar */
.ia-tab-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  display: none;
}
.ia-tab--active .ia-tab-progress { display: block; }
.ia-tab-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--ia-accent);
  border-radius: 2px;
  transition: background 0.5s ease;
}
.ia-tab--running .ia-tab-progress-fill {
  animation: ia-progress var(--ia-duration, 5s) linear forwards;
}
@keyframes ia-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Stage (right) ── */
.ia-stage {
  position: relative;
  min-height: 520px;
}

.ia-panel {
  animation: ia-panel-in 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes ia-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ia-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-5);
  align-items: center;
  height: 100%;
}

/* Panel copy */
.ia-panel-copy { display: flex; flex-direction: column; gap: 0; }

.ia-panel-title {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #F0F0F5;
  margin-bottom: var(--sp-2);
}

.ia-panel-desc {
  font-size: 15px;
  color: rgba(240,240,245,0.55);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.ia-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: var(--sp-4);
  list-style: none;
}
.ia-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(240,240,245,0.6);
}
.ia-checklist svg { color: var(--ia-accent); flex-shrink: 0; transition: color 0.5s ease; }

.ia-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--ia-accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ia-accent) 30%, transparent);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ia-accent);
  width: fit-content;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.5s ease;
}
.ia-cta:hover {
  background: color-mix(in srgb, var(--ia-accent) 20%, transparent);
  border-color: color-mix(in srgb, var(--ia-accent) 50%, transparent);
  transform: translateX(2px);
}

/* Panel visual */
.ia-panel-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Browser mockup */
.ia-mockup {
  width: 100%;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px color-mix(in srgb, var(--ia-accent) 8%, transparent);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: box-shadow 0.6s ease;
}

.ia-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #0C0C12;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ia-chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ia-chrome-dot--r { background: #FF5F57; }
.ia-chrome-dot--y { background: #FFBD2E; }
.ia-chrome-dot--g { background: #28C840; }
.ia-chrome-url {
  flex: 1;
  margin: 0 8px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-mono);
  text-align: center;
  letter-spacing: 0.01em;
}
.ia-mockup-screen { position: relative; overflow: hidden; }
.ia-mockup-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 300px;
  object-position: top;
  transition: opacity 0.3s ease;
}

/* Floating annotation pills */
.ia-annotation {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(10,10,20,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,240,245,0.85);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  pointer-events: none;
}
.ia-annotation svg { color: var(--ia-accent); flex-shrink: 0; transition: color 0.5s ease; }

/* Staggered positions + entrance animations per annotation */
.ia-ann--1 {
  top: -16px; right: -12px;
  animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.ia-ann--2 {
  bottom: 32px; left: -16px;
  animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.ia-ann--3 {
  bottom: -14px; right: 24px;
  animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
@keyframes ia-ann-in {
  from { opacity: 0; transform: translateY(8px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Annotations float gently */
.ia-ann--1 { animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.2s both, ia-float-ann 5s ease-in-out 0.7s infinite; }
.ia-ann--2 { animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.35s both, ia-float-ann 6s ease-in-out 1s infinite reverse; }
.ia-ann--3 { animation: ia-ann-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.5s both, ia-float-ann 7s ease-in-out 1.5s infinite; }
@keyframes ia-float-ann {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Accent color transitions on section when tab changes */
.ia-section[data-active="design"]  { --ia-accent: #0060FF; }
.ia-section[data-active="code"]    { --ia-accent: #F59E0B; }
.ia-section[data-active="publish"] { --ia-accent: #00D4AA; }
.ia-section[data-active="grow"]    { --ia-accent: #A855F7; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ia-container { grid-template-columns: 300px 1fr; gap: var(--sp-5); }
}
@media (max-width: 900px) {
  .ia-container { grid-template-columns: 1fr; }
  .ia-section   { padding: 72px 0 88px; }
  .ia-nav { gap: var(--sp-4); }
  .ia-tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .ia-tab {
    grid-template-columns: auto 1fr;
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 10px 12px;
  }
  .ia-tab-num { display: none; }
  .ia-sub { max-width: 100%; }
  .ia-panel-inner { grid-template-columns: 1fr; gap: var(--sp-4); }
  .ia-panel-visual { order: -1; }
  .ia-mockup { transform: none; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .ia-tabs { flex-direction: column; }
  .ia-tab  { flex: unset; }
  .ia-ann--1, .ia-ann--2, .ia-ann--3 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ia-tab-progress-fill, .ia-panel,
  .ia-ann--1, .ia-ann--2, .ia-ann--3 { animation: none !important; }
  .ia-annotation { opacity: 1; transform: none; }
}

/* ============================================================
   PRICING SECTION WRAPPER
   ============================================================ */
.pricing-section {
  background: var(--surface);
  padding: 96px 0;
}

/* ============================================================
   SUPER PACK PROMO
   ============================================================ */
.sp-promo {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 120px 0;
  isolation: isolate;
}

.sp-promo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.sp-promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0, 96, 255, 0.18) 0%, transparent 70%),
    linear-gradient(to right, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.55) 50%, rgba(10, 10, 15, 0.82) 100%);
  pointer-events: none;
}

.sp-promo-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.sp-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 96, 255, 0.4);
  background: rgba(0, 96, 255, 0.12);
  color: #7EB8FF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.sp-promo-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin: 0 0 var(--sp-3);
}

.sp-promo-title-accent {
  background: linear-gradient(90deg, #0060FF, #00D4AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-promo-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted-on-dark);
  margin: 0 0 var(--sp-4);
  max-width: 520px;
}

.sp-promo-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-promo-chip {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background var(--transition), border-color var(--transition);
}

.sp-promo-chip--more {
  color: #7EB8FF;
  border-color: rgba(0, 96, 255, 0.3);
  background: rgba(0, 96, 255, 0.1);
}

.sp-promo-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.sp-promo-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-promo-price-was {
  font-size: 12px;
  color: var(--text-muted-on-dark);
  text-decoration: line-through;
  letter-spacing: 0.01em;
}

.sp-promo-price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.sp-promo-currency {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
  padding-top: 5px;
}

.sp-promo-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sp-promo-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-on-dark);
  align-self: flex-end;
  padding-bottom: 6px;
}

.sp-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 0 40px rgba(0, 96, 255, 0.35), 0 4px 16px rgba(0, 96, 255, 0.25);
  white-space: nowrap;
}

.sp-promo-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 60px rgba(0, 96, 255, 0.5), 0 8px 28px rgba(0, 96, 255, 0.3);
  transform: translateY(-2px);
}

.sp-promo-btn svg {
  transition: transform var(--transition);
}

.sp-promo-btn:hover svg {
  transform: translateX(3px);
}

.sp-promo-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted-on-dark);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.sp-promo-link:hover {
  color: #fff;
}

/* ============================================================
   TESTIMONIALS SECTION — Wall of Love
   ============================================================ */
.testimonials-section {
  background: var(--surface);
  padding: 96px 0;
  overflow: hidden;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding: 96px 0;
}

/* ============================================================
   CTA BANNER EXTRAS
   ============================================================ */
.cta-banner-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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.3;
  pointer-events: none;
}

.cta-banner-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-2);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .value-stats { flex-wrap: wrap; }
  .vstat { padding: var(--sp-2) var(--sp-3); }
  .feat-panel-inner {
    grid-template-columns: 1fr;
    padding: var(--sp-5) var(--sp-4);
    gap: var(--sp-5);
  }
  .feat-panel-visual { order: -1; }
  /* Pricing */
  .pc-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .pc--featured { transform: none; }
  .pc--featured:hover { transform: translateY(-4px); }
  .pricing-vs-grid { grid-template-columns: 1fr; }
  .pc-trust { gap: 6px 0; }
  .pc-trust-sep { display: none; }
  .pc-trust-item { padding: 4px 12px; }
}

@media (max-width: 768px) {
  .hero-inner {
    padding-top: calc(var(--nav-height) + var(--sp-4));
    padding-bottom: var(--sp-6);
    min-height: 100svh;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
  }
  .value-stats { flex-direction: column; gap: var(--sp-1); }
  .vstat-div { width: 80%; height: 1px; }
  .feat-tabs { flex-wrap: wrap; width: 100%; justify-content: center; border-radius: var(--radius-lg); }
  .logos-fade--left, .logos-fade--right { width: 60px; }
  .sp-promo { padding: 80px 0; }
  .sp-promo-cta-row { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .sp-promo-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .value-grid { grid-template-columns: 1fr; }
  .feat-panel-inner { padding: var(--sp-4) var(--sp-3); }
  .feat-panel-title { font-size: 22px; }
}

/* ============================================================
   VCARD ICON ANIMATIONS — Why CoffeeCup
   Inspired by Remotion spring physics + sequencing principles
   ============================================================ */

/* ── Base icon setup ── */
.vcard-icon {
  position: relative;
  overflow: visible;
  transition: background 0.25s, box-shadow 0.25s;
}

/* ── Shared enter animation ──
   Spring: cubic-bezier(0.16, 1, 0.3, 1) = slight overshoot like Remotion spring() */
.vcard-icon svg {
  display: block;
  transform-origin: center;
  will-change: transform, opacity;
}

/* ─────────────────────────────────────────────────────────────
   ICON 1 — LOCK  (pay once, own forever)
   Enter:  shackle draws on (stroke-dashoffset), body bounces in
   Idle:   subtle glow pulse on the container
   Hover:  "click" shake + glow flash
   ───────────────────────────────────────────────────────────── */

/* Lock shackle — measure & set dasharray in JS (fallback 24) */
.lock-shackle {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset 0s;  /* overridden when .icon-animated */
}

.lock-body {
  transform-origin: center bottom;
  transform: scaleY(0.6) translateY(4px);
  opacity: 0;
  transition: transform 0s, opacity 0s;
}

/* Triggered by JS when in viewport */
[data-icon="lock"].icon-animated .lock-shackle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

[data-icon="lock"].icon-animated .lock-body {
  transform: scaleY(1) translateY(0);
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
    opacity   0.3s ease 0.35s;
}

/* Idle: glow pulse */
@keyframes lock-idle-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 96, 255, 0); }
  50%       { box-shadow: 0 0 0 6px rgba(0, 96, 255, 0.12); }
}

[data-icon="lock"].icon-animated {
  animation: lock-idle-glow 3.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Hover: "click" settle */
@keyframes lock-click {
  0%   { transform: scale(1); }
  25%  { transform: scale(0.88) rotate(-4deg); }
  60%  { transform: scale(1.08) rotate(2deg); }
  80%  { transform: scale(0.97); }
  100% { transform: scale(1) rotate(0deg); }
}

[data-icon="lock"]:hover {
  background: rgba(0, 96, 255, 0.1) !important;
  box-shadow: 0 0 0 6px rgba(0, 96, 255, 0.08);
  animation: lock-click 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             lock-idle-glow 3.2s ease-in-out infinite 0.5s;
}

/* ─────────────────────────────────────────────────────────────
   ICON 2 — MONITOR  (all-in-one suite)
   Enter:  screen "powers on" — flicker then settle
   Idle:   inner scanline sweeps every 4s
   Hover:  screen brightens, scale spring
   ───────────────────────────────────────────────────────────── */

.monitor-screen,
.monitor-stand {
  opacity: 0;
  transform-origin: center;
}

[data-icon="monitor"].icon-animated .monitor-screen {
  opacity: 1;
  animation: monitor-power-on 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

[data-icon="monitor"].icon-animated .monitor-stand {
  opacity: 1;
  animation: monitor-stand-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes monitor-power-on {
  0%   { opacity: 0; transform: scaleX(0.3) scaleY(0.1); filter: brightness(3); }
  30%  { opacity: 1; transform: scaleX(1.04) scaleY(0.95); filter: brightness(2.5); }
  65%  { transform: scaleX(0.98) scaleY(1.03); filter: brightness(1.2); }
  100% { transform: scale(1); filter: brightness(1); opacity: 1; }
}

@keyframes monitor-stand-in {
  0%   { opacity: 0; transform: translateY(-4px) scaleY(0); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* Idle: scanline sweep via ::after pseudo */
[data-icon="monitor"].icon-animated::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  top: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 96, 255, 0.5), transparent);
  border-radius: 1px;
  opacity: 0;
  animation: monitor-scanline 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

@keyframes monitor-scanline {
  0%        { top: 6px;  opacity: 0; }
  5%        { opacity: 0.7; }
  70%       { top: 26px; opacity: 0.4; }
  80%, 100% { top: 30px; opacity: 0; }
}

/* Hover: spring scale + glow */
@keyframes monitor-hover-spring {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); filter: brightness(1.4); }
  70%  { transform: scale(0.96); filter: brightness(1.1); }
  100% { transform: scale(1); filter: brightness(1); }
}

[data-icon="monitor"]:hover {
  background: rgba(0, 96, 255, 0.1) !important;
  box-shadow: 0 0 0 6px rgba(0, 96, 255, 0.08);
}

[data-icon="monitor"]:hover svg {
  animation: monitor-hover-spring 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─────────────────────────────────────────────────────────────
   ICON 3 — STAR  (28 years of trust)
   Enter:  scale 0 → 1.25 → 1 + rotate -45° → 8° → 0°  (spring bounce)
   Idle:   very slow oscillation ±6° (like a floating star)
   Hover:  full 360° clockwise spin (smooth, one revolution)
   ───────────────────────────────────────────────────────────── */

.star-svg {
  transform: scale(0) rotate(-45deg);
  opacity: 0;
  transform-origin: center;
}

[data-icon="star"].icon-animated .star-svg {
  animation: star-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

@keyframes star-enter {
  0%   { transform: scale(0)    rotate(-45deg); opacity: 0; }
  55%  { transform: scale(1.28) rotate(8deg);  opacity: 1; }
  78%  { transform: scale(0.93) rotate(-3deg); }
  90%  { transform: scale(1.04) rotate(1deg); }
  100% { transform: scale(1)    rotate(0deg); opacity: 1; }
}

/* Idle: gentle oscillation — Remotion-style ease-in-out infinite */
@keyframes star-idle-float {
  0%, 100% { transform: rotate(0deg)   scale(1); }
  25%       { transform: rotate(6deg)  scale(1.03); }
  75%       { transform: rotate(-6deg) scale(0.98); }
}

[data-icon="star"].icon-animated .star-svg {
  animation:
    star-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both,
    star-idle-float 4s ease-in-out 1.2s infinite;
}

/* Hover: override idle with full spin */
@keyframes star-spin {
  0%   { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(200deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

[data-icon="star"]:hover {
  background: rgba(0, 96, 255, 0.1) !important;
  box-shadow: 0 0 0 6px rgba(0, 96, 255, 0.08);
}

[data-icon="star"]:hover .star-svg {
  animation: star-spin 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* ── Respect reduced-motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .lock-shackle, .lock-body,
  .monitor-screen, .monitor-stand,
  .star-svg {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
  [data-icon="lock"],
  [data-icon="monitor"],
  [data-icon="star"] {
    animation: none !important;
  }
  [data-icon="lock"].icon-animated,
  [data-icon="monitor"].icon-animated,
  [data-icon="star"].icon-animated {
    animation: none !important;
  }
}
