/* ── Tokens ──────────────────────────────────────── */
:root {
  --bg: #04060d;
  --bg1: #080c18;
  --bg2: #0c1220;
  --bg3: #101828;
  --glass: rgba(255, 255, 255, .03);
  --glass2: rgba(255, 255, 255, .06);
  --border: rgba(100, 180, 255, .10);
  --border2: rgba(100, 180, 255, .22);

  --cyan: #00d4ff;
  --cyan2: #7aeeff;
  --violet: #a855f7;
  --violet2: #d4aaff;
  --green: #00ffa3;
  --red: #ff4d6d;
  --yellow: #ffd166;
  --white: #e8f0fe;
  --dim: #3a4a6a;
  --muted: #5a7090;

  --sans: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --r: 6px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

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

html,
body {
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  background-image: url("images/background.jpg");
  background-size: 1143px 1024px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Starfield */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, .35) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 7%, rgba(255, 255, 255, .28) 0%, transparent 100%),
    radial-gradient(1px 1px at 39% 52%, rgba(255, 255, 255, .20) 0%, transparent 100%),
    radial-gradient(1px 1px at 84% 41%, rgba(255, 255, 255, .32) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 78%, rgba(255, 255, 255, .22) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 89%, rgba(255, 255, 255, .18) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 4%, rgba(255, 255, 255, .30) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 68%, rgba(255, 255, 255, .20) 0%, transparent 100%),
    radial-gradient(1px 1px at 76% 33%, rgba(255, 255, 255, .24) 0%, transparent 100%),
    radial-gradient(1px 1px at 21% 61%, rgba(255, 255, 255, .16) 0%, transparent 100%),
    radial-gradient(180px 180px at 15% 55%, rgba(0, 212, 255, .05) 0%, transparent 100%),
    radial-gradient(220px 220px at 85% 25%, rgba(168, 85, 247, .05) 0%, transparent 100%),
    radial-gradient(300px 300px at 50% 90%, rgba(0, 212, 255, .03) 0%, transparent 100%);
}

/* ── Shell ───────────────────────────────────────── */
.shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

/* ── Header ──────────────────────────────────────── */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(4, 6, 13, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--cyan);
  text-transform: uppercase;
  text-decoration: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .10em;
  color: var(--muted);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .10em;
  color: var(--cyan);
  border: 1px solid var(--border2);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--glass);
  text-decoration: none;
  cursor: pointer;
}

.badge.violet {
  color: var(--violet2);
  border-color: rgba(168, 85, 247, .35);
}

/* ══════════════════════════════════════════════════
   SLIDESHOW
══════════════════════════════════════════════════ */
.slideshow-section {
  margin-top: 18px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: #080c18;
  box-shadow: var(--shadow);
}

/* Track */
.slides-track {
  display: flex;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Individual slide */
.slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Placeholder image rendered in canvas/SVG — replaced by real <img> when integrated */
.slide-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* SVG placeholder visuals */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Bottom gradient */
.slide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(4, 6, 13, .95) 0%, rgba(4, 6, 13, .6) 50%, transparent 100%);
  pointer-events: none;
}

/* Caption */
.slide-caption {
  position: relative;
  z-index: 2;
  padding: 24px 28px 28px;
}

.slide-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.slide-title {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.slide-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 14px;
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, .35);
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(0, 212, 255, .07);
  transition: background .2s, box-shadow .2s;
}

.slide-link:hover {
  background: rgba(0, 212, 255, .16);
  box-shadow: 0 0 16px rgba(0, 212, 255, .2);
}

.slide-link svg {
  flex-shrink: 0;
}

/* Controls */
.ss-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
  z-index: 10;
}

.ss-btn {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: rgba(4, 6, 13, .75);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .15s;
}

.ss-btn:hover {
  background: rgba(0, 212, 255, .12);
  transform: scale(1.08);
}

/* Dots */
.ss-dots {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.ss-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background .25s, transform .25s;
  border: none;
  padding: 0;
}

.ss-dot.active {
  background: var(--cyan);
  transform: scale(1.5);
  box-shadow: 0 0 6px var(--cyan);
}

/* Progress bar */
.ss-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  z-index: 10;
  transition: width linear;
}

/* Slide counter */
.ss-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
  background: rgba(4, 6, 13, .6);
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.card {
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .025) 0%, transparent 60%);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--cyan);
  opacity: .5;
}

h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 14px;
}

h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 58ch;
}

.hero-copy strong {
  color: var(--white);
  font-weight: 600;
}

/* Points */
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.point {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}

.point::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pt-color, var(--cyan));
  opacity: .6;
}

.point-k {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--pt-color, var(--cyan));
  margin-bottom: 5px;
}

.point-v {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* Auth panel */
.panel-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-inner {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px;
}

.field {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input {
  width: 100%;
  background: rgba(4, 6, 13, .7);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, .1);
}

.field textarea,
.field select {
  width: 100%;
  background: rgba(4, 6, 13, .7);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, .1);
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: var(--glass);
  border: 1px solid var(--border2);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn:hover {
  background: rgba(0, 212, 255, .10);
  box-shadow: 0 0 14px rgba(0, 212, 255, .15);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(0, 212, 255, .18), rgba(168, 85, 247, .18));
  border-color: var(--cyan);
}

