/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --aubergine: #3D0C2F;
  --darkred:   #8B0000;
  --orange:    #FF6B2B;
  --black:     #0A0A0A;
  --dark:      #1A1A1A;
  --mid:       #242424;
  --offwhite:  #F5F5F0;
  --muted:     #888;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius:    12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h3 { font-size: 1.4rem; }

.mono { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--muted); }
.bold        { font-weight: 600; }

/* ─── LAYOUT ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 225px;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 6.75rem;
  letter-spacing: -0.04em;
  color: var(--offwhite);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-nz { color: var(--orange); }

/* Workflow nodes ARE the nav — no separate nav-links */
.nav-workflow {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  overflow: hidden;
}

/* Each node is a clickable nav link */
.wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--aubergine);
  border: 2px solid var(--orange);
  border-radius: 14px;
  padding: 12px 24px;
  min-width: 110px;
  cursor: pointer;
  text-decoration: none;
  color: var(--offwhite);
  transition: background var(--transition);
}
.wf-node:hover { background: var(--darkred); }
.wf-node.active { background: var(--darkred); border-color: #ff9966; }

.wf-icon { font-size: 1.6rem; line-height: 1; }
.wf-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.wf-node.active .wf-label { color: #ffaa88; }

.wf-node.wf-cta {
  background: var(--orange);
  border-color: var(--orange);
}
.wf-node.wf-cta .wf-label { color: var(--black); }
.wf-node.wf-cta .wf-icon { color: var(--black); }
.wf-node.wf-cta:hover { background: #ff855a; }

.wf-line {
  height: 2px;
  width: 20px;
  flex-shrink: 0;
  background: var(--orange);
  opacity: 0.5;
}

/* Hide the old text nav-links — workflow nodes replace them */
.nav-links { display: none; }
.btn-nav { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--offwhite); font-size: 1.4rem; cursor: pointer; }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 24px;
  gap: 12px;
}
.nav-mobile a { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid #333; }
.nav-mobile.open { display: flex; }

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: #ff855a; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--offwhite);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(245,245,240,0.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, var(--aubergine) 60%, var(--black) 100%);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-bg-diagram {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-svg { width: 100%; height: 100%; }

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow { color: var(--orange); margin-bottom: 20px; display: block; }

.hero h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(245,245,240,0.8);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--aubergine) 100%);
  padding: 80px 0 80px;
}
.page-hero h1 { margin-top: 12px; }
.page-hero .hero-sub { margin-top: 16px; font-size: 1.1rem; color: rgba(245,245,240,0.75); }

/* ─── SECTIONS ─────────────────────────────────────────────────────────────── */
.section-dark { background: var(--black); padding: 80px 0; }
.section-mid  { background: var(--dark);  padding: 80px 0; }

.section-tag { color: var(--orange); display: block; margin-bottom: 12px; font-size: 0.85rem; letter-spacing: 0.1em; }
.section-intro { color: rgba(245,245,240,0.7); margin-bottom: 40px; font-size: 1rem; }

