/* ============================================================
   ENROLLICA V3 â€" style.css
   Cinematic AI Product Experience
   ============================================================ */

:root {
  --void: #020711;
  --space: #050d1f;
  --deep: #0a1628;
  --mid: #0f2044;
  --neon: #00d4ff;
  --pulse: #6366f1;
  --violet: #a78bfa;
  --emerald: #34d399;
  --white: #f0f8ff;
  --muted: rgba(240, 248, 255, 0.5);
  --light: #ffffff;
  --light-soft: #f5f8fc;
  --light-ice: #eef6ff;
  --ink: #07111f;
  --ink-soft: #4f5f73;
  --ink-muted: #6c7a8c;
  --light-border: rgba(15, 35, 64, 0.1);
  --border: rgba(0, 212, 255, 0.15);
  --border-strong: rgba(0, 212, 255, 0.3);
  --panel: rgba(6, 16, 42, 0.85);
  --panel-hover: rgba(10, 24, 60, 0.9);
  --font-head: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.portal-active {
  background: var(--void);
}

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

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

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  top: 0; left: 0;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  top: 0; left: 0;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--neon);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.grad-text {
  background: linear-gradient(135deg, var(--neon) 0%, var(--pulse) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.s-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: tag-pulse 2s ease-in-out infinite;
}

.s-tag-light { color: rgba(240, 248, 255, 0.7); border-color: rgba(240, 248, 255, 0.15); background: rgba(240, 248, 255, 0.04); }
.s-tag-light::before { background: rgba(240, 248, 255, 0.7); animation: none; }

@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.s-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.s-title-light { color: var(--white); }

.s-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-top: 16px;
}

.s-sub-light { color: rgba(240, 248, 255, 0.65); }

.s-header {
  text-align: center;
  margin-bottom: 64px;
}

.s-header .s-sub { max-width: 600px; margin-left: auto; margin-right: auto; }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--void);
  background: var(--neon);
  padding: 14px 28px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5), 0 8px 24px rgba(0, 212, 255, 0.2);
}

.bp-shine {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-166.667%) skewX(-20deg);
  transition: transform 0.5s ease;
}

.btn-primary:hover .bp-shine { transform: translateX(250%) skewX(-20deg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(240, 248, 255, 0.8);
  border: 1px solid rgba(240, 248, 255, 0.15);
  background: rgba(240, 248, 255, 0.04);
  padding: 14px 28px;
  border-radius: 8px;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--neon);
  background: rgba(0, 212, 255, 0.06);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  padding: 0;
}

.nav.scrolled {
  background: rgba(2, 7, 17, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.logo-mark {
  color: var(--neon);
  font-size: 0.875rem;
  filter: drop-shadow(0 0 6px var(--neon));
}

.logo-letters {
  display: inline-flex;
  letter-spacing: -0.01em;
}

.ll,
.logo-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(7px);
  animation: logo-letter-in 0.38s var(--ease-out) forwards;
}

@keyframes logo-letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll, .logo-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex: 0 1 auto;
  justify-content: flex-start;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-page-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nlink {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 248, 255, 0.6);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nlink:hover {
  color: var(--white);
  background: rgba(240, 248, 255, 0.07);
}

.nlink.active {
  color: var(--neon);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.22);
  font-weight: 600;
}

.nl-mobile-page {
  display: none;
}

.nav-cta {
  margin-left: 0;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--void);
  background: var(--neon);
  padding: 8px 20px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-1px);
}

/* Secondary nav CTA ("Book a Demo") sits next to the primary
   "Book Your Slot" button — outline style so it doesn't compete. */
.nav-cta-outline {
  background: transparent;
  color: rgba(240, 248, 255, 0.85);
  border: 1px solid rgba(240, 248, 255, 0.22);
}

.nav-cta-outline:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 24px 120px;
}

.star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 40%, rgba(167, 139, 250, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.2s forwards;
}

.he-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.ht-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: line-rise 0.9s var(--ease-out) forwards;
}

.ht-line:nth-child(1) { animation-delay: 0.35s; }
.ht-line:nth-child(2) { animation-delay: 0.5s; }
.ht-line:nth-child(3) { animation-delay: 0.65s; }

@keyframes line-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title.hero-title-lettered .ht-line {
  opacity: 1;
  transform: none;
  animation: none;
}

.ht-word {
  display: inline-block;
  white-space: nowrap;
}

.ht-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
  animation: hero-letter-in 0.46s var(--ease-out) forwards;
  will-change: opacity, transform;
}

.hero-title.hero-title-lettered .ht-line.grad-text .ht-char {
  background: linear-gradient(135deg, var(--neon) 0%, var(--pulse) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title.hero-title-lettered + .hero-sub {
  animation-delay: 2s;
}

.hero-title.hero-title-lettered ~ .hero-actions {
  animation-delay: 2.15s;
}

@keyframes hero-letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.85s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.4s forwards;
}

.hsc-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 248, 255, 0.35);
}

.hsc-arrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.hsc-chevron {
  width: 12px; height: 7px;
  border-right: 1.5px solid rgba(0, 212, 255, 0.4);
  border-bottom: 1.5px solid rgba(0, 212, 255, 0.4);
  transform: rotate(45deg);
  animation: chevron-fall 1.6s ease-in-out infinite;
}

.hsc-chevron:nth-child(2) { animation-delay: 0.2s; opacity: 0.5; }

@keyframes chevron-fall {
  0%, 100% { transform: rotate(45deg) translateY(-3px); opacity: 0.3; }
  50% { transform: rotate(45deg) translateY(3px); opacity: 1; }
}

/* ============================================================
   PORTAL SECTION
   ============================================================ */
.portal-section {
  height: 450vh;
  position: relative;
}

.portal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: layout style;
  transform: translateZ(0);
}

.portal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.portal-hud {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.phud-bar {
  width: 140px;
  height: 2px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.phud-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--pulse));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--neon);
}

.phud-text {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon);
}

