:root {
  --midnight: #0B1D33;
  --navy-mid: #122440;
  --aqua: #00D8FF;
  --aqua-dim: rgba(0, 216, 255, 0.12);
  --cream: #F5F0E8;
  --cream-mid: #EDE8DF;
  --charcoal: #1C1C1E;
  --warm-gray: #6B6560;
  --body-text: #2D2926;
  --section-pad: 80px;
  --container: 1100px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── HERO ── */
.hero {
  background: var(--midnight);
  color: #fff;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 216, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0, 216, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-headline em {
  font-style: italic;
  color: var(--aqua);
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.hero-stat {
  padding-right: 40px;
  flex-shrink: 0;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  margin-right: 40px;
  flex-shrink: 0;
}

.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-width: 160px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-mid);
  padding: 36px 40px;
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stats-icon {
  color: var(--aqua);
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.stats-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── SERVICES ── */
.services {
  padding: var(--section-pad) 40px;
  background: var(--cream);
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}

.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--midnight);
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-mid);
}

.service-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}

.service-card:hover {
  background: #fff;
}

.service-icon {
  color: var(--aqua);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: var(--section-pad) 40px;
  background: var(--midnight);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process-header {
  margin-bottom: 64px;
}

.process-header .section-headline {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  padding: 0;
}

.process-connector {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 32px;
  align-self: start;
  margin-left: -1px;
  margin-right: -1px;
}

.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(0, 216, 255, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: var(--section-pad) 40px;
  background: var(--cream);
  border-top: 1px solid var(--cream-mid);
}

.outcomes-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-copy .section-headline {
  margin-bottom: 24px;
}

.outcomes-body {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.outcomes-list li {
  font-size: 15px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcomes-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--aqua-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  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='%2300D8FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.outcomes-visual {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--cream-mid);
  padding: 4px;
}

.outcome-metric {
  background: #fff;
  padding: 36px 32px;
}

.metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  background: var(--midnight);
  padding: 100px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-icon {
  color: var(--aqua);
  margin-bottom: 36px;
}

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── FOOTER ── */
.footer {
  background: #070F1C;
  padding: 36px 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── CLOSING CTA ── */
.closing-cta {
  display: inline-block;
  background: var(--aqua);
  color: var(--midnight);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.closing-cta:hover {
  background: #00c0e8;
  box-shadow: 0 4px 20px rgba(0,216,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 72px 24px 56px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stat-divider { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-connector { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-visual { display: flex; flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: 42px; }
}