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

:root {
  --black: #0d0d0d;
  --off-white: #f5f3ee;
  --warm-white: #faf9f6;
  --gold: #b8965a;
  --gray: #6b6b6b;
  --gray-light: #d4d0c8;
  --text: #111111;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--off-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 100;
  border-bottom: 1px solid #1a1a1a;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.logo em {
  color: var(--gold);
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-cta:hover { color: var(--off-white); }

/* === HERO === */
.hero {
  background: var(--black);
  color: var(--off-white);
  padding: 120px 0 140px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--off-white);
  margin-bottom: 32px;
  max-width: 720px;
}
.hero-sub {
  font-size: 17px;
  color: #888;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* === TICKER === */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
.ticker span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 24px;
}
.ticker .sep {
  color: rgba(0,0,0,0.35);
  padding: 0 4px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === PROBLEM === */
.problem {
  padding: 120px 0;
  background: var(--warm-white);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--text);
  position: sticky;
  top: 100px;
}
.problem-right { padding-top: 8px; }
.stat-row {
  padding: 32px 0;
}
.stat-big {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.5;
}
.divider {
  height: 1px;
  background: var(--gray-light);
}
.stat-closer {
  padding-top: 32px;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
}

/* === HOW IT WORKS === */
.how {
  background: var(--off-white);
  padding: 120px 0;
  border-top: 1px solid var(--gray-light);
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.how h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 72px;
  color: var(--text);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 40px;
  color: var(--gray-light);
  margin-bottom: 20px;
  font-style: italic;
}
.how-step h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.how-step p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* === PRICING === */
.pricing {
  background: var(--black);
  color: var(--off-white);
  padding: 120px 0;
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pricing-left .section-label { color: var(--gold); }
.pricing-left h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--off-white);
  margin-bottom: 24px;
}
.pricing-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
}
.price-card {
  border: 1px solid #2a2a2a;
  padding: 48px;
}
.price-line {
  margin-bottom: 20px;
}
.price-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 52px;
  color: var(--off-white);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.price-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.price-features {
  list-style: none;
  border-top: 1px solid #2a2a2a;
  margin: 32px 0;
  padding-top: 32px;
}
.price-features li {
  font-size: 14px;
  color: #888;
  padding: 10px 0;
  border-bottom: 1px solid #1e1e1e;
  padding-left: 16px;
  position: relative;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.pricing .btn-primary {
  background: var(--off-white);
  color: var(--black);
  border-color: var(--off-white);
}
.pricing .btn-primary:hover {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}

/* === CONTACT === */
.contact {
  padding: 120px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--gray-light);
}
.contact h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 24px;
  color: var(--text);
}
.contact-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-line {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.contact-line:hover { color: var(--gold); }

/* === FOOTER === */
footer {
  background: var(--black);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer p {
  font-size: 13px;
  color: #444;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-left h2 { position: static; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-inner { grid-template-columns: 1fr; gap: 48px; }
  .price-card { padding: 32px 24px; }
  .hero { padding: 80px 0 100px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