.portal-headline {
  position: absolute;
  top: 100px;
  left: 0; right: 0;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.portal-headline span {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: rgba(240, 248, 255, 0.7);
  letter-spacing: -0.01em;
  transition: opacity 0.4s;
}

/* ============================================================
   IRIS / PORTAL OPENER
   ============================================================ */
.holo-scene {
  position: relative;
  width: min(1120px, 92vw);
  height: min(620px, 75vh);
  transform-style: preserve-3d;
  perspective: 1200px;
  will-change: transform;
}

.iris-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.iris-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.ir1 {
  width: 100px; height: 100px;
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.1);
  animation: iris-spin 8s linear infinite;
}

.ir2 {
  width: 150px; height: 150px;
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
  animation: iris-spin 12s linear infinite reverse;
}

.ir3 {
  width: 200px; height: 200px;
  border-color: rgba(167, 139, 250, 0.25);
  animation: iris-spin 18s linear infinite;
}

@keyframes iris-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.iris-core {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, rgba(0, 212, 255, 0.1) 70%, transparent 100%);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: core-pulse 2.5s ease-in-out infinite;
  z-index: 1;
}

.ic-mark {
  color: var(--neon);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 6px var(--neon));
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2); }
  50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(0, 212, 255, 0.7), 0 0 100px rgba(0, 212, 255, 0.3); }
}

.iris-ray {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(to top, transparent, rgba(0, 212, 255, 0.4));
  transform-origin: bottom center;
  opacity: 0.5;
}

.ir-r1 { bottom: 50%; left: 50%; transform: rotate(0deg) translateX(-50%); }
.ir-r2 { bottom: 50%; left: 50%; transform: rotate(90deg) translateX(-50%); }
.ir-r3 { bottom: 50%; left: 50%; transform: rotate(45deg) translateX(-50%); }
.ir-r4 { bottom: 50%; left: 50%; transform: rotate(135deg) translateX(-50%); }

/* ============================================================
   HOLO MAIN DASHBOARD
   ============================================================ */
.holo-main {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 66vw, 92vh);
  background: rgba(6, 16, 42, 0.95);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.08),
    0 0 60px rgba(0, 212, 255, 0.06),
    0 0 120px rgba(99, 102, 241, 0.04),
    inset 0 0 40px rgba(0, 212, 255, 0.02);
  opacity: 0;
  will-change: transform, opacity;
}

.hm-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--neon);
  border-style: solid;
}

.hmc-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.hmc-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.hmc-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.hmc-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

.hm-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.04), transparent);
  border-radius: 11px 11px 0 0;
  animation: scan-move 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-move {
  0% { top: 0%; opacity: 0.8; }
  90% { top: 80%; opacity: 0.3; }
  100% { top: 0%; opacity: 0; }
}

.hm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 2px 10px;
  border-bottom: 1px solid var(--border);
}

.hm-dots { display: flex; gap: 5px; }
.hd { display: block; width: 8px; height: 8px; border-radius: 50%; }
.hd-r { background: rgba(239, 68, 68, 0.7); }
.hd-y { background: rgba(234, 179, 8, 0.7); }
.hd-g { background: rgba(34, 197, 94, 0.7); }

.hm-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(240, 248, 255, 0.7);
  letter-spacing: 0.04em;
  flex: 1;
}

.hm-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.06em;
}

.hm-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hm-dashboard-frame {
  position: relative;
  aspect-ratio: 2 / 1;
  border-radius: 11px;
  overflow: hidden;
  background: rgba(240, 248, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 32px rgba(0, 212, 255, 0.1),
    0 18px 60px rgba(0, 0, 0, 0.42);
}

.hm-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.02);
}

.hm-dashboard-vignette,
.hm-dashboard-scan,
.hm-dashboard-orb {
  position: absolute;
  pointer-events: none;
}

.hm-dashboard-vignette {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.16), transparent 18%, transparent 82%, rgba(2, 7, 17, 0.1)),
    linear-gradient(180deg, rgba(0, 212, 255, 0.1), transparent 22%, rgba(2, 7, 17, 0.16));
  mix-blend-mode: multiply;
}

.hm-dashboard-scan {
  top: -30%;
  left: 0;
  width: 42%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  animation: dashboard-scan 5s ease-in-out infinite;
}

@keyframes dashboard-scan {
  0%, 35% { transform: translateX(-107.143%) rotate(18deg); opacity: 0; }
  50% { opacity: 0.65; }
  80%, 100% { transform: translateX(266.667%) rotate(18deg); opacity: 0; }
}

.hm-dashboard-orb {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.38;
  mix-blend-mode: screen;
}

.hdo-1 {
  left: 18%;
  top: 18%;
  background: rgba(0, 212, 255, 0.55);
}

.hdo-2 {
  right: 12%;
  bottom: 8%;
  background: rgba(99, 102, 241, 0.5);
}

.hm-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.hm-metric {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.hmm-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neon);
  letter-spacing: -0.02em;
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.hmm-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(240, 248, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.hm-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.hmc-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.hmc-fill {
  width: 100%;
  height: var(--bh);
  background: linear-gradient(to top, rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0.2));
  border-radius: 3px 3px 0 0;
  border-top: 1px solid rgba(0, 212, 255, 0.6);
  transition: height 0.6s var(--ease-out);
}

.hmc-now .hmc-fill {
  background: linear-gradient(to top, var(--neon), rgba(0, 212, 255, 0.4));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.hmc-bar span {
  font-size: 0.5625rem;
  color: rgba(240, 248, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   HOLO PODS
   ============================================================ */
.holo-pod {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  background: rgba(6, 16, 42, 0.96);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  opacity: 0;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.04);
  overflow: hidden;
  will-change: transform, opacity;
}

.pod-corner {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.pct { top: 0; }
.pcb { bottom: 0; }

.pod-accent {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 40%;
  background: var(--pc);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 12px var(--pc);
}

.pod-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3));
}

.pod-name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pod-stat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.pod-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(240, 248, 255, 0.08);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.pod-bar-fill {
  height: 100%;
  width: var(--pw);
  background: linear-gradient(90deg, var(--neon), var(--pulse));
  border-radius: 2px;
}

