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

:root {
  --bg: #0B1D14;
  --surface: #122219;
  --surface-2: #1A2F24;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --amber-glow: rgba(245, 166, 35, 0.06);
  --text: #E8F0EB;
  --text-dim: rgba(232, 240, 235, 0.55);
  --text-muted: rgba(232, 240, 235, 0.3);
  --border: rgba(232, 240, 235, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.1; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 29, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.7;
}

.hero-proof {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.proof-badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.glow-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.scout-rings {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 120px; height: 120px; border-color: rgba(245,166,35,0.35); animation: spin 12s linear infinite; }
.ring-2 { width: 170px; height: 170px; border-color: rgba(245,166,35,0.2); animation: spin 20s linear infinite reverse; }
.ring-3 { width: 220px; height: 220px; border-color: rgba(245,166,35,0.1); animation: spin 30s linear infinite; }

@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.center-dot {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.15), transparent);
  animation: scanDown 3s ease-in-out infinite;
}

.scan-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.scan-line:nth-child(2) { top: 45%; animation-delay: 0.8s; }
.scan-line:nth-child(3) { top: 65%; animation-delay: 1.6s; }
.scan-line:nth-child(4) { top: 85%; animation-delay: 2.4s; }

@keyframes scanDown {
  0% { opacity: 0; transform: translateX(-50px); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateX(50px); }
}

/* === SECTION SHARED === */
section { padding: 6rem 2rem; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 640px;
}

/* === HOW IT WORKS === */
.hiw {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw .section-headline { margin-bottom: 4rem; }

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.step-connector::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--amber);
  opacity: 0.3;
}

/* === FEATURES === */
.features { max-width: 1280px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface); }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}

.manifesto-body p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.manifesto-lead {
  font-size: 1.4rem !important;
  color: var(--text) !important;
}

.manifesto-thesis {
  font-size: 1.25rem !important;
  color: var(--text) !important;
  border-left: 2px solid var(--amber);
  padding-left: 1.5rem;
  margin-top: 2.5rem !important;
}

/* === CLOSER === */
.closer {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245,166,35,0.04) 100%);
}

.closer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closer h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closer p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  margin-top: 8rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-built {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { gap: 1rem; }
  .step-connector { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1.5rem; }
  .hero { padding: 3rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
}

/* === CTA BUTTON === */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.35);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === PAYMENT STATUS BANNER === */
.payment-banner {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-banner--success {
  background: rgba(34, 197, 94, 0.12);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.payment-banner--cancelled,
.payment-banner--error {
  background: rgba(245, 166, 35, 0.1);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--amber);
}