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

:root {
  --midnight: #0a1628;
  --midnight-2: #0f1e35;
  --midnight-3: #162540;
  --gold: #c9a227;
  --gold-light: #e8c15a;
  --gold-dim: #8a6f1a;
  --ivory: #f5f0e8;
  --slate: #8899aa;
  --slate-dark: #5a6b7a;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--midnight);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--ivory);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Competitive comparison bar */
.comp-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.comp-col {
  background: var(--midnight);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comp-col--us {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.3);
}

.comp-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-dark);
  letter-spacing: 0.03em;
}

.comp-name--us {
  color: var(--gold);
}

.comp-tag {
  font-size: 0.68rem;
  color: var(--slate-dark);
  line-height: 1.4;
}

.comp-tag--white {
  color: var(--gold-light);
  font-weight: 500;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

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

/* Network Illustration */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-illustration {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.network-svg {
  width: 100%;
  height: auto;
}

.network-labels {
  position: absolute;
  inset: 0;
}

.nl-tag {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.nl-1 { top: 8%; right: 0; }
.nl-2 { top: 38%; left: 0; }
.nl-3 { bottom: 35%; right: 5%; }
.nl-4 { bottom: 12%; left: 10%; }

/* === PROBLEM === */
.problem { background: var(--midnight-2); padding: 100px 48px; }

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

.problem-tag, .howitworks-tag, .pricing-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.problem-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--midnight-3);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
  padding: 36px 28px;
}

.pc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

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

/* === HOW IT WORKS === */
.howitworks { padding: 100px 48px; background: var(--midnight); }

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

.hiw-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 60px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.hiw-step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,162,39,0.2);
  line-height: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Signal bars visual */
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.sb-bar {
  width: 20px;
  background: rgba(201,162,39,0.25);
  border-radius: 3px 3px 0 0;
  height: var(--h);
}

.sb-bar.active { background: var(--gold); }

/* Vet checks visual */
.vet-checks { display: flex; flex-direction: column; gap: 10px; }

.vc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate);
}

.vc-icon {
  width: 22px;
  height: 22px;
  background: rgba(201,162,39,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Calendar preview visual */
.cal-preview {
  background: rgba(201,162,39,0.07);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  padding: 16px;
  position: relative;
}

.cp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.cp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cp-header span {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 500;
}

.cp-body { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.cp-line {
  height: 8px;
  background: rgba(201,162,39,0.15);
  border-radius: 4px;
  width: 100%;
}

.cp-line.short { width: 65%; }

.cp-badge {
  background: var(--gold);
  color: var(--midnight);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}

.step-visual-label {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

/* === PRICING === */
.pricing { background: var(--midnight-2); padding: 100px 48px; }

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

.pricing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 48px;
}

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

.pm-card {
  background: var(--midnight-3);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 16px;
  padding: 36px;
}

.pm-card-accent {
  border-color: rgba(201,162,39,0.4);
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, var(--midnight-3) 100%);
}

.pm-header { margin-bottom: 20px; }

.pm-plan {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.pm-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}

.pm-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ivory);
}

.pm-period {
  font-size: 0.85rem;
  color: var(--slate);
}

.pm-divider {
  height: 1px;
  background: rgba(201,162,39,0.15);
  margin-bottom: 24px;
}

.pm-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.pm-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate);
}

.pf-check { color: var(--gold); font-weight: 700; }

.pricing-note {
  font-size: 0.88rem;
  color: var(--slate-dark);
  max-width: 600px;
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto { padding: 120px 48px; background: var(--midnight); }

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

.manifesto-content { max-width: 760px; }

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold-light);
  margin-bottom: 40px;
  line-height: 1.3;
  font-style: italic;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
}

.manifesto-cta {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.manifesto-cta p {
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.6;
}

/* === FOOTER === */
.footer { padding: 48px; background: var(--midnight-2); border-top: 1px solid rgba(201,162,39,0.1); }

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

.footer-brand { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--slate);
}

.footer-meta p {
  font-size: 0.78rem;
  color: var(--slate-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 640px;
}

.footer-copy { color: var(--slate-dark); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 80px 24px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .howitworks { padding: 80px 24px; }
  .hiw-step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .pricing { padding: 80px 24px; }
  .pricing-model { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .problem-headline br, .pricing-headline br { display: none; }
}
