:root {
  --ink: #020713;
  --ink-soft: #071426;
  --surface: #09192d;
  --surface-strong: #0d2039;
  --blue: #087bff;
  --blue-deep: #0755d9;
  --blue-light: #45b8ff;
  --gold: #f6b80e;
  --gold-light: #ffd95a;
  --white: #f8fafc;
  --muted: #aab8cc;
  --line: rgba(149, 182, 223, 0.15);
  --line-strong: rgba(149, 182, 223, 0.28);
  --font-heading: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% -10%, rgba(8, 123, 255, 0.1), transparent 28rem),
    var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection {
  color: var(--ink);
  background: var(--gold);
}

a, button { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.09;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 5vw, 4.25rem);
  letter-spacing: -0.045em;
}

h2 span, h1 em {
  color: var(--gold);
  font-style: normal;
}

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

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section { padding-block: clamp(5rem, 10vw, 9rem); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.page-glow--blue {
  width: 36rem;
  height: 36rem;
  top: 22%;
  right: -24rem;
  background: rgba(8, 123, 255, 0.08);
}

.page-glow--gold {
  width: 28rem;
  height: 28rem;
  bottom: 8%;
  left: -20rem;
  background: rgba(246, 184, 14, 0.05);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 7, 19, 0.86);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.brand-copy { display: grid; line-height: 1; }

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: .32rem;
  color: var(--gold);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.5vw, 2.25rem);
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 48px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.btn svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.btn--primary {
  color: #07101f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 32px rgba(246, 184, 14, .2), inset 0 1px rgba(255, 255, 255, .35);
}

.btn--primary:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(246, 184, 14, .28), inset 0 1px rgba(255, 255, 255, .4);
}

.btn--primary:not(:disabled):hover svg { transform: translateX(4px); }

.btn--compact { min-height: 42px; padding: .72rem 1.05rem; font-size: .78rem; }
.btn--large { min-height: 58px; padding: 1rem 1.5rem; }

.btn:disabled {
  color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .07);
  border-color: var(--line-strong);
  box-shadow: none;
  cursor: not-allowed;
}

.text-link {
  padding: .85rem .1rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span { margin-left: .35rem; color: var(--blue-light); }

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7.5rem 0 4.5rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 14rem;
  background: linear-gradient(transparent, var(--ink));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 4.45vw, 4.65rem);
  letter-spacing: -0.052em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 1.65rem;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
}

.hero-facts div {
  min-width: 138px;
  padding: 0 1.25rem;
  border-left: 1px solid var(--line-strong);
}

.hero-facts div:first-child { padding-left: 0; border-left: 0; }

.hero-facts dt {
  margin-bottom: .2rem;
  color: rgba(170, 184, 204, .7);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 123, 255, .22), transparent 68%);
  filter: blur(10px);
}

.logo-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 410px);
  padding: 1.1rem;
  border: 1px solid rgba(69, 184, 255, .13);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(13, 32, 57, .78), rgba(3, 10, 24, .9));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, .04);
}

.logo-stage img {
  width: min(100%, 270px);
  height: auto;
  margin: 0 auto .85rem;
  border-radius: 22px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .32));
}

.hero-visual-copy {
  padding: 1.05rem 1.1rem .95rem;
  border-top: 1px solid var(--line);
}

.hero-visual-copy > p {
  max-width: 320px;
  margin-bottom: .8rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-visual-copy .hero-visual-kicker {
  margin-bottom: .35rem;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-visual-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-visual-copy li {
  padding: .38rem .62rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(170, 184, 204, .5);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span { width: 42px; height: 1px; background: var(--line-strong); }

/* Shared section headings */

.section-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-heading > p:last-child { max-width: 630px; margin-bottom: 0; font-size: 1.05rem; }

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-kicker { justify-content: center; }

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 4rem;
}

.section-heading--split h2 { margin-bottom: 0; font-size: clamp(2rem, 4.2vw, 3.55rem); }
.section-heading--split > p { margin-bottom: .25rem; }

/* Founder */

.founder {
  position: relative;
  background: linear-gradient(180deg, var(--ink), #030b19 48%, var(--ink));
}

.founder-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.founder-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.founder-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 7, 19, .28), transparent 30%, transparent 58%, rgba(2, 7, 19, .94));
  pointer-events: none;
}

