/* ═══════════════════════════════════════════════════════════
   NMP Docs — Shared Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:   #000;
  --dark:    #0a0a0a;
  --surface: #0d0d0d;
  --card:    #141414;
  --card2:   #1c1c1c;
  --border:  rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.16);
  --text:    rgba(255,255,255,0.85);
  --muted:   rgba(255,255,255,0.45);
  --dim:     rgba(255,255,255,0.28);
  --white:   #fff;
  --accent:  #fff;
  --accent-hover: #e8e8e8;
  --nav-h:   64px;
  --sidebar-w: 260px;
  --code-bg: #0e0e0e;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Futura PT', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   NAV BAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo span { opacity: 0.45; font-weight: 400; margin-left: 6px; font-size: 0.9rem; letter-spacing: 0.04em; }

.nav-swoosh {
  height: 20px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.nav-logo-name {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar nav { display: flex; gap: 28px; align-items: center; }
.navbar nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
  transform-origin: left;
}
.navbar nav a:hover { color: var(--white); }
.navbar nav a:hover::after { transform: scaleX(1); }
.navbar nav a.active { color: var(--white); }
.navbar nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--white) !important;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  animation: heroVideoSettle 3s var(--ease-out) forwards;
}
@keyframes heroVideoSettle {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
  animation: heroContentEnter 1.1s var(--ease-out) 0.2s both;
}
@keyframes heroContentEnter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Large platform name lockup above the rotating headline */
.hero-platform-name {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  white-space: nowrap;
}

.hero-swoosh {
  height: 0.7em;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 16px auto 20px;
}

.hero-rotating-headline {
  position: relative;
  font-size: clamp(1.1rem, 2.8vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 32px;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}

.rotating-word {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  white-space: nowrap;
  pointer-events: none;
}
.rotating-word.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rotating-word.exit {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.38s var(--ease-in-out), transform 0.38s var(--ease-in-out);
}

.hero-content .hero-sub {
  font-size: clamp(0.88rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--white);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.28);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.8s both;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.12); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #000;
  z-index: 9999;
  transition: opacity 0.8s var(--ease-out);
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-wordmark {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.spinner {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   LANDING PAGE SECTIONS
   ══════════════════════════════════════════ */
.section-wrapper {
  background: var(--surface);
  position: relative;
}

/* Subtle top fade from black into the surface */
.section-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--black), transparent);
  pointer-events: none;
  z-index: 1;
}

.section {
  padding: 100px 40px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.08;
}

.section > p, .section .lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  max-width: 640px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 40px;
}

/* Feature cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.card {
  background: var(--card);
  border-radius: 8px;
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--card2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.card-icon { font-size: 1.7rem; margin-bottom: 16px; line-height: 1; }
.card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Stats */
.stats { display: flex; flex-wrap: wrap; gap: 56px; margin-top: 52px; }
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
}
.stat-desc {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Docs quick-links grid */
.doc-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.doc-link-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}
.doc-link-card:hover {
  border-color: var(--border-hover);
  background: var(--card2);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
}
.doc-link-card .dlc-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.doc-link-card .dlc-title { font-size: 0.94rem; font-weight: 700; color: var(--white); }
.doc-link-card .dlc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.doc-link-card .dlc-arrow {
  margin-top: auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding-top: 10px;
  transition: color 0.2s, transform 0.2s;
}
.doc-link-card:hover .dlc-arrow {
  color: rgba(255,255,255,0.7);
  transform: translateX(3px);
}

/* CTA band */
.cta-band {
  background: var(--surface);
  color: var(--white);
  text-align: center;
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-platform-name {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  white-space: nowrap;
}

/* Footer */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  color: var(--dim);
  text-align: center;
  padding: 32px 40px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
footer a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
footer a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   DOCS PAGE LAYOUT
   ══════════════════════════════════════════ */
.docs-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* Sidebar */
.docs-sidebar {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--dark);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  z-index: 100;
  padding: 28px 0 48px;
}

