@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@400;500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #080a0f;
  --panel: #0e1118;
  --panel-2: #131720;
  --panel-3: #181d28;
  --text: #eef0f7;
  --muted: #7a8299;
  --muted-2: #a0abc2;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --accent: #c8f04a;
  --accent-dim: rgba(200,240,74,0.12);
  --accent-glow: rgba(200,240,74,0.06);
  --blue: #4a7cf0;
  --shadow: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Background atmosphere */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% -5%, rgba(74,124,240,0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 10%, rgba(200,240,74,0.07), transparent 55%),
    radial-gradient(ellipse 1000px 600px at 50% 100%, rgba(74,124,240,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--text);
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-sub {
  margin-top: 6px;
  font-size: 1.05rem;
  max-width: 60ch;
}

.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }
.text-light { color: var(--text); }
.small { font-size: 0.9rem; }

/* ── HEADER / NAV ── */
.header {
  padding: 24px 0 56px;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* ── HERO ── */
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 18px;
}

.sub {
  color: var(--muted-2);
  font-size: 1.1rem;
  max-width: 58ch;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.7;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

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

/* ── SECTIONS ── */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
}

/* ── CARDS ── */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* ── GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #0a0c10;
  font-weight: 700;
  font-size: 0.925rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.button-ghost:hover {
  background: rgba(255,255,255,0.06);
  filter: none;
}

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  width: 100%;
}

.button-outline:hover {
  background: rgba(255,255,255,0.06);
  filter: none;
  transform: translateY(-1px);
}

.button-small {
  padding: 9px 14px;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  align-items: start;
}

.pricing-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card--featured {
  background: linear-gradient(160deg, rgba(200,240,74,0.1), rgba(200,240,74,0.04), rgba(255,255,255,0.02));
  border-color: rgba(200,240,74,0.3);
  box-shadow: 0 0 0 1px rgba(200,240,74,0.15), var(--shadow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0c10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
}

.pricing-header {
  margin-bottom: 18px;
}

.tier-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--text);
}

.tier-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-big {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-plus {
  font-size: 1.8rem;
}

.price-label {
  font-size: 0.85rem;
}

.retainer-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.retainer-price {
  font-weight: 700;
  color: var(--muted-2);
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.checklist li {
  color: var(--muted-2);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.year-value {
  font-size: 0.82rem;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.9rem;
  padding: 16px 20px;
}

/* ── ROI CARD ── */
.roi-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px;
  background: linear-gradient(135deg, rgba(74,124,240,0.12), rgba(74,124,240,0.04));
  border-color: rgba(74,124,240,0.2);
}

.roi-text { flex: 1; min-width: 240px; }
.roi-text h2 { margin-bottom: 12px; }

.roi-stat {
  text-align: center;
  flex-shrink: 0;
}

.roi-number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
}

.roi-unit {
  font-size: 2rem;
  color: var(--muted);
}

/* ── BULLETS ── */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullets li {
  color: var(--muted-2);
  padding-left: 18px;
  position: relative;
  font-size: 0.95rem;
}

.bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* ── STEPS ── */
.steps {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps li {
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 6px;
}

.steps strong {
  color: var(--text);
  font-weight: 600;
}

/* ── CARD ACTIONS ── */
.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ── PORTFOLIO IMAGE ── */
.portfolio-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--panel-2);
  display: block;
}

/* ── CONTACT ── */
.contact-box {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 16px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.footer-inner a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    order: -1;
  }

  .roi-card {
    flex-direction: column;
    text-align: center;
  }

  .roi-stat {
    width: 100%;
  }

  .button-outline {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .links { gap: 4px; }
}
