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

:root {
  --bg:         #080808;
  --surface:    #131313;
  --surface2:   #1E1E1E;
  --surface3:   #252525;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #A08A50;
  --text:       #F0EDE6;
  --text-dim:   #B5B2AD;
  --text-mid:   #D8D5D0;
  --accent:     #4A9EBF;
  --green:      #5A9E6F;
  --purple:     #9E5ABF;
  --red:        #BF5A5A;
  --pad:        24px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────
   STICKY NAV
───────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 48px; padding: 0 24px;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  flex-shrink: 0;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  gap: 4px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  font-size: 13px; color: var(--text-dim);
  text-decoration: none; padding: 6px 12px;
  border-radius: 6px; white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a.active { color: var(--gold); }
.nav-links a:hover { color: var(--text-mid); }

/* Hamburger button — mobile only */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
  padding: 0;
}

.nav-hamburger:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* Slide-in drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(280px, 85vw);
  z-index: 200;
  background: #0e0e0e;
  border-left: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  padding: 64px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--surface2);
  transition: color 0.2s;
  display: block;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--text); }
.nav-drawer a.active { color: var(--gold); }

.nav-drawer-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.nav-drawer-close:hover { color: var(--text); }

/* Overlay behind drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ─────────────────────────────────────
   SECTIONS
───────────────────────────────────── */
section {
  position: relative;
  padding: 64px var(--pad) 48px;
  overflow: hidden;
}

section + section {
  border-top: 1px solid var(--surface2);
}

/* ─────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────── */
.section-header {
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
}

.section-header h2 span { color: var(--gold); }

/* ─────────────────────────────────────
   SECTION INTRO
───────────────────────────────────── */
.section-intro {
  font-size: 18px;
  color: var(--text-mid);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────
   BACKGROUND HELPERS
───────────────────────────────────── */
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.bg-radial-gold   { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 60%); pointer-events: none; }
.bg-radial-blue   { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 30%, rgba(74,158,191,0.07) 0%, transparent 55%); pointer-events: none; }
.bg-radial-green  { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 40%, rgba(90,158,111,0.07) 0%, transparent 55%); pointer-events: none; }
.bg-radial-red    { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(191,90,90,0.05) 0%, transparent 55%); pointer-events: none; }
.bg-radial-purple { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 40%, rgba(158,90,191,0.07) 0%, transparent 55%); pointer-events: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100svh;
  padding: 72px var(--pad) 48px;
}

.hero .content { position: relative; z-index: 2; width: 100%; padding-bottom: 80px; }

.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(36px, 10.5vw, 72px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.9;
  margin-bottom: 4px;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(180deg, #F0EDE6 60%, #8A8680 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
}

.hero-character {
  max-width: 200px;
  margin: 24px auto;
  display: block;
}

/* ─────────────────────────────────────
   PILLAR CARDS (hero)
───────────────────────────────────── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.pillar-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.pillar-text strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 3px;
}

.pillar-text span {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ─────────────────────────────────────
   BADGES
───────────────────────────────────── */
.badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 420px;
  margin: 0 auto;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--surface3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────
   SCROLL HINT
───────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.scroll-hint-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dim);
  font-weight: 500;
}

.scroll-hint-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

/* ══════════════════════════════════════
   KNOWLEDGE GRID (Section 02)
══════════════════════════════════════ */
.know-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

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

.know-item {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 12px;
  padding: 16px 18px;
}

.know-item .know-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.know-item .know-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ACCESS STRIP (Section 04)
══════════════════════════════════════ */
.access-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.access-strip .badge {
  font-size: 17px;
  padding: 12px 22px;
  color: var(--text-mid);
  font-weight: 600;
}

