@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  color: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
body {
  background: #040b14;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.55rem);
}

h1 em,
h2 em {
  color: #59ddff;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
}

p {
  color: #b0b8c4;
}

.container {
  width: 100%;
  padding-inline: 1rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1080px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.section-x {
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .section-x {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-x {
    padding-inline: 2rem;
  }
}
@media (min-width: 1536px) {
  .section-x {
    padding-inline: 3rem;
  }
}
.section {
  padding-block: var(--section-space, clamp(4rem, 6vw, 9rem));
}

.section--cta {
  padding-top: var(--section-space, clamp(4rem, 6vw, 9rem));
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #59ddff;
}

.section-index {
  display: block;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font: 700 0.72rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.15em;
}

.section-heading {
  display: flex;
  max-width: 48rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  text-align: left;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.section-heading p {
  max-width: 38rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: #fff;
  color: #040b14;
}

.skip-link:focus {
  transform: none;
}

@media (max-width: 900px) {
  .section-heading {
    gap: 1.1rem;
  }
}
@media (max-width: 640px) {
  .container {
    padding-inline: 0;
  }
}
.button {
  --button-color: #00d1ff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.5rem;
  padding: 0.72rem 0.78rem 0.72rem 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(0, 209, 255, 0.42);
  border-radius: 999px;
  background: rgba(6, 22, 39, 0.62);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  isolation: isolate;
  backdrop-filter: blur(12px);
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(0, 209, 255, 0.15), rgba(0, 209, 255, 0.035) 58%, rgba(255, 255, 255, 0.055));
  opacity: 0.45;
  transition: opacity 220ms ease;
}

.button::after {
  content: none;
}

.button i {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  font-style: normal;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.icon {
  display: block;
  width: 1rem;
  height: 1rem;
}

.button:hover {
  border-color: rgba(0, 209, 255, 0.72);
  background: rgba(8, 31, 54, 0.82);
  box-shadow: 0 8px 28px rgba(0, 209, 255, 0.1);
  transform: translateY(-1px);
}

.button:hover::before {
  opacity: 0.85;
}

.button:hover i {
  transform: translate(2px, -1px);
  border-color: rgba(0, 209, 255, 0.28);
  background: rgba(0, 209, 255, 0.15);
}

.button:focus-visible {
  outline: 2px solid #00d1ff;
  outline-offset: 4px;
}

.button--primary {
  background: rgba(0, 209, 255, 0.09);
}

.button--primary i {
  border-color: #a6ff3d;
  background: #a6ff3d;
  color: #0a1e3a;
}

.button--primary:hover i,
.button--primary:focus-visible i {
  border-color: #a6ff3d;
  background: #a6ff3d;
  color: #0a1e3a;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(4, 11, 20, 0.35);
}

.button--ghost::before,
.button--line::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.07), rgba(0, 209, 255, 0.045));
}

.button--line {
  min-height: 3rem;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.015);
}

.button--ghost:hover i,
.button--ghost:focus-visible i,
.button--line:hover i,
.button--line:focus-visible i {
  border-color: #a6ff3d;
  background: #a6ff3d;
  color: #0a1e3a;
}

.button--compact {
  min-height: 2.75rem;
  padding-block: 0.5rem;
}

.text-link {
  display: inline-flex;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link span {
  display: inline-grid;
  place-items: center;
  color: #00d1ff;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  padding-block: 1.25rem;
  border-radius: 2rem 2rem 0 0;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header::after {
  content: none;
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: -moz-max-content;
  width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  justify-self: start;
}

.brand img {
  width: clamp(9rem, 15vw, 12rem);
  height: auto;
}

.primary-nav {
  display: contents;
}

.primary-nav__menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.34rem;
  border: 1px solid rgba(176, 184, 196, 0.28);
  border-radius: 999px;
  background: rgba(10, 30, 58, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 35px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(135%);
}

.primary-nav__indicator {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 0;
  border: 1px solid rgba(0, 209, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(0, 209, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(0, 209, 255, 0.07);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), width 360ms cubic-bezier(0.22, 1, 0.36, 1), height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.primary-nav__indicator.is-ready {
  opacity: 1;
}

.primary-nav__menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0.58rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #b0b8c4;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
  line-height: 21px;
}

.primary-nav__menu a:hover,
.primary-nav__menu a.is-active {
  color: #fff;
}

.primary-nav > .button {
  justify-self: end;
  background: rgba(10, 30, 58, 0.48);
  border-color: rgba(176, 184, 196, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 35px rgba(0, 0, 0, 0.12);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(176, 184, 196, 0.3);
  border-radius: 50%;
  background: rgba(10, 30, 58, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.15rem;
  height: 1px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, width 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0.34rem));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 0.34rem));
}

.nav-toggle[aria-expanded=true] {
  border-color: rgba(89, 221, 255, 0.55);
  background: rgba(10, 30, 58, 0.72);
}

.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded=true] span:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 1650px) {
  .site-header {
    top: 2rem;
    right: 2rem;
    left: 2rem;
  }
}
@media (max-width: 1100px) {
  .site-header {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    padding-block: 1rem;
  }
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }
  .nav-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding: clamp(7.5rem, 16vh, 10rem) clamp(1.5rem, 6vw, 3rem) 2.5rem;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(4, 11, 20, 0.995), rgba(5, 18, 30, 0.985));
    transform: translateY(-100%);
    transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }
  .primary-nav.is-open {
    transform: none;
  }
  .primary-nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    width: 100%;
  }
  .primary-nav__indicator {
    display: none;
  }
  .primary-nav__menu a {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 0.42rem 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff;
    font-size: clamp(1.15rem, 5.6vw, 2.1rem);
    line-height: 1.12;
    white-space: normal;
  }
  .primary-nav__menu a.is-active {
    color: #59ddff;
  }
  .primary-nav .button {
    width: auto;
    max-width: 100%;
    margin-top: 0.5rem;
  }
  body.nav-open {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .site-header {
    top: 0.65rem;
    right: 0.65rem;
    left: 0.65rem;
    padding-block: 0.75rem;
    border-radius: 1.4rem 1.4rem 0 0;
  }
  .site-header__inner {
    padding-inline: 1rem;
  }
}
/* Original footer spacing preserved:
.site-footer{position:relative;margin:clamp(4rem,8vw,8rem) 1rem 1rem;overflow:hidden;border:1px solid rgba(176,184,196,.18);border-radius:2rem;background:linear-gradient(135deg,rgba(5,12,20,.92),rgba(4,15,24,.82));box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 30px 80px rgba(0,0,0,.22);backdrop-filter:blur(24px) saturate(125%)}
*/
.site-footer {
  position: relative;
  margin: 1rem 1rem 1rem;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.18);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(5, 12, 20, 0.92), rgba(4, 15, 24, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(125%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 100%, rgba(0, 209, 255, 0.13), transparent 34%), linear-gradient(120deg, rgba(255, 255, 255, 0.018), transparent 42%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(0, 209, 255, 0.07);
  filter: blur(85px);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 5vw, 5.5rem) 1.5rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(17rem, 1.15fr) minmax(22rem, 1.35fr) minmax(10rem, 0.55fr);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.site-footer__identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo img {
  display: block;
  width: clamp(10.5rem, 13vw, 13rem);
  height: auto;
}

.site-footer__statement {
  max-width: 25rem;
  margin: 1.5rem 0 0;
  color: #b0b8c4;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.78;
}

.site-footer__details {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin: 1.5rem 0 0;
  color: #fff;
  font-style: normal;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 600;
  line-height: 1.45;
}

.site-footer__details a,
.site-footer__details > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 180ms ease;
}

.site-footer__details a > span,
.site-footer__details > span > span {
  width: 1rem;
  color: #59ddff;
  text-align: center;
}

.site-footer__details a:hover {
  color: #59ddff;
}

.site-footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(7rem, 1fr));
  gap: clamp(1.75rem, 3vw, 3.5rem);
}

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

