:root {
  --steel:       #1E2832;
  --steel-light: #2C3E50;
  --amber:       #E8A020;
  --amber-dark:  #C88A10;
  --surface:     #F5F6F8;
  --white:       #FFFFFF;
  --border:      #D1D5DB;
  --text:        #1A1A1A;
  --muted:       #6B7280;
  --critical:    #DC2626;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: var(--steel);
  border-bottom: 3px solid var(--amber);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}
.brand span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #CBD5E1;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: var(--steel) !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--steel) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-primary-lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--steel);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 59px,
      rgba(255,255,255,0.025) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 59px,
      rgba(255,255,255,0.025) 60px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.15rem;
  color: #94A3B8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

/* ── SECTION COMMON ── */
.section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--amber);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--surface);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.crisis-card {
  background: var(--steel);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.crisis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--critical);
}
.crisis-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: var(--critical);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.crisis-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 1rem;
}
.crisis-desc {
  color: #CBD5E1;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.crisis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.problem-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-list h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel);
  margin-bottom: 0.2rem;
}
.problem-list p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--white); }
.flows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.flow-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.flow-header {
  background: var(--steel);
  padding: 1.25rem 1.5rem;
  border-bottom: 3px solid var(--amber);
}
.flow-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.flow-header p {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.2rem;
}
.flow-body {
  padding: 1.5rem;
  background: var(--white);
}
.flow-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.flow-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}
.step-num {
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── MATCH EXPLAINER ── */
.match-section {
  background: var(--steel);
  padding: 5rem 1.5rem;
}
.match-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.match-section .section-title { color: var(--white); }
.match-section .section-lead { color: #94A3B8; }
.match-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}
.match-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1.75rem;
}
.match-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.match-box p {
  color: #CBD5E1;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.match-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.match-arrow-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-align: center;
}
.arrow-icon {
  font-size: 2rem;
  color: var(--amber);
}

/* ── TRUST SECTION ── */
.trust-section { background: var(--surface); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 4px;
  padding: 1.75rem;
}
.trust-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.trust-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.pricing-header {
  background: var(--surface);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-header {
  background: var(--steel);
  border-bottom-color: var(--amber);
}
.pricing-stage {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-stage { color: var(--amber); }
.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--steel);
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--steel);
  line-height: 1;
  margin-top: 0.75rem;
}
.pricing-card.featured .pricing-price { color: var(--amber); }
.pricing-price-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.pricing-card.featured .pricing-price-note { color: #94A3B8; }
.pricing-body {
  padding: 1.5rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
}

/* ── ABOUT ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.about-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-body p strong { color: var(--steel); }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.credential-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 3px;
  padding: 1.25rem;
}
.credential-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel);
  margin-bottom: 0.35rem;
}
.credential-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.oem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.oem-tag {
  background: var(--steel);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.75em;
  border-radius: 3px;
}

/* ── CONTACT / EARLY ACCESS ── */
.contact-section { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-reasons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-reason-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}
.contact-reason h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel);
  margin-bottom: 0.2rem;
}
.contact-reason p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.early-access-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.form-header {
  background: var(--steel);
  border-bottom: 3px solid var(--amber);
  padding: 1.25rem 1.5rem;
}
.form-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.form-header p { font-size: 0.8125rem; color: #94A3B8; margin-top: 0.2rem; }
.form-body { padding: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
}
.form-label .req { color: var(--critical); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--steel);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.8rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--amber-dark); }
.form-note { font-size: 0.8125rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--steel);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-band h2 em { font-style: normal; color: var(--amber); }
.cta-band p {
  color: #94A3B8;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: #131B22;
  border-top: 3px solid var(--amber);
  padding: 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand span { color: var(--amber); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.2rem;
}
.footer-note {
  font-size: 0.8125rem;
  color: #4B5563;
}

/* ── SUCCESS STATE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--muted); font-size: 0.9375rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1      { animation-delay: 0.2s; }
.hero-sub     { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stat-row{ animation-delay: 0.5s; }

/* ── 404 ── */
.notfound-section {
  min-height: calc(100vh - 64px - 90px);
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.notfound-inner { max-width: 600px; }
.notfound-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--amber);
  line-height: 1;
  letter-spacing: 0.02em;
}
.notfound-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.notfound-sub {
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problem-grid, .flows-grid, .trust-grid,
  .pricing-grid, .about-grid, .contact-grid,
  .match-diagram { grid-template-columns: 1fr; }
  .crisis-grid { grid-template-columns: 1fr; }
  .match-arrow { display: none; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.75rem; }
  .form-row { grid-template-columns: 1fr; }
}