.founder-card > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 50% 42%;
}

.founder-kicker {
  position: absolute;
  z-index: 2;
  top: 1.7rem;
  left: 1.7rem;
  padding: .5rem .75rem;
  margin: 0;
  color: var(--blue-light);
  background: rgba(2, 7, 19, .72);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.founder-meta {
  position: absolute;
  z-index: 3;
  right: 1.7rem;
  bottom: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
}

.founder-meta span {
  padding: .45rem .7rem;
  color: var(--muted);
  background: rgba(2, 7, 19, .7);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .7rem;
}

.founder-card figcaption {
  position: absolute;
  z-index: 3;
  bottom: 6rem;
  left: 1.7rem;
  display: grid;
  max-width: 55%;
}

.founder-card figcaption strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.founder-card figcaption small {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .68rem;
}

.founder-copy > p:not(.section-kicker) { max-width: 650px; }

.principle {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(246, 184, 14, .07), transparent);
}

.principle p { margin: 0; color: var(--white); font-size: 1.02rem; font-style: italic; }

.principle-mark {
  position: absolute;
  top: -.75rem;
  right: 1rem;
  color: rgba(246, 184, 14, .2);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(7, 20, 38, .7);
  transition: transform .3s var(--ease), border-color .3s ease;
}

.pillar-card:hover { transform: translateY(-6px); border-color: rgba(246, 184, 14, .35); }

.pillar-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(246, 184, 14, .6);
  font-family: var(--font-heading);
  font-size: .75rem;
}

.pillar-card h3 { margin: 3.5rem 0 .75rem; font-size: 1.35rem; }
.pillar-card p { margin: 0; font-size: .9rem; }

/* Problems */