.footer-column__title {
  display: block;
  width: 100%;
  margin-bottom: 1.15rem;
  color: #59ddff;
  font: 700 0.68rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-column a {
  padding: 0.34rem 0;
  color: #b0b8c4;
  font-size: 0.9rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__socials {
  justify-self: end;
  width: 100%;
  max-width: 12rem;
}

.site-footer__social-grid {
  display: grid;
  gap: 0.65rem;
}

.site-footer__social-grid a {
  display: grid;
  grid-template-columns: 1.1rem 1fr 0.7rem;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.55rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(176, 184, 196, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 600;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer__social-grid svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__social-grid svg:last-child {
  width: 0.68rem;
  height: 0.68rem;
  justify-self: end;
}

.site-footer__social-grid .social-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer__social-grid a:hover {
  border-color: rgba(0, 209, 255, 0.55);
  background: rgba(0, 209, 255, 0.1);
  color: #59ddff;
  transform: translateY(-2px);
}

.site-footer__feature {
  position: relative;
  padding: clamp(1.9rem, 2.8vw, 2.8rem) 0 clamp(1.5rem, 2vw, 2.1rem);
  border-top: 1px solid rgba(176, 184, 196, 0.2);
}

.site-footer__copyright {
  display: block;
  margin-bottom: 0.8rem;
  color: #748299;
  font: 700 0.66rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__community {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.site-footer__community-viewport {
  display: block;
  height: 0.9em;
  overflow: hidden;
  font-size: clamp(4rem, 9.5vw, 10.75rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.site-footer__community-line {
  position: relative;
  display: block;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__community-line::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #59ddff;
  background: linear-gradient(90deg, #00d1ff, #9af2ff 44%, #00d1ff);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footer-color-flow 2.8s linear infinite;
}

.site-footer__community > svg {
  width: clamp(2.5rem, 4vw, 4.5rem);
  height: clamp(2.5rem, 4vw, 4.5rem);
  flex: 0 0 auto;
  color: #59ddff;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer__community:hover .site-footer__community-line,
.site-footer__community:focus-visible .site-footer__community-line {
  transform: translateY(-100%);
}

.site-footer__community:hover > svg,
.site-footer__community:focus-visible > svg {
  transform: translate(0.4rem, -0.4rem);
}

@keyframes footer-color-flow {
  to {
    background-position: -200% 0;
  }
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
  color: #748299;
  font: 700 0.65rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__disciplines,
.site-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer__disciplines span:not(:last-child)::after,
.site-footer__legal a:not(:last-child)::after {
  content: "·";
  margin-left: 1.5rem;
  color: rgba(176, 184, 196, 0.38);
}

.site-footer__legal a {
  color: #748299;
  transition: color 180ms ease;
}

.site-footer__legal a:hover {
  color: #fff;
}

.icon--up {
  transform: rotate(180deg);
}

.scroll-top {
  position: fixed;
  z-index: 45;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(176, 184, 196, 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 30, 58, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 15px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(135%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity 240ms ease, visibility 240ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.scroll-top:hover {
  border-color: rgba(0, 209, 255, 0.52);
  background: rgba(10, 40, 66, 0.82);
  transform: translate3d(0, -2px, 0);
}

@media (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem 5rem;
  }
  .site-footer__socials {
    grid-column: 2;
    justify-self: start;
    max-width: 24rem;
  }
  .site-footer__social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .site-footer {
    margin-inline: 0.75rem;
    border-radius: 1.5rem;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .site-footer__identity,
  .site-footer__navigation,
  .site-footer__socials {
    grid-column: auto;
  }
  .site-footer__socials {
    justify-self: start;
    max-width: 24rem;
  }
  .site-footer__community-viewport {
    font-size: clamp(3.5rem, 13vw, 6.5rem);
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .site-footer {
    margin-inline: 0.65rem;
  }
  .site-footer__inner {
    padding-top: 3rem;
  }
  .site-footer__top {
    gap: 2.5rem;
  }
  .site-footer__navigation {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__social-grid {
    grid-template-columns: 1fr;
  }
  .site-footer__community {
    gap: 1rem;
  }
  .site-footer__community-viewport {
    height: 1.8em;
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: 0.9;
    white-space: normal;
  }
  .site-footer__community-line::after {
    display: none;
  }
  .site-footer__community:hover .site-footer__community-line {
    transform: none;
  }
  .site-footer__community > svg {
    display: none;
  }
  .site-footer__disciplines,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-footer__disciplines span::after,
  .site-footer__legal a::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__community-line,
  .site-footer__community > svg {
    transition: none;
  }
  .site-footer__community-line::after {
    animation: none;
  }
}
/* IDALITE footer interaction and final hierarchy refinements */
.site-footer__top {
  grid-template-columns: minmax(17rem, 1.05fr) minmax(22rem, 1.15fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 5vw, 7rem);
}

.site-footer__details a,
.site-footer__details > span {
  gap: 0.65rem;
}

.site-footer__details svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #59ddff;
}

.site-footer__socials {
  max-width: 22rem;
}

.site-footer__social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.site-footer__social-grid a {
  grid-template-columns: 1fr 0.7rem;
  min-height: 2.35rem;
  padding: 0.42rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.site-footer__social-grid svg,
.site-footer__social-grid svg:last-child {
  width: 0.68rem;
  height: 0.68rem;
  justify-self: end;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.site-footer__community {
  --footer-ease: cubic-bezier(0.625, 0.05, 0, 1);
}

.site-footer__community-viewport {
  height: 0.95em;
  line-height: 0.95;
}

.site-footer__community-line {
  position: static;
  transition: none;
}

.site-footer__community-line::after {
  content: none;
}

.site-footer__community-line .footer-char {
  display: inline-block;
  text-shadow: 0 1.05em color-mix(in srgb, #38bdf8 calc(100% - var(--char-pct)), #fff);
  translate: 0 0;
  transition: translate 0.3s var(--footer-ease), text-shadow 0.1s 0.15s ease;
}

.site-footer__community:hover .site-footer__community-line,
.site-footer__community:focus-visible .site-footer__community-line {
  transform: none;
}

.site-footer__community:hover .footer-char,
.site-footer__community:focus-visible .footer-char {
  translate: 0 -1.05em;
  transition: translate 0.5s calc((var(--char) - 1) * 0.024s) var(--footer-ease), text-shadow 0.175s calc((var(--char) - 1) * 0.024s + 0.225s) ease;
}

.site-footer__legal {
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer__legal a {
  color: #a5afbf;
}

.scroll-top {
  bottom: clamp(3.25rem, 5vw, 5rem);
}

@media (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: 1fr 1.25fr;
  }
  .site-footer__socials {
    max-width: 24rem;
  }
}
@media (max-width: 820px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__socials {
    max-width: 24rem;
  }
}
@media (max-width: 520px) {
  .site-footer__social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__community-viewport {
    height: 1.9em;
    font-size: clamp(3rem, 15vw, 4.75rem);
    line-height: 0.95;
  }
  .site-footer__community:hover .footer-char {
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__community-line .footer-char {
    transition: none;
  }
  .site-footer__community:hover .footer-char {
    translate: 0 0;
  }
}
/* Keep the large footer CTA optically complete and animate its colour after reveal. */
.site-footer__inner {
  padding-inline: clamp(1.5rem, 3vw, 3.5rem);
}

.site-footer__community {
  display: block;
}

.site-footer__community-viewport {
  height: 1.08em;
  padding-top: 0.08em;
  margin-top: -0.08em;
  line-height: 1;
  overflow: hidden;
}

.site-footer__community-line {
  line-height: 1;
}

.site-footer__community > svg {
  display: none;
}

.site-footer__community:hover .footer-char,
.site-footer__community:focus-visible .footer-char {
  animation: footer-char-wave 2.4s calc((var(--char) - 1) * 0.055s) linear infinite;
}

@keyframes footer-char-wave {
  0%, 100% {
    text-shadow: 0 1.05em #22c9f4;
  }
  45% {
    text-shadow: 0 1.05em #b9efff;
  }
  70% {
    text-shadow: 0 1.05em #55d9ff;
  }
}
@media (max-width: 520px) {
  .site-footer__inner {
    padding-inline: 1.4rem;
  }
  .site-footer__community-viewport {
    height: 1.95em;
    padding-top: 0.06em;
    margin-top: -0.06em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__community:hover .footer-char,
  .site-footer__community:focus-visible .footer-char {
    animation: none;
  }
}
/* Exact IDALITE stagger: the coloured shadow travels with each character. */
.site-footer__community {
  --footer-shift: 1.5em;
}

.site-footer__community-viewport {
  height: 1.08em;
  padding-top: 0.1em;
  margin-top: -0.1em;
  line-height: 1;
  overflow: hidden;
}

.site-footer__community-line .footer-char {
  animation: none;
  text-shadow: 0 var(--footer-shift) color-mix(in srgb, #a6ff3d calc(100% - var(--char-pct)), #e8ffd0);
  translate: 0 0;
  transition: translate 0.3s var(--footer-ease), text-shadow 0.1s 0.15s ease;
}

.site-footer__community:hover .footer-char,
.site-footer__community:focus-visible .footer-char {
  animation: none;
  translate: 0 calc(-1 * var(--footer-shift));
  text-shadow: 0 var(--footer-shift) currentColor;
  transition: translate 0.5s calc((var(--char) - 1) * 0.024s) var(--footer-ease), text-shadow 0.175s calc((var(--char) - 1) * 0.024s + 0.225s) ease;
}

@media (max-width: 520px) {
  .site-footer__community {
    --footer-shift: 1.45em;
  }
  .site-footer__community-viewport {
    height: 1.95em;
    padding-top: 0.08em;
    margin-top: -0.08em;
  }
  .site-footer__community:hover .footer-char {
    translate: 0 calc(-1 * var(--footer-shift));
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__community:hover .footer-char,
  .site-footer__community:focus-visible .footer-char {
    translate: 0 0;
    text-shadow: 0 var(--footer-shift) color-mix(in srgb, #a6ff3d calc(100% - var(--char-pct)), #e8ffd0);
  }
}
/* Icon-only social links */
.site-footer__social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__social-grid .social-icon-link {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(176, 184, 196, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.site-footer__social-grid .social-icon-link svg,
.site-footer__social-grid .social-icon-link svg:last-child {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  justify-self: center;
  align-self: center;
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.site-footer__social-grid .social-icon-link .social-icon-link__facebook {
  width: 0.58rem;
  height: 1.18rem;
}

.site-footer__social-grid .social-icon-link:hover,
.site-footer__social-grid .social-icon-link:focus-visible {
  border-color: #a6ff3d;
  background: rgba(166, 255, 61, 0.14);
  color: #a6ff3d;
  box-shadow: 0 0 0 0.22rem rgba(166, 255, 61, 0.07);
  transform: translateY(-2px);
}

/* Remove the oversized gap before the footer divider on narrower screens. */
.site-footer__top {
  padding-bottom: clamp(2.25rem, 3vw, 3.75rem);
}

@media (max-width: 1180px) {
  .site-footer__top {
    gap: 2.5rem 4rem;
    padding-bottom: 2.75rem;
  }
}
@media (max-width: 820px) {
  .site-footer__top {
    gap: 2.25rem;
    padding-bottom: 2.25rem;
  }
}
@media (max-width: 520px) {
  .site-footer__top {
    gap: 2rem;
    padding-bottom: 2rem;
  }
}
/* The glass panel stays wide; its inner content uses the global container rhythm. */
.site-footer__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (max-width: 820px) {
  .site-footer__inner {
    padding-inline: 1rem;
  }
}
@media (max-width: 520px) {
  .site-footer__inner {
    padding-inline: 1rem;
  }
}
/* One-row footer hierarchy: the editorial/contact column owns more width. */
.site-footer__top {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(18rem, 0.9fr);
}

@media (min-width: 821px) and (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(16rem, 0.8fr);
    gap: 2rem;
  }
  .site-footer__socials {
    grid-column: auto;
    justify-self: end;
    max-width: 22rem;
  }
}
/* Fit the long Italian CTA inside the responsive container on extra-wide screens. */
.site-footer__community-viewport {
  max-width: 100%;
  font-size: clamp(4rem, 7vw, 8.5rem);
  letter-spacing: -0.065em;
}

/* Final responsive footer layout: stack the three desktop columns before they can overlap. */
@media (max-width: 820px) {
  .site-footer__inner {
    padding: 3rem 1.5rem 1.5rem;
  }
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .site-footer__identity,
  .site-footer__navigation,
  .site-footer__socials {
    grid-column: 1;
    min-width: 0;
    width: 100%;
  }
  .site-footer__identity {
    max-width: 32rem;
  }
  .site-footer__statement {
    max-width: 30rem;
  }
  .site-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .site-footer__socials {
    justify-self: stretch;
    max-width: none;
  }
  .site-footer__social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__feature {
    padding-block: 2rem;
  }
  .site-footer__community-viewport {
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }
  .site-footer__community-line {
    line-height: inherit;
  }
  .site-footer__community-line .footer-char {
    translate: 0;
    text-shadow: none;
    transition: none;
  }
  .site-footer__community:hover .footer-char,
  .site-footer__community:focus-visible .footer-char {
    translate: 0;
    text-shadow: none;
  }
}
@media (max-width: 520px) {
  .site-footer__inner {
    padding: 2.5rem 1.25rem 1.25rem;
  }
  .site-footer__top {
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .site-footer__navigation {
    gap: 1.25rem;
  }
  .footer-column a {
    font-size: 0.84rem;
  }
  .site-footer__social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .site-footer__social-grid a {
    min-width: 0;
    padding: 0.45rem 0.7rem;
  }
  .site-footer__community-viewport {
    font-size: clamp(1.5rem, 7.5vw, 3.6rem);
  }
  .site-footer__bottom {
    gap: 2rem;
  }
}
/* Keep the supplied social glyphs geometrically centered inside their circles. */
.site-footer__social-grid .social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-footer__social-grid .social-icon-link svg,
.site-footer__social-grid .social-icon-link svg:last-child {
  display: block;
  flex: 0 0 auto;
  margin: 0;
}

/* Footer navigation and contact details use the shared lime interaction accent. */
.footer-column a:hover,
.footer-column a:focus-visible,
.site-footer__details a:hover,
.site-footer__details a:focus-visible {
  color: #a6ff3d;
}

.site-footer__details a:hover svg,
.site-footer__details a:focus-visible svg {
  color: #a6ff3d;
}

/* Bottom footer navigation and its separators share the lime accent. */
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #a6ff3d;
}

.site-footer__disciplines span:not(:last-child)::after,
.site-footer__legal a:not(:last-child)::after {
  color: #a6ff3d;
}

/* Tablet footer: keep social controls on their own row rather than crowding navigation. */
@media (min-width: 821px) and (max-width: 1023px) {
  .site-footer__top {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem 3rem;
  }
  .site-footer__identity {
    grid-column: 1;
    grid-row: 1/3;
  }
  .site-footer__navigation {
    grid-column: 2;
    grid-row: 1;
  }
  .site-footer__socials {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    max-width: none;
  }
}
/* Touch devices keep the same Join Community character reveal as desktop hover. */
@media (max-width: 820px) {
  .site-footer__community-viewport {
    height: 1.08em;
    padding-top: 0.1em;
    margin-top: -0.1em;
    overflow: hidden;
    white-space: nowrap;
  }
  .site-footer__community-line .footer-char {
    translate: 0;
    text-shadow: 0 var(--footer-shift) color-mix(in srgb, #a6ff3d calc(100% - var(--char-pct)), #e8ffd0);
    transition: translate 0.3s var(--footer-ease), text-shadow 0.1s 0.15s ease;
  }
  .site-footer__community:hover .footer-char,
  .site-footer__community:focus-visible .footer-char,
  .site-footer__community:active .footer-char,
  .site-footer__community.is-touch-animating .footer-char {
    translate: 0 calc(-1 * var(--footer-shift));
    text-shadow: 0 var(--footer-shift) currentColor;
    transition: translate 0.5s calc((var(--char) - 1) * 0.024s) var(--footer-ease), text-shadow 0.175s calc((var(--char) - 1) * 0.024s + 0.225s) ease;
  }
}
.hero {
  position: relative;
  min-height: calc(100svh - 1.75rem);
  margin: 1rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.12);
  border-radius: 2rem;
  background: #040b14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.hero__media,
.hero__veil,
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.8;
}

.hero__veil {
  background: linear-gradient(0deg, rgba(4, 11, 20, 0.96) 0%, rgba(4, 11, 20, 0.68) 34%, rgba(4, 11, 20, 0.08) 72%, rgba(4, 11, 20, 0.18) 100%), linear-gradient(90deg, rgba(4, 11, 20, 0.18), transparent 35%, transparent 70%, rgba(4, 11, 20, 0.16));
}

.hero__grid {
  opacity: 0.08;
  background-image: linear-gradient(rgba(0, 209, 255, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 209, 255, 0.4) 1px, transparent 1px);
  background-size: 5rem 5rem;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}

.hero__copy {
  width: min(100%, 48rem);
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.85rem, 4.65vw, 4.85rem);
  line-height: 1.01;
}

.hero__copy > p {
  max-width: 37rem;
  margin: 0 auto 1.65rem;
  font-size: clamp(0.94rem, 1.05vw, 1.06rem);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 901px) and (max-width: 1200px) {
  .hero__content {
    padding-bottom: clamp(2.5rem, 5.5vh, 4rem);
  }
  .hero__copy {
    width: min(100%, 41rem);
  }
  .hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 5.25vw, 3.9rem);
  }
  .hero__copy > p {
    max-width: 34rem;
    margin-bottom: 1.35rem;
    font-size: 0.94rem;
  }
  .hero__actions .button {
    min-height: 3.15rem;
  }
}
@media (min-width: 1650px) {
  .hero {
    min-height: calc(100svh - 3rem);
    margin: 1.5rem;
  }
}
.manifesto {
  border-bottom: 1px solid rgba(176, 184, 196, 0.1);
}

.manifesto__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: clamp(3rem, 5vw, 6rem);
       column-gap: clamp(3rem, 5vw, 6rem);
  row-gap: 1rem;
  align-items: center;
}

.manifesto__content {
  max-width: 40rem;
}

.manifesto__statement {
  margin: 0 0 1.35rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 3.1vw, 3.7rem);
  line-height: 1.04;
}

.manifesto__statement span,
.manifesto__statement em {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.manifesto__statement em {
  color: #00d1ff;
  font-family: "Lora", serif;
  font-weight: 400;
}

.manifesto__content > p {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.manifesto__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.25rem;
  margin: 0 0 2rem;
}

.manifesto__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #b0b8c4;
  font-size: 0.78rem;
  line-height: 1.5;
}

.manifesto__list i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 50%;
  color: #00d1ff;
  background: rgba(0, 209, 255, 0.07);
}

.manifesto__list svg {
  width: 0.75rem;
  height: 0.75rem;
}

.manifesto__credibility {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.17);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(10, 30, 58, 0.46), rgba(7, 21, 39, 0.26));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 22px 55px rgba(4, 11, 20, 0.22);
  backdrop-filter: blur(20px);
}

.manifesto__credibility div {
  min-width: 0;
  padding: 0.2rem clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid rgba(176, 184, 196, 0.18);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 480ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.manifesto__credibility.is-counted div {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__credibility.is-counted div:nth-child(2) {
  transition-delay: 120ms;
}

.manifesto__credibility.is-counted div:nth-child(3) {
  transition-delay: 240ms;
}

.manifesto__credibility div:first-child {
  padding-left: 0;
}

.manifesto__credibility div:last-child {
  padding-right: 0;
  border-right: 0;
}

.manifesto__credibility strong {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 0.65rem;
  color: #fff;
  font: 600 clamp(2.7rem, 5vw, 5.25rem)/0.9 "Poppins", sans-serif;
  letter-spacing: -0.05em;
}

.manifesto__credibility strong span {
  padding-top: 0.08em;
  color: #a6ff3d;
  font-size: 0.48em;
  line-height: 1;
}

.manifesto__credibility small {
  display: block;
  color: #748299;
  font: 600 clamp(0.66rem, 0.8vw, 0.8rem)/1.45 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .manifesto__credibility {
    width: 88%;
    justify-self: center;
  }
}
.manifesto__cta {
  min-width: 12rem;
}

.manifesto__visual {
  position: relative;
  height: clamp(32rem, 37vw, 39rem);
  min-height: 0;
  overflow: visible;
}

.manifesto__phone {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 52%;
  width: auto;
  max-width: 68%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateX(-50%);
  filter: saturate(0.9) contrast(1.03);
}

.manifesto__market-card {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: 4%;
  width: min(36%, 13.5rem);
  min-height: 7.8rem;
  overflow: hidden;
  padding: 1.1rem;
  border: 1px solid rgba(176, 184, 196, 0.18);
  border-radius: 1rem;
  background: rgba(16, 19, 22, 0.93);
  box-shadow: 0 22px 50px rgba(4, 11, 20, 0.55);
  backdrop-filter: blur(14px);
  animation: manifesto-float-left 5.5s ease-in-out infinite;
}

.manifesto__market-card img {
  position: absolute;
  right: -0.75rem;
  bottom: -0.5rem;
  width: 78%;
  height: auto;
  opacity: 0.28;
}

.manifesto__market-card span,
.manifesto__market-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.manifesto__market-card span {
  margin-bottom: 1.7rem;
  color: #a6ff3d;
  font: 700 0.58rem/1.3 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto__market-card strong {
  color: #fff;
  font: 600 0.9rem/1.2 "Poppins", sans-serif;
}

.manifesto__risk {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 10%;
  width: min(40%, 15rem);
  height: auto;
  border-radius: 0.9rem;
  box-shadow: 0 22px 50px rgba(4, 11, 20, 0.58);
  animation: manifesto-float-right 6.25s ease-in-out -1.4s infinite;
}

@keyframes manifesto-float-left {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes manifesto-float-right {
  0%, 100% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(7px);
  }
}
.method {
  background: radial-gradient(circle at 70% 20%, rgba(0, 209, 255, 0.05), transparent 34%);
}

.method .section-heading {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.method .section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.3vw, 4.75rem);
  line-height: 1.02;
}

.method .section-heading p {
  max-width: 48rem;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
}

.pillars {
  position: relative;
  display: grid;
  gap: 2rem;
}

.pillar {
  position: sticky;
  top: calc(clamp(4.75rem, 8vh, 7rem) + var(--stack-offset, 0rem));
  z-index: var(--stack-index, 1);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.17);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(7, 21, 39, 0.72), rgba(4, 11, 20, 0.5));
  box-shadow: 0 30px 70px rgba(4, 11, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(24px);
  transform-origin: top center;
  scale: var(--stack-scale, 1);
  will-change: scale;
  transition: scale 90ms linear;
}

.pillar__media {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: #101316;
}

.pillar__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.08) 24%, rgba(4, 11, 20, 0.38) 68%, rgba(4, 11, 20, 0.82) 100%), linear-gradient(90deg, rgba(4, 11, 20, 0.18), transparent 55%);
  pointer-events: none;
}

.pillar__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(0.7) contrast(1.08) brightness(0.78);
  transform: scale(1.015);
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.8s ease;
}

.pillar:hover .pillar__photo {
  transform: scale(1.045);
  filter: saturate(0.82) contrast(1.08) brightness(0.84);
}

.pillar--cycle .pillar__photo {
  -o-object-position: 52% center;
     object-position: 52% center;
}

.pillar--technical .pillar__photo {
  -o-object-position: center;
     object-position: center;
}

.pillar--algorithmic .pillar__photo {
  -o-object-position: 58% center;
     object-position: 58% center;
}

.pillar__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 3.5vw, 3.75rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(7, 21, 39, 0.2));
  backdrop-filter: blur(24px);
}

.pillar:nth-child(even) .pillar__media {
  order: 2;
}

.pillar:nth-child(even) .pillar__content {
  order: 1;
}

.pillar__step {
  margin-bottom: 1.2rem;
  color: #a6ff3d;
  font: 700 0.68rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.pillar p {
  max-width: 35rem;
  margin-bottom: 2rem;
}

.pillar ul {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 184, 196, 0.16);
}

.pillar li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #b0b8c4;
  font-size: 0.82rem;
}

.pillar li i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 50%;
  color: #00d1ff;
  background: rgba(0, 209, 255, 0.07);
}

.pillar li i svg {
  width: 0.72rem;
  height: 0.72rem;
}

.pillar__wave,
.pillar__levels,
.pillar__signal {
  position: absolute;
  inset: 12% 8% 18%;
  opacity: 0.9;
}

.pillar__wave span {
  position: absolute;
  top: 25%;
  left: -8%;
  width: 116%;
  height: 30%;
  border-top: 2px solid #00d1ff;
  border-radius: 50%;
  transform: rotate(-7deg);
}

.pillar__wave span:nth-child(2) {
  top: 43%;
  opacity: 0.55;
  transform: rotate(5deg);
}

.pillar__wave span:nth-child(3) {
  top: 60%;
  opacity: 0.28;
  transform: rotate(-3deg);
}

.pillar__levels i {
  position: absolute;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d1ff, transparent);
}

.pillar__levels i:nth-child(1) {
  top: 18%;
}

.pillar__levels i:nth-child(2) {
  top: 38%;
  width: 62%;
  left: 28%;
}

.pillar__levels i:nth-child(3) {
  top: 60%;
  width: 74%;
  left: 10%;
}

.pillar__levels i:nth-child(4) {
  top: 80%;
  width: 48%;
  left: 42%;
}

.pillar__signal {
  display: grid;
  place-items: center;
}

.pillar__signal::before,
.pillar__signal::after {
  content: "";
  position: absolute;
  width: min(22vw, 17rem);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 209, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(0, 209, 255, 0.07);
}

.pillar__signal::after {
  width: min(14vw, 10rem);
}

.pillar__signal span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #a6ff3d;
  box-shadow: 0 0 28px #a6ff3d;
}

.pillar__media-caption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(176, 184, 196, 0.18);
  border-radius: 1rem;
  background: rgba(10, 30, 58, 0.74);
  backdrop-filter: blur(14px);
}

.pillar__media-caption span {
  color: #00d1ff;
  font: 700 0.62rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar__media-caption strong {
  color: #fff;
  font-size: 0.82rem;
}

.method__support {
  max-width: 48rem;
  margin: 2rem 0 0 auto;
}

.method__support span {
  color: #a6ff3d;
  margin-right: 0.7rem;
}

.market-preview {
  overflow: hidden;
  background: #040b14;
}

.market-preview .section-heading {
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.market-preview__stage {
  position: relative;
}

.market-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

.market-preview__side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  min-width: 0;
}

.market-data-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(1.25rem, 2.1vw, 2rem);
  border: 1px solid rgba(176, 184, 196, 0.17);
  border-radius: 1.15rem;
  background: rgba(7, 21, 39, 0.48);
}

.market-data-card > span {
  display: block;
  margin-bottom: 0.7rem;
  color: #59ddff;
  font: 700 0.58rem/1.45 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-data-card strong {
  display: block;
  color: #fff;
  font-size: clamp(0.88rem, 1.15vw, 1.05rem);
}

.market-data-card p {
  margin: 0.65rem 0 1rem;
  color: #8994a5;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  line-height: 1.55;
}

.market-data-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0.75rem 0;
  list-style: none;
}

.market-data-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
  padding: 0 1rem;
  border: 0;
}

.market-data-card li:first-child {
  padding-left: 0;
}

.market-data-card li + li {
  padding-right: 0;
  border-left: 1px solid rgba(176, 184, 196, 0.16);
}

.market-data-card li span {
  color: #748299;
  font: 0.55rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-data-card li strong {
  color: #d9dee6;
  font-size: 0.66rem;
  font-weight: 500;
  text-align: right;
}

.market-data-card > i {
  display: block;
  flex: 0 0 2px;
  width: 100%;
  height: 2px;
  margin-top: auto;
  overflow: hidden;
  background: rgba(176, 184, 196, 0.22);
}

.market-data-card > i b {
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d1ff, #a6ff3d);
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

.market-data-card.aos-animate > i b {
  width: var(--value);
}

.market-preview__image {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.17);
  border-radius: 1.15rem;
  background: transparent;
}

.market-preview__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(4, 11, 20, 0.38));
  pointer-events: none;
}

.market-preview__image img,
.market-preview__image video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(26rem, 34vw, 36rem);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 901px) {
  .market-preview__grid {
    height: clamp(32rem, 34vw, 35rem);
    align-items: stretch;
  }
  .market-preview__side,
  .market-preview__image {
    height: 100%;
    min-height: 0;
  }
  .market-preview__image img,
  .market-preview__image video {
    height: 100%;
    min-height: 0;
    -o-object-position: center;
       object-position: center;
  }
}
.cycle {
  --section-space: clamp(3rem, 4vw, 4.5rem);
  background: #06101d;
}

.cycle__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 0;
}

.cycle__visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: visible;
}

.cycle__placeholder {
  display: block;
  width: min(100%, 34rem);
  max-height: 24rem;
  -o-object-fit: contain;
     object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cycle-system {
  position: absolute;
  inset: 1.5rem 1.5rem 5.8rem;
  display: grid;
  place-items: center;
}

.cycle-system__rings {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 209, 255, 0.24);
  border-radius: 50%;
}

.cycle-system__rings i {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(0, 209, 255, 0.18);
  border-radius: 50%;
}

.cycle-system__rings i:nth-child(2) {
  inset: 27%;
  border-style: solid;
}

.cycle-system__rings i:nth-child(3) {
  inset: 41%;
  background: rgba(0, 209, 255, 0.035);
  box-shadow: 0 0 55px rgba(0, 209, 255, 0.08);
}

.cycle-system__core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.cycle-system__core img {
  width: clamp(6rem, 10vw, 9rem);
  filter: drop-shadow(0 0 24px rgba(0, 209, 255, 0.2));
}

.cycle-system__core span {
  margin-top: 0.5rem;
  color: #fff;
  font: 600 0.9rem/1.2 "Poppins", sans-serif;
}

.cycle-system__core strong {
  color: #59ddff;
  font: 400 1.15rem/1.2 "Lora", serif;
  font-style: italic;
}

.cycle-system__orbit {
  position: absolute;
  z-index: 3;
  width: min(82%, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  animation: cycle-orbit 18s linear infinite;
}

.cycle-system__node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  animation: cycle-counter-orbit 18s linear infinite;
}

.cycle-system__node > span {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(0, 209, 255, 0.38);
  border-radius: 50%;
  background: rgba(4, 11, 20, 0.82);
  color: #00d1ff;
  box-shadow: 0 12px 30px rgba(4, 11, 20, 0.4);
  backdrop-filter: blur(14px);
}

.cycle-system__node svg {
  width: 1.35rem;
  height: 1.35rem;
}

.cycle-system__node small {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 999px;
  background: rgba(4, 11, 20, 0.72);
  color: #fff;
  font: 600 0.55rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cycle-system__node--context {
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
}

.cycle-system__node--confirm {
  right: -1.2rem;
  bottom: 18%;
}

.cycle-system__node--entry {
  bottom: 8%;
  left: -0.6rem;
}

@keyframes cycle-orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cycle-counter-orbit {
  to {
    rotate: -360deg;
  }
}
.cycle__visual-caption {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(176, 184, 196, 0.18);
  border-radius: 1rem;
  background: rgba(7, 21, 39, 0.68);
  backdrop-filter: blur(16px);
}

.cycle__visual-caption span {
  color: #59ddff;
  font: 700 0.6rem/1.3 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cycle__visual-caption strong {
  color: #fff;
  font-size: 0.78rem;
}

.cycle__copy {
  min-width: 0;
}

.cycle__copy h2 {
  margin: 0.55rem 0 0.85rem;
  font-size: clamp(2.65rem, 4.35vw, 4.75rem);
  line-height: 0.94;
}

.cycle__copy > p {
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cycle__cta {
  margin-top: 1rem;
}

.cycle__factors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.cycle__factors li {
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b0b8c4;
  font-size: 0.64rem;
}

.process-list {
  margin-top: 1rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
}

.process-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.1rem 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(176, 184, 196, 0.14);
}

.process-list li > span {
  grid-row: 1/3;
  color: #00d1ff;
  font: 0.68rem/1.5 "JetBrains Mono", monospace;
}

.process-list strong {
  font-size: 0.86rem;
}

.process-list small {
  color: #748299;
  font-size: 0.72rem;
  line-height: 1.4;
}

.community__panel {
  position: relative;
  min-height: 31rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(0, 209, 255, 0.22);
  background: linear-gradient(120deg, rgba(10, 30, 58, 0.96), rgba(4, 11, 20, 0.9)), url("../images/hero-poster.png") center/cover;
}

.community__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: panel-light 8s ease-in-out infinite;
}

@keyframes panel-light {
  50%, 100% {
    transform: translateX(100%);
  }
}
.community__mark {
  position: absolute;
  right: -2rem;
  top: -4rem;
  color: rgba(255, 255, 255, 0.025);
  font: 700 clamp(8rem, 20vw, 18rem)/1 "Poppins", sans-serif;
  letter-spacing: -0.08em;
}

.community__copy,
.community__action {
  position: relative;
}

.community__copy h2 {
  margin: 1rem 0 1.6rem;
}

.community__copy p {
  max-width: 38rem;
}

.community__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}

.community__action > span {
  color: #748299;
  font: 0.68rem/1.4 "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.services {
  background: #040b14;
}

.services .section-heading {
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.25rem;
  background: rgba(9, 21, 36, 0.72);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 221, 255, 0.28);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.service-card__accent {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #00d1ff, #a6ff3d);
  transform: scaleY(0.25);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__accent {
  transform: scaleY(1);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #07101b;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.04), rgba(4, 11, 20, 0.5));
  pointer-events: none;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.72) brightness(0.72);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
  filter: saturate(0.92) brightness(0.82);
}

.service-card__media > span {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(89, 221, 255, 0.32);
  border-radius: 999px;
  background: rgba(4, 11, 20, 0.72);
  color: #59ddff;
  font: 700 0.53rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.service-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card__head > span {
  min-width: 2.4rem;
  color: rgba(116, 130, 153, 0.28);
  font: 700 clamp(1.8rem, 2.7vw, 2.75rem)/0.9 "Poppins", sans-serif;
  letter-spacing: -0.05em;
  transition: color 0.4s ease, transform 0.4s ease;
}

.service-card:hover .service-card__head > span {
  color: #00d1ff;
  transform: translateX(3px);
}

.service-card__head h3 {
  margin: 0;
  padding-top: 0.1rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.service-card__body p {
  margin: 0 0 1.5rem;
  color: #8994a5;
  font-size: 0.82rem;
  line-height: 1.7;
}

.service-card__body > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  transition: color 0.3s ease, gap 0.3s ease;
}

.service-card__body > a:hover {
  gap: 0.8rem;
  color: #59ddff;
}

.service-card__body > a svg {
  width: 0.85rem;
  height: 0.85rem;
}

.book {
  position: relative;
  overflow: hidden;
  background: #040b14;
}

.book::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 221, 255, 0.2), transparent);
}

