/* action ai marketing site — locked Spectral palette + real logo
 * v43.1-rev3 (2026-05-03) — VERIFIED against app/index.html
 * Palette tokens, surface tokens, glow color, line color, and the
 * canonical 5-stop conic-gradient all match the app exactly.
 * Locked: footer L-001/L-070; brand thesis; pricing; lowercase wordmark.
 */

@property --ga {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* === Spectral palette — sampled from the action ai logo chevron ===
     coral → amber → mint → sky → periwinkle. No purple. */
  --spectral-coral:      #FF7676;
  --spectral-amber:      #FDCB6E;
  --spectral-mint:       #55EFC4;
  --spectral-sky:        #74B9FF;
  --spectral-periwinkle: #A29BFE;

  /* === Surfaces — match app/index.html === */
  --bg:        #07070b;
  --surface:   #0f0f15;
  --surface-2: #16161f;
  --surface-3: #1d1d28;

  /* === Lines — periwinkle-tilted, very low opacity === */
  --line:        rgba(180, 170, 255, 0.08);
  --line-strong: rgba(180, 170, 255, 0.18);

  /* === Text === */
  --text:   #f5f3ff;
  --text-2: rgba(245, 243, 255, 0.60);
  --text-3: rgba(245, 243, 255, 0.32);

  /* === Accent === */
  --accent:        var(--spectral-periwinkle);
  --accent-bright: #C7C0FF;

  /* === Glow — amber, sampled from the logo focal === */
  --glow-amber: rgba(253, 203, 110, 0.35);
  --glow-amber-strong: rgba(253, 203, 110, 0.55);

  /* === Radii === */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* === Shadows === */
  --shadow-md:    0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg:    0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow:  0 0 30px var(--glow-amber);
  --shadow-card:  0 12px 40px -16px rgba(0, 0, 0, 0.55),
                  0 0 0 1px rgba(180, 170, 255, 0.04);
  --shadow-card-hover: 0 24px 64px -20px rgba(253, 203, 110, 0.22),
                       0 0 0 1px rgba(192, 132, 255, 0.28);

  /* === Brand gradient — linear (for text fills) === */
  --grad-spectral: linear-gradient(120deg,
    var(--spectral-coral)      0%,
    var(--spectral-amber)      25%,
    var(--spectral-mint)       50%,
    var(--spectral-sky)        75%,
    var(--spectral-periwinkle) 100%);

  /* === Brand gradient — conic (for logo halos, badges, mic orbs) === */
  --grad-spectral-conic: conic-gradient(from 0deg,
    var(--spectral-coral)      0deg,
    var(--spectral-amber)      72deg,
    var(--spectral-mint)       144deg,
    var(--spectral-sky)        216deg,
    var(--spectral-periwinkle) 288deg,
    var(--spectral-coral)      360deg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter',
               'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  background: radial-gradient(ellipse at top, #14121f 0%, #07070b 65%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================ */
/* AURORA BACKGROUND — Spectral palette drift                    */
/* Three blobs sampled from coral / mint / periwinkle so all     */
/* five palette stops appear when overlapped at low opacity.     */
/* ============================================================ */
.bg-aurora {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.32;
  will-change: transform;
}
.aurora-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle at 35% 35%, var(--spectral-coral) 0%, transparent 62%);
  top: -180px; left: -160px;
  animation: drift1 30s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle at 65% 55%, var(--spectral-mint) 0%, transparent 62%);
  top: 28%; right: -200px;
  animation: drift2 38s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 600px; height: 600px;
  background: radial-gradient(circle at 50% 50%, var(--spectral-periwinkle) 0%, transparent 60%);
  bottom: -180px; left: 28%;
  animation: drift3 46s ease-in-out infinite alternate;
}
.bg-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245, 243, 255, 0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}
@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, 80px) scale(1.12); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, 60px) scale(1.08); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -100px) scale(1.14); }
}

/* ============================================================ */
/* LAYOUT                                                        */
/* ============================================================ */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 112px 0; }
.section-demo { padding: 24px 0 40px; }

/* ============================================================ */
/* HEADER + REAL LOGO                                            */
/* ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 11, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1080px; margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text);
}
.brand:hover { text-decoration: none; }

/* The wordmark-glyph mirrors the in-app pattern exactly:
   rounded-square tile cropped from /action-ai-icon-192.png. */
.wordmark-glyph {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: url('/action-ai-icon-192.png') center/cover, #07070b;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(180, 170, 255, 0.12),
              0 0 18px rgba(253, 203, 110, 0.22);
}
.brand-word { font-weight: 600; }

.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  font-size: 14px; color: var(--text-2);
  transition: color 160ms ease;
}
.nav a:hover { color: var(--text); text-decoration: none; }