.problems { background: #020611; }

.statement {
  padding-left: 1.5rem;
  border-left: 1px solid var(--blue);
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
}

.statement strong { color: var(--white); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.problem-card {
  min-height: 190px;
  padding: 1.7rem;
  background: #05101f;
  transition: background .25s ease;
}

.problem-card:hover { background: #08182b; }

.problem-card span {
  color: rgba(69, 184, 255, .7);
  font-family: var(--font-heading);
  font-size: .7rem;
}

.problem-card p { margin: 3rem 0 0; color: var(--white); font-weight: 500; line-height: 1.45; }

.problem-card--accent {
  background: linear-gradient(145deg, rgba(246, 184, 14, .16), #0e1824);
}

.problem-card--accent span { color: var(--gold); }

/* Solutions */

.solutions {
  position: relative;
  background: linear-gradient(180deg, var(--ink), #041020, var(--ink));
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.solution-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent), var(--ink-soft);
  transition: transform .3s var(--ease), border-color .3s ease;
}

.solution-card:hover { transform: translateY(-7px); border-color: rgba(8, 123, 255, .45); }

.solution-card--featured {
  background: linear-gradient(145deg, rgba(8, 123, 255, .17), rgba(246, 184, 14, .05)), var(--ink-soft);
  border-color: rgba(8, 123, 255, .32);
}

.solution-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-light);
  border: 1px solid rgba(69, 184, 255, .25);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: .7rem;
}

.solution-card h3 { margin: 3rem 0 .8rem; font-size: 1.3rem; }
.solution-card p { margin: 0; font-size: .9rem; }

.card-line {
  position: absolute;
  right: 2rem;
  bottom: 0;
  left: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.solution-card:hover .card-line { transform: scaleX(1); }
.solution-card--featured .card-line { background: linear-gradient(90deg, var(--gold), var(--blue)); }

/* Method */

.method {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(8, 123, 255, .15), transparent 34rem),
    #020611;
  isolation: isolate;
}

.method-landscape { position: absolute; z-index: -1; inset: 0; opacity: .55; }

.mountain {
  position: absolute;
  right: -7%;
  bottom: -18%;
  left: -7%;
  height: 62%;
  clip-path: polygon(0 85%, 12% 64%, 22% 75%, 38% 35%, 48% 58%, 62% 5%, 69% 28%, 77% 17%, 100% 72%, 100% 100%, 0 100%);
}

.mountain--back { background: linear-gradient(135deg, #062b59, #061426 58%, #160f08); }
.mountain--front { bottom: -31%; opacity: .72; background: linear-gradient(115deg, #031226, #061933 45%, #291d05); transform: scaleX(1.1); }

.summit-light {
  position: absolute;
  top: 33%;
  left: 61.7%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold), 0 0 42px var(--gold), 0 0 90px rgba(246, 184, 14, .7);
}

.method-inner { position: relative; z-index: 2; }

.method-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.method-route::before {
  content: "";
  position: absolute;
  top: 39px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--gold));
  box-shadow: 0 0 16px rgba(8, 123, 255, .45);
}

.method-step { position: relative; text-align: center; }

.method-marker {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  border: 1px solid rgba(69, 184, 255, .42);
  border-radius: 50%;
  background: #04101f;
  box-shadow: 0 0 0 9px rgba(8, 123, 255, .055), 0 0 30px rgba(8, 123, 255, .15);
}

.method-step:last-child .method-marker {
  border-color: rgba(246, 184, 14, .52);
  box-shadow: 0 0 0 9px rgba(246, 184, 14, .055), 0 0 30px rgba(246, 184, 14, .15);
}

.method-marker span { color: var(--white); font-family: var(--font-heading); font-size: .8rem; }
.method-label { margin-bottom: .45rem; color: var(--blue-light); font-size: .64rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.method-step:last-child .method-label { color: var(--gold); }
.method-step h3 { margin-bottom: .9rem; font-size: 1.65rem; }
.method-step > div:last-child > p:last-child { max-width: 32ch; margin-inline: auto; font-size: .9rem; }

.method-manifesto {
  max-width: 900px;
  margin: 6rem auto 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -.035em;
}

.method-manifesto span { color: var(--blue-light); }

/* Process */

.process { background: linear-gradient(180deg, var(--ink), #030b18); }

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--line); }

.process-list > li > span {
  padding-top: .25rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: .7rem;
}

.process-list h3 { margin-bottom: .55rem; font-size: 1.2rem; }
.process-list p { margin: 0; font-size: .88rem; }

/* Work */

.work { background: #030b18; }

.work-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.work-copy h2 { font-size: clamp(2.15rem, 4.5vw, 3.7rem); }

.work-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  color: var(--gold-light);
  background: rgba(246, 184, 14, .06);
  border: 1px solid rgba(246, 184, 14, .15);
  border-radius: 12px;
  font-size: .82rem;
}

.case-framework {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 123, 255, .08), transparent 45%), var(--ink-soft);
  box-shadow: var(--shadow);
}

.case-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.case-topline span:last-child { color: var(--blue-light); }

.case-framework ol { padding: 0; margin: 0; list-style: none; }

.case-framework li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.case-framework li:last-child { border-bottom: 0; }
.case-framework li > span { color: rgba(69, 184, 255, .65); font-family: var(--font-heading); font-size: .72rem; }
.case-framework strong { display: block; margin-bottom: .2rem; font-family: var(--font-heading); font-size: 1rem; }
.case-framework small { color: var(--muted); font-size: .78rem; }
.case-framework li:last-child > span { color: var(--gold); }

/* Contact and footer */

.contact {
  position: relative;
  padding: 2rem 0 clamp(5rem, 9vw, 8rem);
  background: #030b18;
}

.contact-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 4rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid rgba(246, 184, 14, .26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 50%, rgba(8, 123, 255, .22), transparent 28rem),
    linear-gradient(135deg, #06172c, #080c14 75%);
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .04), transparent 30%);
}

.contact-symbol {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.contact-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(69, 184, 255, .25);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(8, 123, 255, .07), 0 0 50px rgba(8, 123, 255, .06);
}

.contact-ring::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(246, 184, 14, .18);
  border-radius: 50%;
}