.book__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.book__image {
  position: relative;
  width: min(100%, 29rem);
  margin: 0;
  justify-self: center;
}

.book__image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8% -8% -4% 12%;
  border: 1px solid rgba(89, 221, 255, 0.14);
  border-radius: 50%;
}

.book__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1575/2286;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.38));
}

.book__image figcaption {
  position: relative;
  z-index: 2;
  margin-top: 1.1rem;
  color: #748299;
  font: 600 0.58rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.book__copy {
  position: relative;
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.book__copy .eyebrow {
  display: block;
  color: #59ddff;
}

.book__copy h2 {
  max-width: 11ch;
  margin: 0.8rem 0 1.35rem;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.94;
}

.book__copy > p {
  max-width: 38rem;
  margin: 0;
  color: #a7b0be;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

.book__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin-top: 1.65rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.book__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.book__benefits span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #59ddff;
  box-shadow: 0 0 0 0.2rem rgba(89, 221, 255, 0.08);
}

.curriculum {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin: 2.25rem 0 2.5rem;
  border: 0;
}

.curriculum li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(176, 184, 196, 0.15);
  font-size: 0.84rem;
}

.curriculum li:last-child {
  grid-column: 1/-1;
}

.curriculum span {
  color: #59ddff;
  font: 700 0.62rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.cta-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050b12 url("../images/home/trading-premium-cta.jpg") center 48%/cover fixed no-repeat;
  isolation: isolate;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.cta-band__media {
  display: none;
}

.cta-band__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 52%;
     object-position: center 52%;
  filter: saturate(0.72) contrast(1.08) brightness(0.64);
}

.cta-band__overlay {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 20, 0.97) 0%, rgba(4, 11, 20, 0.86) 46%, rgba(4, 11, 20, 0.68) 72%, rgba(4, 11, 20, 0.8) 100%), linear-gradient(0deg, rgba(4, 11, 20, 0.88) 0%, rgba(4, 11, 20, 0.22) 62%, rgba(4, 11, 20, 0.36) 100%);
}

