/* ═══════════════════════════════════════════════════
   ENTERHUB360 — V2 · Light 3D design system
   White base · deep navy ink · teal / pink accents
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fc;
  --ink: #0a1430;
  --muted: #5a6a8c;
  --teal: #0fb5c2;
  --teal-deep: #0a95a5;
  --pink: #e64a76;
  --pink-deep: #cf3560;
  --line: rgba(10, 20, 48, 0.09);
  --grad: linear-gradient(90deg, var(--teal), var(--pink));
  --shadow-sm: 0 6px 24px rgba(10, 20, 48, 0.07);
  --shadow-md: 0 18px 50px rgba(10, 20, 48, 0.10);
  --shadow-lg: 0 30px 80px rgba(10, 20, 48, 0.14);
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(15, 181, 194, 0.25); }

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(15, 181, 194, 0.09);
  border: 1px solid rgba(15, 181, 194, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-display);
}
.eyebrow--light {
  color: #7ceaf2;
  background: rgba(15, 181, 194, 0.16);
  border-color: rgba(124, 234, 242, 0.35);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.section__sub {
  color: var(--muted);
  max-width: 660px;
  margin-top: 16px;
  font-size: 17px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-display);
}

.btn--primary {
  background: linear-gradient(135deg, #14c2cf, #0a95a5);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 181, 194, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 181, 194, 0.45);
}

.btn--ghost {
  border-color: rgba(10, 20, 48, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  color: var(--teal-deep);
  box-shadow: var(--shadow-sm);
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--light:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.2); }

.btn--sm { padding: 11px 22px; font-size: 12px; }

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 4vw, 56px);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(10, 20, 48, 0.08);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; }
.brand__word {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.brand__word em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__tag {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; align-items: center; gap: 6px; }
.lang__btn {
  background: none;
  border: none;
  color: var(--muted);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.3s;
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { color: var(--teal-deep); }
.lang__sep { color: rgba(10, 20, 48, 0.2); font-size: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(20px, 4vw, 56px) 80px;
  overflow: hidden;
  perspective: 1200px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 20, 48, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}

.hero__tint {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__tint--teal {
  width: 520px; height: 520px;
  background: rgba(15, 181, 194, 0.14);
  top: -140px; right: -80px;
}
.hero__tint--pink {
  width: 420px; height: 420px;
  background: rgba(230, 74, 118, 0.10);
  bottom: -120px; left: -100px;
}

.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(15, 181, 194, 0.09);
  border: 1px solid rgba(15, 181, 194, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: var(--font-display);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 560px;
  margin-top: 22px;
}

.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero__globe {
  position: relative;
  aspect-ratio: 1;
  max-width: 600px;
  justify-self: center;
  width: 100%;
  will-change: transform;
}
#globe { width: 100%; height: 100%; }
.hero__globe-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(15, 181, 194, 0.16), 0 60px 120px rgba(10, 20, 48, 0.08);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(10, 20, 48, 0.22);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--teal);
  animation: scrollHint 2s infinite var(--ease);
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── 3D cubes ── */
.fx { position: absolute; z-index: 1; pointer-events: none; will-change: transform; }

.float { animation: floatBob 7s ease-in-out infinite; }
.float--b { animation-duration: 9s; animation-delay: -2.5s; }
.float--c { animation-duration: 11s; animation-delay: -5s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.cube {
  width: var(--s);
  height: var(--s);
  position: relative;
  transform-style: preserve-3d;
  animation: cubeSpin 26s linear infinite;
}
.float--b .cube { animation-duration: 34s; animation-direction: reverse; }
.float--c .cube { animation-duration: 20s; }
@keyframes cubeSpin {
  from { transform: rotateX(-22deg) rotateY(0deg); }
  to   { transform: rotateX(-22deg) rotateY(360deg); }
}

.cube i {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  backface-visibility: visible;
}
.cube i:nth-child(1) { transform: rotateY(  0deg) translateZ(calc(var(--s) / 2)); }
.cube i:nth-child(2) { transform: rotateY( 90deg) translateZ(calc(var(--s) / 2)); }
.cube i:nth-child(3) { transform: rotateY(180deg) translateZ(calc(var(--s) / 2)); }
.cube i:nth-child(4) { transform: rotateY(270deg) translateZ(calc(var(--s) / 2)); }
.cube i:nth-child(5) { transform: rotateX( 90deg) translateZ(calc(var(--s) / 2)); }
.cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(calc(var(--s) / 2)); }

.cube--teal i { background: rgba(15, 181, 194, 0.07); border: 1.5px solid rgba(15, 181, 194, 0.35); }
.cube--pink i { background: rgba(230, 74, 118, 0.06); border: 1.5px solid rgba(230, 74, 118, 0.30); }
.cube--navy i { background: rgba(10, 20, 48, 0.04); border: 1.5px solid rgba(10, 20, 48, 0.22); }

/* ── Sections ── */
.section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background: var(--bg-soft);
}
.section--alt > * { max-width: 1280px; margin-left: auto; margin-right: auto; }

.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ── Stats ── */
.stats { padding: 0 clamp(20px, 4vw, 56px); position: relative; z-index: 2; }
.stats__grid {
  max-width: 1280px;
  margin: -10px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease);
}
.stat:hover { box-shadow: var(--shadow-md); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat__num sup { font-size: 0.55em; }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 6px; font-weight: 600; }

/* ── Audience cards ── */
.aud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.acard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}
.acard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}
.acard--teal::before { background: linear-gradient(90deg, #14c2cf, #63e7ef); }
.acard--pink::before { background: linear-gradient(90deg, #e64a76, #ff7aa0); }
.acard:hover { box-shadow: var(--shadow-md); }
.acard--teal:hover { border-color: rgba(15, 181, 194, 0.4); }
.acard--pink:hover { border-color: rgba(230, 74, 118, 0.35); }

.acard__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.acard__icon svg { width: 34px; height: 34px; }
.acard--teal .acard__icon { background: rgba(15, 181, 194, 0.1); color: var(--teal-deep); }
.acard--pink .acard__icon { background: rgba(230, 74, 118, 0.09); color: var(--pink-deep); }

.acard__kicker {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.acard--teal .acard__kicker { color: var(--teal-deep); }
.acard--pink .acard__kicker { color: var(--pink-deep); }

.acard h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.acard p { color: var(--muted); font-size: 15.5px; }

/* ── Service cards ── */
.svcgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.scard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
}
.scard:hover { box-shadow: var(--shadow-md); border-color: rgba(15, 181, 194, 0.35); }

.scard__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 20, 48, 0.13);
}

.scard__icon {
  width: 58px; height: 58px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(15, 181, 194, 0.12), rgba(230, 74, 118, 0.08));
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.scard__icon svg { width: 30px; height: 30px; }

.scard h3 {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.scard p { color: var(--muted); font-size: 14.5px; }

/* real 3D pop on tilt */
.tilt { will-change: transform; }
.lift { transform: translateZ(34px); will-change: transform; }

/* ── Journey ── */
.journey { position: relative; max-width: 1080px; margin: 0 auto; }
.journey__track {
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 3px;
  background: rgba(10, 20, 48, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.journey__progress {
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 1.6s var(--ease) 0.3s;
}
.journey.is-in .journey__progress { width: 100%; }

.journey__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
}
.jstep__dot {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(15, 181, 194, 0.4);
  box-shadow: var(--shadow-sm), inset 0 -6px 14px rgba(15, 181, 194, 0.12);
  display: grid;
  place-items: center;
  font: 800 22px var(--font-display);
  color: var(--teal-deep);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.jstep:hover .jstep__dot {
  transform: rotateY(360deg) scale(1.08);
  box-shadow: var(--shadow-md);
}
.jstep h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.jstep p { color: var(--muted); font-size: 14.5px; max-width: 300px; margin: 0 auto; }

/* ── Compare ── */
.compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px clamp(24px, 3.5vw, 48px);
  max-width: 900px;
  transform-style: preserve-3d;
}
.compare__row { margin-bottom: 26px; }
.compare__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}
.compare__route { font-weight: 600; font-size: 15px; }
.compare__days b { font: 800 24px var(--font-display); }
.compare__days i { font-style: normal; color: var(--muted); font-size: 13px; }
.compare__days--slow b { color: var(--muted); }
.compare__days--fast b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare__track {
  height: 12px;
  border-radius: 8px;
  background: rgba(10, 20, 48, 0.06);
  overflow: hidden;
}
.compare__bar {
  height: 100%;
  width: 0;
  border-radius: 8px;
  transition: width 1.6s var(--ease) 0.25s;
}
.compare__bar--slow { background: linear-gradient(90deg, #b8c3d9, #8d9cba); }
.compare__bar--fast { background: var(--grad); }
.compare__note {
  color: var(--muted);
  font-size: 14.5px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 6px;
}

/* ── Campus ── */
.campus { padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 56px); max-width: 1280px; margin: 0 auto; }
.campus__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  display: flex;
  align-items: center;
}
.campus__img { position: absolute; inset: -60px 0; }
.campus__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.campus__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 11, 24, 0.88) 20%, rgba(6, 11, 24, 0.45) 60%, rgba(6, 11, 24, 0.25));
}
.campus__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(40px, 6vw, 80px);
  max-width: 640px;
}
.campus__inner .section__sub { color: rgba(234, 240, 250, 0.8); }
.campus__inner .btn { margin-top: 28px; }

/* ── Contact ── */
.contact__panel {
  position: relative;
  background: linear-gradient(135deg, #0a1430, #14224c);
  border-radius: 28px;
  padding: clamp(50px, 7vw, 90px) clamp(28px, 5vw, 80px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: visible;
  transform-style: preserve-3d;
}
.contact__panel .section__sub { color: rgba(234, 240, 250, 0.75); margin-left: auto; margin-right: auto; }
.contact__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.contact__panel .btn { text-transform: none; letter-spacing: 0.03em; font-size: 14.5px; }

/* ── Footer ── */
.footer {
  background: #0a1430;
  color: #eaf0fa;
  padding: 60px clamp(20px, 4vw, 56px) 36px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { width: 190px; margin-bottom: 16px; }
.footer__brand p { color: #93a2c0; font-size: 14px; max-width: 320px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #63e7ef;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: #93a2c0; font-size: 14px; transition: color 0.3s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #93a2c0;
  font-size: 13.5px;
}

/* ── Reveal (3D entrance) ── */
.reveal {
  opacity: 0;
  transform: perspective(1000px) rotateX(8deg) translateY(34px);
  transform-origin: 50% 100%;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal.is-in {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__globe { max-width: 460px; order: -1; margin-top: 20px; }
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 64px; right: 16px;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 22px;
    box-shadow: var(--shadow-md);
    display: none;
    min-width: 200px;
  }
  .nav__links.is-open { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

@media (max-width: 760px) {
  .aud { grid-template-columns: 1fr; }
  .svcgrid { grid-template-columns: 1fr; }
  .journey__grid { grid-template-columns: 1fr; gap: 40px; }
  .journey__track { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .fx { display: none; }
}

/* ═══════════════════════════════════════════════════
   SUBPAGE COMPONENTS
   ═══════════════════════════════════════════════════ */

/* ── Card links ── */
.acard__more, .scard__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font: 700 13.5px var(--font-display);
  color: var(--teal-deep);
  transition: gap 0.3s var(--ease);
}
.acard--pink .acard__more { color: var(--pink-deep); }
.acard:hover .acard__more, .scard:hover .scard__more { gap: 14px; }

/* ── Page hero ── */
.phero {
  position: relative;
  padding: 170px clamp(20px, 4vw, 56px) 80px;
  overflow: hidden;
  perspective: 1200px;
}
.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 20, 48, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 30%, transparent 80%);
}
.phero__tint {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.phero__tint--teal { width: 460px; height: 460px; background: rgba(15, 181, 194, 0.13); top: -160px; right: -60px; }
.phero__tint--pink { width: 460px; height: 460px; background: rgba(230, 74, 118, 0.10); top: -160px; right: -60px; }

.phero__inner { position: relative; max-width: 1280px; margin: 0 auto; }
.phero__crumb {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.phero__crumb a:hover { color: var(--teal-deep); }
.phero__crumb span:last-child { color: var(--ink); }
.phero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.phero__sub {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 640px;
  margin-top: 20px;
}

/* ── Split (photo + text) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split + .split { margin-top: clamp(60px, 8vw, 100px); }
.split--rev .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split__media:hover img { transform: scale(1.045); }
.split__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font: 700 12px var(--font-display);
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}
.split__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.22;
  margin-bottom: 14px;
}
.split__body p { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }

/* ── Ticks ── */
.ticks { list-style: none; margin-top: 20px; display: grid; gap: 13px; }
.ticks li {
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  font-size: 15px;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(15, 181, 194, 0.13);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 9px; top: 5px;
  width: 5px; height: 10px;
  border-right: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: rotate(43deg);
}

/* ── Departments ── */
.deptgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dept {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.dept:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 181, 194, 0.3);
}
.dept__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(15, 181, 194, 0.1);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.dept__icon svg { width: 24px; height: 24px; }
.dept h4 { font: 700 15.5px var(--font-display); margin-bottom: 6px; }
.dept p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ── Quote ── */
.quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 20px;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -46px; left: 50%;
  transform: translateX(-50%);
  font: 800 130px var(--font-display);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  line-height: 1;
}
.quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.9vw, 32px);
  line-height: 1.4;
}
.quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* ── Roadmap timeline ── */
.tl {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding-top: 36px;
}
.tl__line {
  position: absolute;
  top: 8px; left: 2%; right: 2%;
  height: 3px;
  border-radius: 2px;
  background: rgba(10, 20, 48, 0.08);
  overflow: hidden;
}
.tl__fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 2s var(--ease) 0.3s;
}
.tl.is-in .tl__fill { width: 100%; }
.tl__item { position: relative; }
.tl__dot {
  position: absolute;
  top: -34px; left: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  border: 3.5px solid var(--teal);
  box-shadow: var(--shadow-sm);
}
.tl__item--pink .tl__dot { border-color: var(--pink); }
.tl__year {
  font: 800 22px var(--font-display);
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.tl__item--pink .tl__year { color: var(--pink-deep); }
.tl__item h3 { font: 700 16.5px var(--font-display); margin-bottom: 6px; }
.tl__item p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact__list { list-style: none; display: grid; gap: 16px; }
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.contact__list li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact__list svg { width: 26px; height: 26px; color: var(--teal-deep); flex-shrink: 0; margin-top: 3px; }
.contact__list b {
  display: block;
  font: 700 12px var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact__list div { font-size: 14.5px; }
.contact__list a:hover { color: var(--teal-deep); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 8px; font-weight: 700; font-size: 13.5px; }
.form input, .form textarea {
  border: 1.5px solid rgba(10, 20, 48, 0.14);
  border-radius: 12px;
  padding: 13px 16px;
  font: 500 15px var(--font-body);
  background: #fbfcfe;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form input:focus, .form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 181, 194, 0.13);
}
.btn--full { width: 100%; }
.form__ok { color: var(--teal-deep); font-weight: 700; text-align: center; }

/* ── Pink variants ── */
.btn--pink {
  background: linear-gradient(135deg, #f2608a, #d63963);
  color: #fff;
  box-shadow: 0 12px 30px rgba(230, 74, 118, 0.32);
}
.btn--pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(230, 74, 118, 0.42);
}
.eyebrow--pink {
  color: var(--pink-deep);
  background: rgba(230, 74, 118, 0.08);
  border-color: rgba(230, 74, 118, 0.22);
}
.scard--pink .scard__icon {
  background: linear-gradient(135deg, rgba(230, 74, 118, 0.11), rgba(15, 181, 194, 0.07));
  color: var(--pink-deep);
}
.scard--pink:hover { border-color: rgba(230, 74, 118, 0.32); }

/* ── Subpage responsive ── */
@media (max-width: 1024px) {
  .deptgrid { grid-template-columns: repeat(2, 1fr); }
  .tl { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .tl__line { display: none; }
  .tl__dot { display: none; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .deptgrid { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   INTERACTIVE STATS + MODALS
   ═══════════════════════════════════════════════════ */

.stat--link { cursor: pointer; }
.stat { position: relative; }
.stat__plus {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 181, 194, 0.4);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font: 700 15px/1 var(--font-display);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.35s var(--ease);
}
.stat--link:hover .stat__plus {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: rotate(90deg) scale(1.08);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 48, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  width: 100%;
  max-height: 86vh;
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  animation: modalIn 0.45s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: perspective(900px) rotateX(6deg) translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.35s var(--ease);
  z-index: 2;
}
.modal__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal__title {
  font: 700 clamp(20px, 2.6vw, 28px) var(--font-display);
  line-height: 1.2;
  margin-bottom: 8px;
  padding-right: 40px;
}
.modal__sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.modal__deptgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal__dept {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font: 600 13.5px/1.35 var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.modal__dept:hover {
  border-color: rgba(15, 181, 194, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.modal__dept i {
  font: 800 12px var(--font-display);
  font-style: normal;
  color: var(--teal-deep);
  background: rgba(15, 181, 194, 0.1);
  border-radius: 8px;
  padding: 6px 8px;
  flex-shrink: 0;
}

.modal__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal__photos figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.modal__photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.modal__photos figure:hover img { transform: scale(1.05); }
.modal__photos figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(255, 255, 255, 0.93);
  padding: 6px 14px;
  border-radius: 999px;
  font: 700 12px var(--font-display);
}

.modal__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.modal__map img { width: 100%; object-fit: cover; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(15, 181, 194, 0.3);
  background: rgba(15, 181, 194, 0.07);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 8px 17px;
  font: 700 13px var(--font-display);
}

body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .modal__deptgrid { grid-template-columns: 1fr 1fr; }
  .modal__photos { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .modal__deptgrid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .float, .cube, .hero__scroll span { animation: none !important; }
  .reveal { transition-duration: 0.01s; }
  html { scroll-behavior: auto; }
  .modal__card { animation: none; }
}
