:root {
  --electric: #005afe;
  --blue: #003895;
  --cream: #faf2e3;
  --navy: #191f39;
  --deep: #090f22;
  --white: #ffffff;
  --line-dark: rgba(250, 242, 227, 0.18);
  --line-light: rgba(25, 31, 57, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--cream);
}

body > main.container {
  max-width: none;
  padding: 0;
}

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin: auto;
}

nav.container-fluid {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 15, 34, 0.96);
  padding: 0.8rem max(1.25rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

nav a,
nav strong {
  color: var(--cream);
}

nav ul {
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 6.25rem;
  text-decoration: none;
}

.brand-logo {
  display: block;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 1px rgba(250, 242, 227, 0.95))
    drop-shadow(0 0 0.28rem rgba(250, 242, 227, 0.18))
    drop-shadow(0 0 0.55rem rgba(0, 90, 254, 0.1));
}

.brand-logo-primary {
  width: 20rem;
  height: 6.25rem;
  transform: scale(1.35);
  transform-origin: left center;
}

.brand-logo-compact {
  display: none;
  width: 7rem;
  height: 7rem;
  transform: scale(1.22);
  transform-origin: center;
}

nav a[role="button"] {
  border-color: var(--electric);
  background: var(--electric);
  color: var(--white);
  padding: 0.55rem 0.9rem;
}

.eyebrow {
  position: relative;
  z-index: 1;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 90, 254, 0.25), transparent 24rem),
    linear-gradient(135deg, var(--deep) 0%, var(--navy) 62%, #0b1941 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: min(55vw, 48rem);
  height: min(55vw, 48rem);
  left: -18rem;
  bottom: -20rem;
  border-radius: 50%;
  background: rgba(0, 90, 254, 0.16);
  filter: blur(3.5rem);
  pointer-events: none;
}

.hero-grid,
.section-grid,
.authority-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(250, 242, 227, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 242, 227, 0.06) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  width: min(48vw, 42rem);
  height: min(48vw, 42rem);
  right: -12rem;
  top: 12%;
  border: 1px solid rgba(0, 90, 254, 0.55);
  transform: rotate(45deg);
}

.hero-mark {
  position: absolute;
  right: 5vw;
  top: 18%;
  color: rgba(250, 242, 227, 0.08);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hero-content {
  padding: 8rem 0 6rem;
}

.hero h1 {
  max-width: 900px;
  color: var(--cream);
  font-family: "Caveat", cursive;
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.035em;
  transform: rotate(-1.7deg);
  transform-origin: left center;
  text-shadow: 0 0 1.25rem rgba(250, 242, 227, 0.11);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(18rem, 42%);
  height: 0.28rem;
  margin: 1.2rem 0 0 12%;
  border-radius: 999px;
  background: var(--electric);
  transform: rotate(-1deg);
  box-shadow: 0 0 0.8rem rgba(0, 90, 254, 0.18);
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--white);
  font-size: 1.3rem;
  text-shadow: 0 0 0.9rem rgba(255, 255, 255, 0.1);
}

.hero .eyebrow {
  text-shadow: 0 0 0.7rem rgba(250, 242, 227, 0.12);
}

.btn {
  display: inline-block;
  background: var(--electric);
  color: var(--white) !important;
  padding: 0.9rem 1.3rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}

.btn:hover,
nav a[role="button"]:hover {
  background: var(--blue);
}

:where(a, button, input):focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

.light {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--navy);
  padding: 7rem 0;
}

.light p,
.light li,
.light small,
.light strong {
  color: var(--navy);
}

.light h2,
.light h3 {
  color: var(--navy);
}

.light h2,
.dark h2,
.management h2,
.authority h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.light p {
  max-width: 820px;
}

.light .eyebrow {
  color: var(--blue);
}

.visual {
  margin: 4rem 0;
}

.visual-grid {
  height: min(42vw, 470px);
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 90, 254, 0.96), rgba(0, 56, 149, 0.94)),
    var(--blue);
}

.visual-grid::before,
.visual-grid::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(250, 242, 227, 0.32);
  transform: rotate(-12deg);
}

.visual-grid::after {
  inset: 20% 35% 20% 8%;
  border-color: rgba(250, 242, 227, 0.6);
  transform: rotate(28deg);
}

