:root {
  --ink: #061426;
  --ink-2: #0a2340;
  --paper: #f2f1ec;
  --white: #ffffff;
  --blue: #0879ef;
  --blue-2: #005fc8;
  --lime: #c9ef00;
  --line: rgba(6, 20, 38, .18);
  --muted: #55616e;
  --max: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  color: white;
  background: rgba(6, 20, 38, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.header-inner {
  width: min(100%, var(--max));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 340px 1fr auto;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, .11);
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.brand {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 12px 26px;
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.brand img {
  width: 286px;
}

.header-meta {
  display: flex;
  gap: 28px;
  padding-left: 28px;
  color: #9fb0c1;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.main-nav a {
  min-width: 112px;
  display: grid;
  place-items: center;
  padding-inline: 16px;
  border-left: 1px solid rgba(255, 255, 255, .11);
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: color .2s, background .2s;
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  background: transparent;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.hero {
  min-height: 790px;
  padding-top: 88px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1.12fr) minmax(420px, .88fr);
  grid-template-rows: 1fr auto;
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero-index {
  grid-row: 1 / 3;
  padding-top: 52px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: var(--lime);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.hero-copy {
  align-self: center;
  padding: 72px 7vw 68px 5.5vw;
}

.kicker,
.section-code {
  color: var(--lime);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 32px;
  max-width: 900px;
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-size: clamp(4rem, 6.35vw, 7.45rem);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.78);
}

.hero-intro {
  max-width: 690px;
  margin-top: 36px;
  color: #b9c8d7;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
}

.action-link {
  min-width: 240px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .2s, background .2s;
}

.action-link + .action-link {
  border-left: 0;
}

.action-link b {
  font-size: 1.2rem;
}

.action-link:hover,
.action-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.action-primary:hover {
  background: white;
  border-color: white;
}

.action-dark {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.action-dark:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  padding: 54px 50px 40px;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.12);
  background: #09203b;
}

.hero-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(8,121,239,.24), transparent 45%),
    linear-gradient(135deg, transparent 0 49.8%, rgba(255,255,255,.05) 50%, transparent 50.2%);
}

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

.emblem-stage img {
  position: relative;
  z-index: 4;
  width: 92%;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.42));
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8,121,239,.42);
  animation: spin 16s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(201,239,0,.9);
}

.orbit-a {
  inset: 4%;
}

.orbit-a::before {
  top: 8%;
  right: 17%;
}

.orbit-b {
  inset: 15%;
  animation-direction: reverse;
  animation-duration: 11s;
}

.orbit-b::before {
  bottom: 11%;
  left: 6%;
  background: #2d9fff;
  box-shadow: 0 0 18px #2d9fff;
}

.orbit-c {
  inset: 28%;
  border-color: rgba(201,239,0,.26);
  animation-duration: 8s;
}

.orbit-c::before {
  top: 48%;
  right: -6px;
  width: 8px;
  height: 8px;
}