.pod-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(240, 248, 255, 0.45);
}

/* Connecting lines */
.holo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.holo-line {
  stroke: rgba(0, 212, 255, 0.3);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  animation: dash-flow 2s linear infinite;
}

@keyframes dash-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -16; }
}

/* Portal CTA */
.portal-cta {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Mobile pods (shown on mobile only) */
.mobile-pods {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  gap: 12px;
  padding: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.mp-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  backdrop-filter: blur(16px);
}

.mp-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.mp-card h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--neon);
}

.mp-card p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ============================================================
   FEATURE SPOTLIGHT — ORBITAL SYSTEM
   Intelligent Course Finder + Email Automation

   Animation tokens (durations/easing/colours) are custom properties
   on .fx-section so the whole system can be retuned from one place.
   Timeline is orchestrated in script.js: initOrbitalFeatures().
   ============================================================ */
.fx-section {
  --fx-cyan: #00b8d9;
  --fx-cyan-rgb: 0, 184, 217;
  --fx-violet: #7c5cff;
  --fx-violet-rgb: 124, 92, 255;
  --fx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fx-fast: 0.4s;
  --fx-med: 0.7s;
  --fx-slow: 1.4s;

  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--light-soft) 100%);
  color: var(--ink);
}

.fx-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--fx-cyan-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--fx-cyan-rgb), 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 62% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 62% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

.fx-flow-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  column-gap: 48px;
  row-gap: 64px;
}

/* Connector line + handoff particle, laid over the whole flow */
.fx-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Both lines start fully "undrawn" (stroke-dashoffset = path length, set
   from JS in positionConnector) and draw themselves in — via the
   stroke-dashoffset transition below — only once drawConnector() runs,
   which script.js calls from runHandoff() after the results appear. */
.fx-connector-glow {
  fill: none;
  stroke: rgba(var(--fx-cyan-rgb), 0.4);
  stroke-width: 16;
  stroke-linecap: round;
  filter: blur(9px);
  transition: stroke-dashoffset 1.3s var(--fx-ease);
}

.fx-connector-line {
  fill: none;
  stroke: url(#fxConnGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.3s var(--fx-ease);
}

.fx-connector-dot {
  fill: rgba(var(--fx-cyan-rgb), 0.85);
  filter: blur(0.2px);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.fx-connector.fx-active .fx-connector-dot {
  opacity: 1;
}

.fx-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fx-cyan);
  box-shadow: 0 0 12px rgba(var(--fx-cyan-rgb), 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  /* offset-path is set from JS (positionConnector) to match the real,
     computed connector path — see script.js. */
  offset-distance: 0%;
  offset-rotate: 0deg;
}

.fx-particle.traveling {
  animation: fx-handoff-travel var(--fx-slow) var(--fx-ease) forwards;
}

@keyframes fx-handoff-travel {
  0%   { offset-distance: 0%; opacity: 0; background: var(--fx-cyan); box-shadow: 0 0 12px rgba(var(--fx-cyan-rgb), 0.8); }
  8%   { opacity: 1; }
  55%  { background: var(--fx-cyan); box-shadow: 0 0 12px rgba(var(--fx-cyan-rgb), 0.8); }
  100% { offset-distance: 100%; opacity: 0; background: var(--fx-violet); box-shadow: 0 0 14px rgba(var(--fx-violet-rgb), 0.85); }
}

/* ---------- Copy blocks ---------- */
.fx-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 24px;
}

.fx-copy-email {
  align-self: end;
  padding-top: 0;
  padding-bottom: 24px;
}

.fx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-cyan);
  margin-bottom: 18px;
}

.fx-eyebrow-violet { color: var(--fx-violet); }

.fx-eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.9375rem;
  background: rgba(var(--fx-cyan-rgb), 0.1);
  border: 1px solid rgba(var(--fx-cyan-rgb), 0.22);
}

.fx-eyebrow-violet .fx-eyebrow-icon,
.fx-copy-email .fx-eyebrow-icon {
  background: rgba(var(--fx-violet-rgb), 0.1);
  border-color: rgba(var(--fx-violet-rgb), 0.22);
}

.fx-heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.fx-copy-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 360px;
}

/* ---------- Orbit stage ---------- */
.fx-orbit-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 1 / 0.94;
  margin-left: auto;
}

.fx-orbit-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Small particle travelled by JS (via getBoundingClientRect + a plain
   CSS transition) between filter pills and into the finder core. */
.fx-inter-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fx-cyan);
  box-shadow: 0 0 8px rgba(var(--fx-cyan-rgb), 0.75);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  will-change: transform;
}

.fx-ring {
  fill: none;
  stroke: rgba(15, 35, 64, 0.09);
  stroke-width: 1;
  transform-origin: 350px 350px;
}

.fx-ring-dashed { stroke-dasharray: 2 8; }

.fx-orbit-stage.fx-spin .fx-ring-1 { animation: fx-orbit-spin 40s linear infinite; }
.fx-orbit-stage.fx-spin .fx-ring-2 { animation: fx-orbit-spin 60s linear infinite reverse; }
.fx-orbit-stage.fx-spin .fx-ring-3 { animation: fx-orbit-spin 90s linear infinite; }

.fx-orbit-stage.fx-spin.fx-searching .fx-ring-1 { animation-duration: 9s; }
.fx-orbit-stage.fx-spin.fx-searching .fx-ring-2 { animation-duration: 14s; }
.fx-orbit-stage.fx-spin.fx-searching .fx-ring-3 { animation-duration: 20s; }

@keyframes fx-orbit-spin {
  to { transform: rotate(360deg); }
}

/* ---------- Central finder core ---------- */
.fx-finder-core {
  position: absolute;
  top: 30%;
  left: 50%;
  width: clamp(120px, 18vw, 156px);
  height: clamp(120px, 18vw, 156px);
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #1c6b86 0%, #0d3a52 46%, #061f30 100%);
  color: #eaf7fb;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 0 3.5px rgba(var(--fx-cyan-rgb), 0.7),
    0 0 0 9px rgba(var(--fx-cyan-rgb), 0.14),
    0 0 46px rgba(var(--fx-cyan-rgb), 0.32),
    0 20px 50px rgba(6, 32, 50, 0.35);
  animation: fx-core-breathe 4.5s ease-in-out infinite;
}

