/* Color variables are defined in conductor.css — this file references them via var(). */

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.7;
}

/* ── UTILITIES ── */
.sans { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.btn {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── NAV ── */
nav {
  background: var(--green-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
nav .inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .5px;
}
.logo-text span { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 720px; }
.hero-badge {
  display: block;
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.4));
}
.hero-eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-scout-law {
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: .04em;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SECTION BASICS ── */
section { padding: 80px 0; }
.section-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.lead { font-size: 1.1rem; color: var(--slate-light); max-width: 640px; }

/* ── PROBLEM ── */
.problem { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-story { font-size: 1.05rem; line-height: 1.8; color: var(--slate); }
.problem-story p + p { margin-top: 16px; }
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .95rem;
}
.problem-list .icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: #fee2e2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.problem-list strong { display: block; color: var(--slate); font-size: .95rem; }
.problem-list span { color: var(--slate-light); font-size: .88rem; }

/* ── SOLUTION ── */
.solution { background: var(--white); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  border: 1px solid #e2e8e4;
  border-radius: 10px;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow .2s;
}
.pillar:hover { box-shadow: 0 8px 32px rgba(45,106,79,.12); }
.pillar-num {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}
.pillar h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 12px; }
.pillar p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .92rem;
  color: var(--slate-light);
  line-height: 1.65;
}
.pillar-icon { font-size: 2rem; margin-bottom: 16px; }
.pillar-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--green-mid);
  background: #e8f5ee;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--green-dark); color: var(--white); }
.how .section-label { color: var(--gold-light); }
.how h2 { color: var(--white); }
.how .lead { color: rgba(255,255,255,0.75); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 24px; } }
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green-light) 100%);
  opacity: .4;
}
@media (max-width: 720px) { .steps::before { display: none; } }
.step { padding: 0 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.step p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.step p strong { color: var(--gold-light); font-weight: 600; }
.step-detail {
  margin-top: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── FEATURES ── */
.features { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.feature h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.feature p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .88rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ── OFFLINE CALLOUT ── */
.offline-banner {
  background: linear-gradient(135deg, var(--green-dark), #0d2218);
  color: var(--white);
  padding: 64px 0;
}
.offline-inner { display: flex; gap: 48px; align-items: center; }
@media (max-width: 720px) { .offline-inner { flex-direction: column; } }
.offline-icon { font-size: 4rem; flex-shrink: 0; }
.offline-banner h3 { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 12px; }
.offline-banner p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* ── AUDIENCE ── */
.audience { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
@media (max-width: 640px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card { border-top: 4px solid var(--green-mid); padding-top: 24px; }
.audience-card h3 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 12px; }
.audience-card p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .92rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.audience-card .tag {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-mid);
  background: #e8f5ee;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── EARLY ACCESS (CTA) ── */
.cta-section {
  background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section .lead { color: rgba(255,255,255,.8); margin: 0 auto 40px; text-align: center; }

.access-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
  .form-row,
  .form-row-3 { grid-template-columns: 1fr; }
  .access-form { padding: 24px 20px; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: .6px;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .95rem;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.2);
}
.form-group select option { background: var(--green-dark); color: var(--white); }
.form-section-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin: 24px 0 14px;
}
.access-form .btn { width: 100%; margin-top: 8px; padding: 14px; }
.cta-note {
  margin-top: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.4);
  padding: 32px 0;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: .82rem;
}
footer a { color: rgba(255,255,255,.5); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