.hero-note {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 88px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-note span {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: #aabaca;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.hero-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 14px;
  background: var(--lime);
}

.statement {
  display: grid;
  grid-template-columns: 84px 1.1fr .9fr;
  border-bottom: 1px solid var(--line);
}

.statement-number {
  padding-top: 48px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  text-align: center;
  font-weight: 700;
}

.statement-title,
.statement-copy {
  padding: 90px 6vw;
}

.statement-title {
  border-right: 1px solid var(--line);
}

.statement-title > p,
.ledger-head,
.enterprise-label,
.principles-head > span {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.statement-title h2,
.process-title h2,
.enterprise-main h2,
.academy-copy h2,
.principles-head h2,
.faq-title h2,
.contact-heading h2 {
  margin-top: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.statement-copy {
  display: flex;
  align-items: end;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-ledger {
  border-bottom: 1px solid var(--line);
}

.ledger-head {
  display: grid;
  grid-template-columns: 84px 1.1fr .9fr;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.ledger-head span {
  padding: 0 28px;
}

.ledger-head span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.ledger-row {
  display: grid;
  grid-template-columns: 84px 1.1fr 1fr 260px;
  min-height: 170px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color .2s, background .2s;
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-row > * {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 28px;
}

.ledger-row > *:not(:last-child) {
  border-right: 1px solid var(--line);
}

.ledger-number {
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
}

.ledger-row h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.ledger-row p {
  color: var(--muted);
}

.ledger-row a {
  justify-content: space-between;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ledger-row:hover {
  color: white;
  background: var(--blue);
}

.ledger-row:hover p,
.ledger-row:hover a,
.ledger-row:hover .ledger-number {
  color: white;
}

.process {
  color: white;
  background: var(--ink);
}

.process-title {
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.process-title > * {
  padding: 80px 5vw;
}

.process-title .section-code {
  padding-left: 22px;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,.13);
  writing-mode: vertical-rl;
}

.process-title h2 {
  border-right: 1px solid rgba(255,255,255,.13);
}

.process-title p {
  align-self: end;
  color: #9fb0c0;
  font-size: 1.05rem;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-track article {
  min-height: 320px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 700;
}

.process-track h3 {
  margin-top: 100px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.process-track p {
  margin-top: 16px;
  color: #9fb0c0;
  font-size: .9rem;
}

.enterprise {
  display: grid;
  grid-template-columns: 84px 1fr 340px;
  background: var(--lime);
}

.enterprise-label {
  padding: 34px 0;
  border-right: 1px solid rgba(6,20,38,.24);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 20px;
}

.enterprise-label strong {
  color: var(--ink);
}

.enterprise-main {
  padding: 90px 6vw;
  border-right: 1px solid rgba(6,20,38,.24);
}

.enterprise-main h2 {
  max-width: 920px;
}

.enterprise-main > p {
  max-width: 760px;
  margin-top: 28px;
  font-size: 1.08rem;
}

.enterprise-main ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 36px 0;
  list-style: none;
  border-top: 1px solid rgba(6,20,38,.24);
  border-left: 1px solid rgba(6,20,38,.24);
}

.enterprise-main li {
  padding: 16px;
  border-right: 1px solid rgba(6,20,38,.24);
  border-bottom: 1px solid rgba(6,20,38,.24);
  font-size: .88rem;
}

.enterprise-aside {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}

.big-mark {
  font-family: "Archivo Black", sans-serif;
  font-size: 9rem;
  line-height: .8;
  letter-spacing: -.08em;
}

.enterprise-aside p {
  font-size: .92rem;
  font-weight: 600;
}

.academy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  background: var(--ink-2);
}

.academy-visual {
  min-height: 680px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.13);
}

.academy-visual img {
  position: relative;
  z-index: 2;
  width: min(78%, 680px);
}

.academy-word {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: rgba(255,255,255,.045);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(6rem, 13vw, 14rem);
  line-height: .8;
  writing-mode: vertical-rl;
}

.academy-copy {
  align-self: center;
  padding: 90px 7vw;
}

.academy-copy p {
  max-width: 650px;
  margin-top: 28px;
  color: #b3c2d0;
  font-size: 1.03rem;
}

.academy-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-left: 1px solid rgba(255,255,255,.16);
}

.academy-list span {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #d8e3ec;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.principles {
  display: grid;
  grid-template-columns: 34% 66%;
  border-bottom: 1px solid var(--line);
}

.principles-head {
  position: relative;
  z-index: 1;
  padding: 80px 4vw;
  border-right: 1px solid var(--line);
  overflow: visible;
}

.principles-head h2 {
  max-width: 8.1ch;
  font-size: clamp(2.5rem, 4.25vw, 5.05rem);
}

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

.principles-grid article {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.principles-grid article:nth-child(2n) {
  border-right: 0;
}

.principles-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}

.principles-grid span {
  color: var(--blue);
  font-weight: 700;
}

.principles-grid h3 {
  margin-top: 68px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.principles-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: 34% 66%;
  background: white;
}

.faq-title {
  padding: 80px 5vw;
  border-right: 1px solid var(--line);
}

.faq-list {
  padding: 20px 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 38px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-item button b {
  font-size: 1.5rem;
  transition: transform .2s;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 38px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 28px;
}

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

.contact {
  display: grid;
  grid-template-columns: 34% 1fr;
  color: white;
  background: var(--blue);
}

.contact-heading {
  padding: 80px 5vw;
  border-right: 1px solid rgba(255,255,255,.24);
}

.contact-heading .section-code {
  color: var(--lime);
}

.contact-heading p {
  margin-top: 24px;
  color: #d7e9fb;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  padding: 80px 5vw 40px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.3);
  border-left: 1px solid rgba(255,255,255,.3);
}

.contact-form label:nth-child(2n),
.contact-form .wide {
  border-right: 1px solid rgba(255,255,255,.3);
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: #d8ebff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.6);
  outline: none;
  color: white;
  background: transparent;
  padding: 10px 0;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-direct {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.24);
}

.contact-direct a {
  padding: 24px 5vw;
  border-right: 1px solid rgba(255,255,255,.24);
  color: #d6eaff;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-direct strong {
  color: white;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer {
  min-height: 200px;
  display: grid;
  grid-template-columns: 34% 1fr 1fr;
  color: #aab8c5;
  background: #030b14;
}

.site-footer > div {
  padding: 42px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.site-footer img {
  width: 300px;
}

.site-footer > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s;
}

.floating-contact:hover {
  transform: translate(-4px, -4px);
  box-shadow: 5px 5px 0 var(--ink);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 300px 1fr auto;
  }

  .header-meta {
    display: none;
  }

  .main-nav a {
    min-width: 92px;
  }

  .hero {
    grid-template-columns: 60px 1fr 45%;
  }

  .ledger-head {
    grid-template-columns: 60px 1fr 1fr;
  }

  .ledger-row {
    grid-template-columns: 60px 1fr 1fr 210px;
  }

  .enterprise {
    grid-template-columns: 60px 1fr 280px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    border-right: 0;
  }

  .brand img {
    width: 245px;
  }

  .menu-toggle {
    display: block;
    margin-right: 16px;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.15);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    min-height: 58px;
    border-left: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .hero {
    padding-top: 74px;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-index {
    grid-row: 1 / 4;
  }

  .hero-copy {
    padding: 70px 7vw;
  }

  .hero-emblem {
    grid-column: 2;
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .hero-note {
    grid-column: 2;
  }

  .statement {
    grid-template-columns: 52px 1fr;
  }

  .statement-number {
    grid-row: 1 / 3;
  }

  .statement-title,
  .statement-copy {
    grid-column: 2;
    padding: 70px 7vw;
  }

  .statement-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ledger-head {
    grid-template-columns: 52px 1fr;
  }

  .ledger-head span:nth-child(3) {
    display: none;
  }

  .ledger-row {
    grid-template-columns: 52px 1fr;
  }

  .ledger-row > * {
    grid-column: 2;
    border-right: 0 !important;
    padding: 22px 28px;
  }

  .ledger-row .ledger-number {
    grid-column: 1;
    grid-row: 1 / 4;
    justify-content: center;
    border-right: 1px solid var(--line) !important;
  }

  .ledger-row a {
    border-top: 1px solid var(--line);
  }

  .process-title {
    grid-template-columns: 52px 1fr;
  }

  .process-title .section-code {
    grid-row: 1 / 3;
  }

  .process-title h2,
  .process-title p {
    grid-column: 2;
    border-right: 0;
  }

  .process-title p {
    padding-top: 0;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .process-track article {
    min-height: 260px;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .process-track h3 {
    margin-top: 58px;
  }

  .enterprise {
    grid-template-columns: 52px 1fr;
  }

  .enterprise-label {
    grid-row: 1 / 3;
  }

  .enterprise-main,
  .enterprise-aside {
    grid-column: 2;
  }

  .enterprise-main {
    border-right: 0;
  }

  .enterprise-aside {
    min-height: 260px;
    border-top: 1px solid rgba(6,20,38,.24);
  }

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

  .academy-visual {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .principles,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .principles-head,
  .faq-title,
  .contact-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-heading {
    border-bottom-color: rgba(255,255,255,.24);
  }

  .contact-direct {
    grid-column: 1;
  }

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

  .site-footer > div:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

@media (max-width: 600px) {
  .brand {
    padding-left: 14px;
  }

  .brand img {
    width: 205px;
  }

  .hero {
    grid-template-columns: 34px 1fr;
  }

  .hero-copy {
    padding: 54px 24px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.1rem);
  }

  .hero-emblem {
    min-height: 390px;
    padding: 24px;
  }

  .hero-note {
    grid-template-columns: 1fr;
  }

  .hero-note span {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .action-link {
    width: 100%;
    min-width: 0;
  }

  .action-link + .action-link {
    border-left: 1px solid currentColor;
    border-top: 0;
  }

  .statement {
    grid-template-columns: 34px 1fr;
  }

  .statement-title,
  .statement-copy {
    padding: 56px 24px;
  }

  .ledger-head {
    grid-template-columns: 34px 1fr;
  }

  .ledger-head span {
    padding: 0 16px;
  }

  .ledger-row {
    grid-template-columns: 34px 1fr;
  }

  .ledger-row > * {
    padding: 20px;
  }

  .process-title {
    grid-template-columns: 34px 1fr;
  }

  .process-title > * {
    padding: 56px 24px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track article {
    min-height: 210px;
  }

  .process-track h3 {
    margin-top: 38px;
  }

  .enterprise {
    grid-template-columns: 34px 1fr;
  }

  .enterprise-main {
    padding: 60px 24px;
  }

  .enterprise-main ul {
    grid-template-columns: 1fr;
  }

  .academy-copy {
    padding: 60px 24px;
  }

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

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

  .principles-grid article,
  .principles-grid article:nth-child(2n),
  .principles-grid article:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles-head,
  .faq-title,
  .contact-heading {
    padding: 58px 24px;
  }

  .faq-item button {
    min-height: 86px;
    padding: 0 22px;
  }

  .faq-answer p {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 48px 20px 30px;
  }

  .contact-form label,
  .contact-form label:nth-child(2n) {
    border-right: 1px solid rgba(255,255,255,.3);
  }

  .contact-form .wide,
  .submit-button {
    grid-column: 1;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-direct a {
    border-bottom: 1px solid rgba(255,255,255,.24);
  }

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

  .site-footer > div,
  .site-footer > div:first-child {
    grid-column: 1;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* AJUSTES DE CUADRÍCULA — títulos contenidos dentro de sus columnas */

/* Encabezado principal */
.hero-copy {
  min-width: 0;
  overflow: hidden;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(3.8rem, 5.75vw, 6.85rem);
  letter-spacing: -.07em;
}

/* Preguntas frecuentes */
.faq-title {
  min-width: 0;
  overflow: hidden;
}

.faq-title h2 {
  max-width: 7.2ch;
  font-size: clamp(2.45rem, 4.35vw, 4.95rem);
}

/* Contacto */
.contact-heading {
  min-width: 0;
  overflow: hidden;
}

.contact-heading h2 {
  max-width: 7.1ch;
  font-size: clamp(2.35rem, 4.15vw, 4.75rem);
}

/* En pantallas medianas, evitar cualquier invasión entre columnas */
@media (max-width: 1250px) and (min-width: 901px) {
  .hero h1 {
    font-size: clamp(3.5rem, 5.2vw, 6.15rem);
  }

  .faq-title h2 {
    font-size: clamp(2.25rem, 3.85vw, 4.35rem);
  }

  .contact-heading h2 {
    font-size: clamp(2.15rem, 3.7vw, 4.2rem);
  }
}

/* En móvil se permite ocupar todo el ancho disponible */
@media (max-width: 900px) {
  .hero-copy,
  .faq-title,
  .contact-heading {
    overflow: visible;
  }

  .hero h1,
  .faq-title h2,
  .contact-heading h2 {
    max-width: none;
  }
}


/* AJUSTE FINO DEL LOGOTIPO EN ENCABEZADO FIJO */
.brand {
  overflow: hidden;
}

.brand img {
  width: 270px;
  max-height: 68px;
  object-fit: contain;
}

/* Ajuste proporcional en tablet y móvil */
@media (max-width: 1120px) {
  .brand img {
    width: 255px;
    max-height: 64px;
  }
}

@media (max-width: 900px) {
  .brand img {
    width: 230px;
    max-height: 58px;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 195px;
    max-height: 52px;
  }
}

/* =========================================================
   PÁGINAS INTERNAS Y CONTENIDO INSTITUCIONAL
   ========================================================= */

.inner-hero {
  min-height: 540px;
  padding: 170px 5vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.inner-hero-copy { max-width: 1050px; }
.inner-hero h1 {
  margin-top: 26px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: .91;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.inner-hero p {
  max-width: 760px;
  margin-top: 30px;
  color: #b9c8d7;
  font-size: 1.08rem;
}
.inner-hero-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.inner-hero-side strong {
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: .9;
}
.inner-hero-side span {
  margin-top: 20px;
  color: #9fb0c0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
}

.content-section {
  display: grid;
  grid-template-columns: 34% 66%;
  border-bottom: 1px solid var(--line);
}
.content-aside {
  padding: 80px 5vw;
  border-right: 1px solid var(--line);
}
.content-aside .section-code { color: var(--blue); }
.content-aside h2 {
  margin-top: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: .96;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.content-main { padding: 80px 6vw; }
.content-main > p {
  max-width: 880px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.03rem;
}
.content-main h2,
.content-main h3 {
  margin: 38px 0 16px;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}
.content-main h2 { font-size: clamp(2rem, 3.7vw, 4.1rem); }
.content-main h3 { font-size: 1.4rem; }
.content-main ul,
.content-main ol {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px 22px;
  color: var(--muted);
}
.content-main a:not(.action-link) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.fact-grid article {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact-grid span {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 700;
}
.fact-grid h3 {
  margin: 52px 0 8px;
  font-size: 1.25rem;
}
.fact-grid p { color: var(--muted); }

.founder-section {
  display: grid;
  grid-template-columns: 42% 58%;
  color: white;
  background: var(--ink-2);
}
.founder-photo-wrap {
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 70px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.founder-photo {
  width: min(470px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 31%;
  border: 2px solid var(--lime);
  box-shadow: 24px 24px 0 rgba(8,121,239,.22);
}
.founder-copy {
  align-self: center;
  padding: 85px 7vw;
}
.founder-copy h2 {
  margin-top: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.founder-role {
  display: inline-block;
  margin-top: 24px;
  color: var(--lime);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.founder-copy p {
  max-width: 720px;
  margin-top: 24px;
  color: #b9c8d7;
}

.standard-list {
  border-top: 1px solid var(--line);
}
.standard-entry {
  display: grid;
  grid-template-columns: 150px 1fr 220px;
  min-height: 190px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.standard-entry > * {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.standard-entry strong {
  justify-content: center;
  color: var(--blue);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.45rem;
}
.standard-entry div {
  display: block;
}
.standard-entry h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.3vw, 2.5rem);
}
.standard-entry p { color: var(--muted); }
.standard-entry a {
  justify-content: space-between;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.standard-entry:hover {
  color: white;
  background: var(--blue);
}
.standard-entry:hover strong,
.standard-entry:hover p,
.standard-entry:hover a { color: white; }

.standard-meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 32px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.standard-meta div {
  min-height: 135px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.standard-meta span {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.standard-meta strong {
  display: block;
  margin-top: 34px;
}

.legal-document h2 {
  margin-top: 52px;
  font-size: 1.6rem;
}
.legal-document p,
.legal-document li { font-size: .95rem; }

.breadcrumbs {
  margin-bottom: 26px;
  color: #9fb0c0;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.breadcrumbs a { color: white; }

.footer-legal {
  margin-top: 12px;
}
.footer-legal a { margin-right: 18px; }

@media (max-width: 900px) {
  .inner-hero { grid-template-columns: 1fr; padding-top: 135px; }
  .inner-hero-side {
    min-height: 230px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.13);
  }
  .content-section,
  .founder-section { grid-template-columns: 1fr; }
  .content-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .founder-photo-wrap {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .standard-entry { grid-template-columns: 110px 1fr; }
  .standard-entry a {
    grid-column: 2;
    border-top: 1px solid var(--line);
  }
  .standard-meta { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .inner-hero { padding: 125px 24px 55px; }
  .inner-hero-side { padding: 28px 0; }
  .content-aside,
  .content-main,
  .founder-copy { padding: 58px 24px; }
  .fact-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { min-height: 430px; padding: 40px 20px; }
  .standard-entry { grid-template-columns: 72px 1fr; }
  .standard-entry > * { padding: 20px; }
}


/* =========================================================
   AJUSTES FINOS SOLICITADOS
   ========================================================= */

/* Encabezados internos menos exagerados */
.inner-hero-copy {
  min-width: 0;
}

.inner-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(2.9rem, 4.8vw, 5.45rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.content-aside h2 {
  font-size: clamp(2rem, 3.8vw, 4.1rem);
}

.content-main h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.founder-copy h2 {
  max-width: 9.8ch;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.05em;
}

/* Foto del fundador: círculo real con órbitas estilo emblema */
.founder-photo-wrap {
  position: relative;
  overflow: hidden;
}

.founder-orbit-stage {
  position: relative;
  width: min(470px, 82vw);
  height: min(470px, 82vw);
  display: grid;
  place-items: center;
}

.founder-photo {
  position: relative;
  z-index: 4;
  width: min(360px, 68vw);
  height: min(360px, 68vw);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
  border: 3px solid #c9ef00;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.founder-orbit,
.founder-orbit-alt,
.founder-orbit-core {
  position: absolute;
  border-radius: 50%;
}

.founder-orbit {
  inset: 1.5%;
  border: 2px solid rgba(8,121,239,.95);
  animation: spin 15s linear infinite;
}

.founder-orbit::before {
  content: "";
  position: absolute;
  top: 9%;
  right: 17%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9ef00;
  box-shadow: 0 0 18px rgba(201,239,0,.92);
}

.founder-orbit-alt {
  inset: 10%;
  border: 1px solid rgba(201,239,0,.38);
  animation: spin 10s linear infinite reverse;
}

.founder-orbit-alt::before {
  content: "";
  position: absolute;
  bottom: 13%;
  left: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d9fff;
  box-shadow: 0 0 18px rgba(45,159,255,.88);
}

.founder-orbit-core {
  inset: 20%;
  border: 1px solid rgba(8,121,239,.28);
}

.founder-orbit-core::before {
  content: "";
  position: absolute;
  top: 48%;
  right: -6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9ef00;
  box-shadow: 0 0 16px rgba(201,239,0,.9);
}

/* Afinar páginas de estándares para que el hero respire mejor */
.standard-entry h2 {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

@media (max-width: 900px) {
  .inner-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .founder-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .founder-orbit-stage {
    width: min(390px, 84vw);
    height: min(390px, 84vw);
  }

  .founder-photo {
    width: min(295px, 66vw);
    height: min(295px, 66vw);
  }
}

@media (max-width: 600px) {
  .inner-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .content-aside h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .content-main h2 {
    font-size: clamp(1.45rem, 6vw, 2.3rem);
  }

  .founder-orbit-stage {
    width: min(320px, 86vw);
    height: min(320px, 86vw);
  }

  .founder-photo {
    width: min(245px, 66vw);
    height: min(245px, 66vw);
  }
}


/* =========================================================
   CORRECCIÓN RESPONSIVA GENERAL — TELÉFONO Y TABLETA
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
header,
footer,
.header-inner,
.hero-copy,
.hero-emblem,
.inner-hero-copy,
.inner-hero-side,
.content-main,
.content-aside,
.founder-copy,
.founder-photo-wrap {
  min-width: 0;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
}

/* En tablet el menú ya se convierte en desplegable para evitar amontonamiento. */
@media (max-width: 1180px) {
  .site-header {
    height: 74px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .brand {
    min-width: 0;
    padding: 8px 18px;
    border-right: 0;
  }

  .brand img {
    width: min(255px, 66vw);
    max-height: 58px;
    object-fit: contain;
  }

  .header-meta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1003;
    margin-right: 16px;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 1002;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 74px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    overflow-y: auto;
    color: white;
    background: rgba(6, 20, 38, .99);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 22px 45px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-width: 0;
    min-height: 62px;
    padding: 16px;
    border-left: 0;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: center;
  }

  .hero {
    padding-top: 74px;
  }

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

/* Tableta */
@media (max-width: 900px) {
  .hero,
  .statement,
  .ledger-head,
  .ledger-row,
  .process-title,
  .enterprise {
    max-width: 100%;
  }

  .hero h1,
  .inner-hero h1,
  .statement-title h2,
  .process-title h2,
  .enterprise-main h2,
  .academy-copy h2,
  .principles-head h2,
  .faq-title h2,
  .contact-heading h2,
  .content-aside h2,
  .content-main h2,
  .founder-copy h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy,
  .statement-title,
  .statement-copy,
  .process-title > *,
  .enterprise-main,
  .academy-copy,
  .principles-head,
  .faq-title,
  .contact-heading,
  .content-aside,
  .content-main,
  .founder-copy {
    max-width: 100%;
  }

  .standard-entry {
    width: 100%;
  }

  .site-footer {
    width: 100%;
  }
}

/* Teléfono */
@media (max-width: 600px) {
  .main-nav {
    grid-template-columns: 1fr;
  }

  .main-nav a {
    min-height: 54px;
    border-right: 0;
  }

  .hero {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .hero-index {
    width: 30px;
  }

  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 14.5vw, 4.3rem);
  }

  .hero-emblem {
    min-width: 0;
    width: 100%;
    padding: 20px 14px;
  }

  .emblem-stage {
    width: min(100%, 340px);
  }

  .hero-note span {
    padding: 17px 18px;
  }

  .inner-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
  }

  .statement-title,
  .statement-copy,
  .content-aside,
  .content-main,
  .founder-copy,
  .enterprise-main,
  .academy-copy,
  .principles-head,
  .faq-title,
  .contact-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ledger-row h3,
  .standard-entry h2 {
    overflow-wrap: anywhere;
  }

  .standard-entry {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .standard-entry > * {
    min-width: 0;
    padding: 18px 14px;
  }

  .standard-entry strong {
    font-size: 1rem;
  }

  .standard-entry a {
    grid-column: 2;
  }

  .contact-form {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer > div {
    min-width: 0;
    padding: 28px 20px;
  }

  .site-footer img {
    width: min(250px, 100%);
  }
}


/* ==========================================================
   AJUSTE UX/UI DE ESCALA TIPOGRÁFICA — AGOSTO 2026
   Conserva el concepto editorial y mejora lectura, equilibrio
   y adaptación a diferentes anchos de pantalla.
   ========================================================== */

/* Hero: mantiene impacto sin cortar palabras ni ocultar el CTA */
.hero {
  min-height: clamp(720px, 86vh, 880px);
}

.hero-copy {
  padding-right: clamp(34px, 4.6vw, 76px);
  overflow: visible;
}

.hero h1 {
  width: min(100%, 830px);
  max-width: 830px;
  font-size: clamp(3.65rem, 5.15vw, 6.35rem);
  line-height: .9;
  letter-spacing: -.06em;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  max-width: 100%;
  white-space: normal;
}

.hero-intro {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  line-height: 1.58;
}

/* Manifiesto: reduce el contraste extremo entre columnas */
.statement {
  grid-template-columns: 84px minmax(0, 1.16fr) minmax(360px, .84fr);
}

.statement-title,
.statement-copy {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.statement-title {
  padding-right: clamp(40px, 5vw, 82px);
}

.statement-title h2 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 4.25vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.statement-copy {
  align-items: center;
  padding-left: clamp(42px, 5.2vw, 88px);
  padding-right: clamp(42px, 5.2vw, 88px);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.65;
}

.statement-copy p {
  max-width: 580px;
}

.statement-copy strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.35vw, 1.48rem);
  line-height: 1.3;
}

/* Ritmo tipográfico: los títulos internos conservan carácter sin gritar */
.process-title h2,
.enterprise-main h2,
.academy-copy h2,
.principles-head h2,
.faq-title h2,
.contact-heading h2 {
  font-size: clamp(2.65rem, 4.35vw, 5.05rem);
}

@media (max-width: 1350px) and (min-width: 901px) {
  .hero {
    grid-template-columns: 70px minmax(0, 1.08fr) minmax(390px, .92fr);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 4.9vw, 5.65rem);
  }

  .statement {
    grid-template-columns: 70px minmax(0, 1.08fr) minmax(340px, .92fr);
  }

  .statement-title h2 {
    font-size: clamp(2.7rem, 3.85vw, 4.35rem);
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero {
    grid-template-columns: 62px minmax(0, 1fr) minmax(350px, .88fr);
  }

  .hero-copy {
    padding-left: 4.5vw;
    padding-right: 3vw;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 4.65vw, 4.65rem);
  }

  .statement-title,
  .statement-copy {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    overflow: visible;
  }

  .hero h1 {
    width: 100%;
    max-width: 680px;
    font-size: clamp(3rem, 11.5vw, 5rem);
    line-height: .91;
  }

  .statement-title h2 {
    max-width: 13ch;
    font-size: clamp(2.55rem, 8.5vw, 4.25rem);
  }

  .statement-copy {
    align-items: flex-start;
    font-size: 1.05rem;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 58px 24px 52px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    letter-spacing: -.055em;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .statement-title,
  .statement-copy {
    padding: 54px 24px;
  }

  .statement-title h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }
}
