:root {
  --bg: #0f0f0f;
  --bg-alt: #161614;
  --bg-card: #1c1b18;
  --fg: #e8e4dc;
  --fg-muted: #9a9590;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --border: rgba(232, 228, 220, 0.08);
  --border-accent: rgba(245, 158, 11, 0.2);
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  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 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--accent); }
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,228,220,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,228,220,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.meta-item {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.meta-sep {
  color: var(--fg-muted);
  font-size: 20px;
}
.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Workflow Card */
.workflow-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.05), 0 24px 48px rgba(0,0,0,0.4);
}
.workflow-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.wh-dot--green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.wf-step {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
}
.wf-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.wf-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.wf-sub {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 1px;
}
.wf-status {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.wf-status--done { color: #22c55e; border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); }
.wf-status--live {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--accent-dim);
  animation: pulse 2s ease-in-out infinite;
}
.wf-connector {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 4px 0 4px 14px;
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── PROBLEM ── */
.problem { padding: 100px 32px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── SERVICES ── */
.services { padding: 100px 32px; background: var(--bg-alt); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.svc-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.svc-card:hover { background: #212019; }
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.svc-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing { padding: 100px 32px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}
.price-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, #1e1c18 0%, #1c1b17 100%);
  box-shadow: 0 0 0 1px var(--border-accent), 0 0 48px rgba(245,158,11,0.08);
}
.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0f0f0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.price-period {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-muted);
}
.price-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
}
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23f59e0b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-model {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
}
.pm-bar {
  flex: 1;
  display: flex;
  gap: 3px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
}
.pm-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.pm-seg--setup {
  flex: 0 0 36%;
  background: rgba(245,158,11,0.15);
  color: var(--accent);
}
.pm-seg--recurring {
  flex: 1;
  background: rgba(245,158,11,0.08);
  color: var(--fg-muted);
}
.pm-label { font-size: 10px; letter-spacing: 0.04em; }
.pm-val { font-size: 13px; margin-left: 4px; }
.pm-note {
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
}
.pm-note strong { color: var(--fg); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 32px; background: var(--bg-alt); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.ind-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s ease;
}
.ind-card:hover { background: #212019; }
.ind-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.ind-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ind-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
}
.closing-bg-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 56px;
}
.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}
.cs-item {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.cs-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.cs-label { font-size: 12px; color: var(--fg-muted); text-align: center; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 48px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { margin-bottom: 40px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-built { font-size: 12px; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .closing-stats { grid-template-columns: 1fr; }
  .pricing-model { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .problem, .services, .pricing, .testimonials, .closing { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
}