:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EFE9;
  --fg: #0F0F0F;
  --fg-muted: #6B6B6B;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --border: rgba(15, 15, 15, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-ai {
  color: var(--accent);
  font-size: 0.75em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 520px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--fg);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pulse-grid {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.25;
  animation: pulse-expand 3s ease-in-out infinite;
}
.pulse-ring-1 { width: 160px; height: 160px; animation-delay: 0s; }
.pulse-ring-2 { width: 240px; height: 240px; animation-delay: 0.6s; }
.pulse-ring-3 { width: 320px; height: 320px; animation-delay: 1.2s; }
@keyframes pulse-expand {
  0% { transform: scale(0.85); opacity: 0.3; }
  50% { transform: scale(1); opacity: 0.15; }
  100% { transform: scale(0.85); opacity: 0.3; }
}
.pulse-core {
  position: relative;
  z-index: 2;
  animation: core-glow 2s ease-in-out infinite;
}
@keyframes core-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5)); }
  50% { filter: drop-shadow(0 0 16px rgba(245, 166, 35, 0.8)); }
}
.pulse-node {
  position: absolute;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.node-label { color: var(--fg); }
.node-status { color: var(--accent); font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.pulse-node-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.pulse-node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.pulse-node-3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.pulse-node-4 { top: 50%; left: 0; transform: translateY(-50%); }

.hero-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.logos-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
}
.logo-tag {
  background: var(--fg);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* PROOF */
.proof {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 32px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof-item { flex: 1; }
.proof-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.proof-text { font-size: 0.85rem; color: rgba(250,250,245,0.6); line-height: 1.5; }
.proof-divider { width: 1px; height: 60px; background: rgba(250,250,245,0.15); flex-shrink: 0; }

/* SECTION SHARED */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

/* SERVICES */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card:hover {
  background: #F8F7F2;
  transition: background 0.2s;
}
.service-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: start;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card-wide .service-icon { margin-bottom: 0; margin-right: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.service-card-wide ul {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* HOW IT WORKS */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
  background: var(--bg-alt);
  border-radius: 24px;
  margin-bottom: 96px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.step {
  flex: 1;
  padding: 32px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 56px;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  transform: rotate(-45deg);
}
.process-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.process-callout p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.pricing-tier {
  background: var(--fg);
  color: var(--bg);
  border-radius: 20px;
  padding: 48px;
  max-width: 640px;
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.price-period {
  font-size: 1rem;
  color: rgba(250,250,245,0.5);
}
.pricing-desc {
  font-size: 0.9rem;
  color: rgba(250,250,245,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(250,250,245,0.85);
}
.pricing-cta {
  border-top: 1px solid rgba(250,250,245,0.12);
  padding-top: 24px;
}
.pricing-cta p {
  font-size: 0.85rem;
  color: rgba(250,250,245,0.5);
  font-style: italic;
}
.pricing-faq {
  margin-top: 48px;
  max-width: 640px;
}
.pricing-faq h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.faq-a { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.testimonial-card-accent {
  background: var(--fg);
  color: var(--bg);
  border-color: transparent;
}
.testimonial-icon { margin-bottom: 20px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--fg);
}
.testimonial-card-accent .testimonial-quote { color: var(--bg); }
.testimonial-context {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.testimonial-card-accent .testimonial-context { color: rgba(250,250,245,0.5); }

/* CLOSING */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 32px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.05rem;
  color: rgba(250,250,245,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.closing-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}
.closing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.4;
  animation: pulse-expand 2.5s ease-in-out infinite;
}
.closing-ring-2 {
  width: 60px;
  height: 60px;
  animation-delay: 0.5s;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-copy a { color: var(--accent); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .service-card-wide ul { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }
  .step-connector::after {
    right: auto;
    left: -4px;
    top: auto;
    bottom: -2px;
    border-right: none;
    border-bottom: 2px solid var(--border);
    border-left: 2px solid var(--border);
    transform: rotate(-45deg);
  }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 32px; }
  .services, .pricing, .testimonials { padding: 64px 20px; }
  .how-it-works { padding: 64px 20px; border-radius: 16px; }
  .pricing-tier { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