@keyframes fx-core-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.14),
      0 0 0 3.5px rgba(var(--fx-cyan-rgb), 0.7),
      0 0 0 9px rgba(var(--fx-cyan-rgb), 0.14),
      0 0 46px rgba(var(--fx-cyan-rgb), 0.32),
      0 20px 50px rgba(6, 32, 50, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.2),
      0 0 0 3.5px rgba(var(--fx-cyan-rgb), 0.85),
      0 0 0 11px rgba(var(--fx-cyan-rgb), 0.2),
      0 0 62px rgba(var(--fx-cyan-rgb), 0.45),
      0 20px 50px rgba(6, 32, 50, 0.35);
  }
}

.fx-finder-scan {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--fx-cyan-rgb), 0.6);
  opacity: 0;
  pointer-events: none;
}

.fx-finder-core.fx-searching .fx-finder-scan {
  animation: fx-scan-expand 1.4s var(--fx-ease) infinite;
}

@keyframes fx-scan-expand {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.9); opacity: 0; }
}

.fx-finder-icon {
  display: flex;
  transition: transform var(--fx-fast) var(--fx-ease);
}

.fx-finder-core.fx-searching .fx-finder-icon {
  animation: fx-icon-scan-spin 1.1s linear infinite;
}

@keyframes fx-icon-scan-spin {
  to { transform: rotate(360deg); }
}

.fx-finder-label {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
}

.fx-finder-status {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-muted);
  opacity: 0;
  transition: opacity 0.3s;
}

.fx-finder-status.visible { opacity: 1; }

/* ---------- Floating filter pills ---------- */
.fx-filter-pill,
.fx-result-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--light-border);
  box-shadow: 0 10px 26px rgba(15, 35, 64, 0.08);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
  filter: blur(4px);
  transform: translateY(14px) scale(0.92);
}

/* .fx-filled marks the pill "done" (hides the shimmer, etc.) regardless
   of which engine drove the reveal. .fx-css-reveal is the CSS-keyframe
   fallback used only when Motion (motionLib) hasn't loaded yet — see
   springReveal() in script.js. */
.fx-filter-pill.fx-css-reveal {
  animation: fx-pill-reveal var(--fx-med) var(--fx-ease) forwards;
}

@keyframes fx-pill-reveal {
  0%   { opacity: 0; filter: blur(4px); transform: translateY(14px) scale(0.92); }
  60%  { opacity: 1; filter: blur(0.5px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

.fx-filter-pill.fx-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(var(--fx-cyan-rgb), 0.7);
  animation: fx-confirm-pulse 0.6s var(--fx-ease);
}

@keyframes fx-confirm-pulse {
  0%   { opacity: 1; transform: scale(0.94); }
  100% { opacity: 0; transform: scale(1.18); }
}

.fx-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 0.8125rem;
  line-height: 1;
  background: rgba(var(--fx-cyan-rgb), 0.12);
  flex-shrink: 0;
}

.fx-pill-value { position: relative; min-width: 64px; min-height: 1em; display: inline-flex; align-items: center; }

.fx-pill-shimmer {
  display: block;
  width: 56px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(15,35,64,0.08) 25%, rgba(15,35,64,0.16) 37%, rgba(15,35,64,0.08) 63%);
  background-size: 200% 100%;
  animation: fx-shimmer 1.4s ease-in-out infinite;
}

.fx-filter-pill.fx-filled .fx-pill-shimmer { display: none; }

@keyframes fx-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Filter pill positions (percentages of .fx-orbit-stage) */
.fx-filter-pill[data-pos="country"] { top: 2%;  left: 46%; }
.fx-filter-pill[data-pos="level"]   { top: 24%; left: 0%; }
.fx-filter-pill[data-pos="intake"]  { top: 52%; left: 2%; }
.fx-filter-pill[data-pos="course"]  { top: 26%; left: 82%; }

/* ---------- Result pills ---------- */
.fx-result-pill {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 18px 11px 16px;
  border-radius: 14px;
}

.fx-result-pill.fx-css-reveal {
  animation: fx-result-reveal var(--fx-med) var(--fx-ease) forwards;
}

/* Idle float only — added once the reveal (Motion or CSS) has settled,
   so it never fights an in-flight transform animation. */
.fx-result-pill.fx-shown {
  animation: fx-result-float 5s ease-in-out infinite;
}

@keyframes fx-result-reveal {
  0%   { opacity: 0; filter: blur(4px); transform: translate(-16px, 10px) scale(0.9); }
  65%  { opacity: 1; filter: blur(0.5px); }
  100% { opacity: 1; filter: blur(0); transform: translate(0, 0) scale(1); }
}

@keyframes fx-result-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -5px); }
}

.fx-result-pill.fx-highlight {
  border-color: rgba(var(--fx-cyan-rgb), 0.5);
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.1), 0 0 0 3px rgba(var(--fx-cyan-rgb), 0.16);
}

.fx-result-match {
  font-family: var(--font-head);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--fx-cyan);
  background: rgba(var(--fx-cyan-rgb), 0.1);
  border-radius: 5px;
  padding: 2px 6px;
}

.fx-result-name { font-size: 0.8125rem; font-weight: 800; }
.fx-result-uni { font-size: 0.71875rem; font-weight: 600; color: var(--ink-muted); }

.fx-result-pill[data-pos="result1"] { top: 60%; left: 68%; }
.fx-result-pill[data-pos="result2"] { top: 74%; left: 74%; }
.fx-result-pill[data-pos="result3"] { top: 87%; left: 66%; }

/* ---------- Email stage ---------- */
.fx-email-stage {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  padding-top: 8px;
}