/* ─────────────────────────────────────
   ACCESS MOMENTS
───────────────────────────────────── */
.access-moments {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.access-moments p {
  font-size: 17px;
  color: var(--text-mid);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════
   DOES CARDS (Sections 03, 06)
══════════════════════════════════════ */
.does-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.does-card {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.does-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 0 0 16px 16px;
}

.does-card.does-briefing::after  { background: linear-gradient(90deg, #C9A84C, transparent); }
.does-card.does-email::after     { background: linear-gradient(90deg, #0078D4, transparent); }
.does-card.does-meeting::after   { background: linear-gradient(90deg, var(--accent), transparent); }
.does-card.does-pipeline::after  { background: linear-gradient(90deg, #E37843, transparent); }
.does-card.does-draft::after     { background: linear-gradient(90deg, #0078D4, transparent); }
.does-card.does-calendar::after  { background: linear-gradient(90deg, var(--accent), transparent); }
.does-card.does-crm::after       { background: linear-gradient(90deg, #3ECF8E, transparent); }
.does-card.does-postmtg::after   { background: linear-gradient(90deg, var(--purple), transparent); }

.does-card .does-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}

.does-card .does-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.does-card .does-desc {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   EXAMPLE CARDS (Section 05)
══════════════════════════════════════ */
.example-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.example-card {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.example-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.example-card p {
  font-size: 17px;
  color: var(--text-mid);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.65;
}

.example-closing {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════
   PHONE FRAME
══════════════════════════════════════ */
.phone-frame {
  background: #0a0a0a;
  border: 2px solid #222;
  border-radius: 36px;
  overflow: hidden;
  padding: 12px 8px;
  max-width: 280px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.phone-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: Georgia, serif;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.illustration-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.illustration-img {
  max-width: 280px;
  display: block;
  border-radius: 12px;
}

/* ══════════════════════════════════════
   SCREENSHOT GRID (Section 07)
══════════════════════════════════════ */
.screenshot-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.screenshot-wide {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
}

.screenshot-wide img {
  width: 100%;
  display: block;
}

.screenshot-caption {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: Georgia, serif;
  margin-top: 10px;
  text-align: center;
}

.screenshot-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.screenshot-phones .phone-frame {
  max-width: 240px;
}

.screenshot-phones .phone-caption {
  text-align: center;
}

.screenshot-callouts {
  position: relative;
  z-index: 2;
}

.screenshot-callouts p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 2px solid var(--surface2);
}

/* ══════════════════════════════════════
   IMPROVES CARDS (Section 09)
══════════════════════════════════════ */
.improves-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.improves-card {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.improves-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}

.improves-card.imp-builder::before { background: linear-gradient(90deg, #5A9E6F, #C9A84C); }
.improves-card.imp-auto::before    { background: linear-gradient(90deg, #C9A84C, #BF5A5A); }
.improves-card.imp-memory::before  { background: linear-gradient(90deg, #9E5ABF, #4A9EBF); }
.improves-card.imp-review::before  { background: linear-gradient(90deg, #4A9EBF, #5A9E6F); }

.improves-card .imp-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.improves-card .imp-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.improves-card .imp-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.improves-card .imp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--surface2);
  padding-top: 14px;
}

.improves-card .imp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}

.improves-card .imp-bullets li::before {
  content: '\2192';
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 13px;
}

/* ══════════════════════════════════════
   ALWAYS ON / CLOSING (Section 10)
══════════════════════════════════════ */
.team-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.team-badges .tb {
  background: var(--surface);
  border: 1px solid var(--surface3);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.team-badges .tb strong { color: var(--gold); }

.live-badge {
  background: var(--surface);
  border: 1px solid rgba(90,158,111,0.35);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50%       { opacity: 0.5; box-shadow: 0 0 3px var(--green); }
}

.live-badge .live-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.5;
}

.live-badge .live-text strong { color: var(--green); }

.closer-text {
  font-size: 18px;
  color: var(--text-mid);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────
   CTA BUTTONS
───────────────────────────────────── */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  position: relative;
  z-index: 2;
}

.cta-subtext {
  font-size: 17px;
  color: var(--text-dim);
  font-style: italic;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}

.linkedin-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #0A66C2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1;
}

.linkedin-follow-btn:hover { background-color: #004182; }

/* ══════════════════════════════════════
   FOUNDER BIO
══════════════════════════════════════ */
.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 36px;
}

.founder-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  transition: color 0.2s;
}

.founder-name:hover { color: var(--gold-light); }

.founder-text {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
}

.founder-text a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.founder-text a:hover {
  color: var(--gold);
  text-decoration-color: rgba(201,168,76,0.5);
}

@media (min-width: 640px) {
  .founder-bio {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .founder-photo {
    width: 140px;
    height: 140px;
  }
}

/* ══════════════════════════════════════
   DEPTH TRIGGER + PANEL
══════════════════════════════════════ */
.depth-wrap {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.depth-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 13px 22px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  transition: all 0.2s;
  position: relative;
  z-index: 2;
  user-select: none;
}

.depth-trigger:hover {
  background: rgba(201,168,76,0.13);
  border-color: rgba(201,168,76,0.65);
  color: var(--gold-light);
}

.depth-trigger .arrow {
  transition: transform 0.3s;
  display: inline-block;
  font-size: 17px;
  line-height: 1;
}

.depth-trigger.open .arrow { transform: rotate(90deg); }

.depth-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.depth-panel.open { max-height: 1000px; opacity: 1; }

.depth-panel-inner {
  margin-top: 16px;
  background: rgba(74,158,191,0.04);
  border: 1px solid rgba(74,158,191,0.15);
  border-radius: 14px;
  padding: 20px 22px;
}

.depth-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.depth-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.depth-item:last-child { margin-bottom: 0; }

.depth-item .di-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  min-width: 130px;
  flex-shrink: 0;
}

.depth-item .di-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   CONFERENCE STORY CARDS
══════════════════════════════════════ */
.story-phases {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.story-phase {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.story-phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.story-phase:nth-child(1)::before { background: linear-gradient(90deg, var(--accent), transparent); }
.story-phase:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), transparent); }
.story-phase:nth-child(3)::before { background: linear-gradient(90deg, var(--green), transparent); }

.phase-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.story-phase:nth-child(1) .phase-label { color: var(--accent); }
.story-phase:nth-child(2) .phase-label { color: var(--gold-dim); }
.story-phase:nth-child(3) .phase-label { color: var(--green); }

.phase-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.phase-body {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
}

.story-stat {
  text-align: center;
  font-size: 17px;
  color: var(--text-mid);
  font-style: italic;
  font-family: Georgia, serif;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--surface2);
  border-bottom: 1px solid var(--surface2);
}

.story-stat strong {
  color: var(--gold);
  font-style: normal;
}

.video-placeholder {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 28px;
}

.video-placeholder-icon { font-size: 40px; margin-bottom: 12px; }
.video-placeholder-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* ══════════════════════════════════════
   AGENT CARDS (Meet the Agents)
══════════════════════════════════════ */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.agent-card {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 14px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 14px 14px 0 0;
}

.agent-card:nth-child(1)::before  { background: var(--gold); }
.agent-card:nth-child(2)::before  { background: var(--accent); }
.agent-card:nth-child(3)::before  { background: var(--purple); }
.agent-card:nth-child(4)::before  { background: #BF9A5A; }
.agent-card:nth-child(5)::before  { background: var(--green); }
.agent-card:nth-child(6)::before  { background: #E37843; }
.agent-card:nth-child(7)::before  { background: var(--accent); }
.agent-card:nth-child(8)::before  { background: var(--green); }
.agent-card:nth-child(9)::before  { background: var(--red); }
.agent-card:nth-child(10)::before { background: var(--gold); }
.agent-card:nth-child(11)::before { background: var(--purple); }
.agent-card:nth-child(12)::before { background: #4A9EBF; }

.agent-icon {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1;
}

.agent-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.agent-role {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 700;
  margin-bottom: 8px;
}

.agent-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .agents-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (min-width: 1024px) {
  .agents-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ══════════════════════════════════════
   SCREENSHOT FRAME (wide, sections 02)
══════════════════════════════════════ */
.screenshot-block {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════
   PRINCIPLES SECTION
══════════════════════════════════════ */
.principles-duo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.principle-block {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.principle-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.principle-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.principle-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.principle-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Tier stack (autonomy tiers) */
.tier-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
}

.tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  min-width: 58px;
  text-align: center;
}

.tier-badge.tier-0 { background: rgba(90,158,111,0.15); color: var(--green); }
.tier-badge.tier-1 { background: rgba(74,158,191,0.15); color: var(--accent); }
.tier-badge.tier-2 { background: rgba(201,168,76,0.15); color: var(--gold); }
.tier-badge.tier-3 { background: rgba(191,90,90,0.15); color: var(--red); }

.tier-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  min-width: 90px;
  flex-shrink: 0;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Profile dimensions grid */
.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-dim {
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
}

.profile-dim-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-dim-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   AGENT FRAMEWORK CALLOUT
══════════════════════════════════════ */
.agent-framework {
  font-size: 12px;
  color: var(--gold-dim);
  font-style: italic;
  font-family: Georgia, serif;
  line-height: 1.5;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--surface2);
}

/* ─────────────────────────────────────
   TABLET+ BREAKPOINT (640px+)
───────────────────────────────────── */
@media (min-width: 640px) {
  :root { --pad: 48px; }

  .section-header h2 { font-size: 54px; }

  .hero h1 { font-size: 96px; letter-spacing: -3px; }
  .badges { max-width: 600px; }

  /* Switch to scrollable nav links, hide hamburger + drawer */
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-drawer { display: none; }
  .nav-overlay { display: none; }

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

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

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

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

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

  .example-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-grid {
    display: grid;
    grid-template-rows: auto auto;
  }
}

/* ─────────────────────────────────────
   DESKTOP BREAKPOINT (1024px+)
───────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --pad: 80px; }

  .section-header h2 { font-size: 64px; }

  .hero h1 { font-size: 140px; letter-spacing: -5px; }
  .divider { width: 400px; }

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

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

  .hero-character { max-width: 260px; }
  .illustration-img { max-width: 340px; }
}
