:root {
  color-scheme: light;
  --navy-950: #071A2A;
  --navy: #06263D;
  --navy-800: #12364A;
  --navy-700: #0B4F6C;
  --control: #0B4F6C;
  --control-soft: #EAF3F6;
  --ink: #071A2A;
  --muted: #64717C;
  --line: #DDE7EC;
  --line-soft: #EAF3F6;
  --paper: #F8FAFC;
  --paper-cool: #f3f7fa;
  --white: #ffffff;
  --ivory: #FFF9ED;
  --gold: #F2A900;
  --gold-deep: #B47A00;
  --gold-soft: #FFF3CC;
  --shadow: 0 24px 70px rgba(7, 26, 42, 0.13);
  --shadow-soft: 0 12px 34px rgba(7, 26, 42, 0.07);
  --radius: 8px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 38, 61, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 38, 61, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(46, 111, 146, 0.34);
  outline-offset: 4px;
  border-radius: 4px;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  min-width: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 225, 234, 0.78);
  background: rgba(246, 243, 235, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 44px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand::before {
  display: none;
}

.brand-word,
.brand span {
  color: var(--gold-deep);
}

.logo-frame {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(221, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(7, 26, 42, 0.08);
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #526173;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

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

.nav-links a[aria-current="page"] {
  color: var(--navy);
  font-weight: 740;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.1;
  box-shadow: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(46, 111, 146, 0.34);
  outline-offset: 3px;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 23, 42, 0.16);
}

.button.primary:hover {
  background: var(--navy-800);
}

.button.secondary {
  border-color: rgba(7, 26, 42, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 26, 42, 0.98), rgba(6, 38, 61, 0.98) 56%, rgba(18, 54, 74, 0.96)),
    var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 243, 204, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 243, 204, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(120deg, #000 0%, rgba(0, 0, 0, 0.8) 42%, transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 169, 0, 0.5), transparent);
}

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

.hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding: 92px 0 104px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow,
.cta-band .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: 5.7rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

p:last-child {
  margin-bottom: 0;
}

.hero-copy {
  max-width: 760px;
  color: #d9e2ed;
  font-size: 1.24rem;
}

.brand-mantra {
  margin: 1.25rem 0 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .button.primary,
.page-hero .button.primary,
.cta-band .button.primary {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 16px 34px rgba(242, 169, 0, 0.18);
}

.hero .button.primary:hover,
.page-hero .button.primary:hover,
.cta-band .button.primary:hover {
  background: #c8a86b;
}

.hero .button.secondary,
.page-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero .microcopy {
  color: #b9c6d6;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-signals span {
  border: 1px solid rgba(255, 243, 204, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce5ef;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.diagnostic-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 204, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 243, 204, 0.12);
}

.diagnostic-strip span {
  background: rgba(7, 26, 42, 0.66);
  color: #dce5ef;
  padding: 13px 14px;
  font-size: 0.9rem;
  font-weight: 690;
}

.work-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 204, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  padding: 28px;
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.24);
}

.work-map::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 86px;
  left: 41px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 243, 204, 0.66), rgba(11, 79, 108, 0.18));
}

.work-map-title {
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-row {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 18px 0;
}

.map-node {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 243, 204, 0.66);
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-weight: 820;
  font-size: 0.78rem;
}

.map-row p {
  margin: 0;
}

.map-row strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.map-row span {
  display: block;
  margin-top: 2px;
  color: #c4d0de;
}

.pressure-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #c4d0de;
  font-size: 0.84rem;
}

.pressure-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.pressure-track i {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--control), var(--gold));
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 116px) 0;
  background: var(--paper);
}

.section.alt {
  background: rgba(255, 255, 255, 0.82);
}

.section.dark {
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy) 62%, var(--navy-800)),
    var(--navy);
  color: var(--white);
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(110deg, rgba(0, 0, 0, 0.8), transparent 75%);
  pointer-events: none;
}

.section.dark .section-inner {
  position: relative;
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark .lead,
.section.dark p {
  color: #d9e2ed;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
}

.section-note {
  max-width: 760px;
  margin: 22px 0 0;
  border-left: 3px solid var(--gold);
  color: #526173;
  padding-left: 18px;
}

.impact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.impact-line span {
  border: 1px solid rgba(7, 26, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 0.91rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(46, 111, 146, 0.4));
  opacity: 0;
  transition: opacity 160ms ease;
}

.card:hover {
  border-color: rgba(242, 169, 0, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

.card p {
  color: #5f6b7b;
}

.section.dark .card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.section.dark .card h3 {
  color: var(--gold-soft);
}

.section.dark .card p {
  color: #d9e2ed;
}

.section.dark .card-quiet {
  border-color: rgba(255, 243, 204, 0.2);
  background: rgba(255, 255, 255, 0.93);
}

.section.dark .card-quiet h3 {
  color: var(--navy);
}

.section.dark .card-quiet p,
.section.dark .card-quiet li {
  color: #435164;
}

.card-accent {
  border-color: rgba(242, 169, 0, 0.42);
}

.signal-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.signal-list li {
  min-height: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(246, 243, 235, 0.72);
  padding: 16px 16px 16px 42px;
  position: relative;
}

.plain-list li {
  margin: 0 0 12px;
  padding-left: 22px;
  position: relative;
}

.signal-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  top: 1.05em;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(242, 169, 0, 0.08);
}

.plain-list li::before {
  top: 0.72em;
  left: 0;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin-top: 42px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 42px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 20px;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  color: var(--gold-deep);
  font-weight: 850;
}

.step p {
  margin: 0;
}

.proof-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(242, 169, 0, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff, #fbfaf6),
    var(--white);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}

.proof-slots {
  display: grid;
  gap: 12px;
}

.proof-slots span {
  display: block;
  border: 1px dashed rgba(7, 26, 42, 0.24);
  border-radius: 6px;
  background: rgba(246, 243, 235, 0.68);
  color: #526173;
  padding: 16px;
  font-weight: 700;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy) 58%, var(--navy-800)),
    var(--navy);
  color: var(--white);
  padding: clamp(34px, 6vw, 66px);
  box-shadow: var(--shadow);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 243, 204, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 243, 204, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(110deg, #000, transparent 76%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 760px;
  color: #d9e2ed;
}

.cta-assurance {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 243, 204, 0.18);
  color: #cdd8e5;
  padding-top: 18px;
  font-size: 0.98rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: start;
}

