/* ============================================================
   AutoAddy Landing Page — Complete Design System
   Dark charcoal + electric green · autoaddy.com
   Brief: media command center for automotive dealership groups
============================================================ */

/* === RESET ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; outline: none; }
ul[role="list"] { list-style: none; }

/* === DESIGN TOKENS ======================================================== */
:root {
  /* Dark palette (per brief) */
  --bg:          #0B0E14;
  --bg-surface:  #111620;
  --bg-raised:   #161D28;
  --bg-card:     #1B2333;
  --bg-card-2:   #1F2840;

  /* Borders */
  --border:      rgba(255,255,255,0.07);
  --border-md:   rgba(255,255,255,0.13);
  --border-lg:   rgba(255,255,255,0.2);

  /* Electric green (primary accent per brief) */
  --green:       #42FF88;
  --green-dim:   #21D66B;
  --green-glow:  rgba(66,255,136,0.12);
  --green-text:  #42FF88;

  /* Neutrals */
  --white:       #FFFFFF;
  --gray:        #8A94A6;
  --gray-light:  #C4CDD8;

  /* Status colors */
  --red:         #FF4E4E;
  --red-bg:      rgba(255,78,78,0.1);
  --amber:       #FFB340;
  --amber-bg:    rgba(255,179,64,0.12);
  --blue:        #4E8CFF;
  --blue-bg:     rgba(78,140,255,0.12);
  --green-bg:    rgba(66,255,136,0.1);
  --purple:      #A78BFA;
  --purple-bg:   rgba(167,139,250,0.12);

  /* Typography */
  --display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --section-v: 8rem;

  /* Motion */
  --ease:     cubic-bezier(0.22,1,0.36,1);
  --ease-out: cubic-bezier(0,0,0.2,1);

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;
}

/* === BASE ================================================================= */
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === UTILITY CLASSES ====================================================== */
.text-green {
  background: linear-gradient(135deg, var(--green) 0%, #B8FDD2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.125rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.28rem 0.8rem;
  border: 1px solid rgba(66,255,136,0.28);
  border-radius: 100px;
  background: rgba(66,255,136,0.07);
  margin-bottom: 1.375rem;
}

.section-tag--red {
  color: var(--red);
  border-color: rgba(255,78,78,0.28);
  background: rgba(255,78,78,0.07);
}

/* === STATUS PILLS ========================================================= */
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}
.pill--green  { color: var(--green);  background: var(--green-bg);  border: 1px solid rgba(66,255,136,0.25); }
.pill--amber  { color: var(--amber);  background: var(--amber-bg);  border: 1px solid rgba(255,179,64,0.25); }
.pill--red    { color: var(--red);    background: var(--red-bg);    border: 1px solid rgba(255,78,78,0.25); }
.pill--blue   { color: var(--blue);   background: var(--blue-bg);   border: 1px solid rgba(78,140,255,0.25); }
.pill--sm { font-size: 0.62rem; padding: 0.18rem 0.5rem; }

/* === BUTTONS ============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-md);
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: #0A0E14;
  box-shadow: 0 4px 20px rgba(66,255,136,0.28);
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(66,255,136,0.44);
}
.btn--green:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--border-md); }

.btn--outline {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid var(--border-md);
}
.btn--outline:hover { color: var(--white); border-color: var(--border-lg); background: rgba(255,255,255,0.04); }

.btn--lg { padding: 0.875rem 1.75rem; font-size: 1rem; border-radius: var(--r-md); }

/* === EYEBROW ============================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  padding: 0.3rem 0.875rem;
  border: 1px solid rgba(66,255,136,0.22);
  border-radius: 100px;
  background: rgba(66,255,136,0.06);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2.2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(66,255,136,0.5); }
  50%      { opacity:.75; box-shadow:0 0 0 5px rgba(66,255,136,0); }
}

/* ============================================================
   NAVIGATION
============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  z-index: 300;
  background: transparent;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  box-shadow: 0 0 12px rgba(66,255,136,0.6);
  transition: width 0.1s linear;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 2rem;
  transition: background 0.35s var(--ease), border-color 0.35s;
}

.nav.is-scrolled {
  background: rgba(11,14,20,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 28px; width: auto; }

.nav__links {
  display: flex; list-style: none; gap: 0.125rem; margin-left: auto;
}
.nav__links a {
  display: block;
  padding: 0.45rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav__actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease); transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 199;
  background: rgba(11,14,20,0.97);
  backdrop-filter: blur(24px);
  padding: 5.5rem 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.nav__drawer.is-open { transform: translateY(0); }
.nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.nav__drawer a {
  display: block; padding: 0.75rem 1rem;
  font-size: 1.1rem; font-weight: 600; font-family: var(--display);
  color: rgba(255,255,255,0.75); border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
}
.nav__drawer a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav__drawer .btn--green { width: 100%; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 80px;
}

.hero__fx {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(66,255,136,0.08) 0%, transparent 70%);
  top: -20%; left: -8%;
  animation: orb1 24s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,140,255,0.1) 0%, transparent 70%);
  bottom: -10%; right: 10%;
  animation: orb2 30s ease-in-out infinite;
}

@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(6%,8%) scale(1.1); }
  66%     { transform: translate(-5%,3%) scale(0.92); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-8%,6%) scale(1.12); }
  66%     { transform: translate(5%,-5%) scale(0.9); }
}

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

.hero__inner {
  position: relative; z-index: 1; flex: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero__content { display: flex; flex-direction: column; align-items: flex-start; }

.hero__h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero__em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green) 0%, #A8FFD0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 2.25rem;
}

.hero__ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero__trust {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
  line-height: 1.5;
  border-left: 2px solid rgba(66,255,136,0.3);
  padding-left: 0.875rem;
}

/* Hero visual */
.hero__visual { position: relative; }