.cta-band__content {
  position: relative;
  max-width: 58rem;
  text-align: center;
}

.cta-band__content .eyebrow {
  display: block;
  color: #59ddff;
}

.cta-band h2 {
  margin: 1rem 0 1.35rem;
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
  line-height: 0.94;
}

.cta-band h2 span,
.cta-band h2 em {
  display: block;
  white-space: nowrap;
}

.cta-band p {
  max-width: 40rem;
  margin: 0 auto;
  color: #c1c8d2;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

.cta-band__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
}

.cta-band__actions .button {
  justify-content: space-between;
  min-width: 15.75rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 2rem);
    margin: 1rem;
  }
  .manifesto__layout,
  .cycle__layout,
  .book__layout {
    grid-template-columns: 1fr;
  }
  .manifesto__content {
    max-width: 46rem;
  }
  .market-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-preview__image {
    grid-column: 1/-1;
    grid-row: 1;
    max-width: 48rem;
    margin-inline: auto;
  }
  .market-preview__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-preview__panel {
    align-items: flex-start;
  }
  .pillar {
    grid-template-columns: 1fr;
    min-height: 0;
    top: calc(clamp(4rem, 7vh, 5.5rem) + var(--stack-offset, 0rem));
  }
  .pillar__media,
  .pillar:nth-child(even) .pillar__media {
    order: 1;
    min-height: 22rem;
    border: 0;
  }
  .pillar__content,
  .pillar:nth-child(even) .pillar__content {
    order: 2;
    min-height: 25rem;
  }
  .community__panel {
    grid-template-columns: 1fr;
  }
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band__inner {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
  .cycle__visual {
    min-height: 30rem;
  }
  .cycle__orbit--outer {
    width: 27rem;
    height: 27rem;
  }
}
@media (max-width: 640px) {
  .manifesto__statement {
    font-size: clamp(1rem, 4.2vw, 1.7rem);
  }
  .manifesto__list {
    grid-template-columns: 1fr;
  }
  .manifesto__credibility {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
    padding: 1.25rem 0.4rem;
  }
  .manifesto__credibility div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem 0.45rem;
    border-right: 1px solid rgba(176, 184, 196, 0.16);
    text-align: center;
  }
  .manifesto__credibility div:first-child {
    padding-left: 0.45rem;
  }
  .manifesto__credibility div:last-child {
    padding-right: 0.45rem;
    border-right: 0;
  }
  .manifesto__credibility strong {
    margin-bottom: 0.55rem;
    font-size: clamp(1.8rem, 9.5vw, 2.5rem);
  }
  .manifesto__credibility small {
    font-size: clamp(0.44rem, 1.8vw, 0.52rem);
    letter-spacing: 0.075em;
  }
  .manifesto__cta {
    width: 100%;
  }
  .manifesto__visual {
    height: 30rem;
    max-width: 32rem;
    margin-inline: auto;
    margin-top: 2.25rem;
  }
  .manifesto__phone {
    left: 52%;
    max-width: 68%;
    height: 100%;
  }
  .manifesto__market-card {
    top: 21%;
    left: 2%;
    width: 41%;
    min-height: 7rem;
    padding: 0.9rem;
  }
  .manifesto__market-card span {
    margin-bottom: 1.45rem;
  }
  .manifesto__risk {
    right: 1%;
    bottom: 10%;
    width: 45%;
  }
  .method .section-heading,
  .market-preview .section-heading,
  .services .section-heading {
    margin-bottom: 2rem;
  }
  .market-preview__stage {
    padding: 0;
  }
  .market-preview__grid {
    grid-template-columns: 1fr;
  }
  .market-preview__image {
    grid-column: auto;
    grid-row: auto;
    order: initial;
    width: 100%;
    min-height: 0;
    border-radius: 1.1rem;
  }
  .market-preview__image img,
  .market-preview__image video {
    height: auto;
    min-height: 18rem;
    aspect-ratio: 4/3;
  }
  .market-preview__side {
    grid-template-columns: 1fr;
  }
  .market-data-card {
    padding: 1.1rem;
  }
  .hero {
    min-height: calc(100svh - 1.3rem);
    margin: 0.65rem;
    border-radius: 1.4rem;
  }
  .hero__content {
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    padding-inline: 1rem;
  }
  .hero__media {
    -o-object-position: 62% center;
       object-position: 62% center;
  }
  .hero__veil {
    background: linear-gradient(0deg, rgba(4, 11, 20, 0.97) 0%, rgba(4, 11, 20, 0.74) 45%, rgba(4, 11, 20, 0.12) 78%, rgba(4, 11, 20, 0.2) 100%);
  }
  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }
  .hero__copy > p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .hero__actions {
    align-items: center;
  }
  .hero__actions .button {
    width: auto;
    min-width: 13rem;
  }
  .pillar {
    position: relative;
    top: auto !important;
    border-radius: 1.25rem;
    scale: 1 !important;
    filter: none !important;
  }
  .pillar__media {
    min-height: 17rem;
  }
  .pillar__content {
    min-height: 0;
    padding: 2rem 1.35rem;
  }
  .pillar h3 {
    font-size: 2.4rem;
  }
  .pillar__signal::before {
    width: 10rem;
  }
  .pillar__signal::after {
    width: 6rem;
  }
  .cycle__visual {
    min-height: 24rem;
  }
  .cycle__orbit--outer {
    width: 20rem;
    height: 20rem;
  }
  .cycle__orbit--middle {
    width: 15rem;
    height: 15rem;
  }
  .cycle__orbit--inner {
    width: 10rem;
    height: 10rem;
  }
  .community__panel {
    min-height: 34rem;
    padding: 2rem;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card__body {
    padding: 1.35rem;
  }
  .cta-band {
    background-attachment: scroll;
    background-position: center;
  }
  .cta-band__inner {
    padding-block: 4rem;
  }
  .cta-band h2 span,
  .cta-band h2 em {
    white-space: normal;
  }
  .cta-band__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta-band .button {
    width: 100%;
    min-width: 0;
  }
  .cta-band__overlay {
    background: linear-gradient(0deg, rgba(4, 11, 20, 0.98) 0%, rgba(4, 11, 20, 0.82) 58%, rgba(4, 11, 20, 0.38) 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cycle-system__orbit,
  .cycle-system__node {
    animation: none;
  }
}
/* Proprietary ecosystem: wider heading rhythm and consistent desktop cards. */
#strategie-strumenti .cycle__intro h2 {
  max-width: 19ch;
  line-height: 0.98;
}

@media (min-width: 1001px) {
  #strategie-strumenti .cycle-timeline {
    align-items: stretch;
  }
  #strategie-strumenti .cycle-step {
    height: 100%;
  }
}
@media (max-width: 900px) {
  .cycle__layout {
    min-height: 0;
  }
  .cycle__visual {
    min-height: 22rem;
  }
  .cycle__placeholder {
    max-height: 24rem;
  }
}
@media (max-width: 640px) {
  .cycle {
    --section-space: 3.5rem;
  }
  .cycle__visual {
    min-height: 18rem;
  }
  .cycle__placeholder {
    max-height: 20rem;
  }
  .cycle__copy h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }
  .cycle__factors {
    margin-top: 0.85rem;
  }
  .process-list {
    margin-top: 1rem;
  }
  .cycle__cta {
    width: 100%;
  }
}
/* Home offers: detailed service cards with Premium as the central focus. */
.home-offers {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.08fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  width: min(100%, 92rem);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.home-offer {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 35rem;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(1.5rem, 2.25vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.2);
  border-radius: 1.45rem;
  background: linear-gradient(155deg, rgba(10, 30, 58, 0.58), rgba(7, 21, 39, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-offer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--ef-cyan), transparent 74%);
  content: "";
}

.home-offer--side {
  min-height: 32.5rem;
  transform: scale(0.96);
  opacity: 0.9;
}

.home-offer--premium {
  z-index: 2;
  min-height: 38rem;
  border-color: rgba(0, 209, 255, 0.42);
  background: radial-gradient(circle at 88% 4%, rgba(0, 209, 255, 0.15), transparent 31%), linear-gradient(155deg, #0a1e3a, #071527 72%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1.5rem 4rem rgba(0, 0, 0, 0.26);
  transform: scale(1.025);
}

.home-offer--premium::before {
  height: 3px;
  background: linear-gradient(90deg, var(--ef-cyan), var(--ef-green));
}

.home-offer__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ef-cyan);
  font: 700 0.62rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-offer__header > span {
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(89, 221, 255, 0.27);
  border-radius: 50%;
}

.home-offer__header small {
  font: inherit;
}

.home-offer h3 {
  margin: clamp(2rem, 3vw, 2.8rem) 0 1rem;
}

.home-offer__lead {
  min-height: 7rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.home-offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.home-offer__meta span {
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(176, 184, 196, 0.2);
  border-radius: 999px;
  color: #9aa6b8;
  font: 700 0.52rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-offer__body {
  width: 100%;
  margin: 1.5rem 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
}

.home-offer__caption {
  color: #748299;
  font: 700 0.56rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-offer__body ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.home-offer__body li {
  position: relative;
  padding-left: 1.2rem;
  color: #b0b8c4;
  font-size: 0.76rem;
  line-height: 1.55;
}

.home-offer__body li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--ef-cyan);
  content: "";
}

.home-offer > .button {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1000px) {
  .home-offers {
    grid-template-columns: 1fr;
    max-width: 42rem;
  }
  .home-offer,
  .home-offer--side,
  .home-offer--premium {
    min-height: 0;
    opacity: 1;
    transform: none;
  }
  .home-offer--premium {
    grid-row: 1;
  }
  .home-offer__lead {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .home-offers {
    margin-top: 2.5rem;
  }
  .home-offer {
    padding: 1.35rem;
  }
  .home-offer > .button {
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.6rem 0.6rem 0.6rem 1rem;
    font-size: 0.7rem;
  }
  .home-offer > .button span {
    white-space: nowrap;
  }
  .home-offer > .button i {
    width: 1.85rem;
    height: 1.85rem;
  }
}
@media (max-width: 900px) {
  .book__layout {
    gap: 3.5rem;
  }
  .book__image {
    width: min(76vw, 25rem);
  }
  .book__copy {
    padding-left: 0;
    border-left: 0;
  }
  .book__copy h2 {
    max-width: 12ch;
  }
}
@media (max-width: 640px) {
  .book__layout {
    gap: 2.75rem;
  }
  .book__image {
    width: min(82vw, 21rem);
  }
  .book__image::before {
    inset: 8% -4% -3% 10%;
  }
  .book__benefits {
    gap: 0.65rem 1rem;
  }
  .curriculum {
    grid-template-columns: 1fr;
    margin: 1.8rem 0 2rem;
  }
  .curriculum li:last-child {
    grid-column: auto;
  }
  .book__copy .button {
    width: 100%;
  }
}
/* Iron Cycle Pattern: shared text-only timeline */
.cycle {
  --section-space: clamp(3.25rem, 5vw, 5rem);
}

.cycle__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  padding-bottom: clamp(1.25rem, 2vw, 2rem);
}

.cycle__intro {
  max-width: 58rem;
}

.cycle__intro h2 {
  margin: 0.7rem 0 1rem;
  max-width: 12ch;
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.cycle__intro h2 em {
  display: block;
  color: var(--ef-cyan);
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.cycle__intro p {
  max-width: 54rem;
  margin: 0;
  color: var(--ef-silver);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.cycle__header .cycle__cta {
  flex: 0 0 auto;
  justify-self: start;
  margin: 0 0 0.2rem;
  white-space: nowrap;
}

.cycle-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(3.75rem, 6vw, 6.5rem) minmax(0, 1fr) clamp(3.75rem, 6vw, 6.5rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.25rem, 0.65vw, 0.65rem);
  margin: clamp(1.75rem, 3vw, 3rem) 0 0;
  padding: 0 clamp(1.25rem, 2.5vw, 2.75rem);
  list-style: none;
}

.cycle-step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: clamp(17rem, 21vw, 19.5rem);
  flex-direction: column;
  padding: clamp(1.65rem, 2.4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(166, 181, 202, 0.2);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(0, 209, 255, 0.075), transparent 42%), rgba(5, 17, 31, 0.88);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
}

.cycle-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ef-cyan), var(--ef-green));
  content: "";
}

