:root {
  --font-family: "Cabin", Arial, sans-serif;
  --ink: #101722;
  --navy: #07101f;
  --navy-soft: #0c1729;
  --violet: #7452e7;
  --violet-bright: #8c6cff;
  --blue: #3a6cf4;
  --lilac: #d7ccff;
  --paper: #fbfaf7;
  --soft: #f0eef8;
  --white: #fff;
  --text: #1f2631;
  --muted: #6f7580;
  --line: rgba(16, 23, 34, 0.13);
  --dark-line: rgba(255, 255, 255, 0.12);
  --radius: 1.4rem;
  --space: clamp(6.5rem, 10vw, 10rem);
  --shadow: 0 28px 70px rgba(40, 28, 89, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
section[id] {
  scroll-margin-top: 5rem;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-family);
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container-xl {
  width: min(100%, 1440px);
  margin-inline: auto;
}
.shell {
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
}
.section-space {
  padding-block: var(--space);
}
.light-panel {
  background: var(--paper);
}
.soft-panel {
  background: var(--soft);
}
.dark-panel {
  color: var(--white);
  background: var(--navy);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(7, 16, 31, 0.82);
  background: linear-gradient(115deg, rgba(112, 64, 190, 0.05), transparent 38%),
    linear-gradient(135deg, #07101f 0%, #0a1428 64%, #121431 100%);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(18px);
}
.navbar {
  min-height: 5rem;
  display: flex;
  align-items: center;
}
.navbar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}
.brand img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand span {
  display: grid;
  line-height: 1;
}
.brand strong {
  font-size: 0.9rem;
  font-weight: 600;
}
.brand small {
  margin-top: 0.35rem;
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}
.nav-panel > a:not(.nav-cta) {
  position: relative;
  padding-block: 0.5rem;
}
.nav-panel > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid var(--violet-bright);
  transition: width 0.25s;
}
.nav-panel > a:hover::after,
.nav-panel > a.active::after {
  width: 100%;
}
.nav-cta,
.pill-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  border-radius: 999px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.nav-cta {
  padding: 0.5rem 0.55rem 0.5rem 1.1rem;
  color: var(--white);
  background: var(--violet);
}
.nav-cta span,
.pill-button span {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.nav-cta:hover,
.pill-button:hover {
  transform: translateY(-2px);
}
.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.75rem;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  background: transparent;
}
.menu-button i {
  display: block;
  border-top: 1px solid var(--white);
  margin-block: 0.32rem;
}
.hero {
  min-height: 100vh;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero-inner {
  min-height: calc(100vh - 9.5rem);
  display: grid;
  grid-template-columns: 0.92fr 1.28fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding-block: 5rem 3rem;
}
.kicker {
  margin: 0 0 1.4rem;
  color: var(--violet-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.88;
}
.hero h1 em {
  color: var(--lilac);
  font-weight: 400;
}
.hero-lead {
  max-width: 620px;
  margin: 2.25rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}
.pill-button {
  padding: 0.7rem 0.75rem 0.7rem 1.35rem;
  font-size: 0.86rem;
  border: 0;
}
.light-button {
  color: var(--ink);
  background: var(--white);
}
.light-button span {
  background: var(--soft);
}
.dark-button {
  color: var(--white);
  background: var(--ink);
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 0 0 50%;
  box-shadow: inset 40px 0 65px rgba(7, 16, 31, 0.7);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  object-position: 58% center;
  clip-path: ellipse(64% 52% at 58% 50%);
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(181, 163, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.ring-one {
  width: 94%;
  aspect-ratio: 1;
  right: -10%;
  top: -7%;
}
.ring-two {
  width: 72%;
  aspect-ratio: 1;
  right: 0;
  top: 5%;
}
.hero-foot {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-foot i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--violet-bright);
}
.section-heading {
  max-width: 850px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.7vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.058em;
}
.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: end;
  margin-top: 6rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.intro-number {
  color: var(--violet);
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 0.7;
  letter-spacing: -0.1em;
  font-weight: 700;
  opacity: 0.11;
}
.intro-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 4rem);
  font-size: clamp(1.3rem, 2.1vw, 2.05rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.intro-copy p {
  margin: 0;
}
.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.section-index {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.value-card {
  min-height: 24rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.value-card:last-child {
  border-right: 0;
}
.value-card > span,
.objective > span,
.skill-card > span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.value-card .symbol {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin: auto 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet);
  font-weight: 700;
}
.value-card h3,
.objective h3,
.skill-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.value-card p,
.skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.objectives {
  position: relative;
  overflow: hidden;
}
.objectives::before {
  content: "";
  position: absolute;
  width: 55rem;
  height: 55rem;
  right: -20rem;
  top: -25rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(116, 82, 231, 0.26),
    transparent 68%
  );
}
.objectives .kicker {
  color: var(--lilac);
}
.orbit-mark {
  width: 7rem;
  aspect-ratio: 1;
  position: relative;
}
.orbit-mark i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
}
.orbit-mark i:nth-child(2) {
  transform: rotate(60deg) scaleX(0.45);
}
.orbit-mark i:nth-child(3) {
  transform: rotate(-60deg) scaleX(0.45);
}
.objective-rail {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.objective {
  min-height: 21rem;
  padding: 1.75rem;
  border-right: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.objective:last-child {
  border-right: 0;
}
.objective > span {
  color: var(--lilac);
}
.objective-icon {
  margin: auto 0;
  color: var(--violet-bright);
  font-size: 2.8rem;
}
.objective h3 {
  color: var(--white);
}
.framework-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 6rem;
}
.framework-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
  padding: 2rem 2.5rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(115deg, var(--ink), #18284a);
  box-shadow: var(--shadow);
}
.process div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.process span {
  color: var(--violet-bright);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.process strong {
  font-size: 1rem;
}
.process i {
  color: var(--violet-bright);
  font-style: normal;
}
.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 6rem;
}
.services-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.service-list {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 3rem minmax(220px, 1fr) 3rem;
  column-gap: 1.5rem;
  padding: 2.1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition:
    padding 0.3s,
    background 0.3s,
    border-radius 0.3s;
}
.service-row > span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
}
.service-row h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.service-row p {
  grid-column: 2;
  max-width: 780px;
  max-height: 0;
  margin: 0;
  color: var(--muted);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-0.5rem);
  transition: 0.35s ease;
}
.service-action {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--violet);
  transition: 0.25s;
}
.service-row:hover {
  padding: 2rem 1.5rem;
  background: var(--paper);
  border-radius: 1rem;
}
.service-row:hover p {
  max-height: 9rem;
  margin-top: 1rem;
  opacity: 1;
  transform: none;
}
.service-row:hover .service-action {
  color: var(--white);
  background: var(--violet);
  transform: rotate(45deg);
}
.skills {
  position: relative;
  overflow: hidden;
}
.skills::after {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  left: -18rem;
  bottom: -18rem;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  box-shadow:
    0 0 0 6rem rgba(116, 82, 231, 0.04),
    0 0 0 12rem rgba(116, 82, 231, 0.025);
}
.skills-top {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 6rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.skills .section-heading h2 {
  color: var(--white);
}
.skills-top > div:last-child > p:first-child {
  color: rgba(255, 255, 255, 0.62);
}
.program-kicker {
  margin-top: 2rem;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
.skill-card {
  min-height: 20rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--navy-soft);
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.skill-card:hover {
  transform: translateY(-7px);
  border-color: rgba(140, 108, 255, 0.5);
}
.skill-card.featured {
  background: linear-gradient(145deg, var(--violet), #4a70f0);
}
.skill-card.featured > span,
.skill-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.skill-card h3 {
  margin-top: auto;
  color: var(--white);
}
.skill-card p {
  color: rgba(255, 255, 255, 0.5);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.leader-visual {
  min-height: 44rem;
  position: sticky;
  top: 8rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy), #202752 65%, var(--violet));
  box-shadow: var(--shadow);
}
.leader-monogram {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(8rem, 14vw, 14rem);
  line-height: 1;
  letter-spacing: -0.1em;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.leader-lines {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(255, 255, 255, 0.04),
    0 0 0 8rem rgba(255, 255, 255, 0.025);
}
.leader-visual > span {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.leader-copy h2 {
  margin: 0 0 3rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.leader-copy > p:not(.kicker) {
  margin: 0;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.06rem;
}
.leader-copy > p:last-child {
  color: var(--text);
  font-size: 1.22rem;
}
.contact-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
}
.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: end;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
}
.contact-links a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.contact-form {
  width: min(100%, 1040px);
  margin: 5rem auto 0;
  padding: clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.35);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-grid label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  min-height: 3.3rem;
  padding: 0.8rem 1rem;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  outline: 0;
  background: var(--white);
}
.form-grid textarea {
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 0.2rem rgba(116, 82, 231, 0.1);
}
.full-field {
  grid-column: 1/-1;
}
.phone-field {
  display: flex;
}
.phone-field select {
  max-width: 8rem;
  border-radius: 0.7rem 0 0 0.7rem;
}
.phone-field input {
  border-radius: 0 0.7rem 0.7rem 0;
}
.check-field {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem !important;
  color: var(--muted);
  font-weight: 400 !important;
}
.check-field input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--violet);
}
.contact-form .pill-button {
  margin-top: 2rem;
}
footer {
  padding-block: 3rem;
  border-top: 1px solid var(--dark-line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-inner nav {
  display: flex;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1199px) {
  .values-grid,
  .objective-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-card:nth-child(3),
  .objective:nth-child(3) {
    border-right: 0;
  }
  .value-card:nth-child(n + 4),
  .objective:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
  .skill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .menu-button {
    display: block;
  }
  .nav-panel {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid var(--dark-line);
    border-radius: 1rem;
    background: var(--navy-soft);
    box-shadow: var(--shadow);
  }
  .nav-panel.show {
    display: flex;
  }
  .nav-panel a {
    padding: 0.8rem 1rem !important;
  }
  .nav-cta {
    justify-content: space-between;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-visual {
    margin-bottom: 2rem;
  }
  .hero-visual img {
    aspect-ratio: 1.6;
    clip-path: ellipse(72% 64% at 58% 50%);
  }
  .intro-layout,
  .framework-grid,
  .services-heading,
  .skills-top,
  .leadership-grid,
  .contact-head {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro-number {
    display: none;
  }
  .intro-copy {
    border-left: 0;
    padding-left: 0;
  }
  .leader-visual {
    position: relative;
    top: auto;
    min-height: 30rem;
  }
}
@media (max-width: 767px) {
  :root {
    --space: 5.5rem;
  }
  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }
  .hero-foot {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }
  .section-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
  .split-heading {
    align-items: start;
  }
  .values-grid,
  .objective-rail,
  .skill-grid {
    grid-template-columns: 1fr;
  }
  .value-card,
  .objective {
    min-height: 17rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .objective {
    border-color: var(--dark-line);
  }
  .process {
    flex-direction: column;
    border-radius: var(--radius);
    gap: 1rem;
  }
  .process i {
    transform: rotate(90deg);
  }
  /* .process div {
    min-width: 9rem;
  } */
  .service-row {
    grid-template-columns: 2rem 1fr 2.5rem;
    column-gap: 0.75rem;
  }
  .service-row p {
    max-height: none;
    margin-top: 1rem;
    opacity: 1;
    transform: none;
  }
  .skill-grid {
    gap: 0.75rem;
  }
  .skill-card {
    min-height: 16rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-field {
    grid-column: auto;
  }
  .contact-links {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

/* Reference-style Objectives cards using the project SVG icon set. */
.objectives {
  width: min(1680px, calc(100% - 2rem));
  margin: 1rem auto;
  padding-block: clamp(5rem, 7vw, 7rem);
  border-radius: 2.75rem;
  box-shadow: 0 20px 48px rgba(50, 31, 91, 0.16);
}

.objectives .section-heading {
  position: relative;
  z-index: 2;
}

.objective-art {
  top: -4rem;
  right: -2rem;
  width: clamp(290px, 35vw, 560px);
  opacity: 0.54;
}

.objective-rail {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 3.75rem;
}

.objective,
.objective:nth-child(n + 3),
.objective:nth-child(n + 4) {
  min-height: 315px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.5rem clamp(1rem, 2vw, 2.25rem);
  border-top: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  text-align: center;
}

.objective:first-child {
  padding-left: clamp(1rem, 2vw, 2.25rem);
}

.objective:last-child {
  padding-right: clamp(1rem, 2vw, 2.25rem);
  border-right: 0;
}

.objective-visual {
  width: 136px;
  display: grid;
  justify-items: center;
  margin: 0 auto 1.45rem;
}

.objective-icon {
  order: initial;
  width: 132px;
  height: 132px;
  margin: 0;
  object-fit: contain;
  color: inherit;
  font-size: initial;
  line-height: normal;
  filter: drop-shadow(0 0 14px rgba(135, 68, 218, 0.23));
  transition: transform 0.32s ease, filter 0.32s ease;
}

.objective-stem {
  position: relative;
  width: 2px;
  height: 38px;
  display: block;
  margin-top: -3px;
  background: linear-gradient(180deg, rgba(168, 93, 226, 0.95), rgba(168, 93, 226, 0.18));
  box-shadow: 0 0 10px rgba(147, 76, 216, 0.34);
}

.objective-stem::before,
.objective-stem::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ae68e7;
  box-shadow: 0 0 9px rgba(169, 91, 228, 0.95);
  transform: translateX(-50%);
}

.objective-stem::before { top: -2px; }
.objective-stem::after { bottom: -2px; }

.objective h3 {
  order: initial;
  position: relative;
  max-width: 13rem;
  margin: 0 auto;
  padding-bottom: 1.15rem;
  color: #fff;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.3;
}

.objective h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2.65rem;
  height: 1px;
  background: #a35de1;
  transform: translateX(-50%);
}

.objective:hover .objective-icon {
  transform: translateY(-6px) scale(1.035);
  filter: drop-shadow(0 12px 18px rgba(147, 76, 216, 0.38));
}

.objective:hover .objective-stem {
  background: linear-gradient(180deg, #bb79eb, rgba(168, 93, 226, 0.28));
}

@media (max-width: 1199px) {
  .objective-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .objective,
  .objective:nth-child(n + 3),
  .objective:nth-child(n + 4) {
    min-height: 290px;
    margin: 0;
    padding: 1.3rem clamp(1rem, 2.5vw, 2rem);
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
  .objective:nth-child(3) { border-right: 0; }
  .objective:nth-child(4),
  .objective:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .objective:nth-child(5) { border-right: 0; }
}

@media (max-width: 991px) {
  .objective-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .objective,
  .objective:nth-child(n + 3),
  .objective:nth-child(n + 4) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
  .objective:nth-child(2),
  .objective:nth-child(4) { border-right: 0; }
  .objective:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.16); }
  .objective:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .objective:nth-child(5) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    border-right: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .objectives {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .objective-art {
    top: -1rem;
    right: -6rem;
    width: 16rem;
    opacity: 0.42;
  }
  .objective-rail {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
  .objective,
  .objective:nth-child(n + 3),
  .objective:nth-child(n + 4),
  .objective:nth-child(5) {
    grid-column: auto;
    width: 100%;
    min-height: 270px;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
  }
  .objective:last-child { border-bottom: 0; }
  .objective-visual { margin-bottom: 1.1rem; }
  .objective-icon { width: 122px; height: 122px; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Requested refinement: consistent 32px headings, panoramic banner and contact layout. */
.hero {
  min-height: auto;
}
.hero-inner {
  min-height: auto;
  display: block;
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: 3rem;
}
.hero-copy {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  padding: 0 0 3rem;
}
.hero h1,
.section-heading h2,
.leader-copy h2 {
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.hero-tagline {
  margin: 0.45rem 0 0;
  color: var(--lilac);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 780px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}
.hero-visual {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 2rem;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}
.hero-visual::after {
  border-radius: 2rem;
  box-shadow: inset 0 -70px 110px rgba(7, 16, 31, 0.2);
}
.hero-visual img {
  width: 100%;
  height: clamp(350px, 43vw, 590px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  clip-path: none;
}
.story-home {
  border-top: 1px solid var(--line);
}
.story-home-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.story-home .section-heading {
  position: sticky;
  top: 8rem;
}
.story-home-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.story-home-copy p {
  margin: 0;
  padding: 1.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.story-home-copy p:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.story-home-copy p:last-child {
  grid-column: 1/-1;
  color: var(--text);
  font-size: 18px;
}
.leader-copy blockquote {
  margin: 2rem 0 0;
  padding: 2rem;
  border-radius: 1rem;
  color: var(--white);
  background: linear-gradient(125deg, var(--navy), #222752 65%, var(--violet));
  font-size: 20px;
  line-height: 1.5;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 1.25rem;
  align-items: stretch;
}
.contact-aside {
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: calc(var(--radius) * 1.35);
  color: var(--white);
  background: linear-gradient(150deg, var(--navy), #162342 65%, #433189);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-aside::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  right: -13rem;
  bottom: -14rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.035),
    0 0 0 8rem rgba(255, 255, 255, 0.02);
}
.contact-aside .section-heading {
  position: relative;
  z-index: 1;
}
.contact-aside .kicker {
  color: var(--lilac);
}
.contact-links {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  margin-top: clamp(4rem, 10vw, 10rem);
  gap: 1rem;
}
.contact-links a {
  width: max-content;
  color: var(--white);
  text-decoration-color: var(--violet-bright);
}
.contact-links span {
  color: rgba(255, 255, 255, 0.64);
}
.contact-form {
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: var(--shadow);
}
.form-title {
  margin: 0 0 2rem;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.form-grid {
  gap: 1.25rem 1rem;
}
.form-grid label {
  font-size: 14px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 52px;
  border-color: rgba(16, 23, 34, 0.16);
  background: #fff;
}
.check-field {
  font-size: 13px !important;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .hero-copy,
  .story-home-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    gap: 1.5rem;
  }
  .story-home .section-heading {
    position: relative;
    top: auto;
  }
  .contact-links {
    margin-top: 3rem;
  }
  .contact-form {
    margin: 0;
  }
  .hero-visual img {
    height: clamp(300px, 58vw, 500px);
  }
}
@media (max-width: 767px) {
  .hero h1,
  .section-heading h2,
  .leader-copy h2 {
    font-size: 32px;
  }
  .hero-inner {
    padding-top: 4rem;
  }
  .hero-visual {
    border-radius: 1.2rem;
  }
  .hero-visual::after {
    border-radius: 1.2rem;
  }
  .hero-visual img {
    height: 270px;
  }
  .story-home-copy {
    grid-template-columns: 1fr;
  }
  .story-home-copy p:nth-child(odd) {
    border-right: 0;
  }
  .story-home-copy p:last-child {
    grid-column: auto;
  }
  .contact-aside,
  .contact-form {
    border-radius: 1.2rem;
  }
  .form-title {
    font-size: 32px;
  }
}

/* Multi-page shell and supplied brand assets. */
.brand-mark-only img {
  width: 3.15rem;
  height: 3.15rem;
  padding: 0.18rem;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
  background: #fff;
}
.brand-lockup {
  gap: 0.8rem;
}
.brand-lockup img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  filter: none;
  background: transparent;
}
.brand-lockup .brand-copy {
  display: block;
  padding-left: 1rem;
  border-left: 1px solid rgba(215, 204, 255, 0.42);
  color: var(--lilac);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-hero {
  min-height: 22rem;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  right: -8rem;
  top: -18rem;
  border: 1px solid rgba(140, 108, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(116, 82, 231, 0.045),
    0 0 0 10rem rgba(116, 82, 231, 0.025);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}
.page-hero h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.page-hero p:last-child {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}
.leader-photo {
  margin: 0;
  min-height: 44rem;
  position: sticky;
  top: 8rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.25);
  background: var(--navy);
  box-shadow: var(--shadow);
}
.leader-photo img {
  width: 100%;
  height: 44rem;
  object-fit: cover;
  object-position: center top;
}
.leader-photo figcaption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.leadership-page .leader-copy {
  padding-top: 0.5rem;
}
.contact-page {
  min-height: calc(100vh - 22rem);
}
@media (max-width: 991px) {
  .leader-photo {
    position: relative;
    top: auto;
    min-height: auto;
  }
  .leader-photo img {
    height: auto;
    max-height: 46rem;
  }
}
@media (max-width: 767px) {
  .page-hero {
    min-height: 18rem;
  }
  .page-hero-inner {
    padding-block: 3rem;
  }
  .brand-mark-only img {
    width: 2.75rem;
    height: 2.75rem;
  }
  .brand-lockup img {
    width: 2.75rem;
    height: 2.75rem;
  }
  .brand-lockup .brand-copy {
    padding-left: 0.75rem;
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }
  .leader-photo img {
    max-height: none;
  }
  .footer-inner .brand-mark-only img {
    width: 3.25rem;
    height: 3.25rem;
  }
  .footer-inner .brand-lockup img {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Logo-toned depth system and full-background home banner. */
:root {
  --shadow:
    0 26px 68px rgba(111, 64, 190, 0.18), 0 8px 24px rgba(73, 42, 133, 0.11);
  --shadow-soft:
    0 16px 38px rgba(126, 75, 205, 0.14), 0 5px 14px rgba(82, 45, 145, 0.08);
  --shadow-deep:
    0 30px 80px rgba(72, 35, 135, 0.28), 0 10px 28px rgba(44, 22, 86, 0.18);
}
.hero {
  min-height: 100vh;
  padding-top: 5rem;
  isolation: isolate;
  background: var(--navy);
}
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 16, 31, 0.94) 0%,
      rgba(12, 19, 39, 0.82) 38%,
      rgba(33, 20, 62, 0.35) 72%,
      rgba(7, 16, 31, 0.23) 100%
    ),
    linear-gradient(0deg, rgba(7, 16, 31, 0.74) 0%, transparent 42%);
  pointer-events: none;
} */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: inset 0 0 120px rgba(105, 53, 179, 0.22);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: none;
}
.hero-grid {
  z-index: 2;
  opacity: 0.18;
  mask-image: linear-gradient(to right, #000, transparent 62%);
}
.hero-inner {
  min-height: calc(100vh - 9.5rem);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero-copy {
  display: block;
  width: min(100%, 670px);
  padding: clamp(1.6rem, 3.5vw, 3rem);
  border: 1px solid rgba(184, 147, 238, 0.25);
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(7, 16, 31, 0.8),
    rgba(38, 25, 65, 0.58)
  );
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(10px);
}
.hero h1 {
  color: #fff;
  text-shadow: 0 5px 20px rgba(126, 75, 205, 0.24);
}
.hero-tagline {
  color: #d9c8f2;
  text-shadow: 0 3px 15px rgba(132, 78, 207, 0.2);
}
.hero-lead {
  max-width: 620px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}
.hero-foot {
  z-index: 3;
  background: rgba(7, 16, 31, 0.48);
  backdrop-filter: blur(8px);
}
.values-grid,
.process,
.contact-aside,
.contact-form,
.leader-photo {
  box-shadow: var(--shadow);
}
.service-row:hover,
.skill-card:hover {
  box-shadow: var(--shadow-soft);
}
.leader-lines {
  box-shadow:
    0 0 0 3rem rgba(125, 78, 204, 0.07),
    0 0 0 8rem rgba(105, 58, 177, 0.035);
}
.contact-aside::after {
  box-shadow:
    0 0 0 4rem rgba(132, 82, 211, 0.06),
    0 0 0 8rem rgba(109, 61, 184, 0.035);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  box-shadow:
    0 0 0 0.2rem rgba(116, 82, 231, 0.12),
    0 8px 22px rgba(105, 58, 177, 0.1);
}

@media (max-width: 991px) {
  .hero-inner {
    padding-top: 4rem;
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero-visual {
    margin-bottom: 0;
  }
  .hero-visual img {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    clip-path: none;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 16, 31, 0.94), rgba(12, 19, 39, 0.72)),
      linear-gradient(0deg, rgba(7, 16, 31, 0.72), transparent 50%);
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }
  .hero-inner {
    min-height: calc(100svh - 9.5rem);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-copy {
    padding: 1.5rem;
    border-radius: 1.15rem;
  }
  .hero-visual,
  .hero-visual::after {
    border-radius: 0;
  }
  .hero-visual img {
    height: 100%;
    min-height: 100%;
    object-position: 68% center;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-foot {
    font-size: 0.6rem;
  }
}

/* Centered banner type, reusable button variants and story media layout. */
/* .hero::before {
  background: linear-gradient(
    0deg,
    rgba(7, 16, 31, 0.82) 0%,
    rgba(15, 14, 34, 0.52) 48%,
    rgba(7, 16, 31, 0.63) 100%
  );
} */
.hero-inner {
  justify-content: center;
  text-align: center;
}
.hero-copy {
  width: min(100%, 850px);
  max-width: 850px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.hero h1 {
  font-family: var(--font-family);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.045em;
  background: linear-gradient(110deg, #fff 15%, #e6d8f7 56%, #c7a8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  margin: auto;
}
.hero-tagline {
  margin-top: 0.8rem;
  color: #ddcef0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
}
.hero-lead {
  max-width: 760px;
  margin: 1.75rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}
.hero-button {
  margin-top: 2rem;
}
.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3rem;
  padding: 0.55rem 0.6rem 0.55rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: 600 0.86rem/1 var(--font-family);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  cursor: pointer;
}
.button span,
.nav-cta span {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.button-primary,
.nav-cta {
  background: linear-gradient(135deg, #6637cf 0%, #824edc 55%, #a34cbe 100%);
  box-shadow: 0 12px 30px rgba(116, 65, 192, 0.26);
}
.button-secondary {
  color: #7443cb;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(121, 71, 199, 0.28);
  box-shadow: 0 10px 24px rgba(107, 62, 178, 0.12);
}
.button-secondary span {
  background: rgba(116, 65, 192, 0.1);
}
.button:hover,
.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 16px 34px rgba(116, 65, 192, 0.32);
}
.contact-form .button {
  margin-top: 2rem;
}
.story-home-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.story-media {
  margin: 0;
  height: clamp(34rem, 52vw, 45rem);
  position: sticky;
  top: 8rem;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(104, 58, 178, 0.14);
  pointer-events: none;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-content {
  min-width: 0;
}
.story-home .section-heading {
  position: relative;
  top: auto;
  margin-bottom: 2.5rem;
}
.story-home-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  border-top: 0;
}
.story-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-home-copy p,
.story-home-copy p:nth-child(odd),
.story-home-copy p:last-child {
  margin: 0;
  padding: 1.35rem 0 1.35rem 1.35rem;
  border: 0;
  border-left: 1px solid rgba(116, 82, 231, 0.24);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.story-home-copy p:last-child {
  grid-column: auto;
  color: var(--text);
  font-size: 16px;
}

@media (max-width: 991px) {
  .story-home-grid {
    grid-template-columns: 1fr;
  }
  .story-media {
    position: relative;
    top: auto;
    height: 28rem;
  }
  .story-home-copy {
    grid-template-columns: 1fr 1fr;
  }
  .hero::before {
    background: linear-gradient(
      0deg,
      rgba(7, 16, 31, 0.84),
      rgba(14, 14, 33, 0.58),
      rgba(7, 16, 31, 0.7)
    );
  }
}
@media (max-width: 767px) {
  .hero-copy {
    padding: 0;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-tagline {
    font-size: 11px;
    letter-spacing: 0.18em;
    justify-content:center;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .button,
  .nav-cta {
    gap: 1.1rem;
  }
  .story-media {
    height: 22rem;
    border-radius: 1.15rem;
  }
  .story-home-copy {
    grid-template-columns: 1fr;
  }
  .story-home .section-heading {
    margin-bottom: 2rem;
  }
}

/* Simplified story copy and refined A-R-I-S-E value cards. */
.story-home-copy {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 0.4rem;
}
.story-column {
  display: block;
}
.story-home-copy p,
.story-home-copy p:nth-child(odd),
.story-home-copy p:last-child {
  margin: 0;
  padding: 1.15rem 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 23, 34, 0.09);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.story-home-copy p:last-child {
  color: var(--muted);
  font-size: 16px;
  border-bottom: 0;
}
.story-column:first-child p:last-child {
  border-bottom: 1px solid rgba(16, 23, 34, 0.09);
}
.values-grid {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 1rem;
}
.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 82, 231, 0.14) !important;
  border-radius: 1.25rem;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(104, 58, 178, 0.09);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -6rem;
  top: -6rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(133, 79, 210, 0.13),
    transparent 68%
  );
  opacity: 0;
  transition:
    opacity 0.32s ease,
    transform 0.4s ease;
}
.value-card .symbol {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  margin: auto 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #7541c9;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, #6736cf, #9b55c4) border-box;
  box-shadow: 0 8px 22px rgba(112, 62, 185, 0.13);
  font-size: 1.15rem;
  font-weight: 700;
  transition:
    transform 0.32s ease,
    color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}
.value-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(125, 72, 202, 0.34) !important;
  background: linear-gradient(160deg, #fff 0%, #faf7ff 100%);
  box-shadow:
    0 24px 52px rgba(104, 58, 178, 0.18),
    0 8px 20px rgba(91, 48, 160, 0.1);
}
.value-card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.value-card:hover .symbol {
  color: #fff;
  background: linear-gradient(135deg, #6637cf, #9e50c2) border-box;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(112, 62, 185, 0.26);
}
.value-card:hover h3 {
  color: #6736b9;
}
.value-card h3 {
  transition: color 0.3s ease;
}
@media (max-width: 1199px) {
  .values-grid {
    gap: 1rem;
  }
  .value-card:nth-child(n) {
    border: 1px solid rgba(116, 82, 231, 0.14) !important;
  }
}
@media (max-width: 767px) {
  .story-home-copy p,
  .story-home-copy p:nth-child(odd),
  .story-home-copy p:last-child {
    font-size: 15px;
    line-height: 1.7;
    padding: 1rem 0;
  }
  .values-grid {
    gap: 0.8rem;
  }
  .value-card {
    min-height: 16rem;
  }
}

/* Reference-inspired Core Values cards using one EKO theme gradient. */
:root {
  --brand-gradient: linear-gradient(
    135deg,
    #6637cf 0%,
    #824edc 55%,
    #9e50c2 100%
  );
}
.values {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #fbfaff 0%, #f2effb 58%, #f8f5ff 100%);
}
.values::before,
.values::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(116, 82, 231, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(116, 82, 231, 0.025),
    0 0 0 6rem rgba(116, 82, 231, 0.018);
}
.values::before {
  left: -21rem;
  top: 9rem;
}
.values::after {
  right: -21rem;
  bottom: -11rem;
}
.values .split-heading {
  position: relative;
  align-items: center;
}
.values .kicker {
  display: none;
}
.values .section-heading h2 {
  position: relative;
  width: max-content;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.values .section-heading h2 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.values .section-heading h2 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  width: 55%;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--brand-gradient);
  transform: rotate(-1deg);
}
.values .section-index {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}
.values .section-index::first-letter {
  color: var(--violet);
}
.values-grid {
  position: relative;
  z-index: 1;
  margin-top: 4.5rem;
  gap: 1.15rem;
}
.value-card {
  min-height: 15rem;
  padding: 1rem;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(116, 82, 231, 0.12) !important;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(83, 45, 150, 0.1);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 4.6rem;
  width: 1.3rem;
  height: 3.2rem;
  opacity: 0.5;
  background: radial-gradient(circle, #7541c9 1.2px, transparent 1.5px) 0 0/8px
    8px;
}
.value-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 0.32rem;
  border-radius: 0;
  background: var(--brand-gradient);
  opacity: 1;
  transform: none;
  transition: height 0.3s ease;
}
.value-card > span {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  min-width: 3rem;
  padding: 0.62rem 0.65rem 0.58rem;
  border-radius: 0 1.2rem 0 1rem;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(112, 62, 185, 0.2);
}
.value-card .symbol {
  flex: 0 0 auto;
  width: 6rem;
  height: 6rem;
  margin: 0.6rem auto 2.7rem;
  border: 1px solid transparent;
  color: #7741cd;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--brand-gradient) border-box;
  box-shadow: 0 13px 28px rgba(112, 62, 185, 0.17);
  transition:
    transform 0.32s ease,
    color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}
.value-card .symbol svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.value-card h3::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.value-card p {
  color: #5f6673;
  font-size: 0.9rem;
  line-height: 1.65;
}
.value-card:hover {
  z-index: 2;
  transform: translateY(-9px);
  border-color: rgba(125, 72, 202, 0.32) !important;
  background: #fff;
  box-shadow:
    0 26px 56px rgba(104, 58, 178, 0.18),
    0 8px 20px rgba(91, 48, 160, 0.1);
}
.value-card:hover::after {
  height: 0.5rem;
  opacity: 1;
  transform: none;
}
.value-card:hover .symbol {
  color: #fff;
  background: var(--brand-gradient);
  transform: scale(1.06);
  box-shadow: 0 16px 32px rgba(112, 62, 185, 0.26);
}
.value-card:hover h3 {
  color: #6736b9;
}
@media (max-width: 1199px) {
  .value-card {
    min-height: 24rem;
  }
  .values-grid {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .values .split-heading {
    align-items: center;
  }
  .values .section-index {
    font-size: 0.72rem;
  }
  .values-grid {
    margin-top: 3.5rem;
  }
  .value-card {
    min-height: 24rem;
    padding-inline: 1.75rem;
  }
  .value-card::before {
    left: 1.6rem;
  }
}

/* Reference-inspired EKO Transformation Framework. */
.framework {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #fbfaff 0%, #f3f0fb 60%, #faf8ff 100%);
}
.framework::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  right: -21rem;
  top: -17rem;
  border: 1px solid rgba(116, 82, 231, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(116, 82, 231, 0.026),
    0 0 0 7rem rgba(116, 82, 231, 0.018);
}
.framework::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1.5rem;
  top: 4rem;
  width: 4.5rem;
  height: 4.5rem;
  opacity: 0.22;
  background: radial-gradient(circle, #7541c9 1.3px, transparent 1.6px) 0 0/12px
    12px;
}
.framework-grid {
  display: block;
  max-width: 660px;
}
.framework .section-heading {
  max-width: 470px;
}
.framework .section-heading h2 {
  max-width: 430px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.framework-copy {
  max-width: 650px;
  margin: 1.6rem 0 0;
  color: #4f5868;
  font-size: 1.05rem;
  line-height: 1.65;
}
.process {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.1rem;
  margin-top: 4.5rem;
  padding: 2.6rem 2.4rem 2.2rem;
  border: 1px solid rgba(116, 82, 231, 0.12);
  border-radius: 3rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(83, 45, 150, 0.12);
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 6.35rem;
  border-top: 2px dotted rgba(116, 82, 231, 0.42);
}
.process .process-step {
  position: relative;
  z-index: 1;
  flex: 0 1 9rem;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
  text-align: center;
}
.process .process-step > span {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -1.55rem;
  min-width: 3.2rem;
  padding: 0.43rem 0.7rem;
  border-radius: 0.72rem 0.72rem 0.18rem 0.18rem;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 8px 18px rgba(91, 49, 151, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
}
.process .process-step > span::after {
  content: "";
  position: absolute;
  right: -0.43rem;
  bottom: 0;
  width: 0.48rem;
  height: 0.68rem;
  background: #58309f;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.process .process-icon {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  display: grid;
  place-items: center;
  border: 1.5px solid transparent;
  border-radius: 50%;
  color: #6d35c7;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--brand-gradient) border-box;
  box-shadow:
    0 13px 30px rgba(112, 62, 185, 0.2),
    inset 0 0 0 0.75rem rgba(116, 82, 231, 0.055);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.process .process-icon::after {
  content: "";
  position: absolute;
  inset: -0.48rem;
  border: 1px solid rgba(108, 58, 188, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}
.process-icon svg {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.process .process-step strong {
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.process .process-step strong::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.process > i {
  position: relative;
  z-index: 2;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin-top: 2.75rem;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 8px 18px rgba(112, 62, 185, 0.2);
  font-size: 1.45rem;
  font-style: normal;
  line-height: 1;
  transform: none;
}
.process .process-step:hover > span {
  transform: translateX(-50%) translateY(-3px);
  filter: saturate(0.82) brightness(0.93);
  box-shadow: 0 10px 22px rgba(73, 39, 127, 0.2);
}
.process .process-step:hover .process-icon {
  color: #5e329f;
  background:
    linear-gradient(145deg, #f4effb 0%, #fff 72%) padding-box,
    var(--brand-gradient) border-box;
  transform: translateY(-4px);
  box-shadow:
    0 18px 38px rgba(91, 50, 155, 0.18),
    inset 0 0 0 0.75rem rgba(111, 63, 180, 0.075);
}
.process .process-step:hover .process-icon::after {
  opacity: 1;
  transform: scale(1);
}
.process .process-step:hover .process-icon svg {
  transform: scale(1.08) rotate(-2deg);
}
.process .process-step:hover strong {
  color: #4f2f80;
}
@media (max-width: 991px) and (min-width: 768px) {
  .process {
    gap: 0.35rem;
    padding: 2.2rem 1rem 1.8rem;
  }
  .process::before {
    top: 5.1rem;
  }
  .process-icon {
    width: 5.8rem;
    height: 5.8rem;
  }
  .process-icon svg {
    width: 2.7rem;
    height: 2.7rem;
  }
  .process > i {
    flex-basis: 1.55rem;
    width: 1.55rem;
    height: 1.55rem;
    margin-top: 2.1rem;
  }
  .process .process-step strong {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .framework::after {
    display: none;
  }
  .framework-grid {
    max-width: none;
  }
  .process {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2.8rem 1.5rem 2.2rem;
    border-radius: 1.5rem;
  }
  .process::before {
    left: 50%;
    right: auto;
    top: 4rem;
    bottom: 4rem;
    border-top: 0;
    border-left: 2px dotted rgba(116, 82, 231, 0.35);
  }
  .process .process-step {
    width: 100%;
    flex: 0 0 auto;
  }
  .process-icon {
    width: 7rem;
    height: 7rem;
  }
  .process > i {
    margin: 0.15rem 0;
    transform: rotate(90deg);
  }
  .process .process-step strong {
    font-size: 1rem;
  }
}

/* Reference-style hero presentation while retaining the existing image and theme. */
.hero {
  min-height: 100vh;
}
/* .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.97) 0%, rgba(10, 18, 37, 0.91) 37%, rgba(18, 18, 42, 0.64) 59%, rgba(8, 16, 31, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 16, 31, 0.76) 0%, transparent 48%);
} */
.hero-inner {
  min-height: calc(100vh - 5rem);
  justify-content: flex-start;
  text-align: left;
  padding-top: clamp(5rem, 10vh, 8rem);
  padding-bottom: clamp(13rem, 24vh, 16rem);
}
.hero-copy {
  width: min(62%, 760px);
  max-width: 760px;
  text-align: left;
}
.hero h1 {
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: normal;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(120deg, #c8b5ef 0%, #9b70d5 50%, #b05fba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.45rem;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-transform: none;
}
.hero-tagline::before,
.hero-tagline::after {
  content: "";
  height: 1px;
  flex: 0 0 clamp(1.8rem, 4vw, 4rem);
  background: linear-gradient(90deg, transparent, #9a70d5);
}
.hero-tagline::after {
  background: linear-gradient(90deg, #9a70d5, transparent);
}
.hero-tagline strong {
  font-weight: 500;
  color: #d7c7ee;
}
.hero-lead {
  max-width: 670px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}
.hero-button {
  margin-top: 2rem;
}
.hero-foot {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 2rem;
  translate: -50% 0;
  width: min(calc(100% - 2.5rem), 1296px);
  min-height: 7.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(210, 193, 236, 0.22);
  border-radius: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(10, 19, 36, 0.82), rgba(31, 24, 54, 0.7));
  box-shadow: 0 24px 60px rgba(24, 12, 47, 0.34), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.hero-point {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.4rem;
  border-right: 1px solid rgba(221, 207, 244, 0.18);
}
.hero-point:last-child {
  border-right: 0;
}
.hero-point-icon {
  flex: 0 0 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 202, 244, 0.28);
  border-radius: 50%;
  color: #eadffc;
  background: linear-gradient(145deg, rgba(111, 61, 190, 0.9), rgba(148, 76, 184, 0.78));
  box-shadow: 0 10px 25px rgba(92, 49, 155, 0.25);
}
.hero-point-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-point strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.hero-foot.reveal {
  transform: translateY(24px);
}
.hero-foot.reveal.visible {
  transform: none;
}
@media (max-width: 991px) {
  .hero-inner {
    min-height: auto;
    padding-top: clamp(5rem, 12vw, 7rem);
    padding-bottom: 5rem;
  }
  .hero-copy {
    width: min(78%, 720px);
  }
  .hero-foot {
    position: relative;
    left: auto;
    bottom: auto;
    translate: none;
    width: calc(100% - 2.5rem);
    margin: -1rem auto 2rem;
  }
  .hero-foot.reveal {
    transform: translateY(24px);
  }
  .hero-foot.reveal.visible {
    transform: none;
  }
  .hero-point {
    padding-inline: 1rem;
  }
  .hero-point-icon {
    flex-basis: 3.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }
  .hero-point strong {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100%;
  }
  .hero::before {
    content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
    background:
      linear-gradient(90deg, rgba(7, 16, 31, 0.96), rgba(13, 19, 38, 0.78)),
      linear-gradient(0deg, rgba(7, 16, 31, 0.72), transparent 55%);
  }
  .hero-inner {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }
  .hero-copy {
    width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-tagline {
    gap: 0.55rem;
    font-size: 1rem;
  }
  .hero-tagline::before,
  .hero-tagline::after {
    flex-basis: 1.25rem;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-foot {
    grid-template-columns: 1fr;
    padding: 0.65rem 1rem;
    border-radius: 1.1rem;
  }
  .hero-point {
    padding: 1rem 0.4rem;
    border-right: 0;
    border-bottom: 1px solid rgba(221, 207, 244, 0.16);
  }
  .hero-point:last-child {
    border-bottom: 0;
  }
  .hero-point-icon {
    flex-basis: 3rem;
    width: 3rem;
    height: 3rem;
  }
  .hero-point-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }
}

/* Integrated hero points strip. */
.hero-inner {
  padding-bottom: clamp(9rem, 17vh, 12rem);
}
.hero-foot {
  left: 0;
  bottom: 0;
  translate: none;
  width: 100%;
  max-width: none;
  min-height: 5.25rem;
  padding: 0.65rem clamp(1.25rem, 7vw, 7rem);
  border: 0;
  border-top: 1px solid rgba(214, 197, 239, 0.18);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(7, 16, 31, 0.94), rgba(17, 19, 43, 0.9), rgba(7, 16, 31, 0.94));
  box-shadow: 0 -12px 30px rgba(5, 10, 22, 0.16);
  backdrop-filter: blur(12px);
}
.hero-point {
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  border-right-color: rgba(221, 207, 244, 0.2);
}
.hero-point-icon {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 0;
  color: #9e73db;
  background: none;
  box-shadow: none;
}
.hero-point-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 2.4;
}
.hero-point strong {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-inner {
    padding-bottom: 4rem;
  }
  .hero-foot {
    position: relative;
    width: 100%;
    margin: 0;
    padding-inline: 1.25rem;
  }
  .hero-point {
    padding-inline: 0.75rem;
  }
}
@media (max-width: 767px) {
  .hero-foot {
    padding: 0.55rem 1.25rem;
    border-radius: 0;
  }
  .hero-point {
    justify-content: flex-start;
    padding: 0.9rem 0.25rem;
    border-bottom-color: rgba(221, 207, 244, 0.14);
  }
  .hero-point-icon {
    flex-basis: 1.65rem;
    width: 1.65rem;
    height: 1.65rem;
  }
  .hero-point-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }
  .hero-point strong {
    font-size: 0.72rem;
  }
}

/* Professional multi-page footer. */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(117, 67, 192, 0.18), transparent 28rem),
    linear-gradient(145deg, #07101f 0%, #0a1325 58%, #14142f 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #ffffff00 10%, #6f03c9 50%, #ffffff00);
  opacity: 0.82;
}
.site-footer .container-xl {
  position: relative;
  z-index: 2;
}
.footer-orbit {
  position: absolute;
  z-index: 0;
  right: -10rem;
  top: -18rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(208, 188, 239, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(126, 76, 199, 0.035),
    0 0 0 8rem rgba(126, 76, 199, 0.02);
}
.footer-main {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 2.75rem;
}
.site-footer .footer-brand img {
  width: 4rem;
  height: 4rem;
}
.site-footer .footer-brand .brand-copy {
  padding-left: 1.15rem;
  color: #e1d6f2;
  font-size: 0.67rem;
  letter-spacing: 0.19em;
}
.site-footer .footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.75rem);
}
.site-footer .footer-nav a,
.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  transition: color 0.25s ease;
}
.site-footer .footer-nav a::after,
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.site-footer .footer-nav a:hover,
.footer-legal a:hover {
  color: #fff;
}
.site-footer .footer-nav a:hover::after,
.footer-legal a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.footer-bottom {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.025em;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.footer-legal a {
  font-size: 0.76rem;
}
@media (max-width: 767px) {
  .footer-main {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
    padding-block: 3rem 2.5rem;
  }
  .site-footer .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 2rem;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 1.25rem;
    padding-block: 1.5rem 2rem;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .footer-orbit {
    right: -20rem;
  }
}

/* Reference-style contact content; page banner remains unchanged. */
.contact-page {
  padding-top: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(123, 72, 194, 0.07), transparent 23rem),
    var(--soft);
}
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 2.2rem;
  border-bottom: 1px solid rgba(16, 23, 34, 0.12);
}
.contact-info-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.4rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(16, 23, 34, 0.11);
}
.contact-info-item:first-child {
  padding-left: 0;
}
.contact-info-item:last-child {
  padding-right: 0;
  border-right: 0;
}
.contact-info-icon {
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: #7541c9;
}
.contact-info-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-item > div {
  min-width: 0;
  display: grid;
  gap: 0.3rem;
}
.contact-info-item strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}
.contact-info-item a,
.contact-info-item span:not(.contact-info-icon) {
  color: var(--muted);
  font-size: 0.8rem;
}
.contact-info-item a {
  transition: color 0.25s ease;
}
.contact-info-item a:hover {
  color: #6c38bb;
}
.contact-info-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.85rem;
}
.contact-layout {
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  align-items: stretch;
}
.contact-aside {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.4vw, 3.25rem);
  border: 1px solid rgba(208, 188, 239, 0.12);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 90% 14%, rgba(130, 76, 201, 0.22), transparent 16rem),
    linear-gradient(155deg, #091329 0%, #11173a 60%, #181348 100%);
  box-shadow: 0 22px 52px rgba(48, 28, 92, 0.18);
}
.contact-aside::after {
  width: 20rem;
  height: 20rem;
  right: -11rem;
  bottom: -11rem;
  box-shadow: 0 0 0 3.5rem rgba(132, 82, 211, 0.045), 0 0 0 7rem rgba(109, 61, 184, 0.025);
}
.contact-aside .section-heading h2 {
  max-width: 270px;
  color: #fff;
  font-size: 32px;
  line-height: 1.12;
}
.contact-social {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-social > span {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-social a {
  width: max-content;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
}
.contact-social a:hover {
  color: #fff;
  transform: translateX(3px);
}
.contact-social b {
  margin-left: 0.45rem;
  color: #a97be1;
  font-weight: 400;
}
.aside-mark {
  position: relative;
  z-index: 2;
  width: 5rem;
  height: 5rem;
  margin: auto auto 0;
  color: #a36dd8;
  opacity: 0.8;
  transform: rotate(-8deg);
}
.aside-mark svg {
  width: 100%;
  height: 100%;
  fill: rgba(153, 93, 211, 0.16);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form {
  padding: clamp(2rem, 3.5vw, 3.25rem);
  border: 1px solid rgba(16, 23, 34, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 52px rgba(70, 43, 124, 0.11);
}
.form-title {
  position: relative;
  width: max-content;
  margin-bottom: 2.2rem;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
}
.form-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 2.5rem;
  height: 2px;
  background: var(--brand-gradient);
}
.form-grid {
  gap: 1rem 1.15rem;
}
.form-grid label {
  gap: 0.45rem;
  color: #303745;
  font-size: 0.78rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 3rem;
  border-color: rgba(26, 34, 47, 0.14);
  border-radius: 0.65rem;
  background: #fff;
}
.form-grid textarea {
  min-height: 6.5rem;
}
.contact-form .button {
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .contact-info-row {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info-item {
    min-height: 5.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(16, 23, 34, 0.1);
  }
  .contact-info-item:nth-child(2) {
    border-right: 0;
  }
  .contact-info-item:nth-child(n + 3) {
    border-bottom: 0;
  }
  .contact-info-item:first-child {
    padding-left: 1rem;
  }
  .contact-info-item:last-child {
    padding-right: 1rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-aside {
    min-height: 24rem;
  }
  .aside-mark {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    padding-block: 1rem;
  }
  .contact-info-item,
  .contact-info-item:nth-child(n + 3) {
    min-height: auto;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 23, 34, 0.1);
  }
  .contact-info-item:first-child {
    padding-left: 0;
  }
  .contact-info-item:last-child {
    padding-right: 0;
    border-bottom: 0;
  }
  .contact-layout {
    margin-top: 2rem;
  }
  .contact-aside {
    min-height: 22rem;
    border-radius: 1.15rem;
  }
  .contact-form {
    border-radius: 1.15rem;
  }
  .form-title {
    font-size: 26px;
  }
}

/* Generated contact-panel artwork, social icons and checkbox refinement. */
.contact-aside {
  background-image:
    linear-gradient(180deg, rgba(5, 12, 29, 0.08) 0%, rgba(7, 13, 34, 0.04) 52%, rgba(8, 13, 34, 0.12) 100%),
    url("assets/contact-panel-art-v1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-aside::after {
  display: none;
}
.contact-social a {
  display: grid;
  grid-template-columns: 1.65rem auto 1rem;
  align-items: center;
  gap: 0.55rem;
}
.contact-social em {
  font-style: normal;
}
.social-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  color: #d9c7f2;
}
.social-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form .check-field {
  display: grid !important;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem !important;
  padding-block: 0.15rem;
  color: #626a77;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  line-height: 1.55;
}
.contact-form .check-field input[type="checkbox"] {
  appearance: auto;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  min-height: 1.1rem !important;
  margin: 0.12rem 0 0;
  padding: 0;
  border-radius: 0.25rem;
  accent-color: #7442c7;
  box-shadow: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact-form .check-field {
    grid-template-columns: 1.2rem minmax(0, 1fr);
    font-size: 0.78rem !important;
  }
  .contact-form .check-field input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    min-height: 1.15rem !important;
  }
}

/* Service-row divider disappears only while that row is hovered. */
.service-list {
  border-top: 0;
}
.service-row {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  transition: padding 0.3s, background 0.3s, border-radius 0.3s, border-color 0.2s;
}
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}
.service-row:hover {
  border-top-color: transparent;
}

/* Reuse the Contact page's social icon style in every footer. */
.footer-social svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Compact reference-style Objectives band with generated network artwork. */
.objectives {
  isolation: isolate;
  padding-block: clamp(4.25rem, 6vw, 5.75rem);
  background:
    linear-gradient(115deg, rgba(112, 64, 190, 0.05), transparent 38%),
    linear-gradient(135deg, #07101f 0%, #0a1428 64%, #121431 100%);
}
.objectives::before {
  z-index: 0;
  width: 38rem;
  height: 38rem;
  right: -12rem;
  top: -17rem;
  background: radial-gradient(circle, rgba(124, 74, 202, 0.16), transparent 68%);
}
.objectives .container-xl {
  position: relative;
  z-index: 1;
}
.objective-art {
  position: absolute;
  z-index: 0;
  top: clamp(-2.5rem, -2vw, -1rem);
  right: clamp(-1rem, 1vw, 1rem);
  width: clamp(14rem, 20vw, 18rem);
  opacity: 0.7;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle, #000 30%, rgba(0, 0, 0, 0.86) 51%, transparent 75%);
  mask-image: radial-gradient(circle, #000 30%, rgba(0, 0, 0, 0.86) 51%, transparent 75%);
  pointer-events: none;
  user-select: none;
}
.objectives .section-heading {
  position: relative;
  z-index: 2;
}
.objectives .kicker {
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}
.objective-rail {
  position: relative;
  z-index: 2;
  margin-top: 2.65rem;
  border-top: 0;
  border-bottom: 0;
}
.objective {
  min-height: 14.75rem;
  padding: 1rem clamp(1rem, 2vw, 1.8rem);
  border-right-color: rgba(255, 255, 255, 0.14);
}
.objective:first-child {
  padding-left: 0;
}
.objective:last-child {
  padding-right: 0;
}
.objective > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.objective-icon {
  margin: 1.55rem 0 auto;
  color: #a35de1;
  font-size: 2.45rem;
  line-height: 1;
  text-shadow: 0 8px 26px rgba(126, 66, 196, 0.28);
}
.objective h3 {
  max-width: 12rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
}

/* Reference-style multi-column footer, shared by all pages. */
.footer-main.footer-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1.05fr 0.8fr;
  align-items: start;
  justify-content: stretch;
  gap: 0;
  padding-block: 3.35rem 0rem;
}
.footer-brand-block {
  padding-right: clamp(1.25rem, 2.5vw, 2.75rem);
}
.footer-column {
  min-width: 0;
  min-height: 10.5rem;
  padding: 0 clamp(1rem, 2.1vw, 2.25rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-label {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.site-footer .footer-column .footer-nav,
.footer-list {
  width: 100%;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}
.site-footer .footer-column .footer-nav a,
.footer-list a,
.footer-list span {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.5;
}
.footer-list a {
  transition: color 0.25s ease;
}
.footer-list a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-social a {
  width: 2.05rem;
  height: 2.05rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  border-color: rgba(180, 112, 230, 0.78);
  color: #fff;
  background: rgba(132, 69, 190, 0.24);
  transform: translateY(-2px);
}
.site-footer .footer-bottom {
  min-height: 3.35rem;
  padding-block: 0.8rem;
}

@media (max-width: 1199px) {
  .objective-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .objective:nth-child(3) {
    border-right: 0;
  }
  .objective:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .objective:nth-child(4) {
    padding-left: 0;
  }
  .footer-main.footer-grid {
    grid-template-columns: 1.25fr 0.85fr;
    row-gap: 2.5rem;
  }
  .footer-column:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .objectives {
    padding-block: 3.75rem;
  }
  .objective-art {
    top: -1.25rem;
    right: -5rem;
    width: 15rem;
    opacity: 0.5;
  }
  .objective-rail {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .objective,
  .objective:nth-child(n + 4) {
    min-height: 10.75rem;
    padding: 1.35rem 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .objective:last-child {
    border-bottom: 0;
  }
  .objective-icon {
    margin: 1rem 0;
    font-size: 2.2rem;
  }
  .footer-main.footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 2.8rem 2.25rem;
  }
  .footer-brand-block {
    padding: 0 0 2rem;
  }
  .footer-column {
    min-height: auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
  .footer-column:nth-child(3) {
    border-left: 0;
  }
  .site-footer .footer-column .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .footer-bottom {
    gap: 0.8rem;
    padding-block: 1rem 1.2rem;
  }
}

/* Keep the original full-width Objectives background and draw icon rings in CSS. */
.objectives {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.objective-visual {
  position: relative;
  width: 132px;
  transition: transform 0.3s ease;
}

.objective-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 124px;
  height: 124px;
  border: 3px solid #7c3aed;
  border-radius: 50%;
  background: rgba(11, 18, 48, 0.28);
  box-shadow: 0 0 0 1px rgba(183, 117, 235, 0.12), 0 0 24px rgba(124, 58, 237, 0.34), inset 0 0 22px rgba(124, 58, 237, 0.08);
  transform: translateX(-50%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.objective-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 84px;
  margin: 20px auto 0;
  object-fit: contain;
}

.objective-stem {
  z-index: 1;
  margin-top: 48px;
}

.objective:hover .objective-visual {
  transform: translateY(-5px);
}

.objective:hover .objective-visual::before {
  border-color: #b96feb;
  background: rgba(38, 22, 72, 0.34);
  box-shadow: 0 0 0 1px rgba(203, 147, 242, 0.18), 0 0 32px rgba(145, 70, 218, 0.5), inset 0 0 26px rgba(153, 83, 220, 0.13);
}

.objective:hover .objective-icon {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .objective-visual {
    width: 124px;
  }
  .objective-visual::before {
    width: 116px;
    height: 116px;
  }
  .objective-icon {
    width: 48px;
    height: 78px;
    margin-top: 19px;
  }
  .objective-stem {
    margin-top: 40px;
  }
}

/* Large integrated globe backdrop for the Objectives section. */
.objectives {
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.98) 0%, rgba(7, 16, 31, 0.93) 28%, rgba(7, 16, 31, 0.42) 58%, rgba(7, 16, 31, 0.08) 100%),
    url("assets/objective-world-globe-purple-v1.png") right center / cover no-repeat,
    linear-gradient(135deg, #07101f 0%, #0a1428 64%, #121431 100%);
}

.objective-art {
  display: none;
}

@media (max-width: 991px) {
  .objectives {
    background:
      linear-gradient(90deg, rgba(7, 16, 31, 0.98) 0%, rgba(7, 16, 31, 0.88) 36%, rgba(7, 16, 31, 0.38) 100%),
      url("assets/objective-world-globe-purple-v1.png") 72% top / auto 100% no-repeat,
      linear-gradient(135deg, #07101f 0%, #0a1428 64%, #121431 100%);
  }
}

@media (max-width: 767px) {
  .objectives {
    background:
      linear-gradient(180deg, rgba(7, 16, 31, 0.38) 0%, rgba(7, 16, 31, 0.94) 17rem, #07101f 31rem),
      url("assets/objective-world-globe-purple-v1.png") 66% top / auto 19rem no-repeat,
      linear-gradient(135deg, #07101f 0%, #0a1428 64%, #121431 100%);
  }
}