/* ============================================================ */
/* BUTTONS                                                       */
/* ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 11px 20px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  background: var(--grad-spectral);
  color: #fff;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 200ms ease, opacity 200ms ease;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px var(--glow-amber-strong);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px var(--glow-amber-strong); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-secondary {
  background: rgba(15, 15, 21, 0.6);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(22, 22, 31, 0.8);
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px -12px rgba(192, 132, 255, 0.32);
}
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }

/* Shimmer sweep on hover */
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.btn-shimmer:hover::after { left: 130%; }

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero { padding: 140px 0 64px; text-align: center; }
.hero-h1 {
  font-size: clamp(40px, 6.6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin: 0 auto 28px;
  max-width: 16ch;
  color: var(--text);
  text-wrap: balance;
}

/* Animated 5-stop gradient text — the brand's signature flourish */
.grad-text {
  background: linear-gradient(120deg,
    var(--spectral-coral)      0%,
    var(--spectral-amber)      25%,
    var(--spectral-mint)       50%,
    var(--spectral-sky)        75%,
    var(--spectral-periwinkle) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradSweep 9s linear infinite;
  font-weight: 700;
}
@keyframes gradSweep {
  0%   { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

.hero p.lede {
  font-size: clamp(17px, 1.85vw, 21px);
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.brand-inline {
  font-weight: 700;
  background: var(--grad-spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reassurance {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.005em;
}
.audience {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-3);
  font-style: italic;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================ */
/* REVEAL ON SCROLL                                              */
/* ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* FEATURES (Four jobs)                                          */
/* ============================================================ */
.features-eyebrow {
  text-align: center;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.features-h2 {
  text-align: center;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 56px;
  text-wrap: balance;
}
.pricing-intro {
  text-align: center;
  color: var(--text-2);
  max-width: 640px;
  margin: -32px auto 56px;
  font-size: 15.5px;
  text-wrap: balance;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 260ms ease,
              box-shadow 260ms ease;
  box-shadow: var(--shadow-card);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card-hover);
}
.feature-card::before {
  /* rotating 5-stop conic halo on hover */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--grad-spectral-conic);
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: -1;
  filter: blur(10px);
}
.feature-card:hover::before {
  opacity: 0.55;
  animation: cardSpin 6s linear infinite;
}
@keyframes cardSpin {
  to { --ga: 360deg; }
}
.feature-num {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.18;
  position: absolute;
  top: 18px; right: 22px;
  pointer-events: none;
  user-select: none;
  transition: opacity 260ms ease;
}
.feature-card:hover .feature-num { opacity: 0.42; }
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.012em;
  position: relative;
  z-index: 1;
}
.feature-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ============================================================ */
/* DEMO BLOCK                                                    */
/* ============================================================ */
.demo {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 118, 118, 0.06), rgba(162, 155, 254, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 44px 32px 40px;
  margin: 24px auto;
  max-width: 740px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}
.demo-eyebrow {
  text-align: center;
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.demo-h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.2;
  text-wrap: balance;
}
.demo-note {
  background: rgba(7, 7, 11, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  font-family: 'SF Mono', 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
  position: relative;
}
.demo-quote-mark {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-bright);
  opacity: 0.7;
  vertical-align: -8px;
  font-family: Georgia, serif;
  margin: 0 2px;
}
.demo-arrow {
  text-align: center;
  font-size: 26px;
  color: var(--accent-bright);
  opacity: 0.5;
  margin-bottom: 12px;
  animation: arrowBob 2.4s ease-in-out infinite;
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(4px); opacity: 0.7; }
}
.demo-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.demo-chip {
  background: rgba(162, 155, 254, 0.14);
  border: 1px solid rgba(162, 155, 254, 0.30);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--accent-bright);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: chipIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--chip-delay, 0ms);
}
@keyframes chipIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.demo-chip-icon {
  display: inline-flex;
  width: 18px; height: 18px;
  align-items: center; justify-content: center;
  background: var(--grad-spectral-conic);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.demo-caption {
  text-align: center;
  color: var(--text-3);
  margin: 22px 0 0;
  font-size: 13.5px;
  font-style: italic;
}

/* ============================================================ */
/* VERSUS GRID                                                   */
/* ============================================================ */
.versus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.versus-col {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 260ms ease;
}
.versus-col:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.versus-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text-2);
}
.versus-featured .versus-name {
  background: var(--grad-spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.versus-row {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-top: 1px solid rgba(180, 170, 255, 0.06);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.4;
}
.versus-row:first-of-type { border-top: none; }
.versus-mark {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}
.versus-no .versus-mark {
  background: rgba(245, 243, 255, 0.05);
  color: var(--text-3);
}
.versus-yes .versus-mark {
  background: var(--grad-spectral-conic);
  color: #fff;
}
.versus-price {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(180, 170, 255, 0.14);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}
.versus-featured {
  background: linear-gradient(180deg, rgba(255, 118, 118, 0.07), rgba(162, 155, 254, 0.07));
  border-color: rgba(253, 203, 110, 0.32);
}
.versus-featured .versus-price {
  color: var(--accent-bright);
}
.versus-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-spectral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px var(--glow-amber-strong);
}

/* ============================================================ */
/* PRICING                                                       */
/* ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 260ms ease,
              box-shadow 260ms ease;
  box-shadow: var(--shadow-card);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card-hover);
}
.plan-card.featured {
  background: linear-gradient(180deg, rgba(255, 118, 118, 0.07), rgba(162, 155, 254, 0.07));
  border-color: rgba(253, 203, 110, 0.0); /* hidden — replaced by rotating conic border below */
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-spectral-conic);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: planSpin 10s linear infinite;
  pointer-events: none;
}
@keyframes planSpin {
  to { --ga: 360deg; }
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-spectral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px var(--glow-amber-strong);
  white-space: nowrap;
}
.plan-name {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent-bright);
  margin-bottom: 10px;
}
.plan-price {
  font-size: 40px; font-weight: 700; letter-spacing: -0.025em;
  margin: 0 0 4px;
  line-height: 1;
}
.plan-price span { font-size: 14px; color: var(--text-3); font-weight: 500; letter-spacing: 0; }
.plan-tag {
  color: var(--text-2); font-size: 14.5px;
  margin: 0 0 22px;
  line-height: 1.4;
}
.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px;
}
.plan-features li {
  display: flex; gap: 10px;
  color: var(--text-2);
  line-height: 1.45;
}
.plan-features li::before {
  content: '✓';
  color: var(--accent-bright);
  font-weight: 800;
  flex-shrink: 0;
}
.plan-features li strong {
  color: var(--text);
  font-weight: 600;
}
.plan-cta { margin-top: auto; }
.pricing-reassure {
  text-align: center;
  margin: 36px 0 0;
  font-size: 13px;
  color: var(--text-3);
}