.cycle-step__number {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(0, 209, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 209, 255, 0.1);
  color: var(--ef-cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cycle-step h3 {
  margin: 0 0 0.85rem;
  color: var(--ef-white);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.cycle-step p {
  margin: 0;
  color: var(--ef-silver);
  font-size: 0.98rem;
  line-height: 1.7;
}

.cycle-step__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 2rem;
}

.cycle-step__dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(166, 181, 202, 0.28);
}

.cycle-step__dots i.is-active {
  width: 1.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ef-cyan), var(--ef-green));
  box-shadow: 0 0 1.2rem rgba(0, 209, 255, 0.35);
}

.cycle-connector {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  width: calc(100% + clamp(3rem, 5vw, 5rem));
  margin-inline: calc(clamp(1.5rem, 2.5vw, 2.5rem) * -1);
  color: var(--ef-cyan);
  pointer-events: none;
}

.cycle-connector svg {
  display: block;
  overflow: visible;
}

.cycle-connector circle {
  fill: currentColor;
}

.cycle-connector__trail,
.cycle-connector__arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.cycle-connector__trail {
  stroke-dasharray: 12 12;
}

.cycle-connector__arrow {
  stroke: var(--ef-green);
  stroke-linejoin: round;
}

/* Iron Cycle reveal sequence: three steps first, then the two connectors. */
.js .cycle-timeline .cycle-step.reveal {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0) scale(0.985);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .cycle-timeline .cycle-step:nth-child(1) {
  transition-delay: 0.04s;
}

.js .cycle-timeline .cycle-step:nth-child(3) {
  transition-delay: 0.18s;
}

.js .cycle-timeline .cycle-step:nth-child(5) {
  transition-delay: 0.32s;
}

.js .cycle-timeline .cycle-step.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .cycle-timeline .cycle-connector.reveal {
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition: opacity 0.5s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .cycle-timeline .cycle-connector:nth-child(2) {
  transition-delay: 0.48s;
}

.js .cycle-timeline .cycle-connector:nth-child(4) {
  transition-delay: 0.62s;
}

.js .cycle-timeline .cycle-connector.reveal.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1000px) {
  .cycle__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
  }
  .cycle-timeline {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: clamp(1rem, 4vw, 1.5rem);
    max-width: 46rem;
    margin-inline: auto;
    padding-inline: 0;
  }
  .cycle-step {
    min-height: 16rem;
  }
  .cycle-connector {
    display: none;
  }
}
@media (max-width: 640px) {
  .cycle {
    --section-space: 3rem;
  }
  .cycle__intro h2 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .cycle__header .cycle__cta {
    width: 100%;
  }
  .cycle-step {
    min-height: 0;
    padding: 1.5rem;
  }
  .cycle-step__number {
    margin-bottom: 2rem;
  }
  .cycle-step__dots {
    padding-top: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .cycle-timeline .cycle-step.reveal,
  .js .cycle-timeline .cycle-step.reveal.is-visible,
  .js .cycle-timeline .cycle-connector.reveal,
  .js .cycle-timeline .cycle-connector.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Compact screens: preserve the artwork and type hierarchy without a horizontal canvas. */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
    line-height: 1;
  }
  .manifesto__statement {
    font-size: clamp(1.75rem, 8.4vw, 2.35rem);
    line-height: 1.06;
  }
  .manifesto__statement span,
  .manifesto__statement em {
    width: auto;
    white-space: normal;
  }
  .manifesto__visual {
    width: min(100%, 32rem);
    height: clamp(22rem, 92vw, 28rem);
    overflow: hidden;
  }
  .manifesto__phone {
    max-width: 72%;
  }
  .manifesto__market-card {
    left: 1%;
    width: min(43%, 13.5rem);
  }
  .manifesto__risk {
    right: 0;
    width: min(46%, 15rem);
  }
  .cycle__intro h2,
  #strategie-strumenti .cycle__intro h2 {
    max-width: 15ch;
    font-size: clamp(2.15rem, 10vw, 3.15rem);
    line-height: 1.14;
  }
}
/* Phones wider than 350px have room for the compact desktop-style CTAs. */
@media (min-width: 351px) and (max-width: 640px) {
  .manifesto__cta,
  .book__copy .button,
  .cycle__header .cycle__cta {
    width: auto;
  }
  .cycle__header .cycle__cta {
    justify-self: start;
  }
  #strategie-strumenti .cycle__intro h2 {
    max-width: 19ch;
    font-size: clamp(2rem, 6vw, 2.5rem);
    line-height: 0.98;
  }
}
/* Tablet: show two readable ecosystem cards before the desktop three-card layout. */
@media (min-width: 768px) and (max-width: 1023px) {
  .cycle-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: none;
  }
  .cycle-step {
    min-height: 20rem;
  }
  .cycle-connector {
    display: none;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .manifesto__visual {
    margin-top: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  .manifesto__phone {
    left: 50%;
  }
  .manifesto__market-card {
    left: 7%;
    width: min(40%, 13.5rem);
  }
}
.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(38rem, 82svh, 55rem);
  margin: 1rem;
  overflow: hidden;
  border: 0;
  border-radius: 2rem;
  background-color: #040b14;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.5) 0%, transparent 5%, transparent 95%, rgba(4, 11, 20, 0.52) 100%), linear-gradient(90deg, rgba(4, 11, 20, 0.9) 0%, rgba(4, 11, 20, 0.78) 24%, rgba(4, 11, 20, 0.52) 40%, rgba(4, 11, 20, 0.22) 54%, rgba(4, 11, 20, 0.05) 66%, transparent 76%);
}

.page-hero::after {
  display: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.page-hero__inner h1 {
  max-width: 13ch;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
}

.page-hero__inner p {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}
@media (min-width: 768px) and (max-width: 1100px) {
  .page-hero__inner p {
    max-width: 30rem !important;
  }
}

.breadcrumb {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #748299;
  font: 700 0.68rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(176, 184, 196, 0.38);
}

.breadcrumb a {
  color: #b0b8c4;
  text-decoration: none;
  transition: color 180ms ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #59ddff;
}

.breadcrumb [aria-current=page] {
  color: #59ddff;
}

.page-hero--method {
  background-image: url("../images/services/process-start.jpg");
  background-position: center 42%;
}

.page-hero--services {
  background-image: url("../images/services/process-compare.jpg");
  background-position: center 45%;
}

.page-hero--book {
  background-image: url("../images/one-to-one-trading-workshop.jpg");
  background-position: center 48%;
}

.page-hero--book::before {
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.54) 0%, transparent 5%, transparent 95%, rgba(4, 11, 20, 0.56) 100%), linear-gradient(90deg, rgba(4, 11, 20, 0.92) 0%, rgba(4, 11, 20, 0.82) 25%, rgba(4, 11, 20, 0.56) 41%, rgba(4, 11, 20, 0.24) 55%, rgba(4, 11, 20, 0.06) 67%, transparent 77%);
}

.page-hero--contact {
  min-height: clamp(34rem, 68svh, 46rem);
  background-image: url("../images/private.webp");
  background-position: center 44%;
}

.editorial-block {
  background: #040b14;
}

.editorial-block--reverse {
  background: #06101d;
}

.editorial-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.editorial-block--reverse .editorial-block__copy {
  order: 2;
}

.editorial-block__copy h2 {
  margin: 1rem 0 1.5rem;
}

.editorial-block__copy p {
  max-width: 39rem;
}

.editorial-block__copy .button {
  margin-top: 1.5rem;
}

.editorial-block__asset {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.5rem;
  background: radial-gradient(circle at center, rgba(0, 209, 255, 0.11), transparent 46%), #101316;
}

.editorial-block__asset > img:first-child {
  position: relative;
  z-index: 1;
  width: min(88%, 42rem);
}

.editorial-block__asset--phone {
  overflow: visible;
}

.editorial-block__asset--phone > img:first-child {
  width: min(48%, 19rem);
}

.editorial-block__asset .floating-panel {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 12%;
  width: min(48%, 18rem);
  border-radius: 1rem;
  box-shadow: 0 25px 55px rgba(4, 11, 20, 0.6);
}

.editorial-block__asset--book {
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.editorial-block__asset--book > img:first-child {
  width: min(86%, 34rem);
  height: auto;
  max-height: 42rem;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38));
}

.emblem-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34rem;
}

.emblem-stage::before,
.emblem-stage::after {
  content: "";
  position: absolute;
  width: min(72%, 30rem);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 209, 255, 0.2);
  border-radius: 50%;
}

.emblem-stage::after {
  width: min(48%, 20rem);
  border-style: dashed;
}

.emblem-stage img {
  position: relative;
  z-index: 1;
  width: min(45%, 18rem);
  filter: drop-shadow(0 0 32px rgba(0, 209, 255, 0.18));
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 184, 196, 0.15);
  border-radius: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #b0b8c4;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #00d1ff;
}

/* Method-page diagrams reuse the editorial split instead of introducing a new section language. */
.method-confluence {
  grid-template-columns: minmax(12rem, 0.9fr) auto;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 4rem);
  background: radial-gradient(circle at 72% 50%, rgba(0, 209, 255, 0.13), transparent 34%), #07101b;
}

.method-confluence__inputs {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

.method-confluence__inputs div {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid #00d1ff;
  background: linear-gradient(90deg, rgba(0, 209, 255, 0.09), transparent);
}

.method-confluence__inputs div::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: clamp(2rem, 5vw, 4.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(89, 221, 255, 0.7), transparent);
}

.method-confluence__inputs span {
  color: #59ddff;
  font: 700 0.55rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.method-confluence__inputs strong {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.method-confluence__core {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(11rem, 17vw, 15rem);
  aspect-ratio: 1;
  padding: 1.5rem;
  border: 1px solid rgba(89, 221, 255, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.14), rgba(7, 21, 39, 0.72) 62%);
  box-shadow: 0 0 0 1.25rem rgba(0, 209, 255, 0.025), 0 0 65px rgba(0, 209, 255, 0.1);
  text-align: center;
}

.method-confluence__core::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(166, 255, 61, 0.28);
  border-radius: 50%;
}

.method-confluence__core span,
.method-confluence__core strong {
  position: relative;
  z-index: 1;
  display: block;
}

.method-confluence__core span {
  color: #59ddff;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-confluence__core strong {
  max-width: 8ch;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.method-volume {
  align-content: center;
  padding: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(7, 21, 39, 0.1), rgba(7, 21, 39, 0.72)), repeating-linear-gradient(0deg, transparent 0, transparent calc(25% - 1px), rgba(176, 184, 196, 0.09) 25%);
}

.method-volume__chart {
  display: flex;
  align-items: end;
  gap: clamp(0.45rem, 1.1vw, 0.9rem);
  width: min(88%, 38rem);
  height: 18rem;
}

.method-volume__chart span {
  flex: 1;
  height: var(--bar);
  min-width: 0.55rem;
  border-radius: 0.2rem 0.2rem 0 0;
  background: linear-gradient(180deg, #59ddff, rgba(0, 209, 255, 0.18));
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.08);
}

