/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Satoshi:wght@400;500;700&display=swap');

/* === TOKENS === */
:root {
  --bg: #faf9f5;
  --bg-alt: #f0ece3;
  --dark: #1a1a1a;
  --dark-mid: #2a2a2a;
  --dark-light: #3a3a3a;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --amber-glow: rgba(245, 158, 11, 0.08);
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --white: #ffffff;
  --border: rgba(26, 26, 26, 0.12);
  --border-dark: rgba(255, 255, 255, 0.08);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Instrument Serif', serif; font-weight: 400; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(42px, 5.5vw, 78px);
  color: var(--white);
  font-style: normal;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 20px;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 220px;
  flex-shrink: 0;
}
.card {
  position: absolute;
  width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-back { top: 0; right: 0; transform: rotate(4deg); }
.card-mid { top: 30px; right: 20px; transform: rotate(1deg); }
.card-front { top: 50px; right: 0; transform: rotate(-2deg); border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.05); }
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.card-badge-amber { color: var(--amber); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.card-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.card-line.short { width: 45%; }
.card-line.long { width: 85%; }
.card-line.medium { width: 65%; }
.hero-stat {
  text-align: right;
  padding: 20px 24px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-pct {
  font-size: 32px;
  vertical-align: super;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  line-height: 1.5;
}

/* === STATS === */
.stats {
  background: var(--amber);
  padding: 48px 80px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-unit {
  font-size: 36px;
  vertical-align: super;
}
.stat-desc {
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  margin-top: 8px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(26,26,26,0.15);
  flex-shrink: 0;
}

/* === FEATURES === */
.features {
  padding: 100px 80px;
  background: var(--bg);
}
.features-header {
  max-width: 560px;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--dark);
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-item {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.feature-item:hover { background: var(--bg-alt); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}
.feature-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--dark);
  padding: 100px 80px;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 120px;
  color: var(--amber);
  line-height: 0.8;
  display: block;
  margin-bottom: 24px;
}
blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* === HOW IT WORKS === */
.howitworks {
  background: var(--bg-alt);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}
.howitworks-header {
  margin-bottom: 64px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--amber-dim);
  color: rgba(245,158,11,0.4);
  letter-spacing: -0.03em;
}
.step-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-arrow { opacity: 0.4; }
.howitworks-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hw-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hw-num {
  font-family: 'Instrument Serif', serif;
  font-size: 40px;
  color: var(--amber);
  letter-spacing: -0.03em;
}
.hw-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* === PRICING === */
.pricing {
  background: var(--dark);
  padding: 100px 80px;
}
.pricing-header { margin-bottom: 60px; }
.pricing .section-title { color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 36px;
  position: relative;
}
.pricing-card-featured {
  background: rgba(245,158,11,0.07);
  border-color: rgba(245,158,11,0.3);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-per {
  font-size: 20px;
  vertical-align: super;
}
.pricing-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 28px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 28px;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: 100px 80px;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(36px, 4vw, 58px);
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.closing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.cd-line { flex: 1; height: 1px; background: var(--border); }
.cd-diamond { flex-shrink: 0; }
.closing-tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  color: var(--amber);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 64px 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { padding: 60px 40px; }
  .stats { padding: 40px 40px; }
  .features { padding: 80px 40px; }
  .manifesto { padding: 80px 40px; }
  .howitworks { padding: 80px 40px; }
  .pricing { padding: 80px 40px; }
  .closing { padding: 80px 40px; }
  .footer { padding: 64px 40px 32px; }
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { align-items: flex-start; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 48px 24px; }
  .stats { padding: 32px 24px; }
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .howitworks { padding: 60px 24px; }
  .step { grid-template-columns: 60px 1fr; }
  .step-arrow { display: none; }
  .howitworks-stats { flex-wrap: wrap; gap: 24px; }
  .pricing { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-card-stack { width: 100%; }
}