.fx-email-card {
  position: relative;
  z-index: 3;
  max-width: 380px;
  margin: 0 auto 28px 58%;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--fx-violet-rgb), 0.16);
  box-shadow: 0 26px 60px rgba(76, 29, 149, 0.14);
  opacity: 0;
  filter: blur(5px);
  transform: translateY(26px) scale(0.94) rotateX(6deg);
  transform-origin: bottom center;
}

.fx-email-card.fx-css-reveal {
  animation: fx-email-reveal var(--fx-slow) var(--fx-ease) forwards;
}

@keyframes fx-email-reveal {
  0%   { opacity: 0; filter: blur(5px); transform: translateY(26px) scale(0.94) rotateX(6deg); }
  70%  { opacity: 1; filter: blur(0.5px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1) rotateX(0deg); }
}

.fx-email-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--light-border);
  position: relative;
}

.fx-email-field-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

.fx-email-subject {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--fx-violet);
}

.fx-email-tracked {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #047857;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 5px;
  padding: 3px 7px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s var(--fx-ease), transform 0.4s var(--fx-ease);
}

.fx-email-tracked.fx-visible {
  opacity: 1;
  transform: translateY(0);
}

.fx-email-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-soft);
  min-height: 108px;
}

.fx-email-line {
  opacity: 0;
  transform: translateY(6px);
  animation: fx-email-line-in 0.5s var(--fx-ease) forwards;
}

@keyframes fx-email-line-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Workflow nodes ---------- */
.fx-workflow {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.fx-workflow-line {
  position: absolute;
  top: 26px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--light-border);
  border-radius: 2px;
  overflow: hidden;
}

.fx-workflow-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--fx-cyan), var(--fx-violet));
  transition: width var(--fx-slow) var(--fx-ease);
}

.fx-node {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.fx-node-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--light-border);
  box-shadow: 0 10px 24px rgba(15, 35, 64, 0.08);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.fx-node.fx-active .fx-node-circle {
  border-color: rgba(var(--fx-violet-rgb), 0.4);
  background: rgba(var(--fx-violet-rgb), 0.08);
  box-shadow: 0 0 0 6px rgba(var(--fx-violet-rgb), 0.1), 0 10px 24px rgba(15, 35, 64, 0.08);
}

.fx-node[data-step="0"].fx-active .fx-node-circle {
  border-color: rgba(217, 119, 6, 0.4);
  background: rgba(217, 119, 6, 0.08);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.1), 0 10px 24px rgba(15, 35, 64, 0.08);
}

.fx-node[data-step="2"].fx-active .fx-node-circle {
  border-color: rgba(4, 120, 87, 0.4);
  background: rgba(4, 120, 87, 0.08);
  box-shadow: 0 0 0 6px rgba(4, 120, 87, 0.12), 0 10px 24px rgba(15, 35, 64, 0.08);
}

.fx-node.fx-pulse .fx-node-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: fx-node-ripple 0.7s var(--fx-ease);
}

@keyframes fx-node-ripple {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}

.fx-node-icon.fx-animate { animation: fx-node-icon-jiggle 0.6s var(--fx-ease); }

@keyframes fx-node-icon-jiggle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  35%      { transform: scale(1.18) rotate(-6deg); }
  65%      { transform: scale(1.1) rotate(4deg); }
}

.fx-node-label {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-muted);
  transition: color 0.4s;
}

.fx-node.fx-active .fx-node-label { color: var(--ink); }

.fx-node-status {
  font-size: 0.6875rem;
  color: var(--ink-muted);
  opacity: 0.7;
}

/* ---------- Reduced motion: final calm state, no continuous animation ---------- */
@media (prefers-reduced-motion: reduce) {
  .fx-orbit-stage.fx-spin .fx-ring-1,
  .fx-orbit-stage.fx-spin .fx-ring-2,
  .fx-orbit-stage.fx-spin .fx-ring-3,
  .fx-finder-core,
  .fx-finder-core.fx-searching .fx-finder-scan,
  .fx-finder-core.fx-searching .fx-finder-icon,
  .fx-result-pill.fx-shown,
  .fx-node.fx-pulse .fx-node-circle::after,
  .fx-node-icon.fx-animate {
    animation: none !important;
  }

  .fx-filter-pill,
  .fx-result-pill,
  .fx-email-card,
  .fx-email-line {
    transition: opacity 0.3s ease;
    filter: none;
    transform: none;
  }

  .fx-filter-pill.fx-filled,
  .fx-result-pill.fx-shown,
  .fx-email-card.fx-visible,
  .fx-email-line {
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .fx-flow-wrap { grid-template-columns: 320px 1fr; column-gap: 32px; }
  .fx-orbit-stage { max-width: 540px; }
}

@media (max-width: 860px) {
  .fx-flow-wrap { grid-template-columns: 1fr; row-gap: 40px; }
  .fx-copy { padding-top: 0; text-align: center; }
  .fx-copy-desc { max-width: 480px; margin: 0 auto; }
  .fx-eyebrow { justify-content: center; }
  .fx-orbit-stage { max-width: 460px; margin: 0 auto; aspect-ratio: 1 / 1.35; }
  .fx-copy-email { padding-bottom: 0; }
  .fx-email-card { margin: 0 auto 28px; }
}

/* Mobile: vertical journey instead of the orbital layout */
@media (max-width: 620px) {
  .fx-connector { display: none; }
  .fx-inter-particle,
  .fx-particle { display: none; }

  .fx-orbit-stage {
    aspect-ratio: auto;
    height: auto;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
  }

  .fx-orbit-rings { display: none; }

  .fx-filter-pill,
  .fx-result-pill,
  .fx-finder-core {
    position: static;
    transform: none !important;
  }

  .fx-finder-status { position: static; transform: none; margin-top: 6px; }
  .fx-finder-core { margin: 8px 0; }

  .fx-result-pill.fx-css-reveal { animation: fx-pill-reveal var(--fx-med) var(--fx-ease) forwards; }

  .fx-workflow { flex-direction: column; align-items: stretch; gap: 28px; }
  .fx-workflow-line { top: 0; bottom: 0; left: 25px; right: auto; width: 2px; height: auto; }
  .fx-workflow-line-fill { width: 100%; height: 0%; transition: height var(--fx-slow) var(--fx-ease); }
  .fx-node { flex-direction: row; text-align: left; gap: 14px; }
  .fx-node-circle { flex-shrink: 0; }
}

/* ============================================================
   MODULES
   ============================================================ */
.modules-section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 16% 0%, rgba(0, 212, 255, 0.11), transparent 65%),
    radial-gradient(ellipse 52% 42% at 86% 12%, rgba(99, 102, 241, 0.08), transparent 68%),
    linear-gradient(180deg, var(--light) 0%, var(--light-soft) 100%);
  color: var(--ink);
}