.method-volume__chart span:nth-child(3n+2) {
  background: linear-gradient(180deg, #a6ff3d, rgba(166, 255, 61, 0.16));
}

.method-volume__line {
  position: absolute;
  top: 42%;
  left: 9%;
  width: 82%;
  height: 22%;
  border-top: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
}

.method-volume__legend {
  display: flex;
  justify-content: space-between;
  width: min(88%, 38rem);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
  color: #748299;
  font: 700 0.55rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.framework,
.pathways {
  background: #06101d;
}

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

.feature-card,
.pathway-card {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.35rem;
  background: #071527;
}

.feature-card > span,
.pathway-card > span {
  color: #59ddff;
  font: 700 0.65rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-card p {
  margin: 0;
}

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

.pathway-card {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pathway-card h2 {
  margin: 3rem 0 1rem;
}

.pathway-card p {
  max-width: 30rem;
}

.pathway-card .button {
  margin-top: auto;
}

.pathway-card--featured {
  background: linear-gradient(145deg, rgba(0, 209, 255, 0.1), transparent 55%), #0a1e3a;
  border-color: rgba(0, 209, 255, 0.28);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(0, 209, 255, 0.2);
  border-radius: 1.5rem;
  background: #0a1e3a;
}

.contact-band h2 {
  margin: 1rem 0;
}

.contact-band p {
  max-width: 38rem;
  margin: 0;
}

/* Services: three client-defined offers followed by a short selection guide. */
.services-overview {
  background: #06101d;
}

.services-overview__heading {
  max-width: 54rem;
}

.services-overview__heading .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.service-offer {
  position: relative;
  display: flex;
  min-height: 43rem;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(155deg, rgba(10, 30, 58, 0.55), rgba(7, 21, 39, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00d1ff, transparent 72%);
  opacity: 0.5;
}

.service-offer--featured {
  border-color: rgba(0, 209, 255, 0.36);
  background: radial-gradient(circle at 88% 5%, rgba(0, 209, 255, 0.14), transparent 30%), linear-gradient(155deg, #0a1e3a, #071527 72%);
}

.service-offer--featured::before {
  height: 3px;
  background: linear-gradient(90deg, #00d1ff, #a6ff3d);
}

.service-offer__header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  color: #59ddff;
  font: 700 0.62rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-offer__number {
  display: grid;
  place-items: center;
  width: 2.3rem;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 221, 255, 0.25);
  border-radius: 50%;
}

.service-offer h3 {
  margin: clamp(2rem, 3vw, 3rem) 0 1rem;
  font-size: clamp(2.25rem, 3.6vw, 4rem);
}

.service-offer__lead {
  min-height: 7.5rem;
  margin: 0;
}

.service-offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}

.service-offer__meta span {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(176, 184, 196, 0.18);
  border-radius: 999px;
  color: #b0b8c4;
  font: 700 0.56rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-offer__body {
  width: 100%;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
}

.service-offer__caption {
  color: #748299;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-offer__list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.service-offer__list li {
  position: relative;
  padding-left: 1.2rem;
  color: #b0b8c4;
  font-size: 0.86rem;
  line-height: 1.6;
}

.service-offer__list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #00d1ff;
}

.service-offer .button {
  width: 100%;
  margin-top: auto;
}

.services-overview__note {
  max-width: 58rem;
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(89, 221, 255, 0.48);
  color: #748299;
  font-size: 0.75rem;
  line-height: 1.7;
}

.service-process {
  overflow: hidden;
  background: #040b14;
  padding-top: clamp(4.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(2.5rem, 3.5vw, 4rem);
}

.service-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
}

.service-process__heading {
  max-width: 52rem;
}

.service-process__heading .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.service-process__heading h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.service-process__heading p {
  max-width: 43rem;
  margin: 0;
}

.service-process__head > .button {
  margin-bottom: 0.35rem;
}

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  margin: clamp(2.25rem, 3.4vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.service-process__step {
  display: grid;
  grid-template-columns: clamp(5.4rem, 6.3vw, 6.8rem) minmax(0, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
  align-items: center;
}

.service-process__step--2 {
  margin-top: 5.5rem;
}

.service-process__step--3 {
  margin-top: 11rem;
}

.service-process__step--4 {
  margin-top: 16.5rem;
}

.service-process__visual {
  position: relative;
  height: clamp(15rem, 19vw, 19rem);
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #071527;
}

.service-process__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 20, 0.06), rgba(4, 11, 20, 0.38));
  pointer-events: none;
}

.service-process__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}

.service-process__step:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.04);
}

.service-process__visual span {
  position: absolute;
  z-index: 1;
  top: 1.15rem;
  left: 50%;
  display: grid;
  width: 3.75rem;
  aspect-ratio: 1;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(89, 221, 255, 0.42);
  border-radius: 50%;
  background: #071527;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  font: 700 1.1rem/1 "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}

.service-process__copy {
  min-width: 0;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(176, 184, 196, 0.18);
}

.service-process__copy h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.12;
}

.service-process__copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.service-process + .section--cta {
  padding-top: clamp(2.5rem, 3.5vw, 4rem);
}

/* 1 TO 1 page: inclusions, configurable conditions and entitlement flow. */
.one-to-one-inclusions {
  background: #06101d;
}

.one-to-one-inclusions .section-heading .eyebrow,
.framework .section-heading .eyebrow,
.one-to-one-access .section-heading .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.one-to-one-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.one-to-one-inclusion {
  position: relative;
  min-height: 18rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.35rem;
  background: linear-gradient(150deg, rgba(10, 30, 58, 0.62), rgba(7, 21, 39, 0.74));
}

.one-to-one-inclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 42%;
  background: linear-gradient(#00d1ff, #a6ff3d);
}

.one-to-one-inclusion > span {
  color: #59ddff;
  font: 700 0.65rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
}

.one-to-one-inclusion h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.one-to-one-inclusion p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.one-to-one-inclusions__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.one-to-one-inclusions__heading {
  max-width: 36rem;
}

.one-to-one-inclusions__heading h2 {
  margin: 1rem 0 1.4rem;
}

.one-to-one-entitlement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  min-height: 32rem;
}

.one-to-one-entitlement::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 30%;
  width: 1px;
  background: linear-gradient(transparent, rgba(0, 209, 255, 0.5) 18%, rgba(166, 255, 61, 0.38) 82%, transparent);
}

.one-to-one-entitlement__core {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(10rem, 16vw, 14rem);
  aspect-ratio: 1;
  place-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(0, 209, 255, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, rgba(0, 209, 255, 0.18), transparent 38%), #0a1e3a;
  box-shadow: 0 0 0 1rem rgba(0, 209, 255, 0.025), 0 28px 70px rgba(0, 0, 0, 0.26);
  text-align: center;
}

.one-to-one-entitlement__core::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px dashed rgba(176, 184, 196, 0.2);
  border-radius: 50%;
}

.one-to-one-entitlement__core span,
.one-to-one-entitlement__core strong,
.one-to-one-entitlement__core small {
  position: relative;
  z-index: 1;
}

.one-to-one-entitlement__core span {
  color: #59ddff;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.16em;
}

.one-to-one-entitlement__core strong {
  margin: 0.35rem 0;
  color: #fff;
  font: 700 clamp(1.8rem, 3vw, 2.8rem)/1 "Poppins", sans-serif;
}

.one-to-one-entitlement__core small {
  color: #b0b8c4;
  font: 0.72rem/1.5 "Lora", serif;
}

.one-to-one-entitlement__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.one-to-one-entitlement__list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0 1.15rem 2.5rem;
  border-bottom: 1px solid rgba(176, 184, 196, 0.14);
}

.one-to-one-entitlement__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(166, 255, 61, 0.8), rgba(166, 255, 61, 0.16));
}

.one-to-one-entitlement__list li > span {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 50%;
  color: #59ddff;
  font: 700 0.62rem/1 "JetBrains Mono", monospace;
}

.one-to-one-entitlement__list h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.one-to-one-entitlement__list p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.one-to-one-entitlement__list em {
  color: #b0b8c4;
}

.one-to-one-inclusions {
  padding-bottom: clamp(2rem, 3vw, 3.5rem);
}

.one-to-one-inclusions + .framework {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.one-to-one-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  list-style: none;
}

.one-to-one-journey::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #00d1ff, rgba(0, 209, 255, 0.28) 52%, #a6ff3d);
}

.one-to-one-journey li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-top: 0;
  background: transparent;
}

.one-to-one-journey li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(0, 209, 255, 0.42);
  border-radius: 50%;
  background: #06101d;
  color: #fff;
  font: 700 0.8rem/1 "JetBrains Mono", monospace;
  box-shadow: 0 0 0 0.65rem #06101d;
}

.one-to-one-journey li:last-child > span {
  border-color: rgba(166, 255, 61, 0.45);
}

.one-to-one-journey li > div {
  padding-top: 5.5rem;
  margin-left: -5.5rem;
}

.one-to-one-journey small {
  display: block;
  margin-bottom: 0.7rem;
  color: #59ddff;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.one-to-one-journey h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.one-to-one-journey p {
  max-width: 28rem;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.one-to-one-conditions {
  background: #040b14;
}

.one-to-one-conditions__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.one-to-one-conditions__copy h2 {
  margin: 1rem 0 1.5rem;
}

.one-to-one-conditions__copy p {
  max-width: 38rem;
}

.one-to-one-conditions__list {
  margin: 0;
  border-top: 1px solid rgba(176, 184, 196, 0.16);
}

.one-to-one-conditions__list > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.65fr) 1.35fr;
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(176, 184, 196, 0.16);
}

.one-to-one-conditions__list dt {
  color: #59ddff;
  font: 700 0.62rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.one-to-one-conditions__list dd {
  margin: 0;
  color: #b0b8c4;
  font-size: 0.88rem;
  line-height: 1.6;
}

.one-to-one-conditions {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: radial-gradient(circle at 84% 45%, rgba(0, 209, 255, 0.07), transparent 28%), #040b14;
}

.one-to-one-conditions__grid {
  align-items: center;
}

.one-to-one-conditions__promise {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
}

.one-to-one-conditions__promise > span {
  width: 0.7rem;
  aspect-ratio: 1;
  border: 2px solid #040b14;
  border-radius: 50%;
  background: #a6ff3d;
  box-shadow: 0 0 0 0.35rem rgba(166, 255, 61, 0.12), 0 0 22px rgba(166, 255, 61, 0.18);
}

.one-to-one-conditions__promise div {
  display: grid;
  gap: 0.2rem;
}

.one-to-one-conditions__promise strong {
  color: #fff;
  font-size: 0.9rem;
}

.one-to-one-conditions__promise small {
  color: #748299;
  font: 0.66rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

.one-to-one-confirmation {
  overflow: hidden;
  border: 1px solid rgba(0, 209, 255, 0.25);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(10, 30, 58, 0.82), rgba(7, 21, 39, 0.92));
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.one-to-one-confirmation__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid rgba(176, 184, 196, 0.15);
  background: rgba(0, 209, 255, 0.045);
}

.one-to-one-confirmation__head > div {
  display: grid;
  gap: 0.25rem;
}

.one-to-one-confirmation__head span {
  color: #59ddff;
  font: 700 0.56rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.one-to-one-confirmation__head strong {
  color: #fff;
  font-size: 1.05rem;
}

.one-to-one-confirmation__head small {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #b0b8c4;
  font: 0.58rem/1.4 "JetBrains Mono", monospace;
  text-transform: uppercase;
}

.one-to-one-confirmation__head i {
  display: block;
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #a6ff3d;
  box-shadow: 0 0 12px rgba(166, 255, 61, 0.45);
}

.one-to-one-confirmation__rows {
  margin: 0;
  padding: 0 1.6rem;
}

.one-to-one-confirmation__rows > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.72fr) 1.28fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(176, 184, 196, 0.12);
}

.one-to-one-confirmation__rows dt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font: 600 0.78rem/1.4 "Poppins", sans-serif;
}

.one-to-one-confirmation__rows dt span {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(0, 209, 255, 0.28);
  border-radius: 50%;
  color: #59ddff;
  font: 700 0.52rem/1 "JetBrains Mono", monospace;
}

.one-to-one-confirmation__rows dd {
  margin: 0;
  color: #b0b8c4;
  font: 0.8rem/1.55 "Lora", serif;
}

.one-to-one-confirmation__foot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  color: #b0b8c4;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.one-to-one-confirmation__foot span {
  display: grid;
  width: 1.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(166, 255, 61, 0.12);
  color: #a6ff3d;
  font: 700 0.8rem/1 "Poppins", sans-serif;
}

.one-to-one-access {
  background: #06101d;
}

.one-to-one-access__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.5rem;
  background: #071527;
}

.one-to-one-access__flow li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.one-to-one-access__flow li + li {
  border-left: 1px solid rgba(176, 184, 196, 0.16);
}

.one-to-one-access__flow li > span {
  color: #59ddff;
  font: 700 0.65rem/1.4 "JetBrains Mono", monospace;
}

.one-to-one-access__flow h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.one-to-one-access__flow p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.contact-section {
  background: #040b14;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.contact-section__aside {
  position: sticky;
  top: 8rem;
}

.contact-section__aside .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.contact-section__aside h2 {
  margin: 0 0 1.5rem;
}

.contact-section__aside p {
  max-width: 34rem;
}

