/*
 * MASTERPEACE AUDIO — masterpeaceaudio.com
 * Main Stylesheet
 * Version 1.0 — July 2026
 *
 * Font note: Space Grotesk (Google Fonts) is placeholder for Neue Haas Grotesk Display.
 * Replace with licensed Neue Haas Grotesk Display before launch.
 */

/* ─────────────────────────────────────────
   TOKENS (inline from design_tokens.css)
───────────────────────────────────────── */

:root {
  --void:    #0B0B0D;
  --surface: #161618;
  --charcoal:#1E1E22;
  --fog:     #E8E4DC;
  --silver:  #A9A9AA;
  --gold:    #D4AF37;
  --gold-pale: #E8C84A;
  --gold-deep: #8C6E1F;
  --slate:   #3A3A42;
  --divider: #2A2A32;
  --footer-bg: #080808;
  --footer-text: #5A5A62;
  --ember:   #8C3420;

  --font-display: 'Space Grotesk', 'Neue Haas Grotesk Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', 'Roboto Mono', 'SF Mono', Menlo, monospace;

  --nav-height: 72px;
  --max-w: 1280px;
  --max-w-narrow: 720px;
  --pad-x: clamp(24px, 5vw, 64px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: var(--void);
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background 240ms ease, border-color 240ms ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(11, 11, 13, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--divider);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--fog);
  text-transform: uppercase;
  line-height: 1;
}

.nav-wordmark span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--silver);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 120ms ease;
}

.nav-link:hover { color: var(--fog); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fog);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(11, 11, 13, 0.98);
  border-bottom: 1px solid var(--divider);
  padding: 24px var(--pad-x) 32px;
  z-index: 99;
}

.nav-mobile-menu.open { display: block; }

.nav-mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  color: var(--fog);
  border-bottom: 1px solid var(--divider);
}

.nav-mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 120ms ease, color 120ms ease, box-shadow 120ms ease, transform 80ms ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--gold);
  color: var(--void);
}

.btn--primary:hover {
  background: var(--gold-pale);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid var(--divider);
}

.btn--ghost:hover {
  border-color: var(--silver);
  color: var(--fog);
}

.btn--lg {
  font-size: 14px;
  padding: 18px 36px;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */

.section {
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow-x: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

/* Gradient applied to inline spans — sized to text width, so no edge clipping */
.hero-headline span {
  display: inline;
  background: linear-gradient(to bottom, #F0D870 0%, #D4AF37 40%, #A8862A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.plugin-wrap {
  width: 100%;
  max-width: 620px;
  position: relative;
}

.plugin-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.plugin-wrap svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}

.hero-value-strip {
  padding: 32px 0;
  border-top: 1px solid var(--divider);
  margin-top: 40px;
}

.hero-value-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.value-item {
  padding: 28px 32px 28px 0;
  border-right: 1px solid var(--divider);
}

.value-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.value-item:nth-child(2) {
  padding-left: 32px;
  padding-right: 32px;
}

.value-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-item-body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--silver);
}

/* ─────────────────────────────────────────
   PROBLEM / SOLUTION (prose sections)
───────────────────────────────────────── */

.section-prose {
  padding: 120px 0;
}

.section-prose--alt {
  background: #111113;
}

.prose-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fog);
  margin-bottom: 32px;
}

.prose-headline em {
  font-style: normal;
  color: var(--gold);
}

.prose-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--silver);
}

.prose-body p + p {
  margin-top: 20px;
}

.prose-body strong {
  color: var(--fog);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */

.section-features {
  padding: 120px 0;
  background: var(--void);
}

.features-header {
  margin-bottom: 56px;
}

.features-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fog);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.feature-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 160ms ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-pale));
  opacity: 0;
  transition: opacity 200ms ease;
}

.feature-card:hover { background: var(--charcoal); }
.feature-card:hover::before { opacity: 1; }

.feature-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: var(--gold);
}

.feature-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--fog);
  margin-bottom: 14px;
}

.feature-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */

.section-pricing {
  padding: 120px 0;
  background: #111113;
  position: relative;
  overflow: hidden;
}