/* Scroll cue */
.hero__scroll-cue {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.5rem 2rem 2.5rem;
}
.hero__scroll-cue span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.scroll-track { width: 1px; height: 44px; background: rgba(255,255,255,0.06); overflow: hidden; }
.scroll-thumb { width: 100%; height: 50%; background: var(--green); animation: scroll-cue 2.2s ease-in-out infinite; }
@keyframes scroll-cue {
  0%   { transform: translateY(-100%); opacity:0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(200%); opacity:0; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
  overflow: hidden;
  padding: 1.5rem 0;
}
.trust__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.trust__label {
  font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.trust__marquee {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust__track {
  display: flex; gap: 2rem; align-items: center;
  animation: marquee 32s linear infinite;
  white-space: nowrap; width: max-content;
}
.trust__track span {
  font-family: var(--display);
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.trust__dot { color: rgba(66,255,136,0.3) !important; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   PAIN SECTION
============================================================ */
.pain { padding: var(--section-v) 2rem; }
.pain__inner { max-width: var(--container); margin: 0 auto; }

.pain__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pain-card:hover { transform: translateY(-3px); border-color: rgba(255,78,78,0.25); }

.pain-card__icon { font-size: 1.375rem; }
.pain-card__text { font-size: 0.85rem; color: var(--gray-light); line-height: 1.45; }

.pain__punch {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(66,255,136,0.2);
  border-radius: var(--r-xl);
  background: rgba(66,255,136,0.04);
}
.pain__punch-line {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ============================================================
   WORKFLOW TIMELINE
============================================================ */
.workflow {
  padding: var(--section-v) 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(22,35,107,0.06) 50%, transparent 100%);
  position: relative;
}

.workflow__inner { max-width: var(--container); margin: 0 auto; }

.wf-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: none;
}
.wf-timeline::-webkit-scrollbar { display: none; }

.wf-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}

.wf-step__node {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.wf-step__node:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
  background: var(--bg-raised);
}

.wf-step--active .wf-step__node {
  background: var(--green-bg);
  border-color: rgba(66,255,136,0.5);
  box-shadow: 0 0 24px rgba(66,255,136,0.2);
}

.wf-step__num {
  position: absolute;
  top: -8px; right: -8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-md);
  font-size: 0.55rem; font-weight: 800;
  font-family: var(--display);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
}

.wf-step--active .wf-step__num { color: var(--green); border-color: rgba(66,255,136,0.4); }

.wf-step__icon { width: 22px; height: 22px; color: var(--gray); }
.wf-step--active .wf-step__icon { color: var(--green); }

.wf-step__label {
  font-family: var(--display);
  font-size: 0.7rem; font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-align: center;
}
.wf-step--active .wf-step__label { color: var(--white); }

.wf-connector {
  flex: 0 0 40px; height: 1px;
  background: linear-gradient(90deg, var(--border-md), var(--border));
  position: relative;
  margin-top: -36px;
  flex-shrink: 0;
}
.wf-connector--active {
  background: linear-gradient(90deg, rgba(66,255,136,0.6), rgba(66,255,136,0.2));
}

.wf-copy {
  text-align: center; max-width: 560px; margin: 3rem auto 0;
  font-size: 1rem; color: var(--gray); line-height: 1.7;
}

/* ============================================================
   REAL PRODUCT SCREENSHOTS — proof gallery
============================================================ */
.wf-proof { margin-top: 5rem; }
.wf-proof__head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.wf-proof__h3 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin: 0.75rem 0 0.75rem;
}
.wf-proof__sub { margin: 0 auto; }

.wf-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.proof-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-md);
  aspect-ratio: 4 / 3;
  background: #050708;
  cursor: pointer;
}
.proof-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.5s var(--ease);
}
.proof-card:hover img { transform: scale(1.06); }
.proof-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,7,8,0.85) 100%);
  pointer-events: none;
}
.proof-card__label {
  position: absolute; left: 0.875rem; bottom: 0.75rem; z-index: 1;
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  color: var(--white);
}

