:root {
  /* Navy-blue brand palette (headings, accents, buttons all navy). */
  --ink: #10233f;
  --ink-2: #2f4468;
  --muted: #5b6b86;
  --paper: #f4f4f1;
  --paper-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.9);
  --night: #0e2a56;
  --night-2: #16407c;
  --line: rgba(16, 35, 63, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --teal: #1b3a6b;
  --teal-bright: #ffffff;
  --copper: #1b3a6b;
  --copper-light: #aebfd8;
  --cream: #fbfbf8;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow: 0 26px 76px rgba(7, 26, 51, 0.18);
  --font-display: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(180deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px) 0 0 / 82px 82px,
    linear-gradient(180deg, var(--paper), #eeeeea 52%, #f7f7f4);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--cream);
  background: var(--night);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(7, 26, 51, 0.34);
  outline-offset: 4px;
}

.page-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16, 22, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 34, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  background: var(--night);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(1220px, calc(100% - 28px));
  margin: 0.85rem auto 0;
  padding: 0.68rem;
  border: 1px solid rgba(7, 7, 7, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(7, 7, 7, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 650;
  opacity: 0.88;
  position: relative;
}

.nav a:hover,
.nav a[aria-current="true"] {
  opacity: 1;
}

.nav a[aria-current="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  border-radius: 0;
  background: var(--ink);
}

.header-actions,
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
}

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

.btn-large {
  min-height: 50px;
  padding-inline: 1.25rem;
}

.btn-primary {
  color: #fff;
  background: var(--night);
  border-color: var(--night);
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.34);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(7, 7, 7, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.6rem;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 5.4rem 0 3.8rem;
  position: relative;
}

.hero-copy {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  right: min(2vw, 24px);
  top: 9rem;
  width: min(42vw, 520px);
  height: 1px;
  background: rgba(7, 26, 51, 0.34);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 9vw, 7.8rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.rules-panel p,
.final-cta h2 + .hero-cta {
  max-width: 700px;
}

.hero-lead {
  margin-bottom: 1.8rem;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-slogan {
  width: 100%;
  max-width: 700px;
  margin: -0.45rem 0 1.2rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--night);
  color: var(--night);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 45px rgba(7, 7, 7, 0.08);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.18);
  border-radius: var(--radius-lg);
  background: var(--night);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-visual img {
  display: block;
  width: 100%;
  min-height: clamp(360px, 46vw, 620px);
  object-fit: cover;
  object-position: right center;
}

.hero-board {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: var(--night);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 160px;
  height: 1px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
}

.hero-board > * {
  position: relative;
}

.board-header,
.board-footer,
.session-flow,
.lane-stack article {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--teal-bright);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.session-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.session-flow span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.lane-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.lane-stack article {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
}

.lane-stack span {
  color: var(--copper-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lane-stack strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}

.board-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

.board-footer div {
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.board-footer strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.board-footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 5.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: 0 18px 60px rgba(7, 7, 7, 0.08);
}

.metrics div {
  min-height: 170px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
}

.metric-value {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1;
  color: var(--teal);
}

.metrics p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.scope-section,
.modules-section,
.rules-section,
.final-cta {
  padding: 5.2rem 0;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading p {
  color: var(--ink-2);
  font-size: 1.04rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}

.scope-card,
.module-card,
.solution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.8);
  box-shadow: 0 18px 48px rgba(7, 7, 7, 0.07);
}

.scope-card {
  min-height: 270px;
  padding: 1.5rem;
}

.scope-card::after,
.module-card::after,
.solution-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 74px;
  height: 74px;
  border-radius: 0;
  border-top: 1px solid rgba(7, 26, 51, 0.3);
  border-right: 1px solid rgba(7, 26, 51, 0.3);
  background: transparent;
}

.scope-card-strong {
  color: #fff;
  background: var(--night);
}

.scope-card-strong h3,
.scope-card-strong .card-index {
  color: #fff;
}

.scope-card-strong p {
  color: rgba(255, 255, 255, 0.78);
}

.card-index {
  display: inline-flex;
  margin-bottom: 4.8rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.scope-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.scope-card p,
.module-card p,
.solution-card p {
  color: var(--ink-2);
}

.process-section {
  padding: 5.4rem 0;
  color: #fff;
  background:
    linear-gradient(118deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62.1% 62.35%, transparent 62.45%),
    var(--night);
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section .eyebrow {
  color: var(--teal-bright);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 230px;
  padding: 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.065);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 4.2rem;
  color: var(--copper-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
}

.process-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

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

.module-card {
  min-height: 220px;
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(7, 7, 7, 0.12);
}

.module-card-accent {
  color: #fff;
  background: var(--night);
}

.module-card-accent span,
.module-card-accent h3 {
  color: #fff;
}

.module-card-accent p {
  color: rgba(255, 255, 255, 0.78);
}

.module-card span,
.solution-card span {
  display: inline-flex;
  margin-bottom: 2.6rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card h3,
.solution-card h3 {
  margin-bottom: 0.65rem;
}

.module-card p,
.solution-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.integrated-callout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(7, 7, 7, 0.08);
}

.integrated-callout span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integrated-callout h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.integrated-callout p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.integrated-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  max-width: 440px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integrated-chip-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(7, 7, 7, 0.04);
  font-size: 0.82rem;
  font-weight: 750;
}

.rules-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 76px rgba(7, 7, 7, 0.1);
}

.rules-panel p {
  color: var(--ink-2);
}

.rule-list {
  display: grid;
  gap: 0.75rem;
}

.rule-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.rule-list strong {
  color: var(--teal);
}

.rule-list span {
  color: var(--ink-2);
  font-size: 0.94rem;
}

.solution-section {
  padding: 5.4rem 0;
  background:
    linear-gradient(118deg, transparent 0 54%, rgba(255, 255, 255, 0.08) 54.1% 54.35%, transparent 54.45%),
    var(--night);
  color: #fff;
  border-block: 1px solid var(--line-dark);
}

.solution-section h2,
.solution-section h3 {
  color: #fff;
}

.solution-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.solution-section .eyebrow {
  color: var(--teal-bright);
}

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

.solution-card {
  min-height: 360px;
  padding: 1.6rem;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.solution-card span {
  color: var(--copper-light);
}

.solution-card p {
  color: rgba(255, 255, 255, 0.74);
}

.solution-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--teal-bright);
}

