/* ==========================================================================
   ALLCE — Design System
   Deep-space navy canvas, electric blue signal accent, mono data labels.
   Motif: signal topology — nodes + connecting lines run through the page,
   echoing the network the OMV operates on top of.
   ========================================================================== */

:root {
  /* --- Color --- */
  --bg: #05070d;
  --bg-elevated: #0b0f1e;
  --bg-elevated-2: #0f1428;
  --navy: #1c2263;
  --navy-soft: #262c74;
  --blue: #3788cd;
  --blue-bright: #5eb3f5;
  --ink: #eef1f8;
  --ink-dim: #c3c9db;
  --muted: #8b93a7;
  --muted-2: #5b6178;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --glow: rgba(55, 136, 205, 0.35);

  /* --- Type --- */
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* --- Layout --- */
  --max: 1180px;
  --gutter: clamp(24px, 6vw, 64px);
  --section-pad: clamp(88px, 12vw, 156px);
  --radius: 20px;
  --radius-sm: 12px;
}

/* --- Reset --- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Short labels/captions read worse justified — keep them left-aligned */
.eyebrow,
.media-slot__label,
.form-note,
.compare__fill,
.chip {
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Ambient background texture (grain-free gradient wash) --- */
body {
  background-image:
    radial-gradient(ellipse 900px 500px at 12% -6%, rgba(55, 136, 205, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 88% 8%, rgba(28, 34, 99, 0.35), transparent 60%);
  background-repeat: no-repeat;
}

/* ==========================================================================
   Utility
   ========================================================================== */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  position: relative;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--tight {
  padding-top: calc(var(--section-pad) * 0.55);
  padding-bottom: calc(var(--section-pad) * 0.55);
}

.section--elevated {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-elevated-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px 2px var(--glow);
  flex-shrink: 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
}

.section-head .lede {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
}

.grad-text {
  background: linear-gradient(100deg, var(--blue-bright) 10%, var(--blue) 55%, var(--ink) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: #05070d;
  box-shadow: 0 8px 30px -8px var(--glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -6px var(--glow);
}

.btn--ghost {
  background: var(--glass);
  border-color: var(--line-bright);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: var(--glass-hover);
  border-color: var(--blue-bright);
}

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

/* --- Chips / mono tags --- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: var(--glass);
  padding: 8px 14px;
  border-radius: 999px;
}

.chip--pending {
  color: var(--muted);
  border-style: dashed;
  border-color: var(--muted-2);
}

/* --- Glass card --- */
.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  border-color: var(--line-bright);
  background: var(--glass-hover);
  transform: translateY(-3px);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(55, 136, 205, 0.22), rgba(28, 34, 99, 0.3));
  border: 1px solid var(--line-bright);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 1.6;
}

.card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* --- Image placeholder (design space reserved, content pending) --- */
.media-slot {
  position: relative;
  border: 1px dashed var(--line-bright);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(55, 136, 205, 0.06), rgba(28, 34, 99, 0.1)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 14px);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-slot__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  padding: 20px;
}

/* --- Photo (filled slot): real image, tinted to sit inside the dark system --- */
.media-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-bright);
  min-height: 260px;
}

.media-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
}

.media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(55, 136, 205, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(5, 7, 13, 0) 45%, rgba(5, 7, 13, 0.55) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Signal spine — signature motif: a vertical connective line with nodes
   running down content sections, echoing the network topology ALLCE operates.
   ========================================================================== */

.spine {
  position: relative;
}

.spine::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue-bright), var(--line) 90%);
  opacity: 0.5;
}

.spine__node {
  position: relative;
  padding-left: 28px;
}

.spine__node::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--blue-bright);
  box-shadow: 0 0 0 4px var(--bg), 0 0 14px 2px var(--glow);
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}