.btn.primary:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, .28), rgba(168, 85, 247, .28));
}

.small-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--dim);
  line-height: 1.55;
  font-family: var(--mono);
}

/* ── Plans ───────────────────────────────────────── */
.plans {
  margin-top: 18px;
}

.section-header {
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.section-header p {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan {
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--plan-accent, var(--border));
  transition: opacity .25s;
}

.plan:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  transform: translateY(-2px);
}

.plan.selected {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 8px 32px rgba(0, 212, 255, .12);
}

.plan.selected::before {
  background: var(--cyan);
  opacity: 1;
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.plan-name {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
}

.plan-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .10em;
  color: var(--cyan);
  border: 1px solid var(--border2);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--glass2);
}

.plan-desc {
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
  flex: 1;
}

.plan-list {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
}

.plan-list div::before {
  content: "▸ ";
  color: var(--cyan);
}

.plan-btn {
  width: 100%;
  padding: 9px 14px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.plan-btn:hover {
  background: rgba(0, 212, 255, .10);
  border-color: var(--border2);
}

.plan.selected .plan-btn {
  background: linear-gradient(135deg, rgba(0, 212, 255, .18), rgba(168, 85, 247, .18));
  border-color: var(--cyan);
}

/* ── Route box ───────────────────────────────────── */
.route-box {
  margin-top: 18px;
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}

.route-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-box h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.route-output {
  background: rgba(4, 6, 13, .7);
  border: 1px solid rgba(0, 212, 255, .10);
  border-radius: 4px;
  padding: 16px;
  min-height: 110px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.route-output strong {
  color: var(--white);
}

.path-code {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan2);
  background: rgba(0, 212, 255, .07);
  border: 1px solid rgba(0, 212, 255, .18);
  padding: 4px 9px;
  border-radius: 3px;
  margin: 2px 3px;
}

.footer-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
  font-family: var(--mono);
}

/* ── Responsive ──────────────────────────────────── */
@media(max-width:960px) {

  .hero,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .slide {
    min-height: 300px;
  }

  /* 🔥 AÑADE ESTO */
  .problem-solution-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

  .slide-caption {
    padding: 18px;
  }

  .slide {
    min-height: 260px;
  }
}

/* ── Animations ──────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero,
.slideshow-section,
.plans,
.route-box {
  animation: fadeUp .4s ease both;
}

.hero {
  animation-delay: .05s;
}

.slideshow-section {
  animation-delay: .1s;
}

.plans {
  animation-delay: .15s;
}

.route-box {
  animation-delay: .2s;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

@media(max-width:960px) {

  .problem-solution-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row .btn {
  flex: 0 1 240px;
}

@media(max-width:700px) {
  .cta-row .btn {
    flex: 1 1 100%;
  }
}

/* ── Modules ─────────────────────────────────────── */
.modules {
  margin-top: 18px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media(max-width:960px) {
  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.mod-card {
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.mod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mod-accent, var(--cyan));
  opacity: .7;
}

.mod-card:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.mod-acronym {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.mod-tm {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
  margin-top: 3px;
  letter-spacing: .04em;
}

.mod-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--mod-accent, var(--cyan));
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mod-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.mod-patent {
  margin-top: 10px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--dim);
  letter-spacing: .08em;
}

/* ══ Content Page (template-page) ═══════════════ */
.content-page {
  margin-top: 18px;
}

.page-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.page-title em {
  font-style: normal;
  color: var(--cyan);
}

.page-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.65;
  margin-bottom: 32px;
}

.content-block {
  display: grid;
  gap: 18px;
}

.content-section {
  background: rgba(8, 12, 24, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-label.violet {
  color: var(--violet2);
}

.section-heading {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.section-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.nt-coming-soon {
  background-image:
    linear-gradient(to bottom, rgba(4, 6, 13, 0.70), rgba(4, 6, 13, 0.82)),
    url("images/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.nt-coming-soon::before {
  display: none;
}

.coming-wrap {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
}

.coming-card {
  width: min(760px, 100%);
  padding: 42px 40px;
  background: rgba(8, 12, 24, 0.78);
  border: 1px solid rgba(100, 180, 255, 0.18);
  backdrop-filter: blur(14px);
}

.coming-title {
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
  margin-bottom: 14px;
}

.coming-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  line-height: 1.45;
  max-width: 28ch;
  margin-bottom: 12px;
}

.coming-subtitle.secondary {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
  margin-top: 6px;
}

.coming-subtitle.micro {
  font-size: 13px;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.45);
  max-width: 44ch;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.coming-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 28px;
}

.coming-form {
  display: grid;
  gap: 6px;
}

.field textarea,
.field select {
  width: 100%;
  background: rgba(4, 6, 13, .7);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, .1);
}

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

.coming-row .btn {
  flex: 0 1 220px;
}

.coming-small {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .coming-card {
    padding: 30px 22px;
  }

  .coming-row .btn {
    flex: 1 1 100%;
  }
}