/* ════════════════════════════════════════════
   VARIANT H — SaaS Modern Dark
   Glassmorphism + Purple Glow + Bright Blue CTA
   Deep Navy · Indigo · Violet · Sky Blue
   ════════════════════════════════════════════ */

:root {
  --bg: #0a0e27;
  --bg-2: #0e1335;
  --bg-3: #151a3f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #eef0ff;
  --text-soft: #c9ccea;
  --text-mute: #8288b5;
  --text-dim: #4b5086;

  --indigo: #6366f1;
  --violet: #8b5cf6;
  --sky: #3b82f6;
  --cyan: #22d3ee;
  --green: #34d399;
  --amber: #fbbf24;

  --sans: "Plus Jakarta Sans", "Sora", "Noto Sans KR", sans-serif;
  --mono: "JetBrains Mono", monospace;

  --max: 1360px;
  --gutter: clamp(20px, 3.5vw, 56px);
  --r: 16px;
  --r-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Purple orb background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(99, 102, 241, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(139, 92, 246, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(59, 130, 246, 0.18), transparent 50%);
}
/* Dot grid overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

main, nav, footer { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }

/* ─────────────────────────────────────────── */
/* NAV                                         */
/* ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 12px 20px 12px 24px;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  width: min(92vw, 1100px);
}
.nav__brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
}
.nav__links {
  display: flex;
  gap: 6px;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__links a:hover { background: var(--panel); color: var(--text); }
.nav__links a.is-active {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
  color: var(--text);
  border: 1px solid rgba(139,92,246,0.4);
  padding: 7px 13px;
}
.nav__cta {
  justify-self: end;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky), var(--indigo));
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
}
.nav__cta:hover { filter: brightness(1.15); }

@media (max-width: 860px) {
  .nav { grid-template-columns: auto auto; gap: 12px; padding: 10px 12px 10px 18px; }
  .nav__links { display: none; }
}

/* ─────────────────────────────────────────── */
/* HERO                                        */
/* ─────────────────────────────────────────── */
.hero {
  padding: 140px var(--gutter) 100px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.badge .pill {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero__title {
  font-weight: 700;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--text);
}
.hero__title .grad {
  background: linear-gradient(90deg, #c7d2fe, #a5b4fc 40%, #8b5cf6 70%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero__sub::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--cyan);
  display: inline-block;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--sky), var(--indigo));
  color: white;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.12); }
.btn--ghost {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--panel-2); }

/* Hero dashboard card (glassmorphism) */
.dashboard {
  position: relative;
  padding: 24px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.06)),
    rgba(10, 14, 39, 0.6);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.dashboard::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
}
.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dash__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.dash__title::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.dash__dots {
  display: flex;
  gap: 6px;
}
.dash__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--panel-2);
}
.dash__rows {
  display: grid;
  gap: 14px;
}
.dash__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.dash__row:hover { border-color: rgba(139, 92, 246, 0.4); background: rgba(139, 92, 246, 0.08); }
.dash__row .k {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.dash__row .v {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.dash__row .v sup { color: var(--violet); font-size: 0.6em; }
.dash__row .v .u { font-family: var(--sans); font-size: 0.45em; color: var(--text-mute); margin-left: 4px; letter-spacing: 0.05em; }
.dash__spark {
  width: 80px;
  height: 36px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 3px;
}
.dash__spark span {
  background: linear-gradient(180deg, var(--violet), var(--indigo));
  border-radius: 2px;
  opacity: 0.8;
}

/* ─────────────────────────────────────────── */
/* LOGO BAR                                    */
/* ─────────────────────────────────────────── */
.logo-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--gutter) 80px;
}
.logo-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.logo-bar__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.logo-bar__row > div {
  height: 52px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text-mute);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.logo-bar__row > div:hover { color: var(--text); border-color: var(--border-2); }
@media (max-width: 860px) { .logo-bar__row { grid-template-columns: repeat(3, 1fr); } }

