:root {
  --bg: #020617;
  --bg-alt: #020818;
  --surface: #020817;
  --surface-alt: #050f23;
  --primary: #00b3c9;
  --primary-soft: rgba(0, 179, 201, 0.18);
  --accent: #22c55e;
  --accent-gold: #f4b41a;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: rgba(148, 163, 184, 0.25);

  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --max-w: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #020b2b 0, #020617 45%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAV */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.98),
    rgba(2, 6, 23, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 20%, #22c55e 0, transparent 45%),
    radial-gradient(circle at 80% 80%, #00b3c9 0, transparent 55%),
    radial-gradient(circle at 0 100%, #1e293b 0, transparent 55%);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1);
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 0.05rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.16s ease-out;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at top left, rgba(0, 179, 201, 0.2), transparent 60%);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-cta span {
  font-size: 1.1rem;
  line-height: 0;
}

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.35rem 0.6rem;
  background: rgba(15, 23, 42, 0.9);
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: inherit;
}

.nav-toggle-bar::before {
  top: -5px;
}

.nav-toggle-bar::after {
  bottom: -5px;
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 1rem;
  font-size: 0.9rem;
}

.nav-links-mobile.open {
  display: flex;
}

/* FAMILY STRIP */

.family-strip {
  background: radial-gradient(circle at top, rgba(15, 118, 110, 0.45), transparent 55%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.family-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0 0.55rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.family-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.family-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.family-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.9);
  color: var(--muted);
}

/* HERO */

.hero {
  padding: 3.4rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.hero-kicker-pill {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  font-weight: 670;
  margin-bottom: 0.9rem;
}

.hero-title span {
  background-image: linear-gradient(120deg, #7dd3fc, #22c55e, #f4b41a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.7rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, border-color 0.16s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background:
    radial-gradient(circle at top left, #1d4ed8, transparent 60%),
    linear-gradient(118deg, #22c1c3, #00b3c9);
  color: #020617;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.98);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(2, 6, 23, 0.9);
  color: var(--text);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  background: rgba(15, 23, 42, 0.96);
}

.btn-icon {
  font-size: 1.1rem;
  line-height: 0;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-footnote {
  margin-top: 0.8rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1px;
  background:
    radial-gradient(circle at 0 0, #22c55e, transparent 60%),
    radial-gradient(circle at 100% 100%, #00b3c9, transparent 60%);
  box-shadow: var(--shadow-soft);
}

.hero-visual-inner {
  border-radius: inherit;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.6), transparent 60%),
    linear-gradient(150deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(51, 65, 85, 0.45) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(51, 65, 85, 0.45) 1px,
      transparent 1px
    );
  background-size: 32px 32px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
}

.ecos-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(2, 6, 23, 0.96);
  color: var(--muted);
}

.ecos-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent), #16a34a);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.95);
}

.ecos-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  font-size: 0.78rem;
}

.ecos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ecos-chip {
  flex: 1 1 130px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.55rem 0.85rem;
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.24), rgba(15, 23, 42, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.ecos-chip-main {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

.ecos-chip-badge {
  border-radius: 999px;
  padding: 0.16rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(2, 6, 23, 0.9);
  font-size: 0.7rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
}

.stat {
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  padding: 0.6rem 0.75rem;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.98));
  color: var(--muted);
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* SECTIONS */

section {
  padding: 3rem 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: start;
}

.pillars {
  display: grid;
  gap: 1rem;
}

.pillar {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface-alt), #020617);
  padding: 1rem;
  font-size: 0.85rem;
}

.pillar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.pillar-title {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.pillar-body {
  color: var(--muted);
  font-size: 0.84rem;
}

/* FAMILY GRID SECTION */

.family-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 1));
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
  font-size: 0.78rem;
}

.family-tile {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.7rem 0.8rem;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.3), rgba(2, 6, 23, 0.98));
}

.family-tile-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.family-tile-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.family-tile-body {
  font-size: 0.78rem;
  color: var(--muted);
}

/* LAYERS SECTION */

.layers-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface-alt), #020617);
  padding: 1.4rem 1.3rem;
}

.layers-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.82rem;
}

.layer-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.7rem 0.9rem;
  background: radial-gradient(circle at left, rgba(37, 99, 235, 0.2), rgba(2, 6, 23, 0.98));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.layer-main {
  max-width: 60%;
}

.layer-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.layer-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.layer-body {
  font-size: 0.8rem;
  color: var(--muted);
}

.layer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: flex-start;
}

.layer-tag {
  font-size: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.16rem 0.55rem;
  color: var(--muted);
  background: rgba(2, 6, 23, 0.95);
}

