/* =========================================================
   Voila Staff — landing page
   Direction artistique: the logo's gradient (cyan → blue →
   violet) over a deep navy, kept alive behind every section.
   ========================================================= */

:root {
  --ink: #00010f;
  --ink-2: #010622;
  --ink-3: #061034;

  --cyan: #00baff;
  --blue: #2560fd;
  --indigo: #4521fc;
  --violet: #8136fc;
  --magenta: #b22afe;

  --line: linear-gradient(90deg, var(--cyan) 0%, var(--indigo) 52%, var(--magenta) 100%);
  --line-v: linear-gradient(180deg, var(--cyan) 0%, var(--indigo) 52%, var(--magenta) 100%);

  --white: #ffffff;
  --text: rgba(233, 238, 255, 0.78);
  --muted: rgba(200, 212, 255, 0.55);
  --hair: rgba(150, 178, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.035);

  --rail-w: 112px;
  --shell: 1180px;
  --r: 18px;

  --font-display: "Poppins", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}

.grad {
  background: var(--line);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: top 0.2s;
}

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

/* ---------- Ambient background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 0%, #1a0a4d 0%, transparent 55%),
    radial-gradient(100% 80% at 0% 100%, #032a86 0%, transparent 55%),
    linear-gradient(160deg, #01030f 0%, #010622 45%, #00010c 100%);
  overflow: hidden;
}

.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
}

.aurora__blob--violet {
  width: 54vw;
  height: 54vw;
  top: -18vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(129, 54, 252, 0.85), transparent 68%);
  animation: drift 26s ease-in-out infinite alternate;
}

.aurora__blob--blue {
  width: 62vw;
  height: 62vw;
  bottom: -26vw;
  left: -18vw;
  background: radial-gradient(circle, rgba(4, 103, 253, 0.8), transparent 68%);
  animation: drift 32s ease-in-out infinite alternate-reverse;
}

.aurora__blob--cyan {
  width: 34vw;
  height: 34vw;
  top: 44%;
  left: 52%;
  background: radial-gradient(circle, rgba(0, 186, 255, 0.4), transparent 70%);
  animation: drift 38s ease-in-out infinite alternate;
}

.aurora__grain {
  position: absolute;
  inset: -50%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.035;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-6%, 8%, 0) scale(1.14);
  }
}

/* ---------- Layout ---------- */
.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 136px) 0;
  padding-left: var(--rail-w);
}

.section--tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__head .lead {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4em;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(238, 242, 255, 0.86);
  font-weight: 300;
}

/* The logo line, reused as a horizontal mark */
.linemark {
  display: block;
  position: relative;
  width: min(360px, 70%);
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  margin: 4px 0 26px;
  box-shadow: 0 0 22px rgba(69, 33, 252, 0.6);
}

.linemark::before,
.linemark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.linemark::before {
  left: -4px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 186, 255, 0.9);
}

.linemark::after {
  right: -4px;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(178, 42, 254, 0.9);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 44px);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  background: rgba(2, 5, 24, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hair);
  padding-block: 12px;
}

.header__brand img {
  height: 42px;
  width: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__link {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
}

.header__link:hover {
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn--primary {
  background: var(--line);
  color: var(--white);
  box-shadow: 0 10px 34px rgba(69, 33, 252, 0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(110, 42, 254, 0.6);
}

.btn--ghost {
  border-color: var(--hair);
  color: var(--white);
  background: var(--glass);
}

.btn--ghost:hover {
  border-color: rgba(0, 186, 255, 0.6);
  transform: translateY(-2px);
}

/* ---------- Vertical rail navigation ---------- */
.rail {
  position: fixed;
  left: clamp(26px, 3.4vw, 52px);
  top: 14vh;
  bottom: 14vh;
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rail__cap {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex: none;
}

.rail__cap--top {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 186, 255, 0.85);
}

.rail__cap--bottom {
  background: var(--magenta);
  box-shadow: 0 0 16px rgba(178, 42, 254, 0.85);
}

.rail__track {
  position: relative;
  flex: 1;
  width: 3px;
  margin: -2px 0;
  border-radius: 999px;
  background: rgba(157, 180, 255, 0.18);
}

.rail__progress {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  border-radius: 999px;
  background: var(--line-v);
  box-shadow: 0 0 16px rgba(69, 33, 252, 0.75);
  transition: height 0.18s linear;
}

.rail__list {
  position: absolute;
  inset: 18px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.rail__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
}

.rail__dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0b1130;
  border: 1.5px solid rgba(175, 196, 255, 0.55);
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.rail__dot:hover::before {
  transform: scale(1.35);
  border-color: var(--white);
}

.rail__dot.is-past::before {
  background: rgba(120, 90, 255, 0.85);
  border-color: transparent;
}

.rail__dot.is-active::before {
  background: var(--white);
  border-color: transparent;
  transform: scale(1.5);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1), 0 0 20px rgba(0, 186, 255, 0.9);
}

.rail__label {
  position: absolute;
  left: 30px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
  pointer-events: none;
}

.rail__dot:hover .rail__label,
.rail__dot.is-active .rail__label,
.rail:hover .rail__label {
  opacity: 1;
  transform: translateX(0);
}

.rail__dot.is-active .rail__label {
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 128px;
  padding-bottom: 0;
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-size: clamp(2.9rem, 7.6vw, 5.8rem);
  font-weight: 700;
  margin-bottom: 0.25em;
}

.hero__lead {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 300;
  color: rgba(238, 242, 255, 0.85);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 0;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  margin: clamp(36px, 5vw, 60px) 0 0;
  padding: 0;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  background: rgba(3, 7, 30, 0.55);
  padding: 26px 24px;
  backdrop-filter: blur(6px);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Marquee ---------- */
.marquee {
  margin-top: clamp(28px, 4vw, 48px);
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: slide 44s linear infinite;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.scrollcue {
  display: grid;
  place-items: start center;
  width: 24px;
  height: 40px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  margin: 28px auto 32px;
  padding-top: 7px;
}

.scrollcue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(14px);
    opacity: 0.2;
  }
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.split--reverse .split__main {
  order: 1;
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.pillar {
  position: relative;
  padding: 26px 26px 26px 30px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--glass);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--line-v);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.pillar:hover {
  transform: translateX(5px);
  border-color: rgba(0, 186, 255, 0.35);
  background: rgba(255, 255, 255, 0.055);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.pillar h3 {
  margin: 8px 0 6px;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 32px 30px 34px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 54, 252, 0.45);
  box-shadow: 0 24px 60px rgba(2, 5, 30, 0.7);
}

.card:hover::after {
  transform: scaleX(1);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 186, 255, 0.28), rgba(178, 42, 254, 0.28));
  border: 1px solid var(--hair);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

/* ---------- Sectors ---------- */
.sectors {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hair);
}

.sector {
  display: grid;
  grid-template-columns: 90px minmax(220px, 1fr) 1.2fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 12px;
  border-bottom: 1px solid var(--hair);
  transition: background 0.3s, padding-left 0.3s;
}

.sector:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 24px;
}

