:root {
  --bg-0: #03070A;
  --bg-1: #060B12;
  --bg-2: #0A1320;
  --surface: rgba(10, 22, 36, 0.55);
  --border: rgba(31, 244, 214, 0.12);
  --border-strong: rgba(31, 244, 214, 0.32);
  --primary: #2E7FFF;
  --primary-deep: #0F47C7;
  --cyan: #1FF4D6;
  --cyan-bright: #4CFFEA;
  --cyan-soft: rgba(31, 244, 214, 0.14);
  --text-hi: #E6F7F3;
  --text-mid: #7E94A8;
  --text-low: #44566B;
  --grid: rgba(31, 244, 214, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-hi);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--cyan); color: var(--bg-0); }

.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; letter-spacing: 0.04em; }

/* Ambient background grid + glow */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(31, 244, 214, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 20%, rgba(46, 127, 255, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 8% 60%, rgba(31, 244, 214, 0.08), transparent 65%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 40%, var(--bg-0));
}
.ambient::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, #000 30%, transparent 70%);
}

main { position: relative; z-index: 1; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============= NAV ============= */
nav.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 9, 15, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
nav.topnav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 9, 15, 0.78);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1280px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-mark { width: 32px; height: 32px; }
.brand-text {
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.18em;
  color: var(--cyan);
}
.brand-text span { color: var(--cyan); }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color .2s ease; position: relative;
}
.nav-links a:hover { color: var(--text-hi); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--cyan);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 18px; border: 1px solid var(--border-strong);
  border-radius: 6px; color: var(--text-hi); font-size: 0.83rem;
  font-weight: 500; background: transparent; cursor: pointer;
  transition: all .2s ease; font-family: inherit;
}
.nav-cta:hover { background: var(--cyan-soft); border-color: var(--cyan); color: var(--cyan); }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 11px;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: 8px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--text-hi); transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: rgba(6, 11, 18, 0.96);
  backdrop-filter: blur(14px);
  max-height: 0; overflow: hidden;
  opacity: 0; transition: max-height .35s ease, opacity .25s ease, padding .35s ease, border-color .35s ease;
}
.mobile-menu.open { max-height: 380px; opacity: 1; padding: 12px 32px 28px; border-bottom-color: var(--border); }
.mobile-menu a {
  color: var(--text-hi); text-decoration: none; font-size: 1.05rem;
  font-weight: 500; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; padding-top: 18px; }