.visual-axis {
  position: absolute;
  display: block;
  background: var(--cream);
  opacity: 0.8;
}

.visual-axis-one {
  width: 72%;
  height: 1px;
  left: 8%;
  top: 58%;
  transform: rotate(-18deg);
}

.visual-axis-two {
  width: 1px;
  height: 90%;
  left: 55%;
  top: 5%;
  transform: rotate(24deg);
}

.visual-block {
  position: absolute;
  display: block;
  border: 1px solid var(--cream);
  background: rgba(250, 242, 227, 0.1);
}

.visual-block-one {
  width: 21%;
  height: 42%;
  top: 20%;
  left: 14%;
}

.visual-block-two {
  width: 27%;
  height: 28%;
  bottom: 13%;
  right: 12%;
}

.visual-ring {
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: 25%;
  top: 26%;
  border: 1px solid var(--cream);
  border-radius: 50%;
}

.visual-index {
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.visual figcaption,
figcaption {
  margin-top: 0.75rem;
  color: var(--blue);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dark {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  padding: 7rem 0;
}

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

.dark p,
.dark li,
.dark small {
  color: var(--white);
}

.dark > .wrap,
.management > .wrap,
.authority-content,
.contact-content {
  position: relative;
  z-index: 1;
}

.solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-dark);
  margin-top: 3rem;
}

.solution {
  min-height: 300px;
  padding: 2.5rem;
  background: var(--navy);
  border: 1px solid rgba(250, 242, 227, 0.1);
}

.solution p,
.solution a {
  color: var(--white);
}

.solution a {
  font-weight: 700;
}

.solution a:hover {
  color: var(--cream);
}

.num {
  color: var(--cream);
  font-size: 0.8rem;
}

.management {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 8rem 0;
}

.management::before {
  content: "04";
  position: absolute;
  right: -2rem;
  top: -4rem;
  color: rgba(0, 90, 254, 0.11);
  font-size: 28vw;
  font-weight: 900;
}

.management-lines {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background: linear-gradient(120deg, transparent 40%, rgba(0, 90, 254, 0.18) 40.1%, transparent 40.3%);
}

.management h2 {
  max-width: 1000px;
  color: var(--cream);
}

.management p {
  color: var(--white);
  max-width: 820px;
}

.management h3,
.management .eyebrow,
.management .sequence {
  color: var(--cream);
}

.pain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0;
  border: 1px solid var(--line-dark);
}

.pain div {
  padding: 1.5rem;
  color: var(--cream);
  border: 1px solid rgba(250, 242, 227, 0.12);
}

.sequence {
  max-width: none !important;
  color: var(--cream) !important;
  font-size: 2rem;
  font-weight: 800;
  border-left: 4px solid var(--electric);
  padding-left: 1rem;
}

.method {
  padding-bottom: 8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  border-top: 3px solid var(--electric);
  padding: 1.5rem 0.5rem 1.25rem;
}

.step:nth-child(-n + 3) {
  grid-column: span 2;
}

.step:nth-child(n + 4) {
  grid-column: span 3;
}

.step h3 {
  margin-top: 0.6rem;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.08;
}

.step p {
  margin-top: 1rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.65;
}