.contact-section__aside .text-link {
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.4rem, 2.6vw, 2.35rem);
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(10, 30, 58, 0.7), rgba(7, 21, 39, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.contact-form__intro {
  margin-bottom: 0.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(176, 184, 196, 0.13);
}

.contact-form__intro h3 {
  margin: 0.7rem 0 0.65rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.contact-form__intro p {
  max-width: 38rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: #b0b8c4;
  font-size: 0.78rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(176, 184, 196, 0.2);
  border-radius: 0.75rem;
  background: #040b14;
  color: #fff;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00d1ff;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.09);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 1.5rem;
}

.form-note {
  margin: 0;
  color: #748299;
  font-size: 0.7rem;
}

.field-error {
  display: block;
  color: #ff7f87;
  font-size: 0.68rem;
  line-height: 1.45;
}

.contact-form [aria-invalid=true] {
  border-color: #ff6b74;
  box-shadow: 0 0 0 3px rgba(255, 107, 116, 0.1);
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status--success {
  border-color: rgba(166, 255, 61, 0.35);
  background: rgba(166, 255, 61, 0.08);
  color: #d9ffac;
}

.form-status--error {
  border-color: rgba(255, 107, 116, 0.35);
  background: rgba(255, 107, 116, 0.08);
  color: #ffb8bd;
}

.contact-location {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  min-height: 34rem;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.contact-location__details {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(7, 21, 39, 0.84), rgba(4, 11, 20, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
}

.contact-location__details h2 {
  margin: 1rem 0 1.25rem;
}

.contact-location__details > p {
  max-width: 34rem;
}

.contact-directory {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  font-style: normal;
}

.contact-directory > a,
.contact-directory > div {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(176, 184, 196, 0.12);
  color: #fff;
}

.contact-directory svg {
  width: 1.35rem;
  height: 1.35rem;
  justify-self: center;
  color: #59ddff;
}

.contact-directory span {
  display: grid;
  gap: 0.1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-directory small {
  color: #748299;
  font: 700 0.58rem/1.4 "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-directory a {
  transition: color 180ms ease;
}

.contact-directory a:hover {
  color: #59ddff;
}

.contact-location__map {
  position: relative;
  z-index: 1;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(176, 184, 196, 0.16);
  border-radius: 1.75rem;
  background: #071527;
}

.contact-location__map .leaflet-tile-pane {
  filter: saturate(0.35) brightness(0.58) hue-rotate(160deg);
}

.contact-location__map .leaflet-control-attribution {
  background: rgba(4, 11, 20, 0.78);
  color: #748299;
}

.contact-location__map .leaflet-control-attribution a {
  color: #59ddff;
}

.contact-map-marker {
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #00d1ff;
  box-shadow: 0 0 0 0.45rem rgba(0, 209, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  color: #fff;
  background: #071527;
}

.leaflet-popup-content {
  font-family: "Poppins", sans-serif;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 36rem;
  }
  .editorial-block__grid,
  .contact-section__grid,
  .contact-location {
    grid-template-columns: 1fr;
  }
  .editorial-block--reverse .editorial-block__copy {
    order: initial;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
  }
  .service-offer-grid {
    grid-template-columns: 1fr;
  }
  .service-offer {
    min-height: 0;
  }
  .service-offer__lead {
    min-height: 0;
  }
  .service-guidance__inner,
  .one-to-one-conditions__grid {
    grid-template-columns: 1fr;
  }
  .one-to-one-inclusion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .one-to-one-access__flow {
    grid-template-columns: 1fr;
  }
  .one-to-one-access__flow li {
    min-height: 0;
  }
  .one-to-one-access__flow li + li {
    border-top: 1px solid rgba(176, 184, 196, 0.16);
    border-left: 0;
  }
  .contact-section__aside {
    position: static;
  }
  .contact-band__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-location__map {
    min-height: 27rem;
  }
}
@media (max-width: 640px) {
  .page-hero {
    min-height: clamp(34rem, 72svh, 40rem);
    margin: 0.65rem;
    border-radius: 1.4rem;
  }
  .page-hero::before {
    background: linear-gradient(0deg, rgba(4, 11, 20, 0.98) 0%, rgba(4, 11, 20, 0.9) 30%, rgba(4, 11, 20, 0.68) 52%, rgba(4, 11, 20, 0.32) 74%, rgba(4, 11, 20, 0.08) 100%);
  }
  .page-hero__inner {
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }
  .page-hero__inner h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }
  .breadcrumb {
    margin-bottom: 1.25rem;
  }
  .breadcrumb li {
    font-size: 0.6rem;
  }
  .editorial-block__asset {
    min-height: 24rem;
  }
  .feature-card h3 {
    margin-top: 2.5rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem 1.2rem;
  }
  .contact-location {
    margin-top: 3rem;
    border-radius: 1.25rem;
  }
  .contact-location__details {
    padding: 1.5rem;
  }
  .contact-location__map {
    min-height: 22rem;
  }
  .contact-band__inner {
    padding: 1.5rem;
  }
  .contact-band .button {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .method-confluence {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .method-confluence__inputs div::after {
    display: none;
  }
  .method-confluence__core {
    width: 11rem;
    justify-self: center;
  }
  .method-volume__chart {
    height: 14rem;
  }
  .method-volume__legend {
    gap: 0.75rem;
    font-size: 0.48rem;
  }
}
@media (max-width: 640px) {
  .one-to-one-inclusion-grid {
    grid-template-columns: 1fr;
  }
  .one-to-one-inclusion {
    min-height: 0;
  }
  .one-to-one-conditions__list > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
@media (max-width: 640px) {
  .one-to-one-confirmation__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .one-to-one-confirmation__rows > div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .one-to-one-confirmation__rows dd {
    padding-left: 2.75rem;
  }
}
/* The desktop image column has a 32rem minimum; switch before it crowds the
   copy and the three-step sequence on tablet-sized screens. */
@media (max-width: 1023px) {
  .one-to-one-inclusions__layout {
    grid-template-columns: 1fr;
  }
  .one-to-one-inclusions__heading {
    max-width: 48rem;
  }
  .one-to-one-entitlement {
    grid-template-columns: minmax(9rem, 0.5fr) minmax(0, 1.5fr);
  }
  .one-to-one-journey {
    gap: 2rem;
  }
  .one-to-one-journey li {
    grid-template-columns: 3.5rem 1fr;
  }
  .one-to-one-journey li > span {
    width: 3.5rem;
  }
  .one-to-one-journey li > div {
    margin-left: -4.75rem;
    padding-top: 5rem;
  }
}
@media (max-width: 640px) {
  .one-to-one-entitlement {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
  }
  .one-to-one-entitlement::before {
    display: none;
  }
  .one-to-one-entitlement__core {
    justify-self: center;
    width: 11rem;
  }
  .one-to-one-entitlement__list li {
    padding-left: 0;
  }
  .one-to-one-entitlement__list li::before {
    display: none;
  }
  .one-to-one-journey {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }
  .one-to-one-journey::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 1.75rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #00d1ff, rgba(0, 209, 255, 0.28) 52%, #a6ff3d);
  }
  .one-to-one-journey li {
    grid-template-columns: 3.5rem 1fr;
    gap: 1.25rem;
    padding-bottom: 2.75rem;
  }
  .one-to-one-journey li > span {
    box-shadow: 0 0 0 0.5rem #06101d;
  }
  .one-to-one-journey li > div {
    margin-left: 0;
    padding-top: 0.25rem;
  }
  .one-to-one-journey li:last-child {
    padding-bottom: 0;
  }
}
/* The process deliberately changes composition at each usable width: staggered
   sequence on desktop, a balanced 2 x 2 grid on tablet, then a readable
   editorial stack on narrow screens. */
@media (min-width: 1024px) {
  .service-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3.25rem, 7vw, 5rem) clamp(1.75rem, 4vw, 3rem);
  }
  .service-process__step,
  .service-process__step--2,
  .service-process__step--3,
  .service-process__step--4 {
    margin-top: 0;
  }
  .service-process__step {
    grid-template-columns: clamp(5.8rem, 13vw, 7.25rem) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
  }
  .service-process__visual {
    height: clamp(15.5rem, 35vw, 18.5rem);
  }
}
@media (min-width: 521px) and (max-width: 767px) {
  .service-process__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
  }
  .service-process__head > .button {
    justify-self: start;
  }
  .service-process__steps {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 10vw, 4.5rem);
  }
  .service-process__step,
  .service-process__step--2,
  .service-process__step--3,
  .service-process__step--4 {
    margin-top: 0;
  }
  .service-process__step {
    grid-template-columns: clamp(6.25rem, 22vw, 7.75rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 1.75rem);
    align-items: center;
  }
  .service-process__visual {
    height: clamp(14rem, 49vw, 17rem);
  }
  .service-process__copy {
    padding: 0 0 1.25rem;
  }
  .service-process__heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }
}
@media (max-width: 520px) {
  .service-process__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.75rem;
  }
  .service-process__head > .button {
    justify-self: start;
  }
  .service-process__steps {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    margin-top: 3rem;
  }
  .service-process__step,
  .service-process__step--2,
  .service-process__step--3,
  .service-process__step--4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
  }
  .service-process__step {
    align-items: start;
  }
  .service-process__visual {
    justify-self: center;
    width: clamp(5.5rem, 28vw, 6.75rem);
    height: clamp(11.5rem, 58vw, 14.5rem);
  }
  .service-process__visual span {
    top: 0.9rem;
    width: 3.25rem;
    font-size: 0.9rem;
  }
  .service-process__copy {
    padding: 0 0 1.5rem;
  }
  .service-process__copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }
  .service-process__copy p {
    font-size: 0.85rem;
  }
}
/* Compact contact panel with all direct-contact methods on one row. */
.contact-location__details {
  padding: clamp(1.75rem, 2.6vw, 2.75rem);
}

.contact-directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 184, 196, 0.12);
}

.contact-directory > a,
.contact-directory > div {
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 0.75rem 0;
  border-top: 0;
}

.contact-directory svg {
  justify-self: start;
  width: 1.15rem;
  height: 1.15rem;
}

.contact-directory span {
  min-width: 0;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .contact-directory {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .contact-directory > a,
  .contact-directory > div {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(176, 184, 196, 0.1);
  }
  .contact-directory > div:last-child {
    border-bottom: 0;
  }
}
/* Compact split contact cards and keep the Leaflet tiles unfiltered. */
.contact-location {
  min-height: 0;
  align-items: stretch;
}

.contact-location__details {
  padding: clamp(1.6rem, 2.25vw, 2.4rem);
}

.contact-location__map {
  min-height: 27rem;
}

.contact-location__map .leaflet-tile-pane {
  filter: none;
}

.contact-directory {
  gap: 0;
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
}

.contact-directory > a,
.contact-directory > div {
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
}

.contact-directory > a:first-child {
  padding-left: 0;
}

.contact-directory > a + *,
.contact-directory > div {
  border-left: 1px solid rgba(176, 184, 196, 0.16);
}

@media (max-width: 900px) {
  .contact-location__map {
    min-height: 24rem;
  }
}
@media (max-width: 640px) {
  .contact-directory {
    gap: 0;
  }
  .contact-directory > a,
  .contact-directory > div {
    padding: 0.8rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(176, 184, 196, 0.1);
  }
  .contact-location__map {
    min-height: 21rem;
  }
}
/* Contact page rhythm: balanced breathing room around the location cards. */
.contact-section {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.contact-location {
  margin-top: clamp(5rem, 8vw, 8rem);
}

@media (max-width: 900px) {
  .contact-location {
    margin-top: 4.5rem;
  }
}
@media (max-width: 640px) {
  .contact-location {
    margin-top: 3.5rem;
  }
}
/* Contact details card */
.contact-location__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(7, 13, 21, 0.74);
}

.contact-location__details h2 {
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-directory > a,
.contact-directory > div {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  border: 0;
  color: #fff;
}

.contact-directory > a:first-child {
  padding-left: 0;
}

.contact-directory > a + *,
.contact-directory > div {
  border-left: 0;
}

.contact-directory__icon {
  display: grid !important;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(176, 184, 196, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.contact-directory__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  color: inherit;
}

.contact-directory strong {
  min-width: 0;
  color: #fff;
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-style: normal;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-directory a:hover .contact-directory__icon {
  border-color: rgba(89, 221, 255, 0.52);
  background: rgba(0, 209, 255, 0.1);
  color: #59ddff;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 184, 196, 0.14);
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(176, 184, 196, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-socials a:hover {
  transform: translateY(-3px);
  border-color: #59ddff;
  background: rgba(0, 209, 255, 0.1);
  color: #59ddff;
}

.contact-socials svg {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 640px) {
  .contact-location__details {
    padding: 1.5rem;
  }
  .contact-directory > a,
  .contact-directory > div {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0;
    border: 0;
  }
  .contact-directory__icon,
  .contact-socials a {
    width: 3rem;
    height: 3rem;
  }
}
/* Final contact-card proportions: compact 40/60 layout matching the reference. */
.contact-location {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  height: clamp(23rem, 25vw, 26rem);
  min-height: 0;
  align-items: stretch;
}

.contact-location__details {
  min-height: 0;
  padding: clamp(1.5rem, 2.25vw, 2.25rem);
  justify-content: flex-start;
}

.contact-location__details h2 {
  margin: 0 0 clamp(1rem, 1.5vw, 1.4rem);
  font-size: clamp(1.65rem, 2vw, 2.1rem) !important;
  line-height: 1.08;
}

.contact-directory {
  gap: clamp(0.65rem, 1vw, 0.9rem);
}

.contact-directory > a,
.contact-directory > div {
  grid-template-columns: 2.85rem minmax(0, 1fr);
  gap: 0.8rem;
}

.contact-directory__icon,
.contact-socials a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  line-height: 0;
}

.contact-directory__icon svg,
.contact-socials svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: auto;
}

.contact-socials {
  margin-top: clamp(1rem, 1.5vw, 1.4rem);
  padding-top: 1rem;
}

.contact-location__map {
  height: 100%;
  min-height: 0;
}

@media (max-width: 900px) {
  .contact-location {
    grid-template-columns: 1fr;
    height: auto;
  }
  .contact-location__details {
    min-height: 23rem;
  }
  .contact-location__map {
    height: 22rem;
    min-height: 22rem;
  }
}
@media (max-width: 640px) {
  .contact-location__details {
    min-height: 0;
    padding: 1.5rem;
  }
  .contact-location__map {
    height: 19rem;
    min-height: 19rem;
  }
}
/* Method overview: one connected process, with the product visual left unboxed. */
.method-overview {
  position: relative;
  overflow: hidden;
}

.method-overview::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -10rem;
  width: 34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 209, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(0, 209, 255, 0.018), 0 0 0 12rem rgba(0, 209, 255, 0.012);
  pointer-events: none;
}

.method-overview__grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(32rem, 1.14fr);
  gap: clamp(3rem, 6vw, 7rem);
}

.method-overview__copy {
  position: relative;
  z-index: 2;
}

@media (min-width: 641px) {
  .method-overview__copy h2 {
    white-space: nowrap;
  }
}
.method-overview__copy > p {
  max-width: 37rem;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.method-overview__sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(176, 184, 196, 0.16);
}

.method-overview__sequence li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  min-width: 0;
  padding-right: clamp(0.65rem, 1.5vw, 1.35rem);
}

.method-overview__sequence li + li {
  padding-left: clamp(0.65rem, 1.5vw, 1.35rem);
  border-left: 1px solid rgba(176, 184, 196, 0.14);
}

.method-overview__sequence span {
  color: var(--ef-green);
  font: 700 0.58rem/1.5 "JetBrains Mono", monospace;
}

.method-overview__sequence div {
  display: grid;
  gap: 0.15rem;
}

.method-overview__sequence strong {
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.35;
}

.method-overview__sequence small {
  color: #748299;
  font-size: 0.62rem;
  line-height: 1.45;
}

.method-overview__asset {
  isolation: isolate;
  min-height: clamp(26rem, 35vw, 30rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.method-overview__asset::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 3% 8%;
  background: radial-gradient(ellipse at center, rgba(0, 209, 255, 0.13), rgba(10, 30, 58, 0.045) 48%, transparent 72%);
  filter: blur(5px);
}

.method-overview__asset > img:first-of-type {
  width: min(80%, 45rem);
  max-width: 100%;
  height: auto;
  aspect-ratio: 600/388;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2.5rem 2.5rem rgba(0, 0, 0, 0.42));
  transform: none;
}

.method-overview__orbit {
  position: absolute;
  z-index: -1;
  width: min(78%, 35rem);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 209, 255, 0.16);
  border-radius: 50%;
}