.sector__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.sector h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.sector p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Process (the line, laid flat) ---------- */
.steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  opacity: 0.85;
  box-shadow: 0 0 20px rgba(69, 33, 252, 0.55);
}

.step {
  position: relative;
  padding-right: 12px;
}

.step__dot {
  position: absolute;
  top: -44px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(8, 14, 44, 0.9), 0 0 18px rgba(0, 186, 255, 0.7);
}

.step__index {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.step h3 {
  margin: 10px 0 8px;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Cases ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.case {
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(3, 7, 30, 0.5);
  transition: transform 0.3s, border-color 0.3s;
}

.case:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 186, 255, 0.4);
}

.case__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
}

.case__cover span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  backdrop-filter: blur(4px);
}

.case__cover--a {
  background: radial-gradient(120% 120% at 20% 20%, #2560fd, #0a0a3d 65%, #05030f);
}

.case__cover--b {
  background: radial-gradient(120% 120% at 80% 10%, #b22afe, #2b0a6a 60%, #05030f);
}

.case__cover--c {
  background: radial-gradient(120% 120% at 30% 80%, #00baff, #10206e 60%, #05030f);
}

.case__body {
  padding: 26px 26px 28px;
}

.case__body h3 {
  font-size: 1.1rem;
}

.case__body p {
  font-size: 0.95rem;
  color: var(--muted);
}

.case__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--hair);
  font-size: 0.8rem;
  color: var(--muted);
}

.case__metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

/* ---------- Quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.quote {
  margin: 0;
  padding: 30px 28px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--glass);
}

.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: -0.01em;
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--muted);
}

.quote figcaption strong {
  color: rgba(238, 242, 255, 0.9);
  font-weight: 500;
}

/* ---------- Talents ---------- */
.ticks {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 12px rgba(0, 186, 255, 0.8);
}

.panel {
  padding: 34px 32px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(129, 54, 252, 0.12), rgba(0, 186, 255, 0.05));
  backdrop-filter: blur(8px);
}

.panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.panel__list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}

.panel__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.panel__list span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.form {
  display: grid;
  gap: 18px;
  padding: 34px 32px 36px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: rgba(3, 7, 30, 0.55);
  backdrop-filter: blur(8px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 13px 16px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(190, 203, 245, 0.35);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 186, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 186, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: rgba(255, 105, 140, 0.7);
}

.form .btn {
  justify-self: start;
}

.form__note {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--cyan);
}

.contact__aside {
  display: grid;
  gap: 26px;
  padding-top: 8px;
}

.contact__block p,
.contact__block a {
  margin: 0;
  color: rgba(238, 242, 255, 0.9);
  font-size: 1.02rem;
}

.contact__block a:hover {
  color: var(--cyan);
}

.contact__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
.faq {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--hair);
}

.faq__item {
  border-bottom: 1px solid var(--hair);
}

.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}

.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq__item p {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 44px;
  padding-left: var(--rail-w);
  border-top: 1px solid var(--hair);
  background: rgba(1, 3, 14, 0.6);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  height: 36px;
  width: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(190, 203, 245, 0.45);
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  :root {
    --rail-w: 76px;
  }

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

  .split--reverse .split__main {
    order: 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 26px;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding-top: 26px;
    border-top: 2px solid rgba(157, 180, 255, 0.25);
  }

  .step__dot {
    top: -9px;
  }

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

  .sector {
    grid-template-columns: 70px 1fr;
  }

  .sector p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --rail-w: 52px;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .rail {
    left: 16px;
    top: 16vh;
    bottom: 12vh;
  }

  .rail__label {
    display: none;
  }

  .rail__dot {
    width: 26px;
    height: 26px;
  }

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

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

  .form {
    padding: 26px 22px 28px;
  }

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

  .header__link {
    display: none;
  }

  .header__brand img {
    height: 30px;
  }

  .hero {
    padding-top: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .aurora__blob,
  .marquee__track,
  .scrollcue span {
    animation: none;
  }
}
