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

/* ── FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: "Sofachrome";
  src: url("../assets/fonts/Sofachrome-Italic.woff2") format("woff2"), url("../assets/fonts/Sofachrome-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: block;
}
/* ── RESPONSIVE BREAKPOINT MIXIN ───────────────────── */
:root {
  --bg-deep: #030810;
  --bg-dark: #010f25;
  --bg-card: #0c1a30;
  --bg-section: #090f1f;
  --blue-mid: #01183d;
  --accent: #00c3ff;
  --accent-dim: rgba(0, 200, 224, 0.1);
  --accent-glow: #49d4ff;
  --white: #ffffff;
  --text-pri: #dce8f5;
  --text-sec: #b6d8ff;
  --border: rgba(0, 200, 224, 0.1);
  --border-mid: rgba(0, 200, 224, 0.25);
  --border-hi: rgba(0, 200, 224, 0.35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: "Sofachrome", serif;
  --max-w: 1160px;
  --nav-h: 100px;
  --r: 4px;
  --rl: 8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-pri);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .container {
    padding: 0 24px;
  }
}

.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.subhead {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 680px;
  text-wrap: pretty;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal--visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: linear-gradient(to bottom, rgba(1, 15, 37, 0.9) 0%, rgba(1, 15, 37, 0.6) 60%, rgba(1, 15, 37, 0) 100%);
}
.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-mid);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 991px) {
  .nav {
    height: 80px;
  }
}
.nav--scrolled, .nav--mobile-open {
  background: var(--bg-dark);
}
.nav--scrolled::after, .nav--mobile-open::after {
  opacity: 1;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-sec);
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .nav__logo {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 575px) {
  .nav__logo {
    font-size: 1rem;
  }
}
@media screen and (max-width: 329px) {
  .nav__logo {
    font-size: 0.875rem;
  }
}
.nav__logo span {
  display: block;
  text-indent: -6px;
}
.nav__logo-mark {
  display: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .nav__links {
    display: none;
  }
}
.nav__link {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--text-sec);
}
.nav__link--cta {
  background-color: var(--text-sec);
  color: var(--bg-deep) !important;
  padding: 12px 20px !important;
}
.nav__link--cta:hover, .nav__link--cta:focus, .nav__link--cta:active {
  background-color: var(--accent) !important;
}
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px;
  margin-right: -10px;
}
@media screen and (max-width: 991px) {
  .nav__hamburger {
    display: block;
  }
}
.nav__hamburger-icon {
  width: 28px;
  height: 28px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--blue-mid);
  border-bottom: 1px solid var(--border-mid);
  z-index: 99;
  padding: 20px 28px 24px;
}
.mobile-nav--open {
  display: block;
}
.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav__link {
  display: block;
  color: var(--text-pri);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
}
.mobile-nav__link--cta {
  color: var(--accent);
  font-weight: 700;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--blue-mid);
}
@media screen and (max-width: 991px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.hero__overlay {
  display: none;
}
.hero__canvas {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px 0;
  max-width: 580px;
}
@media screen and (max-width: 991px) {
  .hero__content {
    padding: 60px 0 80px 0;
    max-width: none;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero__image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .hero__image-wrapper {
    order: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero__image-wrapper {
    height: 420px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero__image-wrapper {
    height: 370px;
  }
}
@media screen and (max-width: 575px) {
  .hero__image-wrapper {
    height: 320px;
  }
}
.hero__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 200, 224, 0.05) 25%, rgba(3, 8, 16, 0.5) 60%, rgba(3, 8, 16, 0.85) 100%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 200, 224, 0.08);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  padding: 6px 18px 6px 14px;
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__badge-dot {
  position: relative;
  top: -0.5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
.hero__h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(0.85rem, 1.45vw, 1.05rem);
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero__sub {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .hero__sub {
    max-width: 100%;
  }
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn--primary:hover {
  background: var(--text-sec);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 0.95rem;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .scroll-cue {
    display: none;
  }
}
.scroll-cue span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sec);
}
.scroll-cue__line {
  width: 3px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ── STATS STRIP ───────────────────────────────────── */
.stats__strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 991px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat__cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
@media screen and (max-width: 991px) {
  .stat__cell:nth-child(2) {
    border-right: none;
  }
  .stat__cell:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .stat__cell:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}
.stat__cell:last-child {
  border-right: none;
}
.stat__val {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__val em {
  font-style: normal;
  color: var(--accent);
}
.stat__lbl {
  font-size: 0.75rem;
  color: var(--text-sec);
  font-weight: 500;
}

/* ── TECHNOLOGY ────────────────────────────────────── */
.technology {
  padding: 110px 0 0 0;
  background: var(--bg-dark);
}
@media screen and (max-width: 991px) {
  .technology {
    padding-top: 80px;
  }
}
.technology__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .technology__intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.technology__intro-text .subhead {
  margin-top: 18px;
  max-width: none;
}
.technology__intro-text p + p {
  margin-top: 14px;
}
.technology__visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .technology__visual {
    max-width: 540px;
    margin: 20px auto 0 auto;
  }
}
.technology__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 200, 224, 0.06) 0%, transparent 70%);
}
.technology__visual-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--r);
}
.technology__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
@media screen and (max-width: 991px) {
  .technology__steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .technology__steps {
    grid-template-columns: 1fr;
  }
}
.technology__callout {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(0, 200, 224, 0.07), rgba(0, 200, 224, 0.02));
  border: 1px solid var(--border-hi);
  border-radius: var(--rl);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .technology__callout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.technology__callout h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.technology__callout p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.75;
}

