:root {
  --dark: #0F0F1A;
  --dark2: #1A1A2E;
  --mid: #2D2D4E;
  --gold: #C8A96E;
  --gold-light: #E2C99A;
  --cream: #F5F2EA;
  --cream2: #EDE9DF;
  --muted: #7A7A9A;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: border-color 0.3s, opacity 0.3s;
}

/* backdrop-filter on pseudo-element so <nav> doesn't create a
   containing block that traps position:fixed children */
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,26,0.85);
  backdrop-filter: blur(12px);
  z-index: -1;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-desktop-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-desktop-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-desktop-links a:hover { color: var(--gold); }

/* Mobile bottom-sheet — hidden until toggled */
.nav-links {
  display: none;
  list-style: none;
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

#nav-toggle:hover {
  border-color: var(--gold);
}

.nav__close-item {
  display: none;
  justify-content: flex-end;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200,169,110,0.12);
  margin-bottom: 0.5rem;
}

#nav-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.25rem;
}

#nav-close:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,45,78,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 1.75rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  padding: 0.85rem 2rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-secondary {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.85rem 2rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200,169,110,0.15);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 3rem;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ── PROBLEM ── */
.problem {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.1);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.problem-text strong { color: var(--cream); font-weight: 500; }

.pain-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.pain-list li::before {
  content: '—';
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.problem-visual {
  background: rgba(45,45,78,0.4);
  border: 1px solid rgba(200,169,110,0.12);
  padding: 2rem;
  position: relative;
}

.mock-header {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.viz-header .mock-live {
  font-size: 0.55rem;
}

.mock-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5cba82;
  flex-shrink: 0;
  animation: liveblink 2.4s ease infinite;
}

@keyframes liveblink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}

.mock-row-label { color: var(--muted); font-size: 0.78rem; }

.mock-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.05rem;
}

.mock-row-val { color: var(--cream); font-weight: 500; font-size: 0.85rem; }
.mock-row-val.gold { color: var(--gold); }
.mock-row-val.warn { color: #d4935a; }

.mock-row-of {
  color: var(--muted);
  font-size: 0.75em;
  font-weight: 300;
}

.mock-delta {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  line-height: 1;
}

.mock-delta.pos  { color: rgba(92,186,130,0.75); }
.mock-delta.warn { color: rgba(212,147,90,0.85); }
.mock-delta.muted { color: rgba(122,122,154,0.45); }

.mock-bar-wrap { margin-top: 1.5rem; }
.mock-bar-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.4rem; font-family: 'DM Mono', monospace; }
.mock-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 0; margin-bottom: 0.75rem; overflow: hidden; }
.mock-bar-fill { height: 100%; background: var(--gold); border-radius: 0; }

/* ── DELIVERABLES ── */
.deliverables { max-width: 1100px; margin: 0 auto; }

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(200,169,110,0.1);
}

.deliver-card {
  background: var(--dark);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.deliver-card:hover { background: var(--dark2); }

.deliver-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.deliver-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.deliver-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.deliver-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── PROCESS ── */
.process {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.1);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.process-step.last { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.25);
  line-height: 1;
  padding-top: 0.1em;
}

.step-content-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step-content-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.step-duration {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-align: right;
  padding-top: 0.3em;
}

/* ── PRICING ── */
.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  border: 1px solid rgba(200,169,110,0.15);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.price-card:hover { border-color: rgba(200,169,110,0.4); }

.price-card.featured {
  border-color: var(--gold);
  background: rgba(200,169,110,0.03);
}

.price-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.price-unit {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.price-divider {
  height: 1px;
  background: rgba(200,169,110,0.15);
  margin: 1.5rem 0;
}

.price-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-items li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.price-items li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.price-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,169,110,0.1);
  line-height: 1.6;
  max-width: 680px;
}

/* ── ABOUT ── */
.about {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.1);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1.5rem;
}

.about-body + .about-body { margin-top: 1rem; }

.about-body strong { color: var(--cream); font-weight: 500; }