/* ============================================================
   PLATFORM PILLARS
============================================================ */
.pillars {
  padding: var(--section-v) 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars__inner { max-width: var(--container); margin: 0 auto; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.875rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pillar-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.035) 0%, transparent 60%);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.pillar-card:hover { transform: translateY(-5px); border-color: var(--border-md); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.pillar-card:hover::after { opacity: 1; }

.pillar-card--green {
  background: rgba(66,255,136,0.04);
  border-color: rgba(66,255,136,0.18);
}
.pillar-card--green:hover {
  border-color: rgba(66,255,136,0.35);
  box-shadow: 0 20px 60px rgba(66,255,136,0.08);
}

.pillar-card__num {
  font-family: var(--display);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
  position: absolute; top: 1.5rem; right: 1.5rem;
}

.pillar-card__tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(66,255,136,0.22);
  border-radius: 100px;
  padding: 0.18rem 0.5rem;
}

.pillar-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-card__icon svg { width: 22px; height: 22px; }

.pillar-card__icon--blue   { background: var(--blue-bg);   border: 1px solid rgba(78,140,255,0.25);   color: var(--blue); }
.pillar-card__icon--green  { background: var(--green-bg);  border: 1px solid rgba(66,255,136,0.25);  color: var(--green); }
.pillar-card__icon--amber  { background: var(--amber-bg);  border: 1px solid rgba(255,179,64,0.25);  color: var(--amber); }
.pillar-card__icon--purple { background: var(--purple-bg); border: 1px solid rgba(167,139,250,0.25); color: var(--purple); }

.pillar-card h3 {
  font-family: var(--display);
  font-size: 1.125rem; font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.25;
}
.pillar-card__hook { font-style: italic; color: var(--gray-light); font-size: 0.875rem; line-height: 1.45; }
.pillar-card p    { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

.pillar-card__bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.pillar-card__bullets li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.pillar-card__bullets li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--green);
}

/* Mini cards in Creative Library card */
.pillar-card__preview {
  display: flex; flex-direction: column; gap: 0.4rem;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
  margin-top: 0.25rem;
}