.step strong {
  color: var(--blue);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.step p {
  color: var(--navy);
}

.authority {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  padding: 7rem 0 8rem;
}

.authority-watermark {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: 7%;
  width: 20rem;
  height: 20rem;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.authority-watermark img {
  position: absolute;
  top: -24.6rem;
  left: -11.2rem;
  width: 64rem;
  max-width: none;
  height: 64rem;
}

.authority-grid {
  background-size: 7rem 7rem;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 70%, transparent);
}

.authority-grid::after {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: 8%;
  top: 12%;
  border: 1px solid rgba(0, 90, 254, 0.45);
  transform: rotate(45deg);
}

.authority h2 {
  max-width: 850px;
  color: var(--cream);
}

.authority p,
.authority h3,
.authority small {
  color: var(--white);
}

.authority .eyebrow,
.authority .band-index {
  color: var(--cream);
}

.authority-lead {
  max-width: 820px;
  color: var(--white);
  font-size: 1.15rem;
}

.experience-band {
  margin-top: 5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.experience-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.experience-heading h3 {
  color: var(--cream);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.band-index {
  flex: 0 0 auto;
  color: var(--electric);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.experience-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.experience-mosaic span {
  position: relative;
  display: block;
  height: 4rem;
  border-top: 1px solid rgba(250, 242, 227, 0.28);
  border-bottom: 1px solid rgba(0, 90, 254, 0.45);
  background: linear-gradient(110deg, transparent 48%, rgba(0, 90, 254, 0.22) 49%, transparent 50%);
}

.experience-mosaic span::after {
  content: "";
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(250, 242, 227, 0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--electric);
  padding: 6rem 0;
  color: var(--white);
}

.contact-grid {
  opacity: 0.45;
  background-size: 4rem 4rem;
}

.contact article {
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

.contact p,
.contact small,
.contact label {
  color: var(--white);
}

.contact input {
  background: var(--white);
  color: var(--navy);
}

.contact input::placeholder {
  color: rgba(25, 31, 57, 0.72);
}

.contact input:hover,
.contact input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 0.18rem rgba(250, 242, 227, 0.38);
}

.contact button {
  background: var(--deep);
  border-color: var(--deep);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact button:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.institutional-footer.container {
  max-width: none;
  background: var(--cream);
  padding: 3rem max(1.5rem, calc((100vw - 1180px) / 2)) 2.5rem;
  color: var(--navy);
  border-top: 1px solid rgba(25, 31, 57, 0.16);
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  width: min(1180px, 100%);
  margin: auto;
}

.footer-branding {
  display: flex;
  align-items: end;
  gap: 1.5rem;
}

.footer-logo {
  display: block;
  width: 12rem;
  height: 6rem;
  object-fit: contain;
}

.footer-branding p {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-weight: 700;
}

.brand-signature-footer {
  font-family: "Caveat", cursive;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700 !important;
  line-height: 1;
  transform: rotate(-1deg);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 800px) {
  nav.container-fluid {
    padding-inline: 1rem;
  }

  .brand-logo-primary {
    display: none;
  }

  .brand-logo-compact {
    display: block;
  }

  .brand {
    height: 6.75rem;
  }

  nav ul:last-child li:not(:last-child) {
    display: none;
  }

  .wrap {
    width: min(100% - 2rem, 1180px);
  }

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(4.5rem, 19vw, 6.75rem);
  }

  .hero h1::after {
    width: 8rem;
    height: 0.2rem;
    margin-top: 0.9rem;
  }

  .light,
  .dark,
  .authority {
    padding: 5rem 0;
  }

  .solutions,
  .pain,
  .steps {
    grid-template-columns: 1fr;
  }

  .step:nth-child(-n + 3),
  .step:nth-child(n + 4) {
    grid-column: auto;
  }

  .solution {
    min-height: auto;
  }

  .visual-grid {
    height: 65vw;
  }

  .experience-heading {
    display: block;
  }

  .band-index {
    display: block;
    margin-bottom: 0.75rem;
  }

  .authority-grid::after {
    width: 18rem;
    height: 18rem;
    right: -8rem;
  }

  .authority-watermark {
    top: 9%;
    right: -3rem;
    width: 14rem;
    height: 14rem;
  }

  .authority-watermark img {
    top: -17.2rem;
    left: -7.8rem;
    width: 45rem;
    height: 45rem;
  }

  .sequence {
    font-size: 1.45rem;
  }

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

  .footer-inner {
    gap: 1rem;
  }

  .footer-branding {
    gap: 0.25rem;
  }

  .footer-logo {
    width: 11rem;
    height: 5rem;
  }

  .footer-branding p {
    margin: 0;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reference-led editorial system */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 15, 34, 0.92);
  border-bottom: 1px solid rgba(250, 242, 227, 0.14);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.2rem;
  gap: 2rem;
}

.nav-shell .brand {
  flex: 0 0 auto;
  height: 5.4rem;
}

.nav-shell .brand-logo-primary {
  width: 13rem;
  height: 5.2rem;
  transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.94rem;
  text-decoration: none;
}

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

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--electric);
  border-radius: 4px;
  background: var(--electric);
  color: var(--white);
}

.nav-links .nav-cta span,
.hero .btn span {
  font-size: 1.25em;
  line-height: 0;
}

.nav-links .nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  min-height: min(700px, calc(100vh - 6.2rem));
  display: block;
  background:
    radial-gradient(circle at 74% 35%, rgba(0, 90, 254, 0.22), transparent 22rem),
    radial-gradient(circle at 34% 70%, rgba(0, 56, 149, 0.18), transparent 27rem),
    linear-gradient(118deg, #080e20 0%, #111b3a 58%, #0a1a42 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 49%, rgba(0, 90, 254, 0.13) 49.1%, transparent 49.2%);
  opacity: 0.75;
}

.hero-grid {
  opacity: 0.42;
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, black 32%, black 82%, transparent 100%);
}

.hero-grid::after {
  right: -6rem;
  top: 10%;
  width: min(47vw, 40rem);
  height: min(47vw, 40rem);
  border-color: rgba(0, 90, 254, 0.42);
  transform: rotate(45deg);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(24rem, 0.96fr);
  align-items: center;
  min-height: min(700px, calc(100vh - 6.2rem));
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  min-width: 0;
  padding: 4rem 0 4.5rem;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--cream);
  font-family: "Caveat", cursive;
  font-size: clamp(5.4rem, 8.6vw, 8.4rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.045em;
  transform: rotate(-1.6deg);
  text-shadow: 0 0 1.25rem rgba(250, 242, 227, 0.09);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  margin-left: 0.1em;
}

.hero h1::after {
  width: min(23rem, 74%);
  height: 0.32rem;
  margin: 1.45rem 0 0.35rem 10%;
  background: var(--electric);
  transform: rotate(-2deg);
  box-shadow: 0 0 1rem rgba(0, 90, 254, 0.2);
}

.hero p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 1.8rem;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.45;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
  padding: 0.88rem 1.1rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 90, 254, 0.24);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero .btn:hover {
  box-shadow: 0 0.6rem 1.8rem rgba(0, 90, 254, 0.34);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 13% 6% 8% 8%;
  border: 1px solid rgba(0, 90, 254, 0.24);
  transform: rotate(-29deg);
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 1px;
  top: 53%;
  left: 4%;
  background: linear-gradient(90deg, transparent, rgba(0, 90, 254, 0.78), rgba(250, 242, 227, 0.42), transparent);
  transform: rotate(-28deg);
}