.modules-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 35, 64, 0.14), transparent);
}

.modules-section .section-wrap {
  position: relative;
  z-index: 2;
}

.modules-section .s-title,
.roles-section .s-title {
  color: var(--ink);
}

.modules-section .s-sub,
.roles-section .s-sub {
  color: var(--ink-soft);
}

.modules-section .s-tag,
.roles-section .s-tag {
  color: #087ea4;
  border-color: rgba(0, 142, 190, 0.18);
  background: rgba(0, 142, 190, 0.07);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.m-card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 18px 48px rgba(15, 35, 64, 0.07);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.m-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.m-card:hover {
  border-color: rgba(0, 142, 190, 0.25);
  transform: translateY(-4px) perspective(600px) rotateX(2deg);
  box-shadow: 0 24px 70px rgba(15, 35, 64, 0.13), 0 0 42px rgba(0, 142, 190, 0.08);
}

.mc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 142, 190, 0.09), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.m-card:hover .mc-glow { opacity: 1; }

.mc-corner {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}

.mcc-t {
  top: 0;
  background: linear-gradient(90deg, var(--neon), transparent 60%);
  opacity: 0.4;
}

.mcc-b {
  bottom: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(99, 102, 241, 0.22));
}

.mc-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(7, 17, 31, 0.22);
}

.mc-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
}

.m-card h3 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.m-card p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   STUDENT JOURNEY
   ============================================================ */
.sj-section {
  height: 420vh;
  position: relative;
}

.sj-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 52px 24px 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f5ff 0%, #eef2ff 50%, #f0f9ff 100%);
  color: var(--ink, #07111f);
}

.sj-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sj-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.sj-orb-1 {
  width: 520px; height: 520px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 70%);
  animation: sj-orb1 16s ease-in-out infinite alternate;
}
.sj-orb-2 {
  width: 440px; height: 440px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22) 0%, transparent 70%);
  animation: sj-orb2 20s ease-in-out infinite alternate;
}
.sj-orb-3 {
  width: 320px; height: 320px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  animation: sj-orb3 12s ease-in-out infinite alternate;
}

@keyframes sj-orb1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes sj-orb2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -30px) scale(1.1); }
}
@keyframes sj-orb3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.25); }
}

.sj-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.sj-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  perspective: 1100px;
  perspective-origin: 50% 48%;
  overflow: hidden;
}

.sj-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
  transform: translateY(-50%);
}

.sj-card {
  flex-shrink: 0;
  width: 280px;
  min-height: 320px;
  margin: 0 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(37,99,235,0.07), 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.sj-card.sj-will-animate {
  will-change: transform, opacity, filter;
}

.sj-card.sj-active {
  border-color: rgba(37,99,235,0.5);
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.35),
    0 8px 48px rgba(37,99,235,0.22),
    0 2px 8px rgba(0,0,0,0.1);
}

.sjc-ghost {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sjc-icon {
  font-size: 2rem;
  line-height: 1;
}

.sjc-step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  opacity: 0.75;
}

.sjc-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: #07111f;
  line-height: 1.3;
  margin: 0;
}

.sjc-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3f4b5d;
  margin: 0;
  flex: 1;
}

.sjc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  width: fit-content;
}

.sjc-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2563eb;
  display: block;
}

.sjc-ai {
  font-size: 0.8rem;
  color: #4f46e5;
  background: rgba(79,70,229,0.07);
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1.45;
  margin-top: auto;
}

.sj-cta-card {
  flex-shrink: 0;
  width: 280px;
  min-height: 320px;
  margin: 0 16px;
  background: linear-gradient(140deg, #0f172a 0%, #1e1b4b 60%, #0c2347 100%);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.sj-cta-card.sj-will-animate {
  will-change: transform, opacity, filter;
}

.sj-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(99,102,241,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sjc-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165,180,252,0.8);
  position: relative;
}

.sjc-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  position: relative;
}

.sjc-cta-desc {
  font-size: 0.9rem;
  color: rgba(203,213,225,0.85);
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.sjc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: fit-content;
  position: relative;
}

.sjc-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sj-path-row {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  height: 44px;
  pointer-events: none;
}

.sj-path-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.sj-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.sj-bubble {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(8px);
}

.sj-bubble.sj-bubble-on {
  opacity: 1;
  transform: translateY(0);
  animation: sj-float 3s ease-in-out infinite;
}

.sj-b1 { top: 18%; left: 58%; }
.sj-b2 { top: 35%; right: 6%; }
.sj-b3 { top: 58%; left: 60%; }

@keyframes sj-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.sj-progress {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.sj-prog-track {
  width: 180px;
  height: 3px;
  background: rgba(37,99,235,0.15);
  border-radius: 100px;
  overflow: hidden;
}

.sj-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  border-radius: 100px;
  width: 10%;
  transition: width 0.2s ease;
}

