:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #20242f;
  --muted: #5f687f;
  --border: #e4e7ee;
  --primary: #1e3a8a;
  --primary-hover: #183174;
  --soft: #eef2ff;
  --shadow: 0 18px 45px rgba(20, 30, 60, 0.10);
  --shadow-soft: 0 12px 30px rgba(20, 30, 60, 0.06);
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-md: 14px;
  --container: 1120px;
  --header-offset: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-offset);
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(30, 58, 138, 0.16), transparent 60%),
    radial-gradient(780px 480px at 88% 0%, rgba(99, 102, 241, 0.14), transparent 55%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 42%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 251, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 231, 238, 0.70);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.hero {
  padding: 54px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,0.55), transparent 60%),
    linear-gradient(135deg, #1e3a8a, #4f46e5);
  box-shadow: 0 10px 22px rgba(30, 58, 138, 0.25);
}

.brand-name {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 860;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e3a8a, #4f46e5);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(30, 58, 138, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(30, 58, 138, 0.28);
  background: linear-gradient(135deg, #183174, #4338ca);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #f3f5f9;
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

section {
  margin-bottom: 24px;
}

.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cta {
  margin-top: 56px;
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(99, 102, 241, 0.30), transparent 55%),
    radial-gradient(900px 520px at 80% 10%, rgba(30, 58, 138, 0.32), transparent 58%),
    linear-gradient(180deg, #111827, #0b1224);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta p {
  color: #c7ccd8;
  max-width: 640px;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.footer {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  font-weight: 700;
  color: var(--text);
}

.footer-sep {
  opacity: 0.7;
}

/* New layout sections */
.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 28px;
}

.hero-copy p {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: 1.14rem;
  line-height: 1.45;
}

.positioning {
  margin: 14px 0 0;
  font-size: 0.98rem;
  color: rgba(95, 104, 127, 0.98);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 238, 0.80);
  background: rgba(255, 255, 255, 0.70);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-preview {
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.preview-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(95, 104, 127, 0.92);
}

.mock-app {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(228, 231, 238, 0.95);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(99, 102, 241, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 28px 70px rgba(20, 30, 60, 0.18);
  padding: 18px;
}

.mock-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 14px;
  border-bottom: 1px solid rgba(228, 231, 238, 0.75);
}

.mock-dots {
  display: inline-flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(32, 36, 47, 0.14);
}

.mock-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mock-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--soft);
  border: 1px solid rgba(228, 231, 238, 0.75);
  border-radius: 999px;
  padding: 6px 10px;
}

.mock-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kpi {
  border-radius: var(--radius-md);
  border: 1px solid rgba(228, 231, 238, 0.85);
  background: rgba(255, 255, 255, 0.80);
  padding: 14px 14px 12px;
}

.kpi-warn {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(255, 251, 235, 0.65);
}

.kpi-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(95, 104, 127, 0.95);
}

.kpi-value {
  margin-top: 6px;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.kpi-sub {
  margin-top: 2px;
  font-size: 0.88rem;
  color: rgba(95, 104, 127, 0.95);
}

.mock-split {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mock-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(228, 231, 238, 0.85);
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
}

.mock-card-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar {
  display: grid;
  grid-template-columns: 60px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.bar-label,
.bar-value {
  font-size: 0.88rem;
  color: rgba(95, 104, 127, 0.98);
  font-weight: 700;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(228, 231, 238, 0.80);
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f46e5, #1e3a8a);
}

.bar-fill-mid {
  background: linear-gradient(90deg, #60a5fa, #4f46e5);
}

.bar-fill-high {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.priority {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.priority li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}

.prio-name {
  color: var(--text);
  font-weight: 700;
  font-size: 0.93rem;
}

.prio-badge {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(228, 231, 238, 0.90);
  background: rgba(238, 242, 255, 0.85);
  color: #1e3a8a;
}

.prio-badge-high {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(254, 242, 242, 0.85);
  color: #b91c1c;
}

.section {
  position: relative;
  padding: 68px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
  z-index: -1;
}

.section-alt::before {
  background:
    radial-gradient(1200px 640px at 18% 0%, rgba(99, 102, 241, 0.08), transparent 60%),
    radial-gradient(900px 520px at 82% 20%, rgba(30, 58, 138, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.50));
  border-top: 1px solid rgba(228, 231, 238, 0.65);
  border-bottom: 1px solid rgba(228, 231, 238, 0.65);
}

.section-head {
  max-width: 860px;
}

.section-head h2 {
  font-size: 1.8rem;
}

.section-head p {
  font-size: 1.05rem;
  margin: 0;
  max-width: 66ch;
}

.feature-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 231, 238, 0.90);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

h3 {
  margin: 2px 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature-card p,
.audience-card p {
  margin: 0;
  color: rgba(95, 104, 127, 0.98);
}

/* What you actually get */
.deliverables {
  margin-top: 18px;
}

.deliverables-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(228, 231, 238, 0.90);
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(79, 70, 229, 0.12), transparent 55%),
    radial-gradient(900px 520px at 82% 20%, rgba(30, 58, 138, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-soft);
  padding: 20px 20px;
}

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.output-card {
  border-radius: 18px;
  border: 1px solid rgba(228, 231, 238, 0.95);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(20, 30, 60, 0.06);
  padding: 14px 14px 12px;
}

.output-card-wide {
  grid-column: 1 / -1;
}

.output-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(32, 36, 47, 0.96);
}

.output-sub {
  margin-top: 6px;
  color: rgba(95, 104, 127, 0.98);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
}

.steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 231, 238, 0.90);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary);
  background: var(--soft);
  border: 1px solid rgba(228, 231, 238, 0.85);
}

.step p {
  margin: 0;
}

.audience-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 231, 238, 0.90);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

@media (max-width: 760px) {
  .container {
    padding: 24px 16px 48px;
  }

  .hero {
    padding: 38px 0 20px;
  }

  .section {
    padding: 52px 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section-card {
    padding: 24px;
  }

  .cta {
    padding: 28px;
  }

  .nav {
    display: none;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    justify-self: stretch;
    max-width: 560px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .outputs-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}