.hero-symbol {
  position: absolute;
  top: 4%;
  right: 7%;
  width: min(31rem, 68%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.2;
  filter: saturate(1.5) drop-shadow(0 0 2rem rgba(0, 90, 254, 0.3));
}

.hero-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 90, 254, 0.68);
  border-radius: 50%;
}

.hero-symbol img {
  position: absolute;
  width: 190%;
  max-width: none;
  height: auto;
  top: -18%;
  left: -14%;
}

.hero-art-line {
  position: absolute;
  display: block;
  background: rgba(250, 242, 227, 0.28);
}

.hero-art-line-vertical {
  top: 5%;
  bottom: 0;
  left: 19%;
  width: 1px;
}

.hero-art-line-diagonal {
  width: 105%;
  height: 1px;
  top: 58%;
  left: -8%;
  background: rgba(0, 90, 254, 0.52);
  transform: rotate(-31deg);
}

.hero-art-square {
  position: absolute;
  display: block;
  border: 1px solid rgba(250, 242, 227, 0.32);
  background: rgba(250, 242, 227, 0.02);
}

.hero-art-square-main {
  width: 39%;
  aspect-ratio: 1;
  right: 11%;
  bottom: 4%;
}

.hero-art-square-small {
  width: 15%;
  aspect-ratio: 1;
  left: 15%;
  top: 40%;
  border-color: rgba(0, 90, 254, 0.8);
}

.hero-art-index {
  position: absolute;
  top: 45%;
  right: 4%;
  color: rgba(151, 183, 255, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}

.hero-art-index i {
  display: inline-block;
  width: 1.7rem;
  margin: 0 0.5rem;
  border-top: 1px solid currentColor;
  vertical-align: middle;
}

.hero-art-caption {
  position: absolute;
  right: 10rem;
  bottom: 5%;
  color: rgba(151, 183, 255, 0.72);
  font-size: 0.58rem;
  line-height: 1.45;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dark {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 90, 254, 0.13), transparent 23rem),
    var(--deep);
}