.method-overview__orbit::before,
.method-overview__orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(166, 255, 61, 0.12);
  border-radius: 50%;
}

.method-overview__orbit::after {
  inset: 28%;
  border-color: rgba(0, 209, 255, 0.2);
}

@media (min-width: 850px) and (max-width: 1023px) {
  .method-overview__grid {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .method-overview__grid {
    grid-template-columns: 1fr;
  }
  .method-overview__asset {
    min-height: 27rem;
  }
  .method-overview__asset > img:first-of-type {
    width: min(100%, 45rem);
    transform: none;
  }
}
@media (max-width: 640px) {
  .method-overview__sequence {
    gap: 0.6rem;
  }
  .method-overview__sequence li,
  .method-overview__sequence li + li {
    padding: 0.75rem 0;
    border-left: 0;
  }
  .method-overview__asset {
    min-height: 14rem;
  }
}
/* Shared services component used by the home and services pages. */
.services-component__heading {
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.service-offer-grid--centered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: min(100%, 92rem);
  margin-inline: auto;
  gap: clamp(1rem, 1.6vw, 1.6rem);
}

.service-offer-grid--centered .service-offer {
  height: 37rem;
  min-height: 0;
  padding-top: 3.5rem;
  overflow: visible;
}

.service-offer-grid--centered .service-offer::before {
  top: -1px;
  right: 1.4rem;
  left: 1.4rem;
  width: auto;
  border-radius: 999px;
}

.service-offer-grid--centered .service-offer--side {
  height: 36rem;
  opacity: 0.9;
  transform: none;
}

.service-offer-grid--centered .service-offer--featured {
  z-index: 2;
  height: 39rem;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1.5rem 4rem rgba(0, 0, 0, 0.26);
}

.service-offer__icon {
  position: absolute;
  z-index: 4;
  top: 0;
  left: clamp(1.75rem, 2.6vw, 2.75rem);
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(89, 221, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #12375a 0%, #0a2947 48%, #071a30 100%);
  color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateY(-50%);
}

.service-offer--featured .service-offer__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-color: rgba(166, 255, 61, 0.42);
  color: #fff;
  background: linear-gradient(145deg, #165173 0%, #0c3d5b 48%, #173f35 100%);
}

.service-offer__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-offer--featured .service-offer__icon svg {
  width: 2rem;
  height: 2rem;
}

.service-offer-grid--centered .service-offer h3 {
  margin: clamp(1.45rem, 2.2vw, 2rem) 0 0.8rem;
}

.js .service-offer-grid--centered .service-offer.reveal {
  opacity: 0;
  transform: translate3d(0, 2.25rem, 0) scale(0.985);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.js .service-offer-grid--centered .service-offer--featured.reveal {
  transition-delay: 0.04s;
}

.js .service-offer-grid--centered .service-offer--side:first-child.reveal {
  transition-delay: 0.16s;
}

.js .service-offer-grid--centered .service-offer--side:last-child.reveal {
  transition-delay: 0.28s;
}

.js .service-offer-grid--centered .service-offer.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-offer-grid--centered .service-offer__lead {
  min-height: 0;
  font-size: 0.86rem;
  line-height: 1.58;
}

.service-offer-grid--centered .service-offer__meta {
  margin-top: 1.15rem;
}

.service-offer-grid--centered .service-offer__body {
  margin: 1.25rem 0;
  padding-top: 1.15rem;
}

.service-offer-grid--centered .service-offer__list {
  gap: 0.58rem;
  margin-top: 0.85rem;
}

.service-offer-grid--centered .service-offer__list li {
  font-size: 0.77rem;
  line-height: 1.48;
}

.service-offer-grid--centered .service-offer__list li::before {
  top: 0.74em;
  background: var(--ef-green);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .service-offer-grid--centered {
    grid-template-columns: 1fr;
    max-width: 42rem;
    gap: 3.5rem;
    padding-top: 2rem;
  }
  .service-offer-grid--centered .service-offer,
  .service-offer-grid--centered .service-offer--side,
  .service-offer-grid--centered .service-offer--featured {
    min-height: 0;
    height: auto;
    opacity: 1;
    transform: none;
  }
  .service-offer-grid--centered .service-offer--featured {
    grid-row: 1;
  }
}
@media (max-width: 640px) {
  .service-offer__icon,
  .service-offer--featured .service-offer__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  .service-offer__icon svg,
  .service-offer--featured .service-offer__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .service-offer .button {
    gap: 0.45rem;
    min-height: 3.25rem;
    padding: 0.6rem 0.6rem 0.6rem 1rem;
    font-size: 0.7rem;
  }
  .service-offer .button span {
    white-space: nowrap;
  }
  .service-offer .button i {
    width: 1.85rem;
    height: 1.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .service-offer-grid--centered .service-offer.reveal,
  .js .service-offer-grid--centered .service-offer.reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Tablet service cards: two columns prevent copy, tags and CTAs from colliding. */
@media (min-width: 768px) and (max-width: 1023px) {
  .service-offer-grid--centered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 3.25rem;
    padding-top: 2rem;
  }
  .service-offer-grid--centered .service-offer,
  .service-offer-grid--centered .service-offer--side,
  .service-offer-grid--centered .service-offer--featured {
    grid-row: auto;
    height: auto;
    min-height: 36rem;
  }
  .service-offer-grid--centered .service-offer__lead {
    min-height: 6.75rem;
  }
  .service-offer-grid--centered .service-offer .button {
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.6rem 0.65rem 0.6rem 1rem;
    font-size: 0.72rem;
  }
  .service-offer-grid--centered .service-offer .button span {
    white-space: nowrap;
  }
  .service-offer-grid--centered .service-offer .button i {
    width: 1.85rem;
    height: 1.85rem;
  }
}
/* Single-column mobile follows the source order: 1 TO 1, Premium, then Private Call. */
@media (max-width: 767px) {
  .service-offer-grid--centered .service-offer--featured {
    grid-row: auto;
  }
}
/* Legal pages share the site shell but keep the reading surface deliberately calm. */
.legal-page {
  background: #040b14;
  padding-top: clamp(8rem, 11.5vw, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 4.5rem);
}

.legal-page__inner {
  max-width: 80rem;
}

.legal-page__header {
  max-width: none;
  margin-inline: auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.legal-page__header .eyebrow,
.legal-page__links .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.legal-page__header h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.65rem, 6vw, 5.1rem);
  line-height: 0.98;
}

.legal-page__header p {
  max-width: 42rem;
  margin: 0;
  color: #b0b8c4;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.legal-page__updated {
  display: block;
  margin-top: 0;
  color: #748299;
  font: 700 0.68rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page__sections {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-section;
}

.legal-page__section {
  display: block;
  padding: 0 0 clamp(1.75rem, 3vw, 2.2rem);
  counter-increment: legal-section;
}

.legal-page__number {
  display: none;
}

.legal-page__section h2 {
  margin: 0 0 0.7rem;
  line-height: 1.28;
}

.legal-page__section h2::before {
  content: counter(legal-section) ". ";
}

.legal-page__section p {
  min-height: 0;
  margin: 0;
  color: #b0b8c4;
  font-size: clamp(1.05rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.legal-page__section a,
.legal-page__links a {
  color: #57dfff;
  text-decoration: underline;
  text-decoration-color: rgba(87, 223, 255, 0.4);
  text-underline-offset: 0.2em;
}

.legal-page__section a:hover,
.legal-page__section a:focus-visible,
.legal-page__links a:hover,
.legal-page__links a:focus-visible {
  color: #a6ff3d;
}

.legal-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(89, 221, 255, 0.2);
  border-radius: 1rem;
  background: rgba(7, 21, 39, 0.75);
}

.legal-page__links .eyebrow {
  width: 100%;
  margin-bottom: 0.15rem;
}

.legal-page__links a {
  font: 700 0.72rem/1.5 "JetBrains Mono", monospace;
  letter-spacing: 0.03em;
}

@media (max-width: 520px) {
  .legal-page {
    padding-top: 7.75rem;
  }
  .legal-page__section {
    padding: 0 0 2.25rem;
  }
  .legal-page__section p {
    font-size: 0.98rem;
  }
}
/*
 * EL FIERRO Brand Guidelines 2026 — web compliance layer.
 * This file intentionally changes visual tokens only; page structure and layout stay intact.
 */
:root {
  --ef-deep-blue: #0a1e3a;
  --ef-cyan: #00d1ff;
  --ef-white: #ffffff;
  --ef-silver: #b0b8c4;
  --ef-green: #a6ff3d;
  --ef-gradient-primary: linear-gradient(135deg, #0a1e3a 0%, #00d1ff 100%);
  --ef-gradient-light: linear-gradient(135deg, #ffffff 0%, #00d1ff 100%);
  --ef-gradient-metal: linear-gradient(135deg, #b0b8c4 0%, #00d1ff 100%);
}

/* Poppins remains the interface face; editorial copy follows the required Lora family. */
main p,
.site-footer__statement,
.check-list li,
.service-offer__list li,
.one-to-one-conditions__list dd,
.contact-directory strong {
  font-family: "Lora", Georgia, serif;
}

button,
input,
textarea,
select,
.button,
.primary-nav,
.footer-column,
.site-footer__details {
  font-family: "Poppins", Arial, sans-serif;
}

.eyebrow,
.breadcrumb,
.section-index,
.service-offer__header,
.service-offer__meta,
.service-offer__caption,
.one-to-one-inclusion > span,
.one-to-one-conditions__list dt,
.one-to-one-access__flow li > span,
.site-footer__copyright,
.site-footer__bottom {
  font-family: "JetBrains Mono", monospace;
}

/* Official wordmark: minimum screen size and protected clear space. */
.brand,
.site-footer__logo {
  display: inline-flex;
  padding: 0.5rem;
}

.brand img,
.site-footer__logo img {
  width: clamp(12.5rem, 15vw, 13.75rem);
  min-width: 12.5rem;
  height: auto;
}

/* Recurring branded card language: thin border, cyan top rule, restrained green callout. */
.feature-card,
.pathway-card,
.service-offer,
.one-to-one-inclusion,
.market-card,
.service-card {
  border-color: rgba(176, 184, 196, 0.24);
}

.feature-card,
.pathway-card,
.service-offer,
.one-to-one-inclusion {
  border-top-color: var(--ef-cyan);
}

.check-list {
  padding: 1.5rem;
  border: 1px solid rgba(166, 255, 61, 0.35);
  border-left: 3px solid var(--ef-green);
  background: rgba(166, 255, 61, 0.055);
}

.check-list li::before {
  background: var(--ef-green);
}

.button--primary {
  border-color: rgba(0, 209, 255, 0.72);
  background: linear-gradient(110deg, rgba(10, 30, 58, 0.96), rgba(0, 209, 255, 0.2));
}

.button--line,
.button--ghost {
  border-color: rgba(176, 184, 196, 0.38);
  background: rgba(10, 30, 58, 0.68);
}

@media (max-width: 640px) {
  .brand,
  .site-footer__logo {
    padding: 0.25rem;
  }
  .brand img {
    width: clamp(7.75rem, 43vw, 9.5rem);
    min-width: 0;
  }
  .site-footer__logo img {
    width: clamp(9.5rem, 48vw, 12.5rem);
    min-width: 0;
  }
}
/* Controlled type scale: preserve hierarchy without oversized page-dominating headings. */
main h1 {
  font-size: clamp(2.75rem, 5vw, 5.4rem) !important;
  line-height: 0.98;
}

.policy_heading {
  font-size: clamp(2.15rem, 5vw, 5rem) !important;
  line-height: 0.98;
}

main h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem) !important;
  line-height: 1;
}

/* Legal content uses one display heading only; its numbered clauses remain
   compact, document-style headings for comfortable reading. */
.legal-page__section h2 {
  font-family: "Poppins", Arial, sans-serif !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
}

main h3 {
  font-size: clamp(1.3rem, 2vw, 2rem) !important;
  line-height: 1.08;
}

/* Internal page heroes use a quieter scale than the home-page statement. */
main .page-hero__inner h1 {
  font-size: clamp(2.65rem, 4.35vw, 4.75rem) !important;
}

@media (max-width: 640px) {
  main h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.4rem) !important;
  }
  main h2 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }
  main h3 {
    font-size: clamp(1.25rem, 5.8vw, 1.65rem) !important;
  }
  main .page-hero__inner h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.15rem) !important;
  }
}/*# sourceMappingURL=main.css.map */