.mini-card {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.4rem 0.5rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.mini-card__play {
  width: 28px; height: 20px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem;
  flex-shrink: 0;
}
.mini-card--a .mini-card__play { background: linear-gradient(135deg, #003399, #0055cc); color: rgba(255,255,255,0.6); }
.mini-card--b .mini-card__play { background: linear-gradient(135deg, #003087, #0046af); color: rgba(255,255,255,0.6); }
.mini-card--c .mini-card__play { background: linear-gradient(135deg, #1a0030, #3d0070); color: rgba(255,255,255,0.6); }

.mini-card__info { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; flex: 1; }
.mini-card__title { font-size: 0.62rem; font-weight: 600; font-family: var(--display); color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Campaign preview */
.campaign-preview {
  display: flex; flex-direction: column; gap: 0.4rem;
  border-top: 1px solid var(--border); padding-top: 0.875rem;
}
.cp-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-family: var(--display);
}
.cp-name { flex: 1; color: rgba(255,255,255,0.7); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-stat { color: var(--gray); font-size: 0.65rem; white-space: nowrap; }

/* Pulse preview */
.pulse-preview { display: flex; flex-direction: column; gap: 0.5rem; }
.pulse-card {
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.pulse-card strong { color: var(--green); }
.pulse-card__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  flex-shrink: 0; margin-top: 0.3rem;
  box-shadow: 0 0 6px rgba(66,255,136,0.5);
}
.pulse-card__dot--amber { background: var(--amber); box-shadow: 0 0 6px rgba(255,179,64,0.4); }

/* ============================================================
   CHAOS NODE CANVAS
============================================================ */
.chaos-stage {
  position: relative;
  width: 100%;
  margin-bottom: 3.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 78, 78, 0.14);
  background: var(--bg-surface);
}

.chaos-canvas {
  display: block;
  width: 100%;
  height: 400px;
}

.chaos-stage__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 78, 78, 0.45);
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 768px) {
  .chaos-canvas { height: 280px; }
}

/* ============================================================
   BEFORE / AFTER
============================================================ */
.ba-section { padding: var(--section-v) 2rem; }
.ba-inner { max-width: var(--container); margin: 0 auto; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.ba-col {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.ba-col--before { border-color: rgba(255,78,78,0.18); }
.ba-col--after  { border-color: rgba(66,255,136,0.18); background: rgba(66,255,136,0.03); }

.ba-col__header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.75rem; }
.ba-col__badge {
  font-family: var(--display); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 100px;
}
.ba-col__badge--before { color: var(--red); background: var(--red-bg); border: 1px solid rgba(255,78,78,0.25); }
.ba-col__badge--after  { color: var(--green); background: var(--green-bg); border: 1px solid rgba(66,255,136,0.25); }

.ba-col__header h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.015em;
}

.ba-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.ba-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9rem; color: var(--gray-light); line-height: 1.45; }
.ba-x     { color: var(--red);   font-weight: 700; flex-shrink: 0; }
.ba-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

.ba-divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.5rem; padding-top: 6rem;
}
.ba-divider__line {
  flex: 1; width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-md), transparent);
}
.ba-divider__arrow {
  font-size: 1.25rem; color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(66,255,136,0.3);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   ROLES
============================================================ */
.roles { padding: var(--section-v) 2rem; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roles__inner { max-width: var(--container); margin: 0 auto; }

.roles__tab-bar {
  display: flex; gap: 0.375rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-raised);
  padding: 0.375rem;
  width: fit-content;
  margin-left: auto; margin-right: auto;
}

.role-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--display); font-size: 0.875rem; font-weight: 600;
  color: var(--gray);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.role-tab:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.role-tab--active { color: #0A0E14; background: var(--green); }

.roles__panels { }

.role-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.role-panel[hidden] { display: none; }

.role-panel__headline {
  font-family: var(--display);
  font-size: 1.375rem; font-weight: 700;
  line-height: 1.3; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.role-panel__list {
  list-style: none; display: flex; flex-direction: column; gap: 0.625rem;
}
.role-panel__list li {
  font-size: 0.9rem; color: var(--gray-light);
  padding-left: 1.25rem; position: relative; line-height: 1.45;
}
.role-panel__list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Role visuals */
.role-visual {
  display: flex; flex-direction: column; gap: 0.875rem;
  padding: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
}

.rv-stat {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.rv-stat:last-child { border-bottom: none; padding-bottom: 0; }
.rv-stat span { font-family: var(--display); font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; }
.rv-stat small { font-size: 0.75rem; color: var(--gray); }

.rv-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.82rem; color: var(--gray-light); }

.rv-upload {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem;
  border: 2px dashed rgba(66,255,136,0.2); border-radius: var(--r-md);
  font-size: 0.85rem; color: var(--gray); text-align: center;
}
.rv-upload__icon { font-size: 1.75rem; }

/* ============================================================
   AI SECTION
============================================================ */
.ai-section {
  padding: var(--section-v) 2rem;
  position: relative; overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(66,255,136,0.06) 0%, transparent 65%);
  left: -15%; top: 50%; transform: translateY(-50%);
  border-radius: 50%; filter: blur(50px); pointer-events: none;
}

.ai-section__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative; z-index: 1;
}

.ai-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
.ai-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.925rem; color: rgba(255,255,255,0.8); }
.ai-check { color: var(--green); font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }

.ai-note {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.625rem 0.875rem;
  background: rgba(66,255,136,0.05);
  border: 1px solid rgba(66,255,136,0.18);
  border-radius: var(--r-sm);
  font-size: 0.78rem; color: var(--gray-light); line-height: 1.4;
  font-style: italic;
}

/* AI Chat mockup */
.ai-chat {
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 48px 140px rgba(0,0,0,0.55);
}