.solutions {
  border: 0;
  gap: 1px;
  background: rgba(250, 242, 227, 0.18);
}

.solution {
  position: relative;
  min-height: 320px;
  padding: 2.8rem 2.5rem 2.4rem;
  background: linear-gradient(135deg, rgba(25, 31, 57, 0.98), rgba(12, 24, 57, 0.98));
  border: 0;
  transition: background-color 180ms ease, transform 180ms ease;
}

.solution::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 2.2rem;
  height: 2.2rem;
  border-right: 1px solid rgba(0, 90, 254, 0.8);
  border-bottom: 1px solid rgba(0, 90, 254, 0.8);
  opacity: 0.65;
}

.solution:hover {
  background: linear-gradient(135deg, rgba(34, 44, 79, 0.98), rgba(12, 35, 82, 0.98));
  transform: translateY(-3px);
}

.solution h3 {
  max-width: 18rem;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.04;
}

.solution .num {
  color: #9eb9ff;
  letter-spacing: 0.2em;
}

.solution:nth-child(4) {
  background: linear-gradient(135deg, rgba(0, 56, 149, 0.72), rgba(25, 31, 57, 0.98));
}

.method {
  position: relative;
  overflow: hidden;
}

.method::after {
  content: "";
  position: absolute;
  width: 27rem;
  height: 27rem;
  right: -11rem;
  bottom: -12rem;
  border: 1px solid rgba(0, 56, 149, 0.2);
  border-radius: 50%;
}

.step {
  position: relative;
  padding-top: 1.25rem;
  border-top-width: 2px;
}

.step::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--electric);
}

