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

:root {
  --bg:        #080C14;
  --bg-alt:    #0F1624;
  --surface:   #141C2B;
  --border:    #1E2D42;
  --fg:        #E8EEF7;
  --fg-muted:  #7A8FA8;
  --accent:    #00D4AA;
  --accent-2:  #0099FF;
  --text-dim:  #4A5E78;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 96px 48px 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 780px;
  margin-bottom: 28px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ---- SERVICES ---- */
.services {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(0,212,170,0.35);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,170,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-example {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---- PRICING ---- */
.pricing {
  padding: 80px 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 800px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8L6.5 11.5L13 4' stroke='%2300D4AA' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}

.pricing-target {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ---- PROOF / QUOTE ---- */
.proof {
  padding: 80px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 700px;
}

.proof-mark {
  font-family: 'Syne', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}

.proof-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

/* ---- CLOSING ---- */
.closing {
  padding: 96px 48px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-direction: column; width: 100%; padding: 20px; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .services { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .closing-headline { font-size: 1.75rem; }
}