/* USE CASES */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface-alt), #020617);
  padding: 1rem;
  font-size: 0.85rem;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.card-title {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.card-list {
  padding-left: 1rem;
}

.card-list li {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

/* ARCHITECTURE */

.arch-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.18), rgba(2, 6, 23, 1));
  padding: 1.4rem 1.3rem;
}

.arch-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.arch-stage {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.75rem 0.8rem;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), rgba(2, 6, 23, 0.98));
}

.arch-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.arch-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.arch-body {
  color: var(--muted);
}

/* CTA / MOVEMENT */

.cta {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.2), rgba(2, 6, 23, 0.98));
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-title {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.cta-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.8rem 0 1.5rem;
  margin-top: 2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}





/* MOVEMENT JOURNEY CARDS */
.journey-card {
  padding: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.3);
  margin-top: 2.5rem;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.2); /* Subtle green border */
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.05), transparent);
  transition: transform 0.2s ease;
}

.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2dd4bf; /* Green accent color */
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.step-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Responsive adjustment for steps */
@media (max-width: 900px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* TRACK TILES */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.track-tile {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.track-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}





















/* FAQ CARDS */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-item {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3); /* White/Gray border */
  background: rgba(30, 41, 59, 0.2);
}

.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.faq-a {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Responsive adjustment for FAQ */
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}














/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arch-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layer-main {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .family-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .arch-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 2.4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .family-inner {
    gap: 0.4rem;
  }
}


/* =========================================
   ADDITIONAL STYLES FROM OTHER PAGES
   ========================================= */

/* From movement.html / pilot.html */

.nav-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    radial-gradient(circle at top, var(--primary-soft), transparent 60%);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-pill span {
  font-size: 1.05rem;
  line-height: 0;
}

.movement-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(2, 6, 23, 0.96);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.movement-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 0, #0ea5e9, transparent 60%),
    radial-gradient(circle at 75% 100%, #22c55e, transparent 60%);
}

.lane-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.lane-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.lane-chip {
  flex: 1 1 140px;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.6rem 0.9rem;
  background: radial-gradient(circle at left, rgba(14, 165, 233, 0.35), rgba(15, 23, 42, 0.98));
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
}

.lane-main {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.lane-tag {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.7rem;
}

.tracks-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.track-tile {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.8rem 0.9rem;
  background: radial-gradient(circle at top left, rgba(8, 47, 73, 0.6), rgba(2, 6, 23, 0.98));
}

.track-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.track-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.track-body {
  color: var(--muted);
  font-size: 0.8rem;
}

.journey-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface-alt), #020617);
  padding: 1.4rem 1.3rem;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.9rem;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.step {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.8rem 0.9rem;
  background: radial-gradient(circle at top left, rgba(22, 101, 52, 0.5), rgba(2, 6, 23, 0.98));
}

.step-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.step-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.step-body {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  font-size: 0.86rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface-alt), #020617);
  padding: 0.9rem 1rem;
}

.faq-q {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.faq-a {
  color: var(--muted);
  font-size: 0.83rem;
}

.interest-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.22), rgba(2, 6, 23, 0.98));
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.interest-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 1.8rem;
  align-items: start;
}

.interest-form {
  display: grid;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.field {
  display: grid;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--muted);
}

.field input:required,
.field select:required,
.field textarea:required {
  border-color: rgba(148, 163, 184, 0.7);
}

.field input,
.field select,
.field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(2, 6, 23, 0.98);
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}

.field textarea {
  min-height: 80px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-soft);
}

.interest-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.interest-copy {
  font-size: 0.86rem;
  color: var(--muted);
}

.interest-copy strong { color: #e5e7eb; }

.form-message {
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  border: 1px solid;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
  color: #86efac;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

.form-message:empty {
  display: none;
}

/* From request.html */
.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.doc-preview {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.doc-image {
  width: 300px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #0f172a;
  object-fit: cover;
}

.phone-group {
  display: flex;
  gap: 0.8rem;
  width: 100%; 
}

.phone-code {
  flex: 0 0 120px; 
  width: 120px;
}

.phone-number {
  flex: 1; 
  width: auto; 
  min-width: 0; 
}

/* From team.html */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.team-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
  border-color: var(--primary);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  border: 2px solid var(--border);
  margin-bottom: 1.2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--muted);
  transition: border-color 0.2s ease-out;
}

.team-card:hover .team-photo {
  border-color: var(--primary);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.team-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(2, 6, 23, 0.95);
  color: var(--primary);
  font-size: 0.82rem;
  transition: all 0.18s ease-out;
}

.team-linkedin:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.linkedin-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .interest-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .tracks-grid,
  .journey-steps,
  .faq-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .request-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .doc-preview {
    margin-bottom: 1rem;
  }
}

@media (max-width: 720px) {
  .tracks-grid,
  .journey-steps,
  .faq-grid,
  .team-grid {
    grid-template-columns: minmax(0,1fr);
  }
}