@media (max-width: 800px) {
  .nav-shell {
    min-height: 5.4rem;
  }

  .nav-shell .brand {
    height: 4.8rem;
  }

  .nav-shell .brand-logo-primary {
    display: none;
  }

  .nav-shell .brand-logo-compact {
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    transform: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .nav-links .nav-cta {
    padding: 0.62rem 0.75rem;
    font-size: 0.78rem;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    padding: 5.5rem 0 1.5rem;
  }

  .hero .eyebrow {
    margin-bottom: 1.15rem;
    font-size: 0.58rem;
    letter-spacing: 0.19em;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 19vw, 7rem);
    line-height: 0.73;
  }

  .hero h1::after {
    width: min(13rem, 68%);
    height: 0.22rem;
    margin-top: 1rem;
  }

  .hero p:not(.eyebrow) {
    max-width: 25rem;
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .hero .btn {
    margin-top: 0.7rem;
    font-size: 0.88rem;
  }

  .hero-art {
    min-height: 20rem;
    margin: 0 -1rem;
  }

  .hero-symbol {
    top: 1%;
    right: 10%;
    width: min(18rem, 62%);
  }

  .hero-art-line-vertical {
    left: 25%;
  }

  .hero-art-square-main {
    right: 12%;
    bottom: 10%;
  }

  .hero-art-caption {
    right: 6rem;
    bottom: 6%;
    font-size: 0.5rem;
  }

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

/* Refinement pass: fewer gestures, stronger symbol, cleaner hierarchy */
.nav-shell .brand-logo-primary {
  width: 11.5rem;
  height: auto;
  max-height: none;
}

.hero::after,
.hero-grid,
.hero-grid::after,
.hero-art::before,
.hero-art-line-diagonal,
.hero-art-square-small {
  display: none;
}

.hero-art {
  min-height: 31rem;
}

.hero-symbol {
  top: 2%;
  right: 5%;
  width: min(31rem, 76%);
  opacity: 0.24;
}

.hero-symbol img {
  width: 320%;
  top: -110%;
  left: -56%;
}

.hero-art::after {
  width: 112%;
  top: 59%;
  left: -8%;
  opacity: 0.72;
}

.hero-art-line-vertical {
  left: 21%;
  opacity: 0.72;
}

.hero-art-square-main {
  width: 38%;
  right: 10%;
  bottom: 4%;
  opacity: 0.62;
}

.hero h1 {
  font-size: clamp(5.8rem, 9.4vw, 9.2rem);
}

.hero h1::after {
  width: min(24rem, 76%);
  background: linear-gradient(90deg, var(--electric) 0%, #1674ff 48%, var(--electric) 100%);
  clip-path: polygon(0 32%, 18% 24%, 41% 34%, 67% 18%, 100% 7%, 99% 70%, 72% 78%, 46% 66%, 22% 80%, 1% 69%);
  border-radius: 40% 60% 45% 55%;
  transform: rotate(-2deg) skewX(-8deg);
}

.light::before,
.contact-grid::after {
  display: none;
}

.light h2,
.light h3,
.light p {
  max-width: min(100%, 900px);
}

.visual-grid {
  display: block;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 62% 42%, rgba(0, 90, 254, 0.46), transparent 28%),
    linear-gradient(135deg, #071532 0%, #0c2a68 58%, #003895 100%);
}

.visual-grid::before {
  inset: 11% 16% 12% 14%;
  border-color: rgba(250, 242, 227, 0.22);
  transform: rotate(-14deg);
}

.visual-grid::after {
  inset: 4% 10% 6% auto;
  width: 1px;
  height: 92%;
  border: 0;
  background: rgba(250, 242, 227, 0.3);
  transform: none;
}

.visual-symbol {
  position: absolute;
  z-index: 1;
  top: 9%;
  right: 12%;
  width: 42%;
  height: 82%;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.42;
  filter: saturate(1.35);
}

.visual-symbol img {
  position: absolute;
  width: 300%;
  max-width: none;
  top: -105%;
  left: -51%;
}

.visual-axis-one {
  z-index: 2;
  width: 66%;
  left: 8%;
  top: 64%;
  opacity: 0.62;
}

.visual-axis-two {
  z-index: 2;
  height: 80%;
  left: 20%;
  top: 10%;
  opacity: 0.38;
  transform: none;
}

.visual-block,
.visual-ring {
  display: none;
}

.visual-index {
  z-index: 3;
  top: 12%;
  right: 6%;
  color: rgba(250, 242, 227, 0.8);
}

.management-lines {
  opacity: 0.22;
}

.authority-watermark {
  opacity: 0.055;
}

@media (max-width: 800px) {
  .nav-shell .brand-logo-primary {
    display: none;
  }

  .hero-art {
    min-height: 20rem;
  }

  .hero-symbol {
    right: 9%;
    width: min(18rem, 64%);
  }

  .hero-symbol img {
    width: 320%;
    top: -110%;
    left: -56%;
  }

  .visual-grid {
    height: 62vw;
    min-height: 250px;
  }

  .visual-symbol {
    right: 7%;
    width: 54%;
  }

  .visual-axis-one {
    width: 75%;
  }
}

/* Manifesto and editorial rhythm */
.manifesto {
  margin-top: 5rem;
}

.manifesto .visual-grid {
  min-height: 34rem;
  height: min(56vw, 620px);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 75% 42%, rgba(0, 90, 254, 0.2), transparent 24rem),
    linear-gradient(118deg, #07102a 0%, #0d1e47 58%, #003895 100%);
}

.manifesto .visual-grid::before {
  display: none;
}

.manifesto .visual-grid::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 77%;
  height: 1px;
  left: 12%;
  top: 66%;
  background: linear-gradient(90deg, transparent, rgba(0, 90, 254, 0.85), rgba(250, 242, 227, 0.45), transparent);
  transform: rotate(-18deg);
}

.manifesto-overline,
.manifesto-index,
.manifesto-sequence,
.manifesto-statement {
  position: absolute;
  z-index: 4;
  margin: 0;
  text-transform: uppercase;
}

.manifesto-overline {
  top: 2.6rem;
  left: clamp(2rem, 5vw, 4.5rem);
  color: rgba(250, 242, 227, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
}

.manifesto-index {
  top: 2.6rem;
  right: clamp(2rem, 5vw, 4.5rem);
  color: rgba(151, 183, 255, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

.manifesto-index i {
  display: inline-block;
  width: 1.8rem;
  margin: 0 0.45rem;
  border-top: 1px solid currentColor;
  vertical-align: middle;
}

.manifesto-statement {
  top: 27%;
  left: clamp(2rem, 5vw, 4.5rem);
  width: min(60%, 42rem);
  color: rgba(250, 242, 227, 0.82);
  font-size: clamp(2.25rem, 4.8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.manifesto-statement strong {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--white);
  font-weight: 800;
}

.manifesto-statement strong::after {
  content: "";
  position: absolute;
  right: -0.1em;
  bottom: -0.35rem;
  left: 0;
  height: 0.24rem;
  background: var(--electric);
  clip-path: polygon(0 30%, 22% 14%, 47% 37%, 74% 18%, 100% 8%, 98% 70%, 72% 84%, 43% 62%, 18% 81%, 1% 67%);
}

.manifesto-sequence {
  bottom: 2.8rem;
  left: clamp(2rem, 5vw, 4.5rem);
  color: rgba(250, 242, 227, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.manifesto-symbol {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: -7%;
  width: 58%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.27;
  filter: saturate(1.4);
}

.manifesto-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 90, 254, 0.6);
  border-radius: 50%;
}

.manifesto-symbol img {
  position: absolute;
  width: 320%;
  max-width: none;
  top: -110%;
  left: -56%;
}

.manifesto-line {
  position: absolute;
  z-index: 3;
  display: block;
  background: rgba(250, 242, 227, 0.3);
}

.manifesto-line-vertical {
  top: 11%;
  bottom: 8%;
  left: 64%;
  width: 1px;
}

.manifesto-line-diagonal {
  width: 55%;
  height: 1px;
  right: 0;
  bottom: 18%;
  background: rgba(0, 90, 254, 0.65);
  transform: rotate(-36deg);
}

.manifesto figcaption {
  margin-top: 1rem;
  color: var(--blue);
}

.solutions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(250, 242, 227, 0.24);
  background: transparent;
}

.solution {
  min-height: 350px;
  padding: 3.2rem clamp(1.5rem, 3.5vw, 3.4rem) 2.8rem;
  border-right: 1px solid rgba(250, 242, 227, 0.14);
  border-bottom: 1px solid rgba(250, 242, 227, 0.14);
  background: transparent;
}

.solution:nth-child(even) {
  border-right: 0;
}

.solution:nth-child(3),
.solution:nth-child(4) {
  padding-top: 2.5rem;
}

.solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  border-top: 2px solid var(--electric);
}

.solution::after {
  right: clamp(1.5rem, 3.5vw, 3.4rem);
  bottom: 2.8rem;
  width: 1.8rem;
  height: 1.8rem;
  opacity: 0.48;
}

.solution p {
  max-width: 27rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.solution a {
  position: absolute;
  bottom: 2.6rem;
  left: clamp(1.5rem, 3.5vw, 3.4rem);
  color: var(--cream);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.solution:nth-child(4) {
  background: linear-gradient(135deg, rgba(0, 56, 149, 0.28), transparent 72%);
}

.management {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 90, 254, 0.16), transparent 22rem),
    var(--navy);
}

.management h2 {
  max-width: 56rem;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 0.92;
}

.management > .wrap > p:not(.eyebrow):not(.sequence) {
  max-width: 45rem;
  font-size: 1.14rem;
}

.pain {
  gap: 0 2rem;
  border: 0;
  border-top: 1px solid rgba(250, 242, 227, 0.22);
  border-bottom: 1px solid rgba(250, 242, 227, 0.22);
}

.pain div {
  padding: 1.2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(250, 242, 227, 0.12);
  color: rgba(250, 242, 227, 0.84);
}

.sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.65rem;
  border-left: 0;
  padding-left: 0;
  color: var(--cream) !important;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
}

.sequence span {
  color: var(--electric);
  font-size: 0.8em;
}

.steps {
  position: relative;
  isolation: isolate;
}

.steps::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.5rem;
  right: 4%;
  left: 4%;
  border-top: 1px solid rgba(0, 56, 149, 0.35);
}

.step {
  border-top: 0;
  padding-top: 2rem;
}

.step::before {
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--electric);
  background: var(--cream);
}

.step:nth-child(2),
.step:nth-child(4) {
  transform: translateY(1.5rem);
}

.method h2 {
  max-width: 44rem;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 800px) {
  .manifesto {
    margin-top: 3.5rem;
  }

  .manifesto .visual-grid {
    min-height: 31rem;
    height: 125vw;
    padding: 1.5rem;
  }

  .manifesto-overline {
    top: 1.6rem;
    left: 1.5rem;
    font-size: 0.56rem;
  }

  .manifesto-index {
    top: 1.6rem;
    right: 1.5rem;
    font-size: 0.56rem;
  }

  .manifesto-statement {
    top: 24%;
    left: 1.5rem;
    width: 82%;
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .manifesto-symbol {
    top: 27%;
    right: -23%;
    width: 85%;
  }

  .manifesto-line-vertical {
    left: 74%;
  }

  .manifesto-line-diagonal {
    width: 80%;
    bottom: 19%;
  }

  .manifesto-sequence {
    right: 1.5rem;
    bottom: 1.6rem;
    left: 1.5rem;
    font-size: 0.56rem;
    line-height: 1.7;
  }

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

  .solution,
  .solution:nth-child(3),
  .solution:nth-child(4) {
    min-height: 310px;
    padding: 2.5rem 1.5rem 2.4rem;
    border-right: 0;
  }

  .solution a {
    bottom: 2.3rem;
    left: 1.5rem;
  }

  .management h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

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

  .steps {
    gap: 1.5rem;
  }

  .steps::before {
    top: 0.5rem;
    right: auto;
    bottom: 0.5rem;
    left: 0.35rem;
    border-top: 0;
    border-left: 1px solid rgba(0, 56, 149, 0.35);
  }

  .step,
  .step:nth-child(2),
  .step:nth-child(4) {
    grid-column: auto;
    padding-top: 0;
    padding-left: 2rem;
    transform: none;
  }

  .step::before {
    top: 0.15rem;
    left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled [data-reveal],
  .reveal-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Conversion and contact refinement */
.manifesto .visual-grid {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.manifesto-statement {
  width: min(56%, 43rem);
  top: 24%;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.manifesto-statement > span {
  display: block;
  color: rgba(250, 242, 227, 0.72);
}

.manifesto-statement strong {
  font-size: 1.12em;
  color: var(--cream);
}

.manifesto .visual-grid::after {
  opacity: 0.58;
}

.contact {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(25, 31, 57, 0.24), transparent 25rem),
    var(--electric);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(20rem, 0.74fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-intro h2 {
  max-width: 48rem;
  margin-top: 0.7rem;
  font-size: clamp(2.9rem, 5.6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.contact-intro h3 {
  max-width: 36rem;
  margin-top: 1.6rem;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
}

.contact-options {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.contact-option:hover {
  color: var(--cream);
}

.contact-option-primary {
  font-size: 1.1rem;
}

.contact-option-primary span,
.contact-option-whatsapp span {
  font-size: 1.35em;
}

.contact-option-email {
  font-weight: 500;
}

.contact-location {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-location span {
  padding: 0 0.4rem;
  color: var(--cream);
}

.contact-form-card {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(250, 242, 227, 0.4) !important;
  background: rgba(9, 15, 34, 0.22) !important;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  margin-top: 0.45rem;
  color: var(--cream) !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  margin: 0 0 0.4rem;
  border: 1px solid rgba(25, 31, 57, 0.25);
  border-radius: 2px;
  background: var(--cream);
  color: var(--navy);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 0.18rem rgba(250, 242, 227, 0.4);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.7rem;
  background: var(--deep);
  border-color: var(--deep);
}

.contact-form button:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.form-note {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.72rem;
  line-height: 1.4;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(250, 242, 227, 0.64);
  border-radius: 999px;
  background: rgba(9, 15, 34, 0.94);
  box-shadow: 0 0.5rem 1.4rem rgba(9, 15, 34, 0.22);
  color: var(--cream);
  font-size: 0.72rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-float span {
  color: rgba(250, 242, 227, 0.72);
}

.whatsapp-float strong {
  color: var(--white);
  font-size: 0.85rem;
}

.whatsapp-float:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.institutional-footer.container {
  padding-top: 2.2rem;
  padding-bottom: 1.8rem;
}

.brand-signature-footer {
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  text-shadow: 0 0 0.8rem rgba(25, 31, 57, 0.08);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1.2rem;
}

@media (max-width: 800px) {
  .manifesto .visual-grid {
    aspect-ratio: auto;
    height: 125vw;
    min-height: 31rem;
  }

  .manifesto-statement {
    width: 84%;
    top: 22%;
    font-size: clamp(2.25rem, 11.5vw, 4rem);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .contact-intro h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.62rem 0.78rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}