:root {
  color-scheme: light;
  --navy: #061a2f;
  --navy-2: #020d18;
  --navy-3: #0b2b49;
  --gold: #d4ae58;
  --gold-2: #f1d58d;
  --accent-text: #765515;
  --paper: #fbfcfe;
  --mist: #eef2f6;
  --ink: #101820;
  --muted: #5f6b78;
  --line: rgba(6, 26, 47, 0.13);
  --card: #ffffff;
  --shadow: 0 14px 42px rgba(6, 26, 47, 0.075), 0 2px 8px rgba(6, 26, 47, 0.035);
  --shadow-hover: 0 28px 72px rgba(6, 26, 47, 0.15), 0 8px 20px rgba(6, 26, 47, 0.06);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --paper: #04101c;
  --mist: #091827;
  --ink: #f6f8fb;
  --muted: #b8c2ce;
  --line: rgba(255, 255, 255, 0.14);
  --card: #0b1e31;
  --accent-text: #f1d58d;
  --shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 24px 64px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(208, 173, 87, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 26, 47, 0.86);
  backdrop-filter: blur(20px) saturate(180%);
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

[data-theme="light"] .site-header {
  background: rgba(6, 26, 47, 0.9);
}

.site-header.is-scrolled {
  background: rgba(4, 17, 31, 0.95);
  box-shadow: 0 14px 44px rgba(2, 12, 25, 0.24);
}

.nav-shell {
  width: min(calc(100% - 32px), 1280px);
  min-height: var(--nav-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: min-height 220ms var(--ease);
}

.site-header.is-scrolled .nav-shell {
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

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

.brand-subtitle {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 620;
  transition: color 180ms var(--ease);
}

.nav-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(208, 173, 87, 0.86);
  border-radius: 999px;
  color: #fff;
}

.nav-links .nav-cta::after {
  display: none;
}

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

.icon-button,
.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.icon-button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(208, 173, 87, 0.74);
  background: rgba(255, 255, 255, 0.14);
}

.theme-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.theme-moon {
  display: none;
}

[data-theme="dark"] .theme-sun {
  display: none;
}

[data-theme="dark"] .theme-moon {
  display: block;
}

.nav-toggle {
  position: relative;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 90;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 34px 28px;
  background: rgba(7, 26, 51, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 260ms var(--ease), visibility 260ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu a {
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero,
.page-hero,
.story-section {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: min(840px, calc(100svh - var(--nav-h) - 42px));
  display: grid;
  align-items: center;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(-320px, -12vw, -90px);
  bottom: clamp(-190px, -11vw, -90px);
  width: min(78vw, 980px);
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(241, 213, 141, 0.28);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: inset 0 1px 0 rgba(241, 213, 141, 0.12), 0 -28px 90px rgba(11, 43, 73, 0.32);
  opacity: 0.88;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 0.08px), 0) rotate(-4deg);
  transform-origin: center bottom;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 44%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 76px 76px;
  opacity: 0.52;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42%);
  mask-image: linear-gradient(90deg, transparent, #000 42%);
  animation: grid-drift 20s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: 96px 0 78px;
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin-bottom: 16px;
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.about-hero .eyebrow,
.section-dark .section-kicker,
.cta-block .section-kicker {
  color: var(--gold-2);
}

.hero h1,
.page-hero h1,
.display-heading {
  max-width: 1120px;
  margin-bottom: 26px;
  color: inherit;
  font-size: 3.05rem;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy,
.page-hero p,
.section-lead {
  max-width: 840px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
}

.gold-line {
  width: 88px;
  height: 2px;
  margin: 34px 0;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: left;
  animation: line-enter 820ms 180ms var(--ease) both;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(208, 173, 87, 0.26);
}

.button-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 18px 42px rgba(208, 173, 87, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.section,
.story-section {
  position: relative;
  padding: clamp(80px, 10vw, 150px) 0;
}

.full-moment {
  min-height: min(760px, 92svh);
  display: grid;
  align-items: center;
}

.full-moment > .container,
.case-list,
.case-card,
.work-proof {
  min-width: 0;
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

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

.section-heading h2,
.split-copy h2,
.cta-block h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.home-chapter {
  overflow: clip;
  isolation: isolate;
}

.chapter-number {
  position: absolute;
  z-index: -1;
  top: clamp(34px, 5vw, 76px);
  right: max(4vw, calc((100vw - var(--max)) / 2));
  color: var(--navy);
  font-size: clamp(8rem, 19vw, 18rem);
  font-weight: 820;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.035;
  pointer-events: none;
}

.industry-home-section .chapter-number {
  color: var(--gold-2);
  opacity: 0.06;
}

.section-heading p,
.split-copy p {
  font-size: 1.08rem;
}

.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

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

.stat-tile {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms var(--ease);
}

.stat-tile::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
  transition: width 320ms var(--ease);
}

.stat-tile:hover {
  background: rgba(208, 173, 87, 0.055);
}

.stat-tile:hover::before {
  width: 58px;
}

.stat-tile:last-child {
  border-bottom: 0;
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 2.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.04em;
}

[data-theme="dark"] .stat-number {
  color: var(--ink);
}

.stat-number-range {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  font-size: 1.72rem;
}

.stat-number-credentials {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.stat-number-credentials span:nth-child(2) {
  color: var(--gold);
  font-size: 0.62em;
  letter-spacing: 0;
}

.stat-number-range span:nth-child(2) {
  color: var(--gold);
  font-size: 0.72em;
  letter-spacing: 0;
}

.stat-label {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.case-card,
.service-card,
.founder-card,
.comparison-card,
.industry-card,
.contact-panel,
.faq-item,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.case-card:hover,
.service-card:hover,
.founder-card:hover,
.comparison-card:hover,
.industry-card:hover,
.timeline-step:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 173, 87, 0.34);
  box-shadow: var(--shadow-hover);
}

.case-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
}

.case-list {
  display: grid;
  gap: 24px;
}

.case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.case-figure {
  min-width: 210px;
  display: grid;
  gap: 5px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  text-align: right;
}

.case-figure-value {
  color: var(--ink);
  font-size: 3.4rem;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.case-figure-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.35;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(208, 173, 87, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 690;
}

.case-card h3 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.case-structure {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.case-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.case-row dt {
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.case-quote {
  max-width: 900px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
}

.case-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.4;
}

.work-proof {
  width: 100%;
  max-width: 100%;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.work-proof-head {
  max-width: 820px;
  padding: clamp(28px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
}

.work-proof-head h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.exhibit-label {
  margin-bottom: 4px;
  color: var(--accent-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-proof-head > p:last-child {
  margin-bottom: 0;
}

.work-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.work-proof-step {
  padding: clamp(26px, 4vw, 38px);
}

.work-proof-step + .work-proof-step {
  border-top: 1px solid var(--line);
}

.work-proof-number {
  color: var(--accent-text);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.work-proof-step h4 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.work-proof-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.work-proof-note {
  margin: 0;
  padding: 20px clamp(26px, 4vw, 38px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.work-proof-note strong {
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.16);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scaleX(1);
}

.service-number,
.comparison-number,
.industry-number {
  color: var(--accent-text);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card .service-number {
  font-size: 1rem;
}

.service-card h3,
.timeline-step h3,
.comparison-card h3,
.industry-card h2 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-card p,
.timeline-step p {
  margin-bottom: 0;
}

.arrow-link,
.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 760;
}

[data-theme="dark"] .arrow-link,
[data-theme="dark"] .text-link {
  color: var(--gold-2);
}

.arrow-link::after {
  content: "->";
  transition: transform 180ms var(--ease);
}

.service-card:hover .arrow-link::after,
.industry-card:hover .arrow-link::after {
  transform: translateX(4px);
}

.timeline {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}

.timeline-step {
  position: relative;
  scroll-snap-align: start;
  border-top: 1px solid rgba(208, 173, 87, 0.5);
  padding: 38px 28px 30px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 28px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-step strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-text);
  font-size: 0.9rem;
}

.industry-strip {
  display: grid;
  gap: 12px;
}

.industry-tile {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  font-weight: 760;
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.industry-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 173, 87, 0.38);
  box-shadow: var(--shadow-hover);
}

.industry-tile span {
  color: var(--accent-text);
}

.industry-home-section .section-kicker {
  color: var(--gold-2);
}

.industry-home-section .industry-strip {
  counter-reset: industries;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.industry-home-section .industry-tile {
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(1.25rem, 2.6vw, 2.25rem);
  letter-spacing: -0.035em;
  box-shadow: none;
  transition: padding 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.industry-home-section .industry-tile::before {
  content: "0" counter(industries);
  counter-increment: industries;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.industry-home-section .industry-tile:hover {
  padding-left: 12px;
  border-color: rgba(241, 213, 141, 0.62);
  color: var(--gold-2);
  box-shadow: none;
  transform: none;
}

.industry-home-section .industry-tile span {
  color: var(--gold-2);
  font-size: 0.9em;
}

.cta-block {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 92px);
  border: 1px solid rgba(208, 173, 87, 0.25);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-hover);
  color: #fff;
  isolation: isolate;
}

.cta-block::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  background: var(--gold);
  animation: signal-line 7s var(--ease) infinite alternate;
}

.cta-block::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: -56%;
  width: 58%;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(241, 213, 141, 0.22);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
  transform: rotate(-5deg);
}

.cta-block > * {
  position: relative;
  z-index: 1;
}

.cta-block p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.page-hero {
  display: grid;
  min-height: min(720px, calc(100svh - var(--nav-h)));
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.mesh::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 48%;
  display: block;
  background-image:
    linear-gradient(rgba(6, 26, 47, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.075) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
  animation: grid-drift 24s linear infinite;
}

.mesh::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: clamp(30px, 8vw, 140px);
  bottom: 0;
  width: 1px;
  height: 38%;
  background: var(--gold);
  opacity: 0.8;
}

[data-theme="dark"] .mesh::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
}

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

.about-hero {
  min-height: min(760px, calc(100svh - var(--nav-h)));
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 46%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  animation: grid-drift 22s linear infinite;
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -24%;
  width: min(68vw, 850px);
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(241, 213, 141, 0.24);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-4deg);
}

.about-hero p {
  color: rgba(255, 255, 255, 0.74);
}

.about-hero-grid {
  display: grid;
  gap: 48px;
  align-items: end;
}

.about-hero-grid > div {
  max-width: 980px;
}

.experience-note {
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--gold);
  font-size: 0.94rem;
}

.experience-note strong {
  color: var(--ink);
}

.split-layout,
.two-column,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
}

.split-copy {
  max-width: 560px;
}

.lead-stack p + p {
  margin-top: 22px;
}

.founder-grid,
.comparison-grid,
.spec-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.founder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mist);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
}

.founder-card:hover .founder-photo img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.founder-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 38px);
}

.founder-body h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.founder-title {
  margin-bottom: 18px;
  color: var(--accent-text);
  font-weight: 760;
}

.founder-body .text-link {
  margin-top: auto;
  padding-top: 10px;
}

.founder-boundary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ownership-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ownership-column {
  padding: 30px 0;
}

.ownership-column + .ownership-column {
  border-top: 1px solid var(--line);
}

.ownership-number {
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.ownership-column h3 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.1;
}

.ownership-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ownership-column li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.ownership-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.capability-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.capability-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.capability-tab {
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 760;
  text-align: center;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.capability-tab:hover {
  color: var(--ink);
}

.capability-tab[aria-selected="true"] {
  border-color: rgba(208, 173, 87, 0.36);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(7, 22, 49, 0.12);
}

.capability-panel[hidden] {
  display: none;
}

.capability-panel {
  min-width: 0;
}

.capability-intro {
  max-width: 850px;
  padding: clamp(30px, 5vw, 56px);
}

.capability-intro h3 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.capability-intro p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.capability-output-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-output-grid section {
  padding: clamp(28px, 4vw, 42px);
}

.capability-output-grid section + section {
  border-top: 1px solid var(--line);
}

.capability-output-grid h4 {
  margin: 0 0 18px;
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capability-output-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-output-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.capability-output-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.capability-metrics {
  display: grid;
  background: var(--navy);
  color: #fff;
}

.capability-metrics > div {
  min-width: 0;
  padding: 24px clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.capability-metrics > div:last-child {
  border-bottom: 0;
}

.capability-metrics strong,
.capability-metrics span {
  display: block;
}

.capability-metrics strong {
  color: var(--gold-2);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.capability-metrics span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.capability-note {
  margin: 0;
  padding: 18px clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.evidence-grid {
  display: grid;
  gap: 48px;
}

.evidence-grid h2 {
  max-width: 650px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.evidence-list {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.evidence-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.project-heading {
  max-width: 960px;
}

#project-stories {
  scroll-margin-top: 72px;
}

.project-story-list {
  display: grid;
  gap: 30px;
}

.project-story {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.project-story:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 173, 87, 0.4);
  box-shadow: var(--shadow-hover);
}

.project-story-head {
  display: grid;
  gap: 30px;
  padding: clamp(28px, 5vw, 52px);
}

.project-story-head h3 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.star-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.star-grid section {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.star-grid section > span {
  display: block;
  margin-bottom: 13px;
  color: var(--accent-text);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.star-grid section p {
  margin: 0;
  line-height: 1.62;
}

.star-actions {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.star-actions li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.star-actions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 2px;
  background: var(--gold);
}

.project-story-meta {
  display: grid;
  background: var(--mist);
}

.project-story-meta p {
  margin: 0;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.5;
}

.project-story-meta p:last-child {
  border-bottom: 0;
}

.project-story-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.proof-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-link-row p {
  max-width: 720px;
  margin: 0;
}

.comparison-card {
  padding: 28px;
}

.check-list,
.no-list,
.deliverable-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.deliverable-list li,
.no-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.deliverable-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(208, 173, 87, 0.12);
}

.no-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.accent-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.accent-panel p,
.accent-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.service-spec {
  scroll-margin-top: 100px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(208, 173, 87, 0.72);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.service-spec h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.spec-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(208, 173, 87, 0.07);
  color: var(--muted);
}

.meta-pill strong {
  display: block;
  color: var(--ink);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 780;
}

.faq-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(208, 173, 87, 0.16);
  color: var(--accent-text);
  flex: 0 0 auto;
  transition: transform 220ms var(--ease);
}

.faq-item.is-open .faq-button span {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms var(--ease);
}

.faq-panel p {
  margin: 0;
  padding: 0 24px 24px;
}

.industry-card {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 48px);
}

.industry-card + .industry-card {
  margin-top: 28px;
}

.industry-card p {
  font-size: 1.06rem;
}

.contact-panel {
  padding: clamp(28px, 5vw, 42px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 15px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(208, 173, 87, 0.86);
  box-shadow: 0 0 0 4px rgba(208, 173, 87, 0.13);
  outline: 0;
}

.form-status {
  min-height: 28px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.success {
  color: #16794a;
}

.form-status.error {
  color: #b3261e;
}

.disclaimer-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--navy-2);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 780;
}

.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.footer-heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(34px) scale(0.992);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  transition-delay: calc(var(--stagger, 0) * 85ms);
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 76px, 76px 0; }
}

@keyframes line-enter {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes signal-line {
  from { transform: translateX(-16%); }
  to { transform: translateX(154%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero::before {
    transform: rotate(-4deg);
  }
}

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 64px), var(--max));
  }

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

  .stat-tile {
    padding: 34px 28px;
    border-right: 1px solid var(--line);
  }

  .stat-tile:nth-child(2n) {
    border-right: 0;
  }

  .stat-tile:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-grid,
  .founder-grid,
  .comparison-grid,
  .spec-meta,
  .two-column,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .capability-output-grid section + section {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .capability-metrics > div {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .capability-metrics > div:nth-child(2n) {
    border-right: 0;
  }

  .capability-metrics > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero h1,
  .page-hero h1,
  .display-heading {
    font-size: 4rem;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-block h2,
  .evidence-grid h2 {
    font-size: 3.4rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-number-range {
    font-size: 1.9rem;
  }

  .case-figure-value {
    font-size: 5rem;
  }

  .case-card h3,
  .work-proof-head h3 {
    font-size: 2.4rem;
  }

  .service-card h3,
  .timeline-step h3,
  .comparison-card h3,
  .industry-card h2 {
    font-size: 1.8rem;
  }

  .founder-body h3 {
    font-size: 2.2rem;
  }

  .service-spec h2 {
    font-size: 2.8rem;
  }

  .project-story-head h3 {
    font-size: 2.6rem;
  }
}

@media (max-width: 639px) {
  .hero::before {
    right: -66%;
    bottom: -5%;
    width: 145vw;
    opacity: 0.56;
  }

  .hero::after {
    left: 24%;
    background-size: 56px 56px;
    opacity: 0.4;
  }

  .chapter-number {
    top: 44px;
    right: 14px;
    font-size: 8rem;
  }

  .industry-home-section .industry-tile {
    min-height: 92px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    font-size: 1.22rem;
  }

  .mesh::before,
  .about-hero::before {
    left: 24%;
    opacity: 0.62;
  }

  .mesh::after {
    right: 22px;
    height: 26%;
  }

  .cta-block::after {
    right: -54%;
    bottom: -18%;
    width: 120%;
  }

  .case-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-figure {
    min-width: 0;
    padding: 16px 0 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
    text-align: left;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-inner {
    padding-top: 76px;
  }

  .home-process-section .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
  }

  .hero h1,
  .page-hero h1,
  .display-heading {
    font-size: 5.5rem;
  }

  .hero-copy,
  .page-hero p,
  .section-lead {
    font-size: 1.34rem;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-block h2 {
    font-size: 4.6rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .stat-number-range {
    font-size: 1.9rem;
  }

  .case-figure-value {
    font-size: 5.8rem;
  }

  .case-card h3,
  .work-proof-head h3 {
    font-size: 3rem;
  }

  .work-proof-step h4 {
    font-size: 1.65rem;
  }

  .service-card h3,
  .timeline-step h3,
  .comparison-card h3,
  .industry-card h2 {
    font-size: 2.1rem;
  }

  .founder-body h3 {
    font-size: 2.6rem;
  }

  .service-spec h2 {
    font-size: 3.6rem;
  }

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

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

  .capability-metrics > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .capability-metrics > div:last-child {
    grid-column: auto;
    border-top: 0;
    border-right: 0;
  }

  .stat-tile {
    border-bottom: 0;
  }

  .stat-tile:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .stat-tile:last-child {
    border-right: 0;
  }

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

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

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

  .ownership-column {
    padding: 38px;
  }

  .ownership-column:first-child {
    padding-left: 0;
  }

  .ownership-column:last-child {
    padding-right: 0;
  }

  .ownership-column + .ownership-column {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .evidence-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 90px;
  }

  .evidence-grid h2 {
    font-size: 4.2rem;
  }

  .project-story-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .project-story-head h3 {
    font-size: 3.2rem;
  }

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

  .star-grid section:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .project-story-meta {
    grid-template-columns: 1.4fr 1fr;
  }

  .project-story-meta p {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .project-story-meta p:last-child {
    border-right: 0;
  }

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

  .work-proof-step + .work-proof-step {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .industry-card {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .industry-card:nth-child(even) {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .industry-card:nth-child(even) .industry-copy {
    order: 2;
  }

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

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 5.8rem;
  }
}

@media (max-width: 480px) {
  .brand-subtitle {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-inner {
    padding: 64px 0 52px;
  }

  .hero h1 {
    font-size: 2.78rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .gold-line {
    margin: 26px 0;
  }

  .mobile-menu a {
    font-size: 2.4rem;
  }
}