.about-right { padding-top: 0.5rem; }

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.expertise-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact {
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact h2 em { font-style: italic; color: var(--gold); }

.contact-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-email {
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-email:hover { border-color: var(--gold); }

.contact-btn-wrap { margin-top: 2.5rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.footer-logo span { color: var(--gold); }

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: rgba(122,122,154,0.5);
  letter-spacing: 0.06em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--mid); }

/* ── HERO VIZ PANEL ── */
.hero-viz {
  background: rgba(26,26,46,0.65);
  border: 1px solid rgba(200,169,110,0.18);
  padding: 1.4rem 1.5rem 1.5rem;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
  backdrop-filter: blur(6px);
}

.viz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.viz-slide-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.viz-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.viz-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.viz-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.viz-dot:hover:not(.active) {
  border-color: rgba(200,169,110,0.7);
}

/* Slides container — fixed height, all slides stacked */
.viz-slides-wrap {
  position: relative;
  height: 232px;
  overflow: hidden;
}

.viz-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.viz-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SCREEN FAIL TABLE ── */
.sf-table-wrap {
  width: 100%;
}

.sf-table-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.sf-table {
  width: 100%;
  border-collapse: collapse;
}

.sf-table thead th {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: rgba(122,122,154,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0 0.5rem 0.35rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sf-table thead th:not(:first-child) { text-align: right; }

.sf-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.sf-table tbody tr:hover { background: rgba(200,169,110,0.04); }

.sf-table tbody td {
  padding: 0.22rem 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.sf-table tbody td:not(:first-child) {
  text-align: right;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
}

.sf-top td { color: var(--cream) !important; }

.sf-table tfoot td {
  padding: 0.3rem 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  border-top: 1px solid rgba(200,169,110,0.18);
  font-weight: 500;
}

.sf-table tfoot td:not(:first-child) { text-align: right; }

.viz-footer {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  color: rgba(122,122,154,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(200,169,110,0.07);
  text-align: center;
}

.sf-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: rgba(122,122,154,0.45);
  margin-top: 0.45rem;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */

/* Tablet — stack two-column layouts */
@media (max-width: 900px) {
  nav {
    top: auto;
    bottom: 0;
    padding: 0.85rem 1.5rem;
    border-bottom: none;
    border-top: 1px solid rgba(200,169,110,0.15);
  }

  .nav-desktop-links {
    display: none;
  }

  .nav-links {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--dark2);
    padding: 1.25rem 1.5rem 0;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.35);
    border-radius: 1.5rem 1.5rem 0 0;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    z-index: 200;
  }

  .nav-links.show-menu {
    bottom: 0;
  }

  .nav-links .nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    transition: color 0.2s;
  }

  .nav-links .nav__link:hover { color: var(--gold); }

  .nav__close-item {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(200,169,110,0.08);
  }

  #nav-close {
    font-size: 1.5rem;
  }

  #nav-toggle {
    display: block;
  }

  nav.nav-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    padding: 3rem 1.5rem 6rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stats > div {
    min-width: calc(50% - 0.75rem);
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .deliver-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
  }

  .step-duration {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  section {
    padding: 4rem 1.5rem 5rem;
  }

  footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.5rem 1.5rem 5.5rem;
  }
}

/* Mobile — phone-sized adjustments */
@media (max-width: 600px) {
  nav {
    padding: 0.8rem 1.25rem;
  }

  .nav-cta {
    font-size: 0.66rem;
    padding: 0.45rem 0.9rem;
  }

  .hero {
    padding: 2.5rem 1.25rem 6rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  .hero-stats {
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .stat-val {
    font-size: 1.75rem;
  }

  /* Viz panel */
  .hero-viz {
    padding: 1.1rem 1.1rem 1.25rem;
  }

  .viz-slides-wrap {
    height: 188px;
  }

  section {
    padding: 3rem 1.25rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .deliver-card {
    padding: 1.75rem;
  }

  .price-card {
    padding: 1.75rem;
  }

  .price-val {
    font-size: 2.4rem;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .step-num {
    font-size: 2rem;
  }

  .about-quote {
    font-size: 1.3rem;
  }

  .contact {
    padding: 3.5rem 1.25rem;
  }

  .contact-email {
    font-size: 0.78rem;
    word-break: break-all;
  }

  footer {
    padding: 1.25rem;
  }

  /* Screen fail table — tighten on narrow screens */
  .sf-table tbody td {
    font-size: 0.72rem;
    padding: 0.18rem 0.35rem;
  }

  .sf-table thead th {
    font-size: 0.56rem;
    padding: 0 0.35rem 0.3rem;
  }

  .sf-table tfoot td {
    font-size: 0.65rem;
    padding: 0.25rem 0.35rem;
  }
}