/* ─── PROSE ────────────────────────────────────────────────────────────────── */
.prose { max-width: 700px; }
.prose p { margin-bottom: 20px; color: rgba(245,245,240,0.85); font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

/* ─── THREE COL CARDS ──────────────────────────────────────────────────────── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: #ff9966; transform: translateY(-4px); }
.card-highlight { background: var(--aubergine); border-color: var(--orange); }
.card-tag { color: var(--orange); margin-bottom: 12px; display: block; }
.card h3 { margin-bottom: 12px; }
.card p { color: rgba(245,245,240,0.8); font-size: 0.95rem; margin-top: 12px; }
.card-note { font-size: 0.82rem !important; color: var(--muted) !important; border-top: 1px solid #333; padding-top: 12px; margin-top: 16px !important; }
.card .price-from { margin-top: auto; }

/* ─── STATS ────────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.stat {
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.88rem; color: var(--muted); }

/* ─── TRUST CTA ────────────────────────────────────────────────────────────── */
.trust-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-cta p { font-size: 1.1rem; }

/* ─── SERVICES — MODEL GRID ────────────────────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.model-card {
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.model-card .price-from { margin-top: auto; padding-top: 20px; }
.model-card:hover { border-color: #ff9966; }
.model-card-mid { background: var(--aubergine); border-color: var(--orange); }

.model-number { color: var(--orange); margin-bottom: 12px; display: block; }
.model-card h3 { margin-bottom: 16px; }
.model-card p { color: rgba(245,245,240,0.8); font-size: 0.95rem; margin-bottom: 12px; }

.price-from { font-size: 0.85rem; color: var(--orange); margin-top: 20px; border-top: 1px solid #2a2a2a; padding-top: 16px; font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.05em; }
.price-highlight { color: var(--orange); font-weight: 700; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.block-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.block-list li { font-size: 0.88rem; color: rgba(245,245,240,0.8); padding-left: 12px; border-left: 2px solid var(--orange); }
.block-list li strong { color: var(--offwhite); }

/* ─── SUITE GRID ───────────────────────────────────────────────────────────── */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.suite-card {
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border-color var(--transition), transform var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}
.suite-card:hover { border-color: #ff9966; transform: translateY(-2px); }
.suite-card-premium { background: var(--aubergine); border-color: var(--orange); }
.suite-icon { font-size: 1.4rem; }

.badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid #333;
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(255,107,43,0.1);
  border-color: rgba(255,107,43,0.4);
  color: var(--orange);
}
.badge-dev {
  background: rgba(139,0,0,0.2);
  border-color: rgba(139,0,0,0.5);
  color: #ff6666;
}

.suite-disclaimer {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  font-style: italic;
}

/* ─── PROCESS STEPS ────────────────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.process-step:hover { border-color: var(--orange); }
.step-num { color: var(--orange); display: block; margin-bottom: 10px; }
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; color: rgba(245,245,240,0.75); }
.process-arrow { font-size: 1.5rem; color: var(--orange); padding: 28px 8px; align-self: center; }

/* ─── CTA SECTION ──────────────────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, var(--aubergine), var(--darkred));
  padding: 80px 0;
  text-align: center;
}
.section-cta h2 { margin-bottom: 16px; }
.section-cta p { color: rgba(245,245,240,0.8); margin-bottom: 36px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ─── ABOUT ────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: rgba(245,245,240,0.85);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.about-lead {
  font-size: 1.2rem !important;
  font-weight: 500;
  color: var(--offwhite) !important;
}
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-card {
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: #ff9966; }
.value-icon { color: var(--orange); display: block; margin-bottom: 8px; }
.value-card h3 { margin-bottom: 6px; font-size: 1rem; }
.value-card p { font-size: 0.88rem; color: rgba(245,245,240,0.7); }

/* ─── CONTACT ──────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-question {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--offwhite);
}

.form-step { display: none; }
.form-step.active { display: block; }

.radio-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--aubergine);
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: 0.95rem;
}
.radio-card:hover { border-color: var(--orange); background: rgba(255,107,43,0.05); }
.radio-card input { accent-color: var(--orange); width: 16px; height: 16px; }

.form-input {
  width: 100%;
  background: #242424;
  border: 1.5px solid #484848;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 24px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input::placeholder { color: rgba(245,245,240,0.45); }
.form-input:focus { border-color: var(--orange); background: #2a2a2a; }
.form-textarea { height: 120px; resize: vertical; }

.form-progress { margin-top: 24px; }
.progress-bar { background: #2a2a2a; border-radius: 4px; height: 4px; margin-bottom: 8px; }
.progress-fill { background: var(--orange); height: 100%; border-radius: 4px; transition: width 0.4s ease; width: 0%; }
.progress-label { color: var(--muted); }

.form-note { color: var(--muted); margin-top: 24px; display: block; }

.contact-info { padding-top: 8px; }
.contact-info h3 { margin-bottom: 8px; font-size: 1rem; }
.contact-info p { color: rgba(245,245,240,0.90); margin-bottom: 8px; font-size: 0.95rem; }
.contact-info a:hover { text-decoration: underline; }
.contact-divider { border: none; border-top: 1px solid #2a2a2a; margin: 28px 0; }

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid #2a2a2a; padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.2rem; }
.footer-tagline { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-links a { font-size: 0.88rem; color: rgba(245,245,240,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--muted); }
.footer-legal { font-style: italic; }

/* ─── LAUNCH SPECIALS ──────────────────────────────────────────────────────── */
.section-specials {
  background: linear-gradient(135deg, #0f0010 0%, var(--aubergine) 50%, #1a0000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,107,43,0.03) 60px,
    rgba(255,107,43,0.03) 61px
  );
  pointer-events: none;
}

.specials-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.special-card {
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.special-card-main {
  background: rgba(10,10,10,0.85);
  border: 1.5px solid rgba(255,107,43,0.5);
  box-shadow: 0 0 40px rgba(255,107,43,0.08), inset 0 1px 0 rgba(255,107,43,0.15);
}
.special-card-side {
  background: rgba(61,12,47,0.7);
  border: 1.5px solid rgba(255,107,43,0.4);
  display: flex;
  flex-direction: column;
}

.special-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.special-label {
  color: var(--orange);
  opacity: 0.7;
  display: block;
  margin-bottom: 6px;
}
.special-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.special-sub { color: rgba(245,245,240,0.7); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }

/* Spots counter */
.spots-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,107,43,0.1);
  border: 1.5px solid rgba(255,107,43,0.4);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 90px;
  flex-shrink: 0;
  text-align: center;
}
.spots-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.spots-num.pulse {
  animation: spotPulse 0.5s ease;
}
@keyframes spotPulse {
  0%   { transform: scale(1.3); color: #fff; }
  100% { transform: scale(1);   color: var(--orange); }
}
.spots-text {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spots-counter-inline { flex-direction: row; align-items: center; gap: 12px; padding: 10px 16px; margin: 12px 0; min-width: auto; }
.spots-num-sm { font-size: 2rem; }

/* Founders table */
.founders-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.founders-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 16px;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid #1e1e1e;
  align-items: center;
  transition: background 0.2s;
}
.founders-row:last-child { border-bottom: none; }
.founders-row:hover { background: rgba(255,107,43,0.05); }
.founders-row-header {
  background: rgba(255,107,43,0.07);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founders-row-header:hover { background: rgba(255,107,43,0.07); }
.founders-highlight {
  background: rgba(255,107,43,0.06);
  border-left: 3px solid var(--orange);
}

.special-conditions { color: var(--muted); font-size: 0.7rem; line-height: 1.6; margin-top: 4px; }

/* Side card extras */
.special-value-tag {
  display: flex;
  flex-direction: column;
  background: rgba(255,107,43,0.08);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
}
.special-value-tag .mono { color: var(--muted); font-size: 0.65rem; margin-bottom: 2px; }
.special-value-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
}
.special-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.special-list li {
  font-size: 0.88rem;
  color: rgba(245,245,240,0.75);
  padding-left: 16px;
  position: relative;
}
.special-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ─── HERO EYEBROW LARGE + SLOGAN ─────────────────────────────────────────── */
.hero-eyebrow-large {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.hero-slogan {
  font-family: var(--font-head);
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--offwhite);
  max-width: 780px;
  margin-bottom: 20px;
}

/* aubergine variant classes kept for HTML compatibility — base rules now handle styling */
.card-aubergine, .model-card-aubergine, .suite-card-aubergine, .value-card-aubergine {}

/* ─── AVAILABLE BADGE ──────────────────────────────────────────────────────── */
.badge-available {
  background: rgba(0,180,80,0.15);
  border-color: rgba(0,180,80,0.5);
  color: #44dd88;
}

/* ─── SUITE SECTION DIAGONAL BANNER ───────────────────────────────────────── */
.suite-section-wrap {
  position: relative;
  overflow: hidden;
}
.suite-dev-banner {
  position: absolute;
  top: 80px;
  right: -100px;
  width: 560px;
  background: rgba(61,12,47,0.88);
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 0;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

/* ─── SPECIALS SINGLE COLUMN ───────────────────────────────────────────────── */
.specials-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 760px;
}

/* ─── LAUNCH BANNER ────────────────────────────────────────────────────────── */
.launch-banner {
  background: linear-gradient(90deg, var(--aubergine) 0%, #5c1244 50%, var(--aubergine) 100%);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  padding: 28px 0;
  text-align: center;
}
.launch-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.launch-banner-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.8;
}
.launch-banner h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--offwhite);
  margin: 0;
  letter-spacing: -0.01em;
}
.launch-banner h3 span { color: var(--orange); }
.launch-banner-sub {
  color: rgba(245,245,240,0.65);
  font-size: 0.9rem;
  margin: 0;
}
.launch-banner .btn-primary { margin-top: 8px; }