.footer-brand .brand__logo {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a.is-active {
  color: var(--ink);
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-bright);
  box-shadow: 0 0 10px 1px var(--glow);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  padding: 0;
  position: relative;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle span {
  top: 16px;
}

.nav__toggle span::before {
  top: -8px;
}

.nav__toggle span::after {
  top: 8px;
}

.nav__toggle.is-open span {
  background: transparent;
}

.nav__toggle.is-open span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.is-open span::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(5, 7, 13, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__actions .btn--ghost {
    display: none;
  }

  .nav__toggle {
    display: block;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(150px, 20vw, 220px);
  padding-bottom: clamp(90px, 12vw, 140px);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  color: var(--ink);
  max-width: 820px;
}

.hero__sub {
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

.hero__sub--nowrap {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero__sub--nowrap {
    white-space: normal;
    max-width: 600px;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero__proof {
  margin-top: 64px;
}

.hero--page {
  padding-top: clamp(140px, 16vw, 190px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.hero--page h1 {
  font-size: clamp(32px, 5vw, 52px);
}

/* ==========================================================================
   Stat / comparison bars (recreated data visuals — no source imagery needed)
   ========================================================================== */

.stat-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.stat-hero__num {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  background: linear-gradient(160deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-hero__label {
  font-size: 15px;
  color: var(--muted);
  max-width: 260px;
  border-left: 1px solid var(--line-bright);
  padding-left: 20px;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
}

.compare__tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.compare__tag--accent {
  color: var(--ink);
}

.compare__track {
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.compare__fill {
  height: 100%;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink);
  width: 0%;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare__fill--navy {
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
}

.compare__fill--blue {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 20px -4px var(--glow);
}

.compare__row.in-view .compare__fill[data-fill] {
  width: var(--fill-to);
}

/* ==========================================================================
   Two-column layout
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

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

@media (max-width: 860px) {
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
}

.split__eyebrow {
  margin-bottom: 18px;
}

.split h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 20px;
}

.split p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.split p + p {
  margin-top: 16px;
}

/* --- Feature list within split text --- */
.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-dim);
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 2;
}

/* ==========================================================================
   Grids
   ========================================================================== */

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

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

@media (max-width: 860px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 88px);
  background: linear-gradient(135deg, var(--navy) 0%, #10132f 60%, var(--bg-elevated) 100%);
  border: 1px solid var(--line-bright);
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  top: -220px;
  right: -160px;
  opacity: 0.7;
}

.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  position: relative;
  white-space: nowrap;
}

.cta-band p {
  position: relative;
  color: var(--ink-dim);
  margin: 18px auto 0;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
}

.cta-band .btn {
  position: relative;
  margin-top: 34px;
}

@media (max-width: 640px) {
  .cta-band h2,
  .cta-band p {
    white-space: normal;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 780px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  font-size: 14.5px;
  color: var(--ink-dim);
}

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

.pending-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px dashed var(--muted-2);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   Legal document index
   ========================================================================== */

.legal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

@media (max-width: 700px) {
  .legal-list {
    grid-template-columns: 1fr;
  }
}

.legal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--glass);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.legal-row:hover {
  border-color: var(--blue-bright);
  background: var(--glass-hover);
  transform: translateX(4px);
}

.legal-row__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(55, 136, 205, 0.22), rgba(28, 34, 99, 0.3));
  border: 1px solid var(--line-bright);
  flex-shrink: 0;
}

.legal-row__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 1.6;
}

.legal-row__title {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 1.45;
  text-align: left;
  transition: color 0.25s ease;
}

.legal-row:hover .legal-row__title {
  color: var(--ink);
}

.legal-row__arrow {
  width: 16px;
  height: 16px;
  stroke: var(--muted-2);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.legal-row:hover .legal-row__arrow {
  stroke: var(--blue-bright);
  transform: translateX(3px);
}

.legal-note {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-2);
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-row h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
  font-weight: 500;
}

.info-row p {
  font-size: 16px;
  color: var(--ink);
}

.info-row .pending {
  color: var(--muted);
  font-style: italic;
}

.form-card {
  padding: clamp(28px, 4vw, 44px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-card .btn {
  margin-top: 6px;
  width: 100%;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-visible {
  display: block;
}

.form-success svg {
  width: 42px;
  height: 42px;
  stroke: var(--blue-bright);
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 18px;
}

.form-success h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  font-size: 14.5px;
  text-align: center;
}