.contact-symbol svg { position: relative; z-index: 2; width: 64%; overflow: visible; }
.contact-symbol path { fill: none; stroke: url(#none); stroke: var(--blue-light); stroke-width: 3; filter: drop-shadow(0 0 9px rgba(8, 123, 255, .7)); }
.contact-symbol circle { fill: var(--gold); filter: drop-shadow(0 0 10px var(--gold)); }

.contact-copy { position: relative; z-index: 2; }
.contact-copy h2 { max-width: 720px; font-size: clamp(2.1rem, 4.5vw, 4rem); }
.contact-copy > p:not(.section-kicker) { margin-bottom: 2rem; font-size: 1.05rem; }
.contact-copy small { display: block; max-width: 390px; margin-top: .9rem; color: rgba(170, 184, 204, .65); font-size: .7rem; }

.site-footer { padding: 2rem 0; background: #01040b; border-top: 1px solid var(--line); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand--footer img { width: 44px; height: 44px; }
.footer-inner p { margin: 0; font-size: .72rem; letter-spacing: .04em; }
.footer-inner p span { color: var(--gold); }

/* Reveal animation */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-reveal][data-delay="1"] { transition-delay: .12s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr minmax(310px, .72fr); gap: 2.5rem; }
  .hero-visual { min-height: 410px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { gap: 3rem; }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 2rem)); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; order: 3; }

  .main-nav {
    position: fixed;
    z-index: 90;
    inset: 72px 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(2, 7, 19, .98);
    border-bottom: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s var(--ease), opacity .25s ease, visibility .25s ease, border-color .25s ease;
  }

  .main-nav.is-open {
    max-height: calc(100svh - 72px);
    padding: 1rem 1rem 2rem;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after { display: none; }

  .hero { padding-top: 7rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-facts { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-visual { min-height: auto; margin: 1rem auto 2rem; width: min(100%, 540px); }
  .logo-stage { width: min(90%, 410px); }
  .hero-scroll { display: none; }

  .founder-grid,
  .work-grid,
  .contact-card { grid-template-columns: 1fr; }

  .founder-visual { max-width: 590px; margin-inline: auto; }
  .pillars-grid, .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.5rem; }

  .method-route { grid-template-columns: 1fr; gap: 2.5rem; }
  .method-route::before { top: 40px; bottom: 40px; left: 39px; right: auto; width: 1px; height: auto; }
  .method-step { display: grid; grid-template-columns: 80px 1fr; align-items: start; gap: 1.5rem; text-align: left; }
  .method-marker { margin: 0; }
  .method-step > div:last-child > p:last-child { max-width: none; margin-inline: 0; }
  .method-manifesto { margin-top: 4rem; }

  .contact-card { gap: 1rem; text-align: center; }
  .contact-symbol { width: 220px; margin-inline: auto; }
  .contact-copy .section-kicker { justify-content: center; }
  .contact-copy small { margin-inline: auto; }
}

@media (max-width: 620px) {
  .section { padding-block: 5rem; }
  .brand-copy { display: none; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 3.35rem); }
  .hero-actions { display: grid; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; margin-inline: auto; }
  .hero-facts div, .hero-facts div:first-child { min-width: 0; padding: 0 .55rem; border-top: 0; border-left: 1px solid var(--line); }
  .hero-facts div:first-child { padding-left: 0; border-left: 0; }
  .hero-facts div:last-child { padding-right: 0; }
  .hero-facts dd { font-size: .72rem; line-height: 1.4; }
  .hero-visual { margin-top: 0; overflow: clip; }
  .logo-stage { width: 100%; padding: .85rem; }
  .logo-stage img { width: min(100%, 235px); margin-bottom: .5rem; }

  .founder-card { min-height: 480px; }
  .founder-card > img { height: 560px; }
  .founder-meta { right: 1.25rem; bottom: 1.25rem; left: 1.25rem; justify-content: flex-start; }
  .founder-card figcaption { bottom: 6.5rem; left: 1.25rem; max-width: 80%; }
  .founder-kicker { top: 1.25rem; left: 1.25rem; }

  .pillars-grid,
  .problems-grid,
  .solutions-grid,
  .process-list { grid-template-columns: 1fr; }

  .problem-card { min-height: 160px; }
  .problem-card p { margin-top: 2rem; }
  .solution-card { min-height: 250px; }

  .process-list li,
  .process-list li:nth-child(even) { padding: 1.5rem 0; border-left: 0; }
  .process-list li { grid-template-columns: 46px 1fr; }

  .case-topline { display: grid; }
  .case-framework li { grid-template-columns: 44px 1fr; padding: 1.4rem; }

  .contact { padding-top: 0; }
  .contact-card { min-height: auto; padding: 2rem 1.25rem 2.5rem; border-radius: 24px; }
  .contact-symbol { width: 170px; }
  .contact-copy .btn { width: 100%; }

  .footer-inner { flex-direction: column; text-align: center; }
  .brand--footer .brand-copy { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