.sidebar-section { margin-bottom: 28px; padding: 0 20px; }
.sidebar-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
  padding: 0 4px;
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav li a {
  display: block;
  padding: 7px 10px;
  font-size: 0.83rem;
  color: var(--muted);
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-nav li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.sidebar-nav li a.active { color: var(--white); background: rgba(255,255,255,0.07); font-weight: 600; }

/* Docs main content */
.docs-main {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-width: 0;
  background: var(--dark);
}

.docs-content {
  max-width: 820px;
  padding: 52px 60px 100px;
}

/* Doc Typography */
.docs-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.docs-content .doc-meta {
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.docs-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 14px;
  letter-spacing: -0.02em;
}
.docs-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 28px 0 10px;
}
.docs-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.docs-content p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.82;
  margin-bottom: 16px;
}
.docs-content ul, .docs-content ol { padding-left: 22px; margin-bottom: 16px; }
.docs-content li {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.82;
  margin-bottom: 4px;
}
.docs-content a { color: rgba(255,255,255,0.82); text-decoration: underline; text-underline-offset: 3px; }
.docs-content a:hover { color: var(--white); }

/* Code blocks */
.docs-content pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  overflow-x: auto;
  margin: 16px 0 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.docs-content code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 3px;
  color: rgba(255,255,255,0.82);
}
.docs-content pre code { background: none; padding: 0; font-size: inherit; }

/* Tables */
.docs-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}
.docs-content th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
}
.docs-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  vertical-align: top;
}
.docs-content tr:hover td { background: rgba(255,255,255,0.018); }
.docs-content code.status {
  font-size: 0.78rem;
  padding: 3px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  white-space: nowrap;
}

/* Callouts */
.callout {
  border-left: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin: 16px 0 24px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
}
.callout.info { border-color: #4a9eff; }
.callout.warn { border-color: #f59e0b; }
.callout strong { color: var(--white); }

/* HR */
.docs-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ══════════════════════════════════════════
   ARCHITECTURE SECTION
   ══════════════════════════════════════════ */
.arch-section {}

.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.arch-col {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.arch-col:last-child { border-right: none; }

.arch-col-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.arch-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arch-col li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.arch-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .arch-grid { grid-template-columns: 1fr 1fr; }
  .arch-col { border-right: none; border-bottom: 1px solid var(--border); }
  .arch-col:nth-child(odd) { border-right: 1px solid var(--border); }
  .arch-col:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .arch-grid { grid-template-columns: 1fr; }
  .arch-col { border-right: none !important; }
}

/* ══════════════════════════════════════════
   AI FEATURES SECTION
   ══════════════════════════════════════════ */
.ai-section {
  background: transparent;
}

.ai-features {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}

.ai-feature {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 64px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: border-color 0.3s;
}
.ai-feature:hover { border-color: rgba(255,255,255,0.12); }
.ai-feature:last-child { border-bottom: 1px solid var(--border); }

.ai-feature-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.ai-feature-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.ai-feature-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin-bottom: 24px;
}

.ai-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-feature-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.ai-feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .ai-feature { grid-template-columns: 1fr; gap: 10px 0; padding: 36px 0; }
  .ai-feature-label { position: static; }
}

/* ══════════════════════════════════════════
   SIZZLE REEL SECTION
   ══════════════════════════════════════════ */
.sizzle-section {
  background: var(--black);
  padding: 88px 0 0;
}

.sizzle-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px 52px;
  text-align: center;
}

.sizzle-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.08;
}

.sizzle-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Player wrapper */
.sizzle-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}


#sizzle-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 1;
}

@media (max-width: 640px) {
  .sizzle-inner { padding: 0 20px 40px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .docs-sidebar { width: 220px; }
  .docs-main { margin-left: 220px; }
  .docs-content { padding: 36px 28px 80px; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .navbar nav { display: none; }
  .docs-sidebar { display: none; }
  .docs-main { margin-left: 0; }
  .docs-content { padding: 24px 20px 60px; }
  .section { padding: 72px 20px; }
  .hero-content h1 { letter-spacing: -0.02em; }
  .stats { gap: 36px; }
  .divider { margin: 0 20px; }
}

