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

:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --fg: #FFFFFF;
  --fg-muted: #999999;
  --accent: #FF4500;
  --accent-2: #FF6B35;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: #1A1A1A;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1.1; }

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

.section-header { margin-bottom: 3rem; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-badge { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: #FF6B35;
  bottom: 0;
  left: 20%;
  opacity: 0.15;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
}

.hero-title-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.hero-title-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.hero-title-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}

.hero-right {}

.hero-description {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

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

.hero-bottom-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.strip-icon { flex-shrink: 0; }

.strip-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-bottom-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .strip-divider { display: none; }
}

/* === PROBLEM === */
.problem {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header { margin-bottom: 4rem; }

.problem-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
}

.problem-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.problem-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.problem-quote {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  max-width: 600px;
}

.problem-quote p {
  font-size: 1.125rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.step {
  flex: 1;
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.step-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-details li {
  color: var(--fg-muted);
  font-size: 0.8rem;
  padding-left: 1.25rem;
  position: relative;
}

.step-details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  align-self: center;
  flex-shrink: 0;
}

.howitworks-outro {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.outro-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.howitworks-outro p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.howitworks-outro strong { color: var(--fg); }

@media (max-width: 768px) {
  .steps { flex-direction: column; }
  .step-connector { width: 100%; height: 2px; background: linear-gradient(180deg, var(--accent), transparent); }
}

/* === PRICING === */
.pricing {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.per {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.card-features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.check { flex-shrink: 0; margin-top: 2px; }

.card-note {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* === FOUNDING === */
.founding {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.founding-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.founding-eyebrow { margin-bottom: 1.5rem; }

.founding-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.25rem;
  border-radius: 2px;
}

.founding-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 1rem;
}

.founding-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 600px;
}

.founding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.founding-perk {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
}

.perk-icon {
  margin-bottom: 1.25rem;
}

.founding-perk h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.founding-perk p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.founding-cta {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 2.5rem;
}

.founding-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-text {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.cta-text strong { color: var(--accent); }

.cta-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.region-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.region-tag {
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .founding-grid { grid-template-columns: 1fr; }
  .founding-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing-body {
  color: var(--fg-muted);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 4rem;
}

.closing-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.closing-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.closing-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  max-width: 150px;
  line-height: 1.4;
}

.closing-stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.closing-vision {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 4px;
  max-width: 650px;
}

.closing-vision p {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-vision strong { color: var(--fg); }

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}