.ai-chat__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
}
.ai-chat__status {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ai-chat__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(66,255,136,0.6);
  animation: pulse-dot 2s ease infinite;
}
.ai-chat__live {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); background: var(--green-bg);
  border: 1px solid rgba(66,255,136,0.25); border-radius: 100px;
  padding: 0.15rem 0.5rem;
}

.ai-chat__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

.ai-chat__msg { display: flex; gap: 0.625rem; }
.ai-chat__msg--user { justify-content: flex-end; }

.ai-chat__msg--user .ai-chat__bubble {
  background: rgba(78,140,255,0.15);
  border: 1px solid rgba(78,140,255,0.25);
  color: rgba(255,255,255,0.88);
  border-radius: 16px 16px 4px 16px;
  max-width: 82%; font-size: 0.82rem;
  padding: 0.625rem 0.875rem; line-height: 1.5;
}

.ai-chat__msg--ai .ai-chat__bubble {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.82);
  border-radius: 4px 16px 16px 16px;
  font-size: 0.82rem; padding: 0.875rem 1rem;
  flex: 1; line-height: 1.55;
}
.ai-chat__msg--ai .ai-chat__bubble p { margin-bottom: 0; }

.ai-chat__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.48rem; font-weight: 800; color: #050A05;
  flex-shrink: 0; align-self: flex-start; margin-top: 2px;
}

.ai-hl { color: var(--green); font-weight: 600; }

.ai-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 44px; margin-top: 0.875rem;
  padding-top: 0.625rem; border-top: 1px solid var(--border);
}
.ai-bar {
  flex: 1; height: var(--h,50%);
  background: rgba(66,255,136,0.22);
  border-radius: 3px 3px 0 0;
  position: relative; display: flex; align-items: flex-start;
}
.ai-bar--active { background: var(--green); }
.ai-bar span {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  font-size: 0.42rem; color: var(--gray); white-space: nowrap;
}

.typing-dots { display: flex; gap: 4px; align-items: center; height: 18px; }
.typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gray); animation: typing 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

.ai-chat__input {
  display: flex; gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.15);
}
.ai-chat__input input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 0.5rem 0.875rem; font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.ai-chat__send {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--green); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #060A06;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.ai-chat__send:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(66,255,136,0.35); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: var(--section-v) 2rem;
  position: relative; overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(66,255,136,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-90%, -50%);
}
.cta-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,140,255,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(15%, -50%);
}

.cta-section__inner {
  max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}

.cta-section__h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.035em; margin-bottom: 1.125rem;
}

.cta-section__sub { font-size: 1rem; color: var(--gray); line-height: 1.7; margin-bottom: 2.5rem; }

.cta-form { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.cta-email {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-md); border-radius: var(--r-md);
  padding: 0.875rem 1.25rem; font-size: 0.9rem; color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.cta-email::placeholder { color: rgba(255,255,255,0.25); }
.cta-email:focus { border-color: rgba(66,255,136,0.45); background: rgba(255,255,255,0.08); outline: none; }
.cta-email.is-error { border-color: rgba(255,78,78,0.55); animation: shake 0.35s var(--ease); }

@keyframes shake {
  0%,100%{ transform: translateX(0); }
  25%    { transform: translateX(-6px); }
  75%    { transform: translateX(6px); }
}

.cta-fine { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* ============================================================
   FOOTER
============================================================ */
.footer { border-top: 1px solid var(--border); padding: 5rem 2rem 2rem; }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--border); margin-bottom: 2rem;
}

.footer__brand-link { display: inline-flex; margin-bottom: 1rem; }
.footer__logo { height: 26px; width: auto; }
.footer__tagline { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 0.5rem; }
.footer__powered { font-size: 0.68rem; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; margin-top: 0.75rem; }

.footer__col h4 {
  font-family: var(--display); font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer__col a { display: block; font-size: 0.875rem; color: var(--gray); margin-bottom: 0.625rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.18);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-delay="60"]  { transition-delay: 0.06s; }
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="120"] { transition-delay: 0.12s; }
[data-delay="140"] { transition-delay: 0.14s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="180"] { transition-delay: 0.18s; }
[data-delay="220"] { transition-delay: 0.22s; }
[data-delay="260"] { transition-delay: 0.26s; }
[data-delay="280"] { transition-delay: 0.28s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="340"] { transition-delay: 0.34s; }
[data-delay="360"] { transition-delay: 0.36s; }
[data-delay="380"] { transition-delay: 0.38s; }

