/* === BASE === */
:root {
  --bg: #141210;
  --bg-surface: #1c1a17;
  --bg-surface2: #242220;
  --fg: #f5f0e8;
  --fg-muted: #a09880;
  --accent: #e07830;
  --accent-dim: rgba(224, 120, 48, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #000; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, rgba(224, 120, 48, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 80px 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-primary-large { font-size: 1.05rem; padding: 15px 30px; border-radius: 7px; }

.hero-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding-top: 36px;
  width: fit-content;
}

.stat {
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.1);
}

/* === PROOF === */
.proof {
  padding: 40px 48px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  background: var(--bg-surface);
}

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

.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.proof-claims {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.claim {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}

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

/* === FEATURES === */
.features {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 72px;
  max-width: 600px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-surface);
  padding: 44px 40px;
  transition: background 0.2s ease;
}

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

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 120px 48px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

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

.howitworks-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.step-connector {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(224, 120, 48, 0.5), rgba(224, 120, 48, 0.1));
  margin-top: 32px;
  flex-shrink: 0;
}

/* === PRICING === */
.pricing {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 56px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg);
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: rgba(245, 240, 232, 0.08);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pricing-cta:hover { background: rgba(245, 240, 232, 0.14); }

.pricing-cta-featured {
  background: var(--accent);
  color: #000;
}

.pricing-cta-featured:hover { background: #c86820; }

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.closing-text {
  max-width: 560px;
}

.closing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 80px 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-inner { flex-direction: column; align-items: flex-start; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 12px; }
  .proof { padding: 32px 24px; }
  .proof-claims { gap: 24px; flex-direction: column; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
}