/* ============= HERO ============= */
section.hero {
  min-height: 100vh; padding: 140px 0 100px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border: 1px solid var(--border-strong);
  border-radius: 999px; background: rgba(42, 111, 219, 0.08);
  color: var(--cyan); font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 14px var(--cyan), 0 0 4px var(--cyan-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
h1.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 500; line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  text-wrap: balance;
}
h1.hero-title .accent {
  background: linear-gradient(120deg, var(--cyan-bright), var(--cyan) 40%, var(--primary) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(31, 244, 214, 0.25));
}
h1.hero-title .stroke {
  -webkit-text-stroke: 1px var(--text-mid);
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 1.12rem; color: var(--text-mid);
  max-width: 540px; margin-bottom: 44px; line-height: 1.6;
}
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  color: #03070A; font-family: inherit; font-weight: 600;
  font-size: 0.92rem; border: 1px solid rgba(76, 255, 234, 0.4);
  cursor: pointer; transition: all .25s ease;
  box-shadow: 0 0 0 1px rgba(31, 244, 214, 0.2), 0 10px 36px rgba(31, 244, 214, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  opacity: 0; transition: opacity .25s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 44px rgba(76, 255, 234, 0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 8px;
  background: transparent; color: var(--text-hi);
  font-family: inherit; font-weight: 500; font-size: 0.92rem;
  border: 1px solid var(--border-strong); cursor: pointer;
  transition: all .2s ease;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* hero visual */
.hero-visual {
  position: relative; aspect-ratio: 1;
  width: 100%; max-width: 480px; margin-left: auto;
}
.ring {
  position: absolute; inset: 0; border: 1px solid var(--border-strong);
  border-radius: 50%; opacity: 0.6;
}
.ring.r1 { inset: 8%; animation: spin 40s linear infinite; }
.ring.r2 { inset: 18%; animation: spin 60s linear infinite reverse; border-style: dashed; }
.ring.r3 { inset: 30%; }
@keyframes spin { to { transform: rotate(360deg); } }
.ring-tick {
  position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan); transform: translateX(-50%);
}
.ring.r2 .ring-tick { background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.hero-core {
  position: absolute; inset: 35%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(31, 244, 214, 0.45), rgba(46, 127, 255, 0.15) 50%, transparent 70%);
  border-radius: 50%;
}
.hero-core svg { width: 70%; height: 70%; filter: drop-shadow(0 0 28px rgba(31, 244, 214, 0.85)); }

.hero-tags {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-tag {
  position: absolute; padding: 6px 10px;
  background: rgba(11, 15, 26, 0.85); border: 1px solid var(--border);
  border-radius: 4px; font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; color: var(--text-mid); letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.hero-tag::before {
  content: ""; display: inline-block; width: 5px; height: 5px;
  background: var(--cyan); border-radius: 50%; margin-right: 7px;
  vertical-align: middle;
}
.hero-tag.t1 { top: 4%; left: 4%; }
.hero-tag.t2 { top: 24%; right: 4%; }
.hero-tag.t3 { bottom: 18%; left: 4%; }
.hero-tag.t4 { bottom: 2%; right: 8%; }
@media (max-width: 600px) {
  .hero-tag { font-size: 0.6rem; padding: 5px 8px; }
}

/* hero metrics strip */
.hero-strip {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-cell {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}
.strip-cell:last-child { border-right: none; }
.strip-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem;
  color: var(--text-low); letter-spacing: 0.1em; margin-bottom: 8px;
}
.strip-value { font-size: 0.95rem; color: var(--text-hi); font-weight: 500; }

/* ============= SECTION HEADER ============= */
section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  color: var(--cyan); letter-spacing: 0.16em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ""; width: 24px; height: 1px; background: var(--cyan);
}
h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 500;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
  text-wrap: balance;
}
.section-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; line-height: 1.6; }

/* ============= CONCEPT ============= */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.concept-card {
  padding: 36px 32px; background: var(--bg-1);
  transition: background .3s ease; position: relative;
  cursor: pointer; min-height: 320px;
  display: flex; flex-direction: column;
}
.concept-card:hover { background: var(--bg-2); }
.concept-num {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  color: var(--text-low); letter-spacing: 0.1em; margin-bottom: 24px;
}
.concept-icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); border-radius: 10px;
  background: rgba(42, 111, 219, 0.08);
  transition: all .3s ease;
}
.concept-card:hover .concept-icon {
  border-color: var(--cyan); background: var(--cyan-soft);
}
.concept-icon svg { width: 26px; height: 26px; color: var(--cyan); }
.concept-card h3 {
  font-size: 1.25rem; font-weight: 500; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.concept-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.55; }
.concept-card .read-more {
  margin-top: auto; padding-top: 24px;
  color: var(--text-low); font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
  transition: color .25s ease;
}
.concept-card:hover .read-more { color: var(--cyan); }
.concept-card .read-more svg { transition: transform .25s ease; }
.concept-card:hover .read-more svg { transform: translateX(4px); }

/* Process flow */
.flow {
  margin-top: 80px;
  border: 1px solid var(--border); border-radius: 12px;
  padding: 40px 36px; background: rgba(11, 15, 26, 0.5);
  backdrop-filter: blur(8px);
}
.flow-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.flow-head h4 { font-size: 1.1rem; font-weight: 500; }
.flow-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; align-items: start;
}
.flow-step { position: relative; padding-right: 16px; cursor: pointer; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 12px; right: 0;
  width: 16px; height: 1px; background: var(--border-strong);
}
.flow-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg-1); border: 2px solid var(--border-strong);
  margin-bottom: 16px; transition: all .25s ease;
}
.flow-step.active .flow-dot,
.flow-step:hover .flow-dot {
  background: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.flow-step .step-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem;
  color: var(--text-low); letter-spacing: 0.1em; margin-bottom: 8px;
}
.flow-step .step-title {
  font-size: 0.95rem; font-weight: 500; color: var(--text-hi);
  margin-bottom: 6px;
}
.flow-step .step-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* ============= BENEFITS ============= */
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.benefit {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 36px; background: var(--surface);
  backdrop-filter: blur(8px);
  transition: border-color .3s ease, transform .3s ease;
  position: relative; overflow: hidden;
}
.benefit::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.benefit:hover {
  border-color: var(--border-strong); transform: translateY(-2px);
}
.benefit:hover::before { opacity: 1; }
.benefit-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px;
}
.benefit-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(42, 111, 219, 0.2), rgba(61, 217, 214, 0.1));
  border: 1px solid var(--border-strong);
}
.benefit-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.benefit-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.68rem;
  color: var(--text-low); letter-spacing: 0.1em;
}
.benefit h3 {
  font-size: 1.35rem; font-weight: 500; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.benefit p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.benefit-bullets { display: flex; flex-direction: column; gap: 10px; }
.benefit-bullets li {
  list-style: none; font-size: 0.85rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 10px;
}
.benefit-bullets li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}

