/* ============================================================
   CSS VARIABLES — change colors here, nowhere else
============================================================ */
:root {
  --bg-dark:      #0f0f0f;
  --bg-mid:       #151515;
  --bg-cta:       #1a1200;
  --amber:        #F59E0B;
  --amber-dark:   #B45309;
  --text:         #E5E5E5;
  --text-muted:   #888888;
  --border:       #2a2a2a;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--amber);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-dark {
  background-color: var(--bg-dark);
}

.section-mid {
  background-color: var(--bg-mid);
}

.section-cta {
  background-color: var(--bg-cta);
  border-top: 2px solid var(--amber);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin-top: 14px;
}

.amber {
  color: var(--amber);
}

.section-closer {
  margin-top: 32px;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background-color: #080808;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    );
  padding: 100px 0 90px;
  border-bottom: 2px solid var(--amber);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
}

/* ============================================================
   BUTTON
============================================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--amber);
  color: #000000;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* ============================================================
   PAIN POINTS LIST
============================================================ */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pain-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pain-list .amber {
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   FEATURE LIST
============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.5;
}

.feature-icon {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  min-width: 44px;
  line-height: 1.2;
  margin-top: 2px;
}

/* ============================================================
   TRUST GRID
============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-card {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  padding: 28px 24px;
}

.trust-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  margin-bottom: 10px;
}

.trust-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   HOW IT WORKS — STEPS
============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 8px 0;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  min-width: 64px;
  text-align: center;
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 6px;
  padding-top: 8px;
}

.step-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-divider {
  width: 3px;
  height: 32px;
  background: var(--border);
  margin-left: 30px;
}

/* ============================================================
   PRICING
============================================================ */
.pricing-compare {
  background: #1a1a1a;
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 32px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
}

.pricing-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-cost {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.struck {
  text-decoration: line-through;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.founding-box {
  background: #1a1200;
  border: 1px solid var(--amber-dark);
  border-left: 4px solid var(--amber);
  padding: 28px 28px;
}

.founding-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 14px;
}

.founding-box p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.founding-warn {
  font-weight: 600;
  color: var(--amber) !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   FAQ — CSS ACCORDION
============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--amber);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-toggle:checked + .faq-question {
  color: var(--amber);
}

.faq-toggle:checked + .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 4px;
}

/* ============================================================
   CONTACT / CTA
============================================================ */
.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.contact-line {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.contact-line:hover {
  color: var(--amber);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background-color: #080808;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-address {
  font-size: 0.8rem;
}

/* ============================================================
   MOBILE — anything under 600px
============================================================ */
@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 72px 0 64px;
  }

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

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-num {
    font-size: 2.6rem;
    min-width: 48px;
  }

  .contact-line {
    font-size: 1.15rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
}