.section-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.pricing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 56px 48px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-deep), var(--gold-pale), var(--gold-deep));
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fog);
  margin-bottom: 8px;
}

.pricing-price sup {
  font-size: 32px;
  vertical-align: top;
  margin-top: 14px;
  display: inline-block;
  color: var(--silver);
  font-weight: 500;
}

.pricing-launch-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.pricing-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 36px;
}

.pricing-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pricing-includes {
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.pricing-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}

.pricing-includes-item::before {
  content: '—';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-spec {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--footer-text);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   WAITLIST
───────────────────────────────────────── */

.section-waitlist {
  padding: 100px 0;
  background: var(--charcoal);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}

.section-waitlist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fog);
  margin-bottom: 16px;
}

.waitlist-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
}

.waitlist-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.waitlist-input {
  flex: 1;
  height: 52px;
  background: var(--void);
  border: 1px solid var(--divider);
  border-radius: 2px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fog);
  outline: none;
  transition: border-color 120ms ease;
  -webkit-appearance: none;
}

.waitlist-input::placeholder {
  color: var(--footer-text);
}

.waitlist-input:focus {
  border-color: var(--gold);
}

.waitlist-legal {
  font-size: 12px;
  color: var(--footer-text);
  line-height: 1.5;
}

.waitlist-success {
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}

.waitlist-success p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fog);
  margin-bottom: 6px;
}

.waitlist-success span {
  font-size: 13px;
  color: var(--silver);
}

@media (max-width: 768px) {
  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-input-row {
    flex-direction: column;
  }

  .waitlist-input-row .btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   FOOTER CTA
───────────────────────────────────────── */

.section-footer-cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-footer-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.footer-cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fog);
  margin-bottom: 40px;
}

.footer-cta-headline em {
  font-style: normal;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--divider);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--footer-text);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  color: var(--footer-text);
  transition: color 120ms ease;
}

.footer-link:hover { color: var(--silver); }

.footer-legal {
  font-size: 11px;
  color: var(--footer-text);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ─────────────────────────────────────────
   DIVIDER
───────────────────────────────────────── */

.rule {
  width: 100%;
  height: 1px;
  background: var(--divider);
}

.rule--gold {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ─────────────────────────────────────────
   INNER PAGE HERO
───────────────────────────────────────── */

.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--divider);
}

.page-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fog);
  margin-bottom: 20px;
}

.page-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--silver);
  max-width: 560px;
}

/* ─────────────────────────────────────────
   PRODUCT PAGE
───────────────────────────────────────── */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
}

.spec-table tr {
  border-bottom: 1px solid var(--divider);
}

.spec-table td {
  padding: 16px 0;
  font-size: 15px;
  vertical-align: top;
}

.spec-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  width: 200px;
  padding-right: 24px;
}

.spec-table td:last-child {
  color: var(--fog);
}

.feature-list {
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

.feature-list-item {
  background: var(--surface);
  padding: 32px;
}

.feature-list-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fog);
  margin-bottom: 8px;
}

.feature-list-item-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--silver);
}

/* ─────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────── */

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--divider);
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 32px 0;
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--fog);
  margin-bottom: 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.faq-question span {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.75;
  color: var(--silver);
  max-width: 640px;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */

.about-content {
  padding: 80px 0 120px;
  max-width: 680px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 28px;
}

.about-content p strong {
  color: var(--fog);
  font-weight: 500;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  margin: 56px 0;
}

.about-stat {
  background: var(--surface);
  padding: 36px 32px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--silver);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

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

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

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

  .plugin-wrap { max-width: 760px; }

  .hero-value-strip-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .value-item,
  .value-item:nth-child(2),
  .value-item:last-child {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }

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

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

  .pricing-includes {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .section-prose { padding: 80px 0; }
  .section-features { padding: 80px 0; }
  .section-pricing { padding: 80px 0; }
  .section-footer-cta { padding: 100px 0; }

  .pricing-card { padding: 40px 28px; }

  .pricing-price {
    font-size: 64px;
  }

  .pricing-includes {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .features-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-value-strip {
    display: none;
  }
}

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

  .hero-ctas .btn {
    text-align: center;
  }

  .pricing-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}