/* ============================================================
   HERO EYEBROW
============================================================ */
.hero__eyebrow { margin-bottom: 0.25rem; }

/* ============================================================
   NOT-ANOTHER STRIP
============================================================ */
.notx {
  padding: 2.75rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(66,255,136,0.025), transparent);
}
.notx__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.notx__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem 2rem;
  margin-bottom: 1.5rem;
}
.notx__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.95rem; font-weight: 600;
  color: var(--gray);
}
.notx__item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; opacity: 0.7; }
.notx__punch {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 700px; margin: 0 auto;
}

/* ============================================================
   THE BREAKTHROUGH — offer card + radial campaign spawn
============================================================ */
.bt-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 2.5rem;
}

/* Hero placement — the generation sequence lives inside .hero__visual */
.bt-stage--hero { max-width: 560px; margin: 0 auto; --bt-offer-w: 240px; --bt-node-w: 172px; }

/* Offer card — center of the stage */
.bt-offer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: var(--bt-offer-w, 300px);
  z-index: 3;
  background: rgba(17,22,32,0.92);
  border: 1px solid rgba(66,255,136,0.28);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 70px rgba(0,0,0,0.55), 0 0 60px rgba(66,255,136,0.1);
  padding: 1.125rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.bt-offer__head {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-light);
}
.bt-offer__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px rgba(66,255,136,0.6);
  animation: pulse-dot 2.2s ease infinite;
  flex-shrink: 0;
}
.bt-offer__timer {
  margin-left: auto; font-family: var(--display); font-weight: 700;
  color: var(--green); letter-spacing: 0.02em; font-size: 0.72rem;
}
.bt-offer__body { display: flex; flex-direction: column; gap: 0.375rem; }
.bt-offer__line {
  font-family: var(--display); font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.85); line-height: 1.4;
}
.bt-offer__line--dim { font-weight: 500; color: var(--gray); font-size: 0.7rem; }
.bt-offer__cursor {
  display: inline-block; width: 2px; height: 0.9em; background: var(--green);
  margin-left: 3px; vertical-align: -2px;
  animation: bt-blink 0.9s step-end infinite;
}
@keyframes bt-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.bt-offer__foot { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.25rem; border-top: 1px solid var(--border); }
.bt-ring { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.bt-ring svg { width: 40px; height: 40px; transform: rotate(-90deg); }
.bt-ring__bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 5; }
.bt-ring__fg { fill: none; stroke: var(--green); stroke-width: 5; stroke-linecap: round; }
.bt-ring__pct {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 0.58rem; font-weight: 700; color: var(--green);
}
.bt-offer__status { font-size: 0.7rem; color: var(--gray); line-height: 1.3; }

.bt-ready svg { width: 16px; height: 16px; flex-shrink: 0; }
.bt-ready {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  color: var(--green);
  background: var(--green-bg); border: 1px solid rgba(66,255,136,0.25);
  border-radius: 100px; padding: 0.35rem 0.7rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.bt-ready.is-visible { opacity: 1; transform: translateY(0); }

/* Connector lines */
.bt-lines { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; }
.bt-lines line {
  stroke: var(--green);
  stroke-width: 0.35;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 0.7s var(--ease), opacity 0.3s ease;
}
.bt-lines line.is-visible { stroke-dashoffset: 0; opacity: 0.35; }

/* Deliverable nodes — radial ring on desktop */
.bt-nodes { position: absolute; inset: 0; z-index: 2; }
.bt-node {
  position: absolute;
  top: var(--y); left: var(--x);
  transform: translate(-50%, -50%) scale(0.4);
  width: var(--bt-node-w, 208px);
  display: flex; align-items: center; gap: 0.625rem;
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 0.625rem 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.bt-node.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.bt-node__icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.bt-node__icon svg { width: 17px; height: 17px; }
.bt-node__icon--blue   { background: var(--blue-bg);   color: var(--blue); }
.bt-node__icon--green  { background: var(--green-bg);  color: var(--green); }
.bt-node__icon--amber  { background: var(--amber-bg);  color: var(--amber); }
.bt-node__icon--purple { background: var(--purple-bg); color: var(--purple); }
.bt-node__body { min-width: 0; flex: 1; }
.bt-node__title { font-family: var(--display); font-size: 0.75rem; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-node__meta { font-size: 0.64rem; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bt-node__badge { position: absolute; top: -8px; right: -6px; }

.bt-replay {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-size: 0.85rem; font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 0.7rem 1.375rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.bt-replay svg { width: 16px; height: 16px; color: var(--green); transition: transform 0.4s var(--ease); }
.bt-replay:hover { background: rgba(66,255,136,0.08); border-color: rgba(66,255,136,0.3); transform: translateY(-1px); }
.bt-replay:active svg { transform: rotate(180deg); }
.bt-replay--hero { display: flex; margin: 1.5rem auto 0; font-size: 0.78rem; padding: 0.55rem 1.1rem; opacity: 0.85; }
.bt-replay--hero:hover { opacity: 1; }

/* ============================================================
   MARKET INTELLIGENCE
============================================================ */
.intel { padding: var(--section-v) 2rem; }
.intel__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem;
  align-items: center;
}
.intel__sub { max-width: 100%; margin: 0 0 1.5rem; text-align: left; }
.intel__list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.intel__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.intel__note { font-size: 0.9rem; color: var(--gray); line-height: 1.7; border-left: 2px solid rgba(66,255,136,0.3); padding-left: 1rem; }

.intel-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}
.intel-card__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.125rem; }
.intel-card__eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.25rem; }
.intel-card__title { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.intel-card__grade { display: flex; align-items: center; gap: 0.6rem; }
.intel-card__grade-val {
  font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--green);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-bg); border: 1px solid rgba(66,255,136,0.3);
}
.intel-card__grade-label { font-size: 0.62rem; color: var(--gray); line-height: 1.3; }