.step__card {
  background: var(--bg-card);
  padding: 32px 26px;
}
.step__card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step__card p {
  font-size: 0.83rem;
  color: var(--text-sec);
  line-height: 1.65;
}
.step__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0, 200, 224, 0.12);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.step__icon {
  width: 42px;
  height: 42px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.callout__icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  flex-shrink: 0;
}

/* ── ADVANTAGES ────────────────────────────────────── */
.advantages {
  padding: 110px 0;
  background: var(--bg-dark);
}
@media screen and (max-width: 991px) {
  .advantages {
    padding: 80px 0;
  }
}
.advantages__header {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .advantages__header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .advantages__header {
    margin-bottom: 40px;
  }
}
.advantages__header .subhead {
  margin: 16px auto 0;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--border-mid);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  gap: 1px;
}
@media screen and (max-width: 991px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
.advantages__card {
  background: var(--blue-mid);
  padding: 36px 30px;
  transition: background 0.2s;
}
.advantages__card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .advantages__card h3 {
    font-size: 1.125rem;
  }
}
.advantages__card p {
  font-size: 0.83rem;
  color: var(--text-sec);
  line-height: 1.65;
}
@media screen and (max-width: 575px) {
  .advantages__card p {
    font-size: 0.938rem;
  }
}
.advantages__icon {
  width: 46px;
  height: 46px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hi);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  padding: 110px 0;
  background: var(--blue-mid);
}
@media screen and (max-width: 991px) {
  .about {
    padding: 80px 0;
  }
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about__body .subhead {
  margin-top: 18px;
  max-width: none;
}
.about__body p {
  margin-top: 16px;
  color: var(--text-sec);
  line-height: 1.78;
  font-size: 0.95rem;
}
.about__team-image {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .about__team-image {
    max-width: 540px;
    margin: 20px auto 0 auto;
  }
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team__figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
}
.team__img {
  width: 100%;
  height: auto;
  display: block;
}
.team__caption {
  padding: 16px 20px;
  font-size: 0.75rem;
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  text-wrap: pretty;
}
.team__section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .team__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .team__grid {
    grid-template-columns: 1fr;
  }
}
.team__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}
.team__photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #0d2245, #050d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 200, 224, 0.2);
}
.team__body {
  padding: 20px;
}
.team__body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.team__body .role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team__body p {
  font-size: 0.78rem;
  color: var(--text-sec);
  line-height: 1.55;
}

.cred {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.cred__icon {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cred h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.cred p {
  font-size: 0.78rem;
  color: var(--text-sec);
  line-height: 1.55;
}

/* ── CONTACT ───────────────────────────────────────── */
.contact {
  padding: 110px 0;
  background: var(--bg-dark);
}
@media screen and (max-width: 991px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.contact__left .subhead {
  margin-top: 18px;
  max-width: none;
}
.contact__details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--white);
}
.contact__detail-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
          text-decoration-color: rgba(255, 255, 255, 0.5);
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
.contact__detail-link:hover, .contact__detail-link:focus, .contact__detail-link:active {
  text-decoration: none;
  color: var(--text-sec);
}
.contact__detail-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact__form {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 32px;
}
@media screen and (max-width: 575px) {
  .contact__form {
    padding: 24px;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 8px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__group input::-moz-placeholder, .form__group select::-moz-placeholder, .form__group textarea::-moz-placeholder {
  color: rgba(122, 155, 192, 0.85);
}
.form__group input::placeholder,
.form__group select::placeholder,
.form__group textarea::placeholder {
  color: rgba(122, 155, 192, 0.85);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  color: var(--white);
  border-color: var(--accent);
  background: #000;
}
.form__group select option {
  background: #090f1f;
}
.form__group textarea {
  resize: vertical;
  min-height: 116px;
}
@media screen and (max-width: 575px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-sec);
  margin-top: 12px;
}

/* Honeypot field - hidden from users */
.hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* reCAPTCHA spacing */
form [data-netlify-recaptcha=true] {
  margin: 24px 0;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-mid);
  padding: 30px 0;
  font-size: 0.75rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer__inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
.footer__copy {
  color: var(--text-sec);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
          text-decoration-color: rgba(255, 255, 255, 0.5);
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  transition: color 0.2s;
}
.footer__link:hover, .footer__link:focus, .footer__link:active {
  text-decoration: none;
  color: var(--text-sec);
}

/* ── EXTERNAL LINKS ────────────────────────────────── */
a[target=_blank]::after {
  content: "↗";
  display: inline-block;
  margin-left: 4px;
  font-size: 0.85em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

a[target=_blank]:hover::after,
a[target=_blank]:focus::after,
a[target=_blank]:active::after {
  color: var(--text-sec);
}

/* ── LEGAL PAGES ───────────────────────────────────── */
.legal {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal__content {
  max-width: 800px;
  margin: 0 auto;
}
.legal__content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.legal__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.legal__content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.legal__content p,
.legal__content li {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal__content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.legal__content a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
          text-decoration-color: rgba(255, 255, 255, 0.5);
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  transition: color 0.2s;
}
.legal__content a:hover, .legal__content a:focus, .legal__content a:active {
  text-decoration: none;
  color: var(--text-sec);
}
.legal__last-updated {
  color: rgba(0, 200, 224, 0.6);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