/* ============= CONTACT (dominant email) ============= */
.contact-center {
  text-align: center; max-width: 1040px; margin: 0 auto;
  position: relative;
}
.contact-center .section-tag { display: inline-flex; }
.contact-headline {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
  line-height: 1.08; letter-spacing: -0.022em;
  margin: 0 auto 24px; max-width: 820px; text-wrap: balance;
}
.contact-headline .accent-text {
  background: linear-gradient(120deg, var(--cyan-bright), var(--cyan) 50%, var(--primary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(31, 244, 214, 0.25));
}
.contact-lead {
  color: var(--text-mid); font-size: 1.08rem; line-height: 1.6;
  max-width: 620px; margin: 0 auto 64px;
}

.email-hero {
  position: relative;
  padding: 64px 32px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(31, 244, 214, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(10, 22, 36, 0.7), rgba(6, 11, 18, 0.4));
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(31, 244, 214, 0.08),
    0 30px 80px rgba(31, 244, 214, 0.08),
    inset 0 1px 0 rgba(76, 255, 234, 0.12);
  overflow: hidden;
}
.email-hero::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 60%; height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);
  opacity: 0.7;
}
.email-hero::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  width: 40%; height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}
.email-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  color: var(--cyan); letter-spacing: 0.16em;
  padding: 7px 14px; border: 1px solid var(--border-strong);
  border-radius: 999px; background: rgba(31, 244, 214, 0.06);
  margin-bottom: 40px;
}
.email-mega {
  display: block; text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.6rem, 5.5vw, 3.6rem);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 48px;
  transition: transform .25s ease;
  word-break: break-all;
}
.email-mega:hover { transform: translateY(-2px); }
.email-mega .email-user {
  color: var(--text-hi);
  text-shadow: 0 0 28px rgba(76, 255, 234, 0.4);
}
.email-mega .email-at {
  color: var(--cyan-bright);
  text-shadow: 0 0 24px var(--cyan), 0 0 8px var(--cyan-bright);
  margin: 0 2px;
}
.email-mega .email-domain {
  background: linear-gradient(120deg, var(--cyan-bright), var(--cyan) 50%, var(--primary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(31, 244, 214, 0.45));
}

.email-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.email-cta { text-decoration: none; }
.email-copy {
  min-width: 180px; justify-content: center;
}

.contact-meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.meta-cell {
  padding: 22px 24px; text-align: left;
  border-right: 1px solid var(--border);
}
.meta-cell:last-child { border-right: none; }

@media (max-width: 720px) {
  .email-hero { padding: 44px 20px; }
  .email-mega { font-size: clamp(1.3rem, 8vw, 2.2rem); }
  .contact-meta { grid-template-columns: 1fr; }
  .meta-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .meta-cell:last-child { border-bottom: none; }
}

/* ============= FOOTER ============= */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px; position: relative; z-index: 1;
  background: var(--bg-0);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-left .brand-mark { width: 24px; height: 24px; }
.footer-left .copy {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem;
  color: var(--text-low); letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--text-mid); text-decoration: none; font-size: 0.85rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--cyan); }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .concept-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; gap: 24px; }
  .flow-step:not(:last-child)::after { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .strip-cell:nth-child(2) { border-right: none; }
  .strip-cell:nth-child(1), .strip-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 600px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .mobile-menu { padding-left: 20px; padding-right: 20px; }
  .mobile-menu.open { padding: 12px 20px 28px; }
  .form-row.split { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 14px; align-items: flex-start; }
}