.intel-card__thesis {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.55;
  background: rgba(66,255,136,0.05); border: 1px solid rgba(66,255,136,0.18);
  border-radius: var(--r-md); padding: 0.75rem 0.875rem;
  margin-bottom: 1.125rem;
}
.intel-card__thesis svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15rem; }

.intel-card__chips { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.intel-chip {
  font-size: 0.72rem; font-weight: 600; font-family: var(--display);
  color: var(--gray); padding: 0.35rem 0.75rem;
  border: 1px solid var(--border); border-radius: 100px;
}
.intel-chip--active { color: var(--bg); background: var(--green); border-color: var(--green); }

.intel-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.intel-stat { display: flex; flex-direction: column; gap: 0.2rem; text-align: center; background: rgba(0,0,0,0.2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0.75rem 0.5rem; }
.intel-stat__val { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--white); }
.intel-stat__label { font-size: 0.62rem; color: var(--gray); line-height: 1.3; }

.intel-card__divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }

.intel-card__budget-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.875rem; }
.intel-card__budget-head span:first-child { font-family: var(--display); font-weight: 700; font-size: 0.85rem; }
.intel-card__budget-total { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--green); }
.intel-card__budget-total small { font-size: 0.6rem; color: var(--gray); font-weight: 500; }

.intel-bars { display: flex; flex-direction: column; gap: 0.625rem; }
.intel-bar { display: grid; grid-template-columns: 100px 1fr 56px; align-items: center; gap: 0.75rem; }
.intel-bar__label { font-size: 0.72rem; color: var(--gray-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.intel-bar__track { height: 6px; border-radius: 100px; background: rgba(255,255,255,0.06); overflow: hidden; }
.intel-bar__fill {
  height: 100%; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  transition: width 1.1s var(--ease);
}
.intel-bar.is-visible .intel-bar__fill { width: var(--w); }
.intel-bar__val { font-family: var(--display); font-size: 0.72rem; font-weight: 700; color: var(--white); text-align: right; }

/* ============================================================
   PLATFORM TIERS — three clean engine cards
============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.tier-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.tier-card:hover { transform: translateY(-4px); border-color: rgba(66,255,136,0.25); }

.tier-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #050708;
}
.tier-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,14,20,0.65) 100%);
}
.tier-card__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.tier-card:hover .tier-card__media img { transform: scale(1.05); }
.tier-card__num {
  position: absolute; top: 0.875rem; right: 0.875rem; z-index: 1;
  font-family: var(--display); font-size: 0.68rem; font-weight: 800;
  color: rgba(255,255,255,0.9);
  background: rgba(11,14,20,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.25rem 0.6rem;
  backdrop-filter: blur(6px);
}

.tier-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.tier-card__icon {
  width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.375rem;
}
.tier-card__icon svg { width: 19px; height: 19px; }
.tier-card__icon--green  { background: var(--green-bg);  color: var(--green);  border: 1px solid rgba(66,255,136,0.25); }
.tier-card__icon--blue   { background: var(--blue-bg);   color: var(--blue);   border: 1px solid rgba(78,140,255,0.25); }
.tier-card__icon--purple { background: var(--purple-bg); color: var(--purple); border: 1px solid rgba(167,139,250,0.25); }

.tier-card__body h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.tier-card__body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

.tier-card__list { display: flex; flex-direction: column; gap: 0.4rem; margin: 0.375rem 0 0.25rem; }
.tier-card__list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: rgba(255,255,255,0.78); }

.tier-card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.5rem; font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  color: var(--green);
}
.tier-card__link svg { transition: transform 0.2s var(--ease); }
.tier-card__link:hover svg { transform: translateX(3px); }

/* ============================================================
   OPERATORS TRUST BLOCK
============================================================ */
.operators { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.operators__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.operators__mark { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.operators__mark svg { width: 40px; height: 40px; }
.operators__h2 { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
.operators__body { color: var(--gray); font-size: 1rem; line-height: 1.75; }

/* CTA vision line */
.cta-vision {
  max-width: 640px; margin: 0 auto 1.75rem;
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  :root { --section-v: 6rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { align-items: center; }
  .hero__sub { max-width: 100%; }
  .hero__trust { border-left: none; padding-left: 0; border-top: 1px solid rgba(66,255,136,0.2); padding-top: 0.75rem; }
  .hero__visual { width: 100%; margin-top: 3rem; display: flex; flex-direction: column; align-items: center; }

  .tiers { grid-template-columns: repeat(2, 1fr); }
  .ai-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .roles__panels .role-panel { grid-template-columns: 1fr; gap: 2rem; }

  .ba-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ba-divider { flex-direction: row; padding: 0; }
  .ba-divider__line { flex: 1; height: 1px; width: auto; background: linear-gradient(90deg, transparent, var(--border-md), transparent); }
  .ba-divider__arrow { transform: rotate(90deg); }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }

  .intel__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .intel__sub, .intel__note { text-align: left; }

  .wf-proof__grid { grid-template-columns: repeat(3, 1fr); }

  .bt-stage { max-width: 620px; }
  .bt-offer { width: 260px; }
  .bt-node { width: 176px; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  :root { --section-v: 5rem; }
  .nav__links, .nav__signin { display: none; }
  .nav__hamburger { display: flex; }

  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; }
  .wf-proof__grid { grid-template-columns: repeat(2, 1fr); }

  .wf-step__node { width: 48px; height: 48px; }
  .wf-step__icon { width: 18px; height: 18px; }
  .wf-connector { flex: 0 0 24px; }

  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .roles__tab-bar { border-radius: var(--r-lg); width: 100%; }
  .role-panel { padding: 1.75rem; }

  .notx__row { flex-direction: column; align-items: center; gap: 0.625rem; }

  .intel-card { padding: 1.375rem; }
  .intel-bar { grid-template-columns: 82px 1fr 48px; gap: 0.5rem; }
  .intel-bar__label { font-size: 0.66rem; }

  /* Breakthrough — collapse radial layout into a vertical timeline */
  .bt-stage { aspect-ratio: unset; height: auto; max-width: 100%; margin-bottom: 2rem; }
  .bt-offer { position: relative; top: auto; left: auto; transform: none; width: 100%; max-width: 360px; margin: 0 auto 2rem; }
  .bt-lines { display: none; }
  .bt-nodes { position: relative; display: flex; flex-direction: column; gap: 0.75rem; padding-left: 1.5rem; }
  .bt-nodes::before {
    content: ''; position: absolute; left: 0.5rem; top: 8px; bottom: 8px; width: 1px;
    background: linear-gradient(180deg, rgba(66,255,136,0.5), rgba(66,255,136,0.05));
  }
  .bt-node {
    position: relative; top: auto; left: auto;
    transform: translateY(14px);
    width: 100%; max-width: 420px; margin: 0 auto;
  }
  .bt-node.is-visible { transform: translateY(0); }
  .bt-node__badge { top: -6px; right: -4px; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .pain__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .notx__punch { font-size: 1.02rem; }
  .operators { padding: 3.5rem 1.5rem; }
  .cta-vision { font-size: 0.95rem; }
  .intel-card__stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .intel-stat { padding: 0.6rem 0.35rem; }
  .intel-stat__val { font-size: 0.9rem; }

  .wf-proof__grid { grid-template-columns: 1fr; }
}