/* ============================================================ */
/* FAQ                                                           */
/* ============================================================ */
.faq-grid {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: border-color 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.faq-item p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.62;
}

/* ============================================================ */
/* FINAL CTA                                                     */
/* ============================================================ */
.cta-final {
  text-align: center;
  padding: 96px 24px 80px;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.cta-sub {
  color: var(--text-2);
  font-size: 16px;
  margin: 0 0 28px;
}

/* ============================================================ */
/* NEWSLETTER                                                    */
/* ============================================================ */
.newsletter {
  max-width: 460px;
  margin: 28px auto 0;
  display: flex; gap: 10px;
}
.newsletter input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: rgba(15, 15, 21, 0.6);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 200ms ease, background 200ms ease;
}
.newsletter input::placeholder { color: var(--text-3); }
.newsletter input:focus {
  outline: none;
  border-color: var(--line-strong);
  background: rgba(22, 22, 31, 0.7);
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px;
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}
.site-footer a { color: var(--text-2); margin: 0 8px; }
.site-footer a:hover { color: var(--text); }

/* ============================================================ */
/* MOBILE                                                        */
/* ============================================================ */
@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .hero { padding: 96px 0 56px; }
  .nav { gap: 14px; }
  .nav a:not(.btn) { display: none; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }
  .feature-card { padding: 26px 22px 22px; }
  .feature-num { font-size: 52px; top: 14px; right: 18px; }
  .demo { padding: 32px 22px 30px; margin: 16px auto; }
  .newsletter { flex-direction: column; }
  .versus-col { padding: 22px 20px 20px; }
  .plan-card { padding: 32px 24px 28px; }
  .audience { padding: 0 12px; }
}

/* ============================================================ */
/* MOTION REDUCTION                                              */
/* ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .demo-chip { opacity: 1; transform: none; }
  .aurora-blob { opacity: 0.2; }
}

/* ============================================================ */
/* TRUST STRIP — free-tier emphasis under hero CTAs              */
/* Five pills, each check uses a different Spectral stop so the  */
/* full palette is visible across the strip.                     */
/* ============================================================ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  margin: 28px auto 0;
  max-width: 780px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: rgba(15, 15, 21, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12.5px;
  color: var(--text-2);
  white-space: nowrap;
  transition: border-color 220ms ease, transform 220ms ease, color 220ms ease;
}
.trust-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  color: var(--text);
}
.trust-check {
  display: inline-flex;
  width: 14px; height: 14px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: #07070b;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}
.trust-check-coral      { background: var(--spectral-coral); }
.trust-check-amber      { background: var(--spectral-amber); }
.trust-check-mint       { background: var(--spectral-mint); }
.trust-check-sky        { background: var(--spectral-sky); }
.trust-check-periwinkle { background: var(--spectral-periwinkle); }