/* ─────────────────────────────────────────── */
/* SECTION                                     */
/* ─────────────────────────────────────────── */
.section {
  padding: clamp(72px, 9vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.sec-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.sec-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--panel);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
}
.sec-head__title {
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}
.sec-head__title .grad {
  background: linear-gradient(90deg, #c7d2fe, #8b5cf6 50%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-head__lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* Section head — left aligned variant */
.sec-head--left {
  text-align: left;
  max-width: 100%;
  margin-bottom: 56px;
}

/* ─────────────────────────────────────────── */
/* SERVICE CARDS                               */
/* ─────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service:hover { border-color: rgba(139, 92, 246, 0.35); transform: translateY(-4px); }
.service:hover::before { opacity: 1; }
.service__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
  border: 1px solid rgba(139,92,246,0.35);
  font-family: var(--mono);
  font-size: 18px;
  color: var(--violet);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.service p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}
.service__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.service__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service__metric .k {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.service__metric .v {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cyan);
}
.service__metric .v sup { color: var(--violet); font-size: 0.6em; }

/* ─────────────────────────────────────────── */
/* WHY-US CHECKLIST                            */
/* ─────────────────────────────────────────── */
.why {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) { .why { grid-template-columns: 1fr; } }
.why__title {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.why__title .grad {
  background: linear-gradient(90deg, #c7d2fe, #8b5cf6 50%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why__lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 44ch;
  margin: 0 0 24px;
}
.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.why__list li {
  padding: 18px 22px;
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color 0.2s ease;
}
.why__list li:hover { border-color: rgba(139,92,246,0.4); }
.why__check {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sky), var(--indigo));
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}
.why__item h4 {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.why__item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ─────────────────────────────────────────── */
/* STATS BAND                                  */
/* ─────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
.stats > div {
  padding: 32px 24px;
  background: var(--bg);
  text-align: center;
}
.stats .k {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.stats .v {
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, #c7d2fe, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats .v sup { font-size: 0.55em; }
.stats .v .u {
  font-size: 0.32em;
  color: var(--text-mute);
  background: none;
  -webkit-text-fill-color: var(--text-mute);
  margin-left: 4px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─────────────────────────────────────────── */
/* TIMELINE                                    */
/* ─────────────────────────────────────────── */
.timeline {
  display: grid;
  gap: 14px;
}
.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  align-items: center;
  transition: border-color 0.2s ease;
}
.tl-row:hover { border-color: rgba(139,92,246,0.4); }
.tl-row .year {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c7d2fe, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tl-row h4 {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}
.tl-row p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
@media (max-width: 620px) { .tl-row { grid-template-columns: 90px 1fr; } .tl-row .year { font-size: 22px; } }

/* ─────────────────────────────────────────── */
/* EQUIPMENT                                   */
/* ─────────────────────────────────────────── */
.rack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .rack { grid-template-columns: 1fr; } }
.rack__cell {
  padding: 32px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 18px;
}
.rack__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rack__id {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #c7d2fe, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rack__status {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(52, 211, 153, 0.35);
}
.rack__status.new { background: rgba(251, 191, 36, 0.15); color: var(--amber); border-color: rgba(251, 191, 36, 0.4); }
.rack__rows {
  display: grid;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
}
.rack__rows .row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: baseline; }
.rack__rows .k {
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
}
.rack__rows .v { color: var(--text); }

/* ─────────────────────────────────────────── */
/* PLACEHOLDER (glass card)                    */
/* ─────────────────────────────────────────── */
.ph {
  position: relative;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.06)),
    rgba(10, 14, 39, 0.4);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.ph::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 60%);
  pointer-events: none;
}
.ph__head, .ph__foot { display: flex; justify-content: space-between; z-index: 1; position: relative; }
.ph__head .id { color: var(--violet); font-family: var(--mono); }
.ph__label {
  z-index: 1;
  position: relative;
  align-self: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}
.ph--wide { aspect-ratio: 16 / 9; }
.ph--sq { aspect-ratio: 1 / 1; }

/* ─────────────────────────────────────────── */
/* FORM                                        */
/* ─────────────────────────────────────────── */
.form {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 18px;
}
.form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form input, .form textarea, .form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--violet);
  background: rgba(139, 92, 246, 0.08);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .submit {
  justify-self: start;
  margin-top: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky), var(--indigo));
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}
.form .submit:hover { filter: brightness(1.12); }

/* ─────────────────────────────────────────── */
/* CTA band                                    */
/* ─────────────────────────────────────────── */
.cta {
  margin: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(40px, 6vw, 80px);
  border-radius: calc(var(--r-lg) * 1.3);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15)),
    rgba(10, 14, 39, 0.6);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(22px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.4), transparent);
  z-index: -1;
  border-radius: calc(var(--r-lg) * 1.3);
}
.cta::after {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 90%; height: 150%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.35), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 {
  margin: 0 auto;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.cta h2 .grad {
  background: linear-gradient(90deg, #c7d2fe, #8b5cf6 50%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta p {
  margin: 20px auto 32px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 52ch;
  line-height: 1.65;
}
.cta__row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────── */
/* PAGE HEAD                                   */
/* ─────────────────────────────────────────── */
.pagehead {
  padding: 140px var(--gutter) 60px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.pagehead__title {
  margin: 24px 0 0;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
}
.pagehead__title .grad {
  background: linear-gradient(90deg, #c7d2fe, #8b5cf6 50%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pagehead__lede {
  max-width: 60ch;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ─────────────────────────────────────────── */
/* TWO-COL                                     */
/* ─────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.two-col h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text);
}
.two-col h3 .grad {
  background: linear-gradient(90deg, #c7d2fe, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.two-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}
.two-col p + p { margin-top: 14px; }

/* ─────────────────────────────────────────── */
/* LOGO / CERT GRID                            */
/* ─────────────────────────────────────────── */
.grid-cells {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .grid-cells { grid-template-columns: repeat(3, 1fr); } }
.grid-cells > div {
  aspect-ratio: 3/2;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.grid-cells > div:hover { color: var(--text); border-color: rgba(139,92,246,0.3); }
.grid-cells > div strong { color: var(--text); font-weight: 700; }

/* ─────────────────────────────────────────── */
/* FOOTER                                      */
/* ─────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--border);
  padding: 72px var(--gutter) 40px;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(12px);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) { .foot__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__inner { grid-template-columns: 1fr; } }
.foot h5 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
}
.foot p, .foot li { font-size: 14px; line-height: 1.7; color: var(--text-soft); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot a:hover { color: var(--cyan); }
.foot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.foot__brand .mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 16px;
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.foot__bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mute);
}
