:root {
  --ink: #15191f;
  --night: #050a18;
  --midnight: #0b1638;
  --indigo: #172554;
  --signal: #6366f1;
  --signal-soft: #a5b4fc;
  --accent: #00a6a6;
  --paper: #f7f4ee;
  --muted: #667085;
  --line: rgba(247, 244, 238, 0.18);
  --dark-line: rgba(21, 25, 31, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Lexend, Inter, Avenir Next, Segoe UI, Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(5, 10, 24, 0.88);
  color: var(--paper);
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 750;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--signal-soft);
}

.brand span:last-child {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247, 244, 238, 0.72);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.header-cta:hover {
  color: #ffffff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(0, 166, 166, 0.7);
  border-radius: 999px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(0, 166, 166, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(5, 10, 24, 0.92), rgba(5, 10, 24, 0.58) 44%, rgba(5, 10, 24, 0.34) 76%, rgba(5, 10, 24, 0.72)),
    url("assets/evidence-workspace-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 56px 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 238, 0.36), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.52fr);
  gap: 48px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 96px;
}

.hero-content {
  max-width: 720px;
}

.hero-command {
  justify-self: end;
  align-self: end;
  width: min(100%, 500px);
  padding: 18px;
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 8px;
  background: rgba(5, 10, 24, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.command-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.command-topline span {
  color: rgba(247, 244, 238, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.command-topline strong {
  color: #ffffff;
  font-size: 42px;
  line-height: 0.9;
}

.command-map {
  position: relative;
  height: 132px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 244, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 238, 0.06) 1px, transparent 1px),
    rgba(5, 10, 24, 0.34);
  background-size: 42px 42px;
}

.map-node,
.map-line {
  position: absolute;
  display: block;
}

.map-node {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(0, 166, 166, 0.12);
}

.node-a {
  left: 12%;
  top: 58%;
}

.node-b {
  left: 38%;
  top: 30%;
}

.node-c {
  left: 66%;
  top: 46%;
}

.node-d {
  left: 84%;
  top: 22%;
}

.map-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(0, 166, 166, 0.1), rgba(0, 166, 166, 0.86));
}

.line-a {
  left: 14%;
  top: 61%;
  width: 128px;
  transform: rotate(-28deg);
}

.line-b {
  left: 40%;
  top: 34%;
  width: 138px;
  transform: rotate(16deg);
}

.line-c {
  left: 68%;
  top: 47%;
  width: 94px;
  transform: rotate(-32deg);
}

.command-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: 8px;
  background: rgba(247, 244, 238, 0.12);
}

.command-table div {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 86px minmax(86px, 0.8fr);
  gap: 12px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(5, 10, 24, 0.48);
}

.command-table div:first-child {
  min-height: 32px;
  background: rgba(247, 244, 238, 0.08);
}

.command-table span,
.command-table strong {
  color: rgba(247, 244, 238, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.command-table strong {
  color: #ffffff;
  font-weight: 850;
}

.command-table i {
  height: 7px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) var(--level), rgba(247, 244, 238, 0.13) var(--level));
}

.command-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.command-cards article {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(247, 244, 238, 0.12);
  border-radius: 8px;
  background: rgba(247, 244, 238, 0.08);
}

.command-cards span {
  display: block;
  color: #ffffff;
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.command-cards p {
  margin: 8px 0 0;
  color: rgba(247, 244, 238, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 650px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 999px;
  background: rgba(5, 10, 24, 0.38);
  color: rgba(247, 244, 238, 0.78);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-family: Lexend, Inter, Avenir Next, Segoe UI, Arial, sans-serif;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(247, 244, 238, 0.82);
  font-size: 24px;
  line-height: 1.35;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  color: var(--night);
  background: var(--paper);
}

.button.secondary {
  color: var(--paper);
  border: 1px solid rgba(247, 244, 238, 0.32);
}

.button.primary.light {
  color: var(--night);
  background: var(--paper);
}

.button.secondary.light {
  color: var(--paper);
  border-color: rgba(247, 244, 238, 0.38);
}

.button.primary.dark {
  color: #ffffff;
  background: var(--night);
}

.button:hover {
  transform: translateY(-1px);
}

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

.question-band {
  padding: 82px 0;
  background: var(--paper);
}

.question-inner {
  border-left: 4px solid var(--accent);
  padding-left: 32px;
}

.question-inner h2 {
  max-width: 1000px;
  margin: 0;
  font-family: Lexend, Inter, Avenir Next, Segoe UI, Arial, sans-serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
}

.split-section,
.buyer-section,
.focus-section,
.founder-section,
.tool-section,
.dashboard-section {
  padding: 104px 0;
  background: #ffffff;
}

.evidence-flow-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.evidence-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 31, 0.12);
  border-radius: 8px;
  background: rgba(21, 25, 31, 0.12);
}

.evidence-flow article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

.evidence-flow article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.evidence-flow span,
.evidence-pack-board span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-flow h3,
.evidence-pack-board h3 {
  margin: 0;
  color: var(--indigo);
  font-size: 19px;
  line-height: 1.25;
}

.evidence-flow p,
.evidence-pack-board p {
  margin: 12px 0 0;
  color: #4c5565;
}

.resources-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 166, 166, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.home-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-resource-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #ffffff;
}

.home-resource-grid h3 {
  margin: 0;
  color: var(--indigo);
  font-size: 21px;
  line-height: 1.22;
}

.home-resource-grid p {
  margin: 14px 0 0;
  color: #4c5565;
}

.home-resource-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--indigo);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 166, 0.45);
  text-underline-offset: 4px;
}

.resource-library-link {
  margin-top: 28px;
}

.split-grid,
.evidence-grid,
.founder-grid,
.tool-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.tool-section {
  background: #f7f4ee;
  border-top: 1px solid rgba(21, 25, 31, 0.08);
  border-bottom: 1px solid rgba(21, 25, 31, 0.08);
}

.dashboard-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 166, 166, 0.11), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7f4ee);
}

.dashboard-grid {
  align-items: center;
}

.dashboard-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 31, 0.12);
  border-radius: 8px;
  background: rgba(21, 25, 31, 0.12);
  box-shadow: 0 24px 60px rgba(5, 10, 24, 0.1);
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 110px minmax(120px, 0.8fr);
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 0 18px;
  background: #ffffff;
}

.dashboard-row-head {
  min-height: 48px;
  background: var(--night);
  color: rgba(247, 244, 238, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-row-head span {
  color: rgba(247, 244, 238, 0.72);
}

.dashboard-row span {
  color: var(--ink);
  font-weight: 760;
}

.dashboard-row strong {
  color: var(--indigo);
  font-size: 14px;
}

.dashboard-row i {
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) var(--level), rgba(21, 25, 31, 0.1) var(--level));
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.metric-strip span {
  display: grid;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(21, 25, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #4c5565;
  font-size: 14px;
  font-weight: 700;
}

.metric-strip strong {
  color: var(--indigo);
  font-size: 38px;
  line-height: 0.95;
}

.tool-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(21, 25, 31, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(5, 10, 24, 0.08);
}

.tool-panel span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-left: 3px solid var(--accent);
  background: rgba(23, 37, 84, 0.05);
  color: var(--indigo);
  font-weight: 850;
}

.tool-panel .button {
  justify-self: start;
  margin-top: 8px;
}

h2 {
  margin: 0;
  font-family: Lexend, Inter, Avenir Next, Segoe UI, Arial, sans-serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: #3f4858;
  font-size: 20px;
  line-height: 1.55;
}

.offer-price {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fbfaf7;
}

.offer-price span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.offer-price strong {
  max-width: 460px;
  color: var(--indigo);
  font-size: 19px;
  line-height: 1.35;
}

.offer-list,
.buyer-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

.offer-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-list article,
.buyer-grid article,
.service-grid article {
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fbfaf7;
}

.offer-list h3,
.buyer-grid h3,
.service-grid h3,
.method-rail h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.offer-list p,
.buyer-grid p,
.service-grid p,
.method-rail p {
  margin: 12px 0 0;
  color: #4c5565;
}

.method-section,
.services-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(99, 102, 241, 0.28), transparent 34%),
    linear-gradient(135deg, var(--night), var(--midnight) 50%, #08172b);
  color: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.method-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.method-rail article {
  min-height: 220px;
  padding: 24px;
  background: rgba(5, 10, 24, 0.52);
}

.method-rail span,
.service-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-rail p,
.service-grid p {
  color: rgba(247, 244, 238, 0.7);
}

.evidence-section {
  padding: 104px 0;
  background: var(--paper);
}

.keyword-list,
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-list span,
.credentials span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--dark-line);
  background: #ffffff;
  color: #333b49;
  font-weight: 720;
}

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

.evidence-pack-board article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(5, 10, 24, 0.06);
}

.focus-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(86, 193, 195, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfaf7);
}

.keyword-list {
  max-width: 1040px;
}

.keyword-list span {
  background: rgba(255, 255, 255, 0.84);
}

.buyer-grid,
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  background: rgba(247, 244, 238, 0.05);
  border-color: var(--line);
}

.service-grid h3 {
  color: var(--paper);
}

.founder-section {
  background:
    radial-gradient(circle at 84% 24%, rgba(99, 102, 241, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(247, 244, 238, 0.98), #ffffff);
}

.founder-grid {
  align-items: center;
}

.founder-grid .credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.founder-grid .credentials span {
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  text-align: center;
}

.cta-section {
  padding: 112px 0;
  background: var(--night);
  color: var(--paper);
}

.cta-inner {
  max-width: 980px;
}

.cta-inner h2 {
  font-size: 56px;
}

.contact-line {
  margin: 28px 0 0;
  color: rgba(247, 244, 238, 0.78);
  font-weight: 750;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 18px;
  color: rgba(247, 244, 238, 0.72);
  font-size: 15px;
}

.contact-social a,
.footer-links a {
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 166, 0.58);
  text-underline-offset: 4px;
}

.fine-print {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(247, 244, 238, 0.52);
  font-size: 14px;
}

.site-footer {
  background: var(--night);
  color: rgba(247, 244, 238, 0.62);
  border-top: 1px solid rgba(247, 244, 238, 0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 72px;
  }

  h2,
  .cta-inner h2 {
    font-size: 42px;
  }

  .split-grid,
  .evidence-grid,
  .founder-grid,
  .tool-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-rail,
  .buyer-grid,
  .service-grid,
  .home-resource-grid,
  .evidence-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-command {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .question-inner {
    padding-left: 20px;
  }

  .question-inner h2,
  h2,
  .cta-inner h2 {
    font-size: 34px;
  }

  .offer-list,
  .method-rail,
  .buyer-grid,
  .service-grid,
  .home-resource-grid,
  .evidence-flow,
  .evidence-pack-board,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 96px;
    padding: 16px;
  }

  .dashboard-row-head {
    display: none;
  }

  .command-table div {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 72px;
    padding: 12px;
  }

  .command-table div:first-child {
    display: none;
  }

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

  .split-section,
  .method-section,
  .evidence-section,
  .buyer-section,
  .focus-section,
  .services-section,
  .founder-section,
  .tool-section,
  .dashboard-section,
  .evidence-flow-section,
  .resources-section,
  .cta-section {
    padding: 76px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Hamburger menu */
.hamburger{display:none;flex-direction:column;justify-content:space-between;width:28px;height:20px;background:none;border:none;cursor:pointer;padding:0;margin-left:auto;z-index:200;}
.hamburger span{display:block;height:2px;width:100%;background:var(--cream,#f7f4ee);border-radius:2px;transition:transform .25s,opacity .25s;}
.hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(9px) rotate(45deg);}
.hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}
.page-hero{padding:6rem max(1rem,calc(50% - 560px)) 3.5rem;background:var(--dark,#050a18);color:var(--cream,#f7f4ee);}
.page-hero h1{font-size:clamp(2.4rem,5vw,4.5rem);line-height:1;margin:.5rem 0 1rem;max-width:800px;}
.page-hero .hero-lede{max-width:640px;font-size:clamp(1.05rem,1.8vw,1.35rem);color:rgba(247,244,238,.8);margin-bottom:2rem;}
.teaser-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem;margin-top:2.5rem;}
.teaser-card{display:block;padding:1.5rem;border:1px solid var(--line,rgba(21,25,31,.16));border-radius:1rem;background:rgba(255,255,255,.5);text-decoration:none;color:inherit;transition:box-shadow .2s,transform .2s;}
.teaser-card:hover{box-shadow:0 8px 32px rgba(5,10,24,.12);transform:translateY(-2px);}
.teaser-number{font-size:.75rem;font-weight:700;letter-spacing:.1em;color:var(--teal,#66dccb);display:block;margin-bottom:.5rem;}
.teaser-card h3{margin:0 0 .5rem;font-size:1.1rem;}
.teaser-card p{margin:0 0 .75rem;font-size:.92rem;color:var(--muted);}
.teaser-link{font-size:.88rem;font-weight:600;color:var(--teal,#66dccb);}
@media(max-width:767px){
  .hamburger{display:flex;}
  .nav-links{display:none;position:fixed;inset:0;background:var(--dark,#050a18);flex-direction:column;align-items:center;justify-content:center;gap:2rem;z-index:100;font-size:1.4rem;}
  .nav-links.nav-open{display:flex;}
  .nav-cta{display:none;}
  .hamburger{z-index:150;position:relative;}
  .nav-shell{position:relative;z-index:150;}
  .page-hero{padding:5rem 1.25rem 2.5rem;}
  .teaser-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){.teaser-grid{grid-template-columns:1fr;}}