.cta-copy {
  padding-top: 8px;
}

.contact-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 243, 204, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.contact-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.65rem;
}

.contact-card p,
.contact-card .form-microcopy {
  color: #5d6878;
}

.form-heading {
  margin-bottom: 2px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 760;
}

.field input,
.field textarea {
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--control);
  box-shadow: 0 0 0 4px rgba(46, 111, 146, 0.14);
}

.contact-card .button {
  margin-top: 2px;
  border: 0;
}

.contact-email {
  margin: -4px 0 0;
  font-size: 0.95rem;
}

.contact-email a {
  color: var(--navy);
  font-weight: 760;
  text-decoration-color: rgba(242, 169, 0, 0.58);
  text-underline-offset: 4px;
}

.contact-card .form-microcopy {
  font-size: 0.92rem;
}

.about-cta-panel {
  max-width: none;
}

.about-cta-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 90px;
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy) 62%, var(--navy-800)),
    var(--navy);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(120deg, #000, transparent 80%);
}

.page-hero .section-inner {
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  color: #d9e2ed;
}

.about-hero-intro {
  max-width: 680px;
}

.about-hero-portrait {
  width: min(100%, 440px);
  margin: 0 auto 2rem;
  padding: 0.45rem;
  border: 1px solid rgba(248, 250, 252, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(242, 169, 0, 0.22), rgba(11, 79, 108, 0.18)),
    rgba(248, 250, 252, 0.04);
  box-shadow: 0 28px 80px rgba(6, 38, 61, 0.38);
}

.about-portrait-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.about-role {
  margin: -10px 0 18px;
  color: var(--gold);
  font-weight: 720;
  letter-spacing: 0.01em;
}

.founder-mantra {
  margin: -0.25rem 0 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.about-intro-detail {
  max-width: 620px;
  color: #c4d0de;
}

.founder-card {
  border: 1px solid rgba(255, 243, 204, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.24);
}

.founder-mark {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 243, 204, 0.56);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 2.2rem;
  font-weight: 760;
  box-shadow: inset 0 0 0 12px rgba(255, 243, 204, 0.055);
}

.founder-name {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 1.38rem;
  font-weight: 780;
}

.founder-role {
  color: #c4d0de;
}

.founder-note {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #d9e2ed;
  padding-top: 18px;
}

.founder-lines {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.founder-lines span {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #d9e2ed;
  padding-top: 9px;
}

.belief-panel {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(26px, 5vw, 44px);
}

.quote {
  margin: 0;
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1.16;
}

.quote-note {
  max-width: 780px;
  margin-top: 22px;
  color: #526173;
}

.section.dark .quote {
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), var(--paper));
  padding: 40px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.footer-logo-frame {
  width: 38px;
  height: 38px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  text-decoration-color: rgba(242, 169, 0, 0.5);
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 940px) {
  .hero-inner,
  .grid.two,
  .grid.three,
  .comparison,
  .steps,
  .proof-placeholder,
  .cta-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0 82px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.62rem;
  }

  .quote {
    font-size: 1.9rem;
  }

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

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

  .cta-copy {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .logo-frame {
    width: 40px;
    height: 40px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
  }

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

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

  .about-hero-portrait {
    width: min(100%, 340px);
    margin-bottom: 1.5rem;
    border-radius: 28px;
  }

  .about-portrait-image {
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .section-inner,
  .nav,
  .footer-inner {
    width: min(100% - 30px, var(--max));
  }

  .hero-inner {
    padding: 58px 0 70px;
  }

  .logo-frame {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-copy,
  .lead {
    font-size: 1.05rem;
  }

  .quote {
    font-size: 1.55rem;
  }

  .button {
    width: 100%;
  }

  .actions {
    width: 100%;
  }

  .work-map,
  .founder-card {
    padding: 22px;
  }

  .work-map::before {
    left: 35px;
  }

  .pressure-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .impact-line span {
    width: 100%;
  }
}
