@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --cream-darker: #E0D9CC;
  --black: #1A1A1A;
  --gold: #F5A623;
  --gold-bg: #FFF8EC;
  --jade: #00A860;
  --jade-bg: #E6FFF5;
  --coral: #B85450;
  --coral-bg: #FFF0F0;
  --silver: #888;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--cream-darker);
}
.nav-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--silver);
  font-weight: 500;
  transition: color 0.1s;
}
.nav-links a:hover { color: var(--black); }
.btn-nav {
  background: var(--black);
  color: var(--cream);
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--black);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 3px 3px 0 var(--black);
  transition: all 0.08s;
  font-family: var(--font-ui);
  display: inline-block;
}
.btn-nav:hover { background: #333; }
.btn-nav:active { box-shadow: 1px 1px 0 var(--black); transform: translate(2px,2px); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid var(--black);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 var(--black);
  transition: all 0.08s;
  font-family: var(--font-ui);
}
.btn:active { box-shadow: 1px 1px 0 var(--black); transform: translate(3px,3px); }
.btn-black { background: var(--black); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-cream { background: var(--cream); color: var(--black); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--black); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-tiles {
  position: absolute;
  inset: 0;
  font-size: 52px;
  line-height: 1.1;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  word-break: break-all;
  padding: 0;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-bg);
  border: 2px solid var(--gold);
  color: #8A6000;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 2px 2px 0 var(--gold);
}
.hero h1 {
  font-size: 76px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 820px;
  color: var(--black);
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 19px;
  color: var(--silver);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 2px solid var(--cream-darker);
}
.stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--silver);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* SECTIONS */
.section { padding: 100px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--black);
}
.section-sub {
  font-size: 18px;
  color: var(--silver);
  line-height: 1.6;
  max-width: 520px;
  font-weight: 400;
}

/* FEATURES */
.features-section {
  background: #fff;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 4px 4px 0 var(--black);
  transition: all 0.1s;
}
.feature-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--silver); line-height: 1.6; font-weight: 400; }

/* HOW IT WORKS */
.how-section { background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 64px auto 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 13%; right: 13%;
  height: 2px;
  background: var(--black);
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--black);
  margin: 0 auto 16px;
  position: relative; z-index: 1;
  font-family: var(--font-mono);
  box-shadow: 3px 3px 0 var(--black);
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--silver); line-height: 1.5; font-weight: 400; }

/* PRICING */
.pricing-section {
  background: var(--black);
  border-top: 2px solid var(--black);
}
.pricing-section .section-title { color: var(--cream); }
.pricing-section .section-sub { color: rgba(245,240,232,0.4); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 64px auto 0;
}
.price-card {
  background: var(--cream);
  border: 2px solid var(--cream-darker);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 4px 4px 0 rgba(245,240,232,0.15);
}
.price-card.featured {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 6px 6px 0 rgba(245,166,35,0.3);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid var(--gold);
}
.price-name {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px; color: var(--silver);
}
.price-card.featured .price-name { color: rgba(26,26,26,0.6); }
.price-amount {
  font-size: 40px; font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  margin-bottom: 4px; color: var(--black);
}
.price-period { font-size: 13px; color: var(--silver); margin-bottom: 24px; font-weight: 500; }
.price-card.featured .price-period { color: rgba(26,26,26,0.5); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li {
  font-size: 14px; display: flex; align-items: center; gap: 8px;
  color: var(--black); font-weight: 500;
}
.price-features li::before { content: '✓'; font-weight: 800; color: var(--jade); flex-shrink: 0; }
.price-features li.no::before { content: '✗'; color: var(--coral); }
.price-features li.no { color: #aaa; }
.btn-price {
  width: 100%; padding: 12px;
  border-radius: 8px; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  transition: all 0.08s;
  font-family: var(--font-ui);
}
.btn-price:active { box-shadow: 1px 1px 0 var(--black); transform: translate(2px,2px); }
.btn-price-dark { background: var(--black); color: var(--cream); }
.btn-price-outline { background: transparent; color: var(--black); }

/* FAQ */
.faq-section {
  background: #fff;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.faq-grid { max-width: 700px; margin: 64px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
  transition: all 0.1s;
}
.faq-item:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }
.faq-q {
  font-size: 16px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-arr { transition: transform 0.2s; color: var(--silver); font-size: 18px; }
.faq-a { font-size: 14px; color: #666; line-height: 1.6; margin-top: 12px; display: none; font-weight: 400; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arr { transform: rotate(180deg); }

/* CTA BANNER */
.cta-section {
  background: var(--gold);
  padding: 80px 48px;
  text-align: center;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.cta-title { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(26,26,26,0.6); margin-bottom: 40px; font-weight: 400; }

/* FOOTER */
.footer {
  background: var(--black);
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.footer-brand { font-size: 16px; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: rgba(245,240,232,0.3); line-height: 1.6; font-weight: 400; margin-top: 8px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(245,240,232,0.3); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(245,240,232,0.5);
  margin-bottom: 10px; font-weight: 400;
  transition: color 0.1s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245,240,232,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(245,240,232,0.2); font-weight: 400; }

/* INNER PAGE */
.inner-hero {
  padding: 140px 48px 80px;
  max-width: 800px;
  margin: 0 auto;
}
.inner-hero h1 {
  font-size: 52px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.inner-hero .lead {
  font-size: 18px; color: var(--silver);
  line-height: 1.6; font-weight: 400;
}
.prose {
  max-width: 800px; margin: 0 auto;
  padding: 0 48px 100px;
}
.prose h2 {
  font-size: 24px; font-weight: 700;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 2px solid var(--cream-darker);
}
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 16px; font-weight: 400; }
.prose ul { margin: 0 0 16px 24px; }
.prose li { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 8px; font-weight: 400; }
.prose a { color: var(--black); text-decoration: underline; font-weight: 600; }
.prose strong { color: var(--black); font-weight: 700; }
.last-updated {
  display: inline-block;
  background: var(--cream-dark);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 48px;
  box-shadow: 2px 2px 0 var(--black);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.contact-card {
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 4px 4px 0 var(--black);
}
.contact-icon { font-size: 32px; margin-bottom: 12px; }
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver); margin-bottom: 6px; }
.contact-value { font-size: 18px; font-weight: 700; }
.contact-desc { font-size: 14px; color: var(--silver); margin-top: 6px; font-weight: 400; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links .hide-mobile { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 44px; }
  .hero-stats { gap: 28px; }
  .section { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inner-hero { padding: 120px 20px 48px; }
  .inner-hero h1 { font-size: 36px; }
  .prose { padding: 0 20px 64px; }
  .contact-grid { grid-template-columns: 1fr; padding: 0 20px 64px; }
  .cta-title { font-size: 32px; }
  .section-title { font-size: 36px; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}