.sj-prog-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2563eb;
  opacity: 0.8;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .sj-section {
    height: auto;
  }

  .sj-sticky {
    position: static;
    height: auto;
    padding: 72px 20px 60px;
    overflow: visible;
  }

  .sj-scene {
    perspective: none;
    overflow: visible;
    flex: none;
    width: 100%;
  }

  .sj-track {
    position: static;
    transform: none !important;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    top: auto;
  }

  .sj-card,
  .sj-cta-card {
    width: 100%;
    max-width: 420px;
    min-height: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .sj-m-hidden {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .sj-m-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: none !important;
  }

  .sj-path-row { display: none; }
  .sj-bubbles  { display: none; }

  .sj-progress {
    justify-content: center;
    margin-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sj-bg-orb { animation: none !important; }
  .sj-bubble  { animation: none !important; }
  .sj-card,
  .sj-cta-card {
    transition: none !important;
    will-change: auto !important;
  }
  .sj-m-hidden {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   ROLES
   ============================================================ */
.roles-section {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--light-soft) 0%, var(--light) 44%, var(--light-ice) 100%);
  color: var(--ink);
}

.roles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 44% at 22% 28%, rgba(0, 212, 255, 0.1), transparent 68%),
    radial-gradient(ellipse 45% 42% at 80% 62%, rgba(99, 102, 241, 0.08), transparent 70%);
  pointer-events: none;
}

.roles-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.roles-section .section-wrap {
  position: relative;
  z-index: 2;
}

.roles-grid .r-card:first-child {
  grid-column: 1 / 3;
}

.r-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 35, 64, 0.075);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.r-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.r-card:hover {
  border-color: rgba(0, 142, 190, 0.24);
  box-shadow: 0 24px 70px rgba(15, 35, 64, 0.13), 0 0 38px rgba(0, 142, 190, 0.07);
}

.r-main {
  border-color: rgba(0, 142, 190, 0.26);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(99, 102, 241, 0.08)),
    rgba(255, 255, 255, 0.94);
}

.rc-glow {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.rc-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
}

.r-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.r-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.rc-badge {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 212, 255, 0.06);
}

/* ============================================================
   LAUNCHING SOON
   ============================================================ */
.launch-section {
  position: relative;
  padding: 120px 24px 130px;
  background: linear-gradient(180deg, #020814 0%, #030b20 100%);
  overflow: hidden;
}

.launch-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(167,139,250,0.1)  0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5%  15%, rgba(0,212,255,0.08)   0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 95% 85%, rgba(99,102,241,0.09)  0%, transparent 55%);
  animation: launch-glow-drift 11s ease-in-out infinite alternate;
}

@keyframes launch-glow-drift {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.06) translateY(-12px); }
}

.ls-tag {
  background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(99,102,241,0.18)) !important;
  border-color: rgba(167,139,250,0.42) !important;
  color: var(--violet) !important;
}

.ls-tag::before { display: none; } /* emoji serves as icon â€" no dot needed */

.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

/* card base */
.launch-card {
  position: relative;
  border-radius: 24px;
  padding: 28px 26px 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  transition: transform 0.32s var(--ease-out), border-color 0.28s, box-shadow 0.28s;
}

/* per-card accent via CSS custom property */
.lc-1 { --lc: #00d4ff; --lcr: 0,212,255; }
.lc-2 { --lc: #34d399; --lcr: 52,211,153; }
.lc-3 { --lc: #a78bfa; --lcr: 167,139,250; }
.lc-4 { --lc: #f59e0b; --lcr: 245,158,11; }

.launch-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(var(--lcr), 0.45);
  box-shadow:
    0 36px 88px rgba(0,0,0,0.48),
    0 0 80px  rgba(var(--lcr), 0.18),
    inset 0 0 40px rgba(var(--lcr), 0.05);
}

/* top-edge gradient glow */
.launch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(var(--lcr), 0.11) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.launch-card:hover::before { opacity: 1.6; }

/* pulsing ring corner decoration */
.lc-ring {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--lcr), 0.2);
  animation: lc-ring-pulse 3.4s ease-out infinite;
  pointer-events: none;
}

.lc-ring::after {
  content: '';
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px solid rgba(var(--lcr), 0.12);
  animation: lc-ring-pulse 3.4s ease-out infinite 0.8s;
}

@keyframes lc-ring-pulse {
  0%   { transform: scale(0.72); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* badge */
.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lc);
  background: rgba(var(--lcr), 0.12);
  border: 1px solid rgba(var(--lcr), 0.32);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.lc-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lc);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(var(--lcr), 0.7);
  animation: lc-dot-blink 1.8s ease-in-out infinite;
}

@keyframes lc-dot-blink {
  0%, 100% { opacity: 1;   transform: scale(1);    box-shadow: 0 0 8px rgba(var(--lcr), 0.7); }
  50%       { opacity: 0.4; transform: scale(0.72); box-shadow: 0 0 0   rgba(var(--lcr), 0); }
}

.lc-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.lc-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lc-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 44% 42% at 8% 20%, rgba(0, 212, 255, 0.11), transparent 66%),
    radial-gradient(ellipse 44% 42% at 88% 80%, rgba(99, 102, 241, 0.09), transparent 70%),
    linear-gradient(180deg, var(--light) 0%, var(--light-soft) 100%);
  color: var(--ink);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 35, 64, 0.14), transparent);
}

.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.contact-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.contact-section .s-tag-light {
  color: #087ea4;
  border-color: rgba(0, 142, 190, 0.18);
  background: rgba(0, 142, 190, 0.07);
}

.contact-section .s-tag-light::before {
  background: #087ea4;
}

.contact-section .s-sub-light {
  color: var(--ink-soft);
}

.contact-feats {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.cf-mark {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 142, 190, 0.1);
  border: 1px solid rgba(0, 142, 190, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  color: var(--neon);
  flex-shrink: 0;
}

.contact-alt-cta {
  margin-top: 32px;
}

/* Form card */
.contact-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(15, 35, 64, 0.13), 0 0 45px rgba(0, 142, 190, 0.06);
}

.cfc-corner {
  position: absolute;
  left: 24px; right: 24px;
  height: 1px;
}

.cfcc-t { top: 0; background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent); }
.cfcc-b { bottom: 0; background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent); }

.cfc-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(247, 250, 255, 0.92);
  border: 1px solid rgba(15, 35, 64, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(79, 95, 115, 0.55);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid {
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-shake {
  animation: form-shake 0.42s var(--ease-out);
}

@keyframes form-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

.form-group select option {
  background: var(--light);
  color: var(--ink);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  position: relative;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--pulse) 100%);
  color: var(--void);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.3), 0 8px 24px rgba(99, 102, 241, 0.2);
}

