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

:root {
  --amber: #e8a045;
  --amber-light: #fdf3e3;
  --amber-dark: #c4781a;
  --slate-900: #0d1117;
  --slate-800: #161b22;
  --slate-700: #1c2333;
  --slate-600: #2d3748;
  --slate-400: #6b7280;
  --slate-300: #d1d5db;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --white: #ffffff;
  --green: #22c55e;
  --green-bg: #14532d;
  --amber-badge: #92400e;
  --amber-badge-bg: #fef3c7;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--slate-900);
  color: var(--slate-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* SECTION LABELS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 40px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-300);
  line-height: 1.7;
  max-width: 420px;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,160,69,0.15);
}
.ring-1 { width: 100%; height: 100%; top: 0; left: 0; }
.ring-2 { width: 75%; height: 75%; top: 12.5%; left: 12.5%; border-color: rgba(232,160,69,0.1); }
.ring-3 { width: 50%; height: 50%; top: 25%; left: 25%; border-color: rgba(232,160,69,0.08); }
.visual-card {
  position: absolute;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  min-width: 220px;
}
.card-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-900);
  flex-shrink: 0;
}
.card-content { flex: 1; }
.card-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); font-weight: 500; }
.card-value { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.card-meta { display: block; font-size: 11px; color: var(--slate-400); margin-top: 2px; }
.card-badge { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.05em; }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-amber { background: rgba(232,160,69,0.15); color: var(--amber); }

.card-1 { top: 8%; left: 5%; }
.card-2 { top: 42%; right: 0; }
.card-3 { bottom: 12%; left: 10%; }

/* WHAT */
.what {
  background: var(--slate-800);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.what-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.what-body {
  font-size: 16px;
  color: var(--slate-300);
  line-height: 1.7;
}
.what-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 32px;
  border-left: 2px solid var(--amber);
  margin-bottom: 24px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.stat-desc {
  font-size: 14px;
  color: var(--slate-400);
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.features-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 540px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(232,160,69,0.3); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-tags span {
  font-size: 11px;
  font-weight: 500;
  background: rgba(232,160,69,0.1);
  color: var(--amber);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* PRICING */
.pricing {
  background: var(--slate-800);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 96px 32px; }
.pricing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--amber);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--amber);
  color: var(--slate-900);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-note { font-size: 14px; color: var(--slate-400); }
.pricing-desc { font-size: 14px; color: var(--slate-400); line-height: 1.6; margin-bottom: 28px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-list li {
  font-size: 14px;
  color: var(--slate-300);
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.pricing-footnote {
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* TESTIMONIALS */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.testimonials-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
}
.quote {
  font-size: 15px;
  color: var(--slate-200);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.author-name { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.author-role { display: block; font-size: 12px; color: var(--slate-400); margin-top: 2px; }

/* CLOSING */
.closing { background: var(--amber); }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 96px 32px; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: rgba(13,17,23,0.7);
  line-height: 1.7;
  max-width: 560px;
}

/* FOOTER */
.footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline { font-size: 13px; color: var(--slate-400); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-split, .what-inner, .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .what-inner, .features, .pricing-inner, .testimonials { padding-left: 20px; padding-right: 20px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .pricing-card { padding: 28px; }
  .card-2, .card-3 { display: none; }
  .hero-visual { max-width: 280px; margin: 0 auto; }
  .features { padding-top: 64px; padding-bottom: 64px; }
  .testimonials { padding-top: 64px; padding-bottom: 64px; }
  .what-inner { padding-top: 64px; padding-bottom: 64px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .stat-number { font-size: 40px; }
  .price-amount { font-size: 36px; }
}