:root {
  --bg: #050608;
  --panel: #0e1015;
  --text: #f4f2ea;
  --muted: #a3a7b3;
  --soft: #d8d5ca;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e6dfc8;

  --max-width: 1180px;
  --side-padding: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 11vw, 128px);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(230, 223, 200, 0.08), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(120, 130, 160, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  background: rgba(5, 6, 8, 0.50);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

.nav a {
  transition: color 160ms ease;
}

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

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

/* Full-bleed hero */
.hero {
  position: relative;
  width: 100vw;
  min-height: 760px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030407;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.94) 0%, rgba(3, 4, 7, 0.72) 24%, rgba(3, 4, 7, 0.32) 52%, rgba(3, 4, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.18) 0%, rgba(3, 4, 7, 0.06) 58%, rgba(3, 4, 7, 0.82) 100%),
    url("assets/manifold-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding:
    clamp(170px, 21vh, 230px)
    var(--side-padding)
    clamp(96px, 14vh, 140px);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 740;
}

.hero-copy {
  max-width: 680px;
  margin: clamp(25px, 5vw, 52px) 0 0;
  color: var(--soft);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.62;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 62px;
  height: 2px;
  margin-bottom: 30px;
  background: var(--accent);
}

.section {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
}

.section-copy {
  padding-top: clamp(8px, 3vw, 48px);
}

.section-copy p {
  margin: 0 0 22px;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.cards {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 223, 200, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
}

.card-index {
  display: block;
  margin-bottom: 56px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.card p {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
}

.focus-list {
  display: grid;
  gap: 14px;
  padding-top: clamp(8px, 3vw, 48px);
}

.focus-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.focus-list p {
  margin: 12px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
}

.risk {
  max-width: 920px;
}

blockquote {
    margin: 0;
    color: var(--text);
    font-size: clamp(32px, 4.8vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.risk > p:not(.eyebrow) {
    max-width: 760px;
    margin: 38px 0 0;
    color: var(--soft);
    font-size: clamp(17px, 1.75vw, 21px);
    line-height: 1.62;
}

.contact {
    padding-bottom: 132px;
}

.contact h2 {
    margin-bottom: 28px;
}

.contact p:not(.eyebrow) {
    margin: 0;
    font-size: 20px;
}

.contact-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--text);
    font-size: clamp(18px, 2.2vw, 24px);
    border-bottom: 1px solid var(--text);
    transition:
        color 160ms ease,
        border-color 160ms ease;
}

.contact-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.site-footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 34px var(--side-padding) 58px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-header {
        display: block;
        padding: 18px var(--side-padding) 14px;
    }

    .brand {
        display: block;
        margin-bottom: 14px;
    }

    .nav {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
        font-size: 11px;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .hero {
        min-height: 720px;
    }

    .hero-media {
        background:
        linear-gradient(90deg, rgba(3, 4, 7, 0.94) 0%, rgba(3, 4, 7, 0.72) 42%, rgba(3, 4, 7, 0.30) 100%),
        linear-gradient(180deg, rgba(3, 4, 7, 0.18) 0%, rgba(3, 4, 7, 0.10) 54%, rgba(3, 4, 7, 0.86) 100%),
        url("assets/manifold-background.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding-top: 166px;
    }

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

    .section-copy,
    .focus-list {
        padding-top: 0;
    }

    .card {
        min-height: auto;
    }

    .card-index {
        margin-bottom: 42px;
    }

    .site-footer {
        flex-direction: column;
        padding-bottom: 44px;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 680px;
    }
        h1 {
            max-width: 100%;
            font-size: clamp(28px, 8vw, 40px);
            line-height: 1.08;
        }

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


/* Research Process: linear institutional layout */
.process-section {
  padding-top: clamp(78px, 9vw, 112px);
}

.process-section > h2 {
  max-width: 760px;
}

.process-steps {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 360px;
  padding: 64px 38px 12px 0;
}

.process-step + .process-step {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.process-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 223, 200, 0.20);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(230, 223, 200, 0.10), rgba(255, 255, 255, 0.025) 62%, rgba(255, 255, 255, 0.01));
}

.process-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-index {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 680;
}

.process-step p {
  margin: 18px 0 0;
  max-width: 250px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Focus Areas section */
.focus-areas-section {
  padding-top: clamp(78px, 9vw, 112px);
}

.focus-areas-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.focus-area {
  position: relative;
  min-height: 250px;
  padding: 34px 18px 10px 18px;
}

.focus-area + .focus-area {
  border-left: 1px solid var(--line);
}

.focus-area-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
}

.focus-area-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-area h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 580;
}

.focus-area p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Lower panels: Risk + Contact */
.lower-panels {
  padding-top: clamp(78px, 9vw, 112px);
  padding-bottom: clamp(76px, 9vw, 108px);
}

.lower-panels-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 1.45fr) minmax(240px, 0.95fr);
  border-top: 1px solid var(--line);
}

.risk-heading-panel,
.risk-copy-panel,
.contact-panel-compact {
  padding-top: 34px;
}

.risk-heading-panel {
  padding-right: 34px;
}

.risk-copy-panel,
.contact-panel-compact {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.risk-heading-panel blockquote {
  margin-top: 10px;
  max-width: 320px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.panel-accent-line {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 28px;
  background: var(--accent);
}

.risk-copy-panel p {
  margin: 0 0 20px;
  max-width: 520px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.contact-panel-compact h3 {
  margin: 6px 0 12px;
  font-size: 22px;
  line-height: 1.18;
  color: var(--text);
  font-weight: 650;
}

.contact-panel-compact p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.contact-panel-compact .contact-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 18px;
  color: var(--accent);
  border-bottom: 1px solid rgba(230, 223, 200, 0.55);
}

.contact-panel-compact .contact-link:hover {
  color: var(--text);
  border-color: var(--text);
}

@media (max-width: 1200px) {
  .focus-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .focus-area:nth-child(4) {
    border-left: none;
  }

  .focus-area:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step {
    min-height: auto;
    padding: 42px 28px 42px 0;
    border-top: 1px solid var(--line);
  }

  .process-step + .process-step {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .process-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 30px;
  }

  .focus-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-area:nth-child(3),
  .focus-area:nth-child(5) {
    border-left: none;
  }

  .focus-area:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .risk-copy-panel,
  .contact-panel-compact {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 34px;
  }

  .site-header {
    display: block;
    padding: 18px var(--side-padding) 14px;
  }

  .brand {
    display: block;
    margin-bottom: 14px;
  }

  .nav {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 11px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.94) 0%, rgba(3, 4, 7, 0.72) 42%, rgba(3, 4, 7, 0.30) 100%),
      linear-gradient(180deg, rgba(3, 4, 7, 0.18) 0%, rgba(3, 4, 7, 0.10) 54%, rgba(3, 4, 7, 0.86) 100%),
      url("assets/manifold-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    padding-top: 166px;
  }

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

  .section-copy,
  .focus-list {
    padding-top: 0;
  }

  .card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 42px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 44px;
  }
}

@media (max-width: 560px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    padding: 34px 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .process-step p {
    max-width: none;
  }

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

  .focus-area + .focus-area {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .focus-area {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

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

  .risk-copy-panel p,
  .contact-panel-compact p:not(.eyebrow) {
    font-size: 17px;
  }
}


/* Refinement: unified icons, balanced Focus Areas copy, right-aligned Contact panel */
.focus-areas-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.focus-area {
  min-height: 248px;
  padding: 34px 20px 10px 20px;
}

.focus-area-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 223, 200, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(230, 223, 200, 0.085), rgba(255, 255, 255, 0.018) 62%, rgba(255, 255, 255, 0.006));
}

.focus-area-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.focus-area h3 {
  min-height: 42px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 620;
}

.focus-area p {
  min-height: 72px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.lower-panels-grid {
  grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.55fr) minmax(300px, 1.05fr);
  column-gap: 0;
}

.risk-heading-panel {
  padding-right: 34px;
}

.risk-copy-panel {
  padding-left: 34px;
  padding-right: 46px;
}

.contact-panel-compact {
  padding-left: 46px;
  justify-self: stretch;
}

.contact-panel-compact .eyebrow,
.contact-panel-compact h3,
.contact-panel-compact p,
.contact-panel-compact .contact-link {
  margin-left: auto;
}

.contact-panel-compact h3,
.contact-panel-compact p:not(.eyebrow),
.contact-panel-compact .contact-link {
  max-width: 260px;
}

.contact-panel-compact .eyebrow {
  width: 260px;
  max-width: 100%;
}

.contact-panel-compact h3 {
  font-size: 21px;
}

.contact-panel-compact p:not(.eyebrow) {
  font-size: 17px;
}

.contact-panel-compact .contact-link {
  font-size: 17px;
}

@media (max-width: 1200px) {
  .focus-areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .focus-area {
    min-height: 230px;
  }

  .focus-area h3 {
    min-height: 30px;
  }

  .focus-area p {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .focus-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .risk-copy-panel,
  .contact-panel-compact {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-panel-compact .eyebrow,
  .contact-panel-compact h3,
  .contact-panel-compact p,
  .contact-panel-compact .contact-link {
    margin-left: 0;
  }

  .contact-panel-compact .eyebrow,
  .contact-panel-compact h3,
  .contact-panel-compact p:not(.eyebrow),
  .contact-panel-compact .contact-link {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .focus-area {
    min-height: auto;
  }

  .focus-area h3,
  .focus-area p {
    min-height: 0;
  }

  .focus-area-icon {
    width: 58px;
    height: 58px;
  }

  .focus-area-icon svg {
    width: 34px;
    height: 34px;
  }
}


/* Final preference: keep polished Focus Areas, restore lower bottom section alignment */
.focus-areas-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.focus-area {
  min-height: 248px;
  padding: 34px 20px 10px 20px;
}

.focus-area-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 223, 200, 0.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(230, 223, 200, 0.085), rgba(255, 255, 255, 0.018) 62%, rgba(255, 255, 255, 0.006));
}

.focus-area-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.focus-area h3 {
  min-height: 42px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 620;
}

.focus-area p {
  min-height: 72px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

/* Restore previous bottom layout */
.lower-panels-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 1.45fr) minmax(240px, 0.95fr);
  column-gap: 0;
  border-top: 1px solid var(--line);
}

.risk-heading-panel,
.risk-copy-panel,
.contact-panel-compact {
  padding-top: 34px;
}

.risk-heading-panel {
  padding-right: 34px;
}

.risk-copy-panel,
.contact-panel-compact {
  padding-left: 34px;
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.contact-panel-compact {
  justify-self: stretch;
}

.contact-panel-compact .eyebrow,
.contact-panel-compact h3,
.contact-panel-compact p,
.contact-panel-compact .contact-link {
  margin-left: 0;
}

.contact-panel-compact .eyebrow,
.contact-panel-compact h3,
.contact-panel-compact p:not(.eyebrow),
.contact-panel-compact .contact-link {
  width: auto;
  max-width: none;
}

.contact-panel-compact h3 {
  margin: 6px 0 12px;
  font-size: 22px;
  line-height: 1.18;
  color: var(--text);
  font-weight: 650;
}

.contact-panel-compact p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.contact-panel-compact .contact-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 18px;
  color: var(--accent);
  border-bottom: 1px solid rgba(230, 223, 200, 0.55);
}

.contact-panel-compact .contact-link:hover {
  color: var(--text);
  border-color: var(--text);
}

@media (max-width: 1200px) {
  .focus-areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .focus-area {
    min-height: 230px;
  }

  .focus-area h3 {
    min-height: 30px;
  }

  .focus-area p {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .focus-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .risk-copy-panel,
  .contact-panel-compact {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 34px;
  }
}

@media (max-width: 560px) {
  .focus-area {
    min-height: auto;
  }

  .focus-area h3,
  .focus-area p {
    min-height: 0;
  }

  .focus-area-icon {
    width: 58px;
    height: 58px;
  }

  .focus-area-icon svg {
    width: 34px;
    height: 34px;
  }
}


/* Cursor glow: mouse-following light + geometric mesh reveal */
.cursor-glow {
  --x: 50vw;
  --y: 50vh;

  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.cursor-glow.is-hidden {
  opacity: 0;
}

.cursor-glow::before,
.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cursor-glow::before {
  background:
    radial-gradient(
      circle 260px at var(--x) var(--y),
      rgba(230, 223, 200, 0.16),
      rgba(120, 140, 180, 0.09) 34%,
      transparent 70%
    );
}

.cursor-glow::after {
  background-image:
    linear-gradient(60deg, rgba(230, 223, 200, 0.18) 1px, transparent 1px),
    linear-gradient(120deg, rgba(160, 180, 220, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px, 74px 74px, 37px 37px;
  background-position:
    calc(var(--x) * -0.035) calc(var(--y) * -0.035),
    calc(var(--x) * 0.025) calc(var(--y) * 0.025),
    0 0;
  mask-image:
    radial-gradient(
      circle 220px at var(--x) var(--y),
      black 0%,
      rgba(0, 0, 0, 0.78) 36%,
      transparent 74%
    );
  -webkit-mask-image:
    radial-gradient(
      circle 220px at var(--x) var(--y),
      black 0%,
      rgba(0, 0, 0, 0.78) 36%,
      transparent 74%
    );
  opacity: 0.75;
}

/* Keep primary content above normal layers but below the fixed cursor glow. */
.site-header {
  z-index: 30;
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }
}


/* Cursor glow: mouse-following light + geometric mesh reveal */
.cursor-glow {
  --x: 50vw;
  --y: 50vh;

  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.cursor-glow.is-hidden {
  opacity: 0;
}

.cursor-glow::before,
.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cursor-glow::before {
  background:
    radial-gradient(
      circle 260px at var(--x) var(--y),
      rgba(230, 223, 200, 0.16),
      rgba(120, 140, 180, 0.09) 34%,
      transparent 70%
    );
}

.cursor-glow::after {
  background-image:
    linear-gradient(60deg, rgba(230, 223, 200, 0.18) 1px, transparent 1px),
    linear-gradient(120deg, rgba(160, 180, 220, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px, 74px 74px, 37px 37px;
  background-position:
    calc(var(--x) * -0.035) calc(var(--y) * -0.035),
    calc(var(--x) * 0.025) calc(var(--y) * 0.025),
    0 0;
  mask-image:
    radial-gradient(
      circle 220px at var(--x) var(--y),
      black 0%,
      rgba(0, 0, 0, 0.78) 36%,
      transparent 74%
    );
  -webkit-mask-image:
    radial-gradient(
      circle 220px at var(--x) var(--y),
      black 0%,
      rgba(0, 0, 0, 0.78) 36%,
      transparent 74%
    );
  opacity: 0.75;
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }
}

/* Final design refinements */
.hero-content {
  padding:
    clamp(210px, 28vh, 300px)
    var(--side-padding)
    clamp(90px, 10vh, 120px);
}

.hero-copy {
  max-width: 600px;
  margin: clamp(25px, 4vw, 42px) 0 0;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.64;
}

h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.17em;
}

.process-step,
.focus-area {
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.process-step:hover,
.focus-area:hover {
  background: rgba(255, 255, 255, 0.018);
}

.process-step:hover .process-icon,
.focus-area:hover .focus-area-icon {
  border-color: rgba(230, 223, 200, 0.34);
  background:
    radial-gradient(circle at 50% 44%, rgba(230, 223, 200, 0.14), rgba(255, 255, 255, 0.025) 64%);
}

.site-footer {
  align-items: center;
}

.site-footer a {
  color: var(--accent);
  transition: color 160ms ease;
}

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

@media (max-width: 900px) {
  .hero-content {
    padding-top: 210px;
    padding-bottom: 96px;
  }

  h2 {
    font-size: clamp(28px, 6vw, 44px);
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 190px;
    padding-bottom: 88px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16.5px;
  }

  .site-footer {
    align-items: flex-start;
  }
}


/* SEO/performance/accessibility pass */
a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

section {
  scroll-margin-top: 96px;
}