.fs-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.form-submit:hover .fs-shine { left: 150%; }

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

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

.form-error-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #b91c1c;
  font-size: 0.875rem;
  text-align: center;
}

.form-error-msg.visible { display: block; }

/* Honeypot bot trap: kept in the layout (not display:none) so bots that
   skip hidden fields don't skip this one, but invisible and unreachable
   for real visitors. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

.fss-icon {
  font-size: 2.5rem;
  color: var(--neon);
  filter: drop-shadow(0 0 12px var(--neon));
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.form-success .fss-alt {
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ink);
}

.form-success .btn-primary {
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--void);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer-logo-text {
  /* Same neon -> pulse -> violet sweep used everywhere else on the site
     (.grad-text, hero highlight, buttons) rather than the logo file's
     full rainbow, so the footer wordmark matches the rest of the brand. */
  background: linear-gradient(135deg, var(--neon) 0%, var(--pulse) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(240, 248, 255, 0.35);
}

.footer-cols {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fc h4 {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.fc a {
  display: block;
  font-size: 0.875rem;
  color: rgba(240, 248, 255, 0.35);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.fc a:hover { color: var(--neon); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(240, 248, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(240, 248, 255, 0.25);
}

.powered-by {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.powered-by-label {
  font-size: 0.6875rem;
  color: rgba(240, 248, 255, 0.3);
  letter-spacing: 0.03em;
}

.edlogica-logo {
  height: 90px;
  width: auto;
  display: block;
  background: #ffffff;
  border-radius: 5px;
  padding: 3px 7px;
  box-sizing: content-box;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.edlogica-logo:hover { opacity: 1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .product-shell {
    grid-template-columns: 1fr;
  }

  .activity-overview {
    grid-template-columns: 1fr;
  }

  .activity-copy h3,
  .activity-copy p {
    max-width: 720px;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-rail {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 35, 64, 0.08);
    padding: 0 0 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-card {
    display: none;
  }

  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .roles-grid .r-card:first-child {
    grid-column: 1 / 3;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-cols {
    grid-column: 1 / 3;
  }

  /* Portal mobile: disable 3D, show static */
  .portal-section {
    height: auto;
    padding: 80px 0 0;
  }

  .portal-sticky {
    position: relative;
    height: auto;
    padding: 80px 24px;
    flex-direction: column;
    gap: 40px;
  }

  .portal-canvas { display: none; }
  .portal-grid-bg { display: none; }
  .portal-hud { display: none; }
  .portal-headline { position: static; transform: none; margin-bottom: 32px; }
  .portal-headline span { font-size: 1.5rem; }

  .holo-scene {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    perspective: none;
    transform-style: flat;
  }

  .iris-wrap { display: none; }
  .holo-main {
    position: static;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }
  .holo-pod { display: none; }
  .holo-lines { display: none; }
  .mobile-pods { display: grid; position: static; }
  .portal-cta { position: static; transform: none; opacity: 1; pointer-events: auto; text-align: center; margin-top: 16px; }

}

@media (max-width: 900px) {
  .nav-page-links,
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(2, 7, 17, 0.97);
    backdrop-filter: blur(24px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nl-mobile-page {
    display: list-item;
  }

  .burger {
    display: flex;
    margin-left: 0;
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(2, 7, 17, 0.97);
    backdrop-filter: blur(24px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .burger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }

  .hero { padding: 120px 20px 100px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .product-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 80px;
    padding-bottom: 56px;
  }

  .suite-head {
    display: block;
    margin-bottom: 28px;
  }

  .suite-demo {
    margin-top: 20px;
  }

  .product-shell {
    padding: 14px;
    border-radius: 14px;
  }

  .activity-overview {
    padding: 16px;
    border-radius: 14px;
  }

  .product-rail {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .product-pane h3 {
    text-align: left;
    margin: 0;
  }

  .product-pane > p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .pane-chips {
    justify-content: flex-start;
  }

  .pane-feature-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-card-featured {
    grid-column: auto;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules-section {
    padding: 80px 16px;
  }

  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roles-grid .r-card:first-child {
    grid-column: 1 / 3;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .journey-sticky { padding: 68px 20px 32px; }

}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .roles-grid .r-card:first-child { grid-column: 1; }
  .mobile-pods { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .launch-grid { grid-template-columns: 1fr; }
  .launch-card { padding: 22px 20px; }
  .lc-title { font-size: 1.2rem; }
}

@media (max-width: 768px) and (min-width: 481px) {
  .launch-grid { grid-template-columns: 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .holo-lines,
  .m-card,
  .r-card,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .holo-main {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  .holo-pod {
    opacity: 1 !important;
  }

  #pod1 { transform: translate(-50%, -50%) translate3d(-455px, -174px, 0) !important; }
  #pod2 { transform: translate(-50%, -50%) translate3d(455px, -174px, 0) !important; }
  #pod3 { transform: translate(-50%, -50%) translate3d(-455px, 174px, 0) !important; }
  #pod4 { transform: translate(-50%, -50%) translate3d(455px, 174px, 0) !important; }

  .portal-cta {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    pointer-events: auto;
  }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-hero {
  position: relative;
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(139,92,246,0.13) 0%, transparent 68%);
  pointer-events: none;
}

.ih-breadcrumb {
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.ih-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ih-breadcrumb a:hover { color: var(--white); }

.ih-breadcrumb span { margin: 0 10px; opacity: 0.4; }

.ih-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.ih-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* inner page content section */
.ip-section {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.ip-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ip-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.28s var(--ease-out), border-color 0.24s, box-shadow 0.24s;
}

.ip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(139,92,246,0.08);
}

.ip-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.ip-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ip-card-body {
  font-size: 0.875rem;
  line-height: 1.68;
  color: var(--muted);
}

.ip-section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

.ip-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 14px;
}

.ip-section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.ip-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .ip-grid { grid-template-columns: 1fr; }
  .ip-grid-2 { grid-template-columns: 1fr; }
  .inner-hero { padding: 130px 20px 72px; }
}