/* ─── TWO COL CARDS ─────────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ─── MODULE MINI LIST ──────────────────────────────────────────────────────── */
.module-mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.module-mini-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(245,245,240,0.8);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.module-mini-list li .badge { flex-shrink: 0; }

/* ─── BELOW-CARD STATEMENTS ─────────────────────────────────────────────────── */
.card-statements {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.card-statement {
  background: var(--aubergine);
  border: 1.5px solid rgba(255,107,43,0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-statement p {
  color: rgba(245,245,240,0.8);
  font-size: 0.95rem;
  margin: 0;
}
.card-statement .btn-ghost { align-self: flex-start; padding: 10px 24px; font-size: 0.85rem; }

/* ─── ASK US MODAL ───────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark);
  border: 1.5px solid var(--orange);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: var(--muted); font-size: 1.4rem;
  cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--offwhite); }
.modal-box h3 { margin-bottom: 6px; }
.modal-box .modal-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.modal-field { margin-bottom: 20px; }
.modal-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(245,245,240,0.85);
  margin-bottom: 6px;
}
.modal-field .form-input { margin-bottom: 0; }

/* ─── ANIMATIONS ───────────────────────────────────────────────────────────── */
/* fade-up: visible by default; JS adds .js-ready to <body> to enable animation */
.fade-up { opacity: 1; transform: none; }
.js-ready .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-workflow { display: none; }
  .nav-toggle { display: block; }
  .three-col, .two-col, .model-grid, .stats { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: 1fr; }
  .special-header { flex-direction: column; }
  .card-statements { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-inner { height: 100px; }
  .logo { font-size: 2.8rem; }
  .hero { padding: 60px 0 80px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-ghost { text-align: center; }
  .trust-cta { flex-direction: column; align-items: flex-start; }
  .suite-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