.solution-card-dark {
  background: rgba(255, 255, 255, 0.11);
}

.enterprise-section {
  padding: 5.4rem 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.025), rgba(7, 7, 7, 0.065));
  border-top: 1px solid var(--line);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.2rem;
  align-items: stretch;
}

.enterprise-copy,
.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 76px rgba(7, 7, 7, 0.1);
}

.enterprise-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.84);
}

.enterprise-copy p {
  color: var(--ink-2);
  font-size: 1.02rem;
}

.enterprise-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.enterprise-pill-row span {
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--teal);
  background: rgba(7, 7, 7, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  row-gap: 1.2rem;
  overflow: hidden;
  padding: 1rem;
  background: var(--night);
  color: #fff;
}

.founder-photo-wrap {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  aspect-ratio: 414 / 370;
  min-height: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.founder-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.founder-content {
  min-width: 0;
  padding: 1rem 1rem 1rem 0;
}

.founder-kicker {
  margin-bottom: 0.4rem;
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-content h3 {
  max-width: 100%;
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.founder-content p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 62ch;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0.4rem;
  color: #fff;
  font-weight: 800;
}

.founder-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 980px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    max-width: min(100%, 520px);
  }

  .founder-content {
    padding: 0.25rem;
  }
}

.founder-principles div {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.founder-principles h4 {
  margin: 0 0 0.45rem;
  color: var(--copper-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.final-cta {
  text-align: center;
}

.final-cta .hero-cta {
  justify-content: center;
  margin-inline: auto;
}

.final-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-brand strong {
  color: #fff;
}

.footer-inner p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0.25rem 0.25rem;
  }

  .hero,
  .scope-grid,
  .rules-panel,
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-copy {
    min-height: auto;
  }

  .process-steps,
  .module-grid,
  .integrated-callout {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrated-callout {
    align-items: start;
  }

  .integrated-callout .btn {
    justify-self: start;
  }

  .integrated-chip-list {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .section-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    width: min(1220px, calc(100% - 20px));
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
  }

  .header-actions .btn,
  .hero-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 0.7rem;
    white-space: normal;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding-top: 3.2rem;
  }

  .hero-slogan,
  .hero-lead {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
  }

  .session-flow,
  .board-footer,
  .metrics,
  .process-steps,
  .module-grid,
  .integrated-callout,
  .founder-card,
  .founder-principles,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .founder-content {
    padding: 0.25rem;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 0;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
  }

  .nav a[aria-current="true"] {
    border-color: var(--ink);
    color: var(--teal);
    background: rgba(7, 7, 7, 0.06);
  }

  .nav a[aria-current="true"]::after {
    display: none;
  }

  .session-flow span {
    min-height: 56px;
  }

  .lane-stack article,
  .rule-list div {
    grid-template-columns: 1fr;
  }

  .scope-section,
  .modules-section,
  .rules-section,
  .final-cta,
  .process-section,
  .solution-section,
  .enterprise-section {
    padding-block: 3.6rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* ── Cantor · facility-management team ──────────────────────────────────── */
.cantor-section {
  padding: 5.4rem 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.cantor-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.6rem;
  align-items: start;
}

.cantor-intro {
  position: sticky;
  top: 110px;
}

.cantor-intro p {
  color: var(--ink-2);
  font-size: 1.04rem;
}

.cantor-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.cantor-pill-row span {
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--teal);
  background: rgba(7, 7, 7, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
}

.cantor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.cantor-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.cantor-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--teal);
}

.cantor-stats span {
  color: var(--ink-2);
  font-size: 0.82rem;
}

.cantor-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(7, 7, 7, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(7, 7, 7, 0.12);
}

.team-photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7, 7, 7, 0.94), rgba(23, 23, 23, 0.96)),
    var(--night);
}

.team-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.04);
}

.team-body {
  padding: 1.05rem 1.15rem 1.25rem;
}

.team-tag {
  margin: 0 0 0.4rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-name {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.team-role {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .cantor-grid {
    grid-template-columns: 1fr;
  }

  .cantor-intro {
    position: static;
  }
}

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

  .cantor-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
