/* Marketing UI Kit — local styles. Inherits tokens from /colors_and_type.css */

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

html, body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

/* ============ STICKY NAV ============ */
.snav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,11,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-line);
}
.snav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.snav-brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg-1);
  text-transform: uppercase;
}
.snav-brand .acc { color: var(--gold); }
.snav-links { display: flex; gap: 36px; }
.snav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  background: none; border: 0; padding: 8px 0;
  transition: color 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.snav-link:hover, .snav-link.active { color: var(--gold); }
.snav-cta {
  background: var(--gold);
  color: var(--bg-0);
  border: 0;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 200ms cubic-bezier(0.2,0.8,0.2,1), transform 200ms;
}
.snav-cta:hover { background: var(--gold-hi); transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-line);
  background: var(--bg-0);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,168,75,0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(232,89,60,0.04), transparent 50%),
    linear-gradient(180deg, #0a0d12 0%, #080B0F 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(245,242,234,0.012) 2px, rgba(245,242,234,0.012) 3px);
  opacity: 0.6;
}
.hero-inner { position: relative; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 168px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0 0 40px;
  max-width: 1200px;
}
.hero-headline .gold { color: var(--gold); }
.hero-headline .strike { text-decoration: line-through; text-decoration-color: var(--red); color: var(--fg-3); }
.hero-sub {
  font-size: 22px;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 620px;
  line-height: 1.4;
  margin-bottom: 48px;
}
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 32px; margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--bg-line);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.92;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.hero-meta-lab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.btn-primary { background: var(--gold); color: var(--bg-0); }
.btn-primary:hover {
  background: var(--gold-hi);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.4), 0 18px 36px -10px rgba(200,168,75,0.4);
}
.btn-primary:active { background: var(--gold-lo); transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--fg-1);
  border: 1px solid var(--bg-line);
  padding: 19px 35px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-arrow svg { width: 16px; height: 16px; transition: transform 200ms; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ============ SECTIONS ============ */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--bg-line);
  position: relative;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 40px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0 0 24px;
  max-width: 1100px;
}
.section-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 720px;
  line-height: 1.5;
}

/* ============ STAT BAR ============ */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  background: var(--bg-1);
}
.stat-cell {
  padding: 56px 32px;
  border-right: 1px solid var(--bg-line);
}
.stat-cell:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat-lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 12px;
}

/* ============ COMPARISON ============ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--bg-line);
  margin-top: 64px;
}
.compare-col { padding: 56px 48px; }
.compare-col + .compare-col { border-left: 1px solid var(--bg-line); }
.compare-head {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.compare-head.gold { color: var(--gold); }
.compare-head.red { color: var(--red); }
.compare-list { list-style: none; }
.compare-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-line);
  font-size: 17px;
  color: var(--fg-1);
  line-height: 1.4;
}
.compare-item:last-child { border-bottom: 0; }
.compare-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ============ TESTIMONIAL ============ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--bg-line); }
.testimonial {
  padding: 48px 40px;
  background: var(--bg-1);
  border-right: 1px solid var(--bg-line);
  display: flex; flex-direction: column; gap: 24px;
  transition: background 200ms cubic-bezier(0.2,0.8,0.2,1);
}
.testimonial:last-child { border-right: 0; }
.testimonial:hover { background: var(--bg-2); }
.t-stat {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.92;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.t-quote {
  font-size: 17px;
  color: var(--fg-1);
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
}
.t-attrib {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-line);
}
.t-name { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-1); }
.t-meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); }

/* ============ COUNTDOWN ============ */
.countdown-bar {
  background: var(--red-soft);
  border-top: 1px solid rgba(232,89,60,0.4);
  border-bottom: 1px solid rgba(232,89,60,0.4);
  padding: 20px 0;
}
.countdown-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.countdown-msg {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-hi);
}
.countdown-dot {
  width: 8px; height: 8px; background: var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.countdown-clock { display: flex; gap: 0; }
.cclock-cell {
  padding: 8px 18px;
  border: 1px solid rgba(232,89,60,0.3);
  border-right: 0;
  display: flex; flex-direction: column; align-items: center;
  min-width: 64px;
}
.cclock-cell:last-child { border-right: 1px solid rgba(232,89,60,0.3); }
.cclock-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--fg-1);
}
.cclock-lab {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hi);
  margin-top: 2px;
}

/* ============ APPLY FORM ============ */
.apply-section { background: var(--bg-1); padding: 120px 0; }
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.apply-form { display: flex; flex-direction: column; gap: 20px; }
.apply-field { display: flex; flex-direction: column; gap: 8px; }
.apply-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.apply-field input,
.apply-field select,
.apply-field textarea {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  padding: 16px 18px;
  font-size: 15px;
  color: var(--fg-1);
  outline: none;
  transition: border-color 200ms;
}
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus { border-color: var(--gold); }
.apply-field textarea { resize: vertical; min-height: 100px; }
.apply-disclaim {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(8,11,15,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: fade 200ms cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg-1);
  border: 1px solid var(--bg-line);
  max-width: 640px; width: 100%;
  padding: 56px 48px;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 0;
  width: 36px; height: 36px;
  color: var(--fg-2);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--gold); }
.modal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin-bottom: 18px;
}
.modal-sub {
  color: var(--fg-2);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-0);
  padding: 64px 0 32px;
  border-top: 1px solid var(--bg-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bg-line);
}
.footer-brand { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; color: var(--fg-1); text-transform: uppercase; }
.footer-brand .acc { color: var(--gold); }
.footer-tag { color: var(--fg-3); margin-top: 12px; font-size: 13px; max-width: 360px; line-height: 1.5; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--fg-2); font-size: 13px; letter-spacing: 0.06em; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3);
}
