/* ========== Global ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
  border-radius: 0.375rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ========== Landing page ========== */
body.page-landing {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: #020617;
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
}

body.page-landing main {
  display: block;
}

/* —— Navbar —— */
.landing-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.countdown-container {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: #00c6ff;
  letter-spacing: 0.03em;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.countdown-top {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.countdown-label {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 12px;
}

.countdown-sub {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .countdown-container {
    display: none;
  }
}

.landing-nav .container {
  position: relative;
}

.landing-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-height: 5.5rem;
  position: relative;
}

.landing-nav__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #f8fafc;
  text-align: center;
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .landing-nav__title {
    display: block;
  }
}

.landing-nav__handshake {
  margin: 0 0.4rem;
  color: #86d8ff !important;
  font-size: 1.25rem;
  text-shadow: 0 0 12px rgba(134, 216, 255, 0.8), 0 0 20px rgba(0, 198, 255, 0.5);
  display: inline-block;
  width: auto;
  height: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

.landing-nav__logos {
  display: none;
}

.landing-nav__drawer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.landing-nav__logo-link {
  display: none;
}

.landing-nav__logo-link:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.4));
}

.landing-nav__logo {
  display: none;
}

.landing-nav__logo:hover {
  transform: scale(1.08);
}

.landing-nav__drawer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.landing-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.15rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.btn-nav-cta--primary {
  color: #f8fafc;
  border: 1px solid rgba(56, 189, 248, 0.55);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.45), rgba(99, 102, 241, 0.4));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-nav-cta--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.85);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.65), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-nav-cta--secondary {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-nav-cta--secondary:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.35), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.landing-nav__toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.landing-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
}

@media (max-width: 767.98px) {
  .landing-nav__toggle {
    display: flex;
  }

  .landing-nav__drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    justify-content: center;
    display: none;
  }

  .landing-nav__drawer.is-open {
    display: flex;
  }

  .landing-nav__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-nav-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* —— Hero —— */
.landing-hero {
  position: relative;
  min-height: unset;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(5.5rem + 0.5rem) 1rem 2rem;
  background: linear-gradient(165deg, #0f172a 0%, #020617 55%, #020617 100%);
  overflow: hidden;
}

.landing-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite;
}

.landing-hero__blob--1 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: -10%;
  left: -15%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55) 0%, transparent 70%);
}

.landing-hero__blob--2 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  bottom: -5%;
  right: -20%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
  animation-delay: -4s;
}

.landing-hero__blob--3 {
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  top: 40%;
  left: 0;
  right: 0;
  margin-inline: auto;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2%, -3%) scale(1.05);
  }
}

.landing-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
}

.landing-hero__badge {
  display: none;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
}

.landing-hero__title {
  margin: 0 0 1rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #f8fafc 0%, #93c5fd 35%, #38bdf8 60%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(56, 189, 248, 0.25);
}

.landing-hero__typed-wrap {
  min-height: 2.75rem;
  margin: 0 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero__typed {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #bae6fd;
}

.landing-hero__typed .typed-cursor {
  color: #38bdf8 !important;
}

.landing-hero__desc {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #cbd5e1;
}


.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-glow--primary {
  color: #0f172a;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.5), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.btn-glow--primary:hover {
  color: #020617;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 48px rgba(56, 189, 248, 0.85), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.btn-glow--secondary {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 0 24px rgba(148, 163, 184, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-glow--secondary:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 36px rgba(56, 189, 248, 0.35), 0 12px 36px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* —— Highlights —— */
.landing-highlights {
  padding: 1.5rem 1rem 3rem;
  margin-top: 0 !important;
  background: linear-gradient(180deg, #020617 0%, #0f172a 40%, #020617 100%);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-head__title {
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.section-head__sub {
  margin: 0;
  color: #94a3b8;
  font-size: 1.0625rem;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

@media (min-width: 1100px) {
  .highlights-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
  }

  .hl-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}

.hl-card {
  flex: 1 1 240px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.125rem;
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hl-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 40px rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.hl-card__emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.hl-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
  color: #94a3b8;
}

.hl-card__label {
  margin: 0 0 0.35rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}

.hl-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* —— Team CTA —— */
.landing-team-cta {
  padding: 2.5rem 1rem 3rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    #020617;
  text-align: center;
}

.landing-team-cta__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.landing-team-cta__title {
  margin: 0 0 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.landing-team-cta__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.6;
}

.btn-team-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8fafc, #bae6fd);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 40px rgba(248, 250, 252, 0.35), 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.btn-team-cta:hover {
  color: #020617;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 56px rgba(56, 189, 248, 0.45), 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* —— Footer —— */
.landing-footer {
  background: #020617;
  border-top: 1px solid rgba(51, 65, 85, 0.65);
  padding: 3rem 1rem 2rem;
}

.landing-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .landing-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.landing-footer__heading {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.landing-footer__link {
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.25s ease;
}

.landing-footer__link:hover {
  color: #38bdf8;
}

.landing-footer__fineprint {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #475569;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

.footer-icons a {
  font-size: 22px;
  color: white;
  transition: 0.3s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-icon-label {
  font-size: 0.9rem;
  color: #f8fafc;
}

.footer-icons a:hover {
  color: #00c6ff;
  transform: scale(1.2);
}

.roadmap-section {
  padding: 60px 20px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.roadmap-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3.4rem);
  color: #e0f2ff;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 20px rgba(0, 198, 255, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.roadmap-timeline {
  position: relative;
  margin: 0 auto;
  height: 420px;
  padding: 50px 30px;
  overflow: visible;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), rgba(14, 165, 233, 0.8), rgba(56, 189, 248, 0.4));
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  z-index: 1;
}

.roadmap-item {
  position: absolute;
  width: 175px;
  animation: waypoint-in 0.8s ease forwards;
  opacity: 0;
  z-index: 2;
}

.roadmap-item:nth-child(1) { left: 5%; top: 5%; transform: translateX(-50%); }
.roadmap-item:nth-child(2) { left: 20%; top: 55%; transform: translateX(-50%); }
.roadmap-item:nth-child(3) { left: 35%; top: 5%; transform: translateX(-50%); }
.roadmap-item:nth-child(4) { left: 50%; top: 55%; transform: translateX(-50%); }
.roadmap-item:nth-child(5) { left: 65%; top: 5%; transform: translateX(-50%); }
.roadmap-item:nth-child(6) { left: 80%; top: 55%; transform: translateX(-50%); }

.roadmap-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(86, 191, 255, 0.25);
  border-radius: 14px;
  padding: 22px 16px 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.roadmap-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 198, 255, 0.35);
  border-color: rgba(86, 191, 255, 0.6);
}

.step-circle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(0, 198, 255, 0.7);
  z-index: 4;
  font-family: "Poppins", sans-serif;
}

.roadmap-icon {
  display: none;
}

.roadmap-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin: 0 0 8px;
  color: #dbeafe;
  line-height: 1.3;
  font-weight: 700;
}

.roadmap-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.45;
  font-size: 0.88rem;
}

.roadmap-point {
  display: none;
}

.roadmap-item::before {
  display: none;
}

@media (max-width: 1200px) {
  .roadmap-timeline { height: 420px; padding: 50px 20px; }
  .roadmap-item { width: 165px; }
  .roadmap-item:nth-child(1) { left: 8%; }
  .roadmap-item:nth-child(2) { left: 22%; }
  .roadmap-item:nth-child(3) { left: 36%; }
  .roadmap-item:nth-child(4) { left: 50%; }
  .roadmap-item:nth-child(5) { left: 64%; }
  .roadmap-item:nth-child(6) { left: 78%; }
}

@media (max-width: 1024px) {
  .roadmap-section { padding: 50px 15px 80px; }
  .roadmap-timeline { height: 420px; padding: 50px 10px; }
  .roadmap-item { width: 155px; }
  .roadmap-item:nth-child(1) { left: 10%; }
  .roadmap-item:nth-child(2) { left: 26%; }
  .roadmap-item:nth-child(3) { left: 42%; }
  .roadmap-item:nth-child(4) { left: 58%; }
  .roadmap-item:nth-child(5) { left: 74%; }
  .roadmap-item:nth-child(6) { display: none; }
  
  .roadmap-content h3 { font-size: 0.95rem; }
  .roadmap-content p { font-size: 0.84rem; }
}

@media (max-width: 800px) {
  .roadmap-timeline {
    height: auto;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .roadmap-timeline::before {
    display: none;
  }
  
  .roadmap-item {
    position: relative;
    width: 100%;
    max-width: 320px;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    margin-bottom: 25px;
    z-index: 2;
  }
  
  .roadmap-item:last-child {
    margin-bottom: 0;
  }
  
  .roadmap-item::before {
    display: none !important;
  }
  
  .step-circle {
    top: -22px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .roadmap-content {
    width: 100%;
    margin: 0;
    padding: 16px 14px;
  }
  
  .roadmap-content h3 { font-size: 0.98rem; }
  .roadmap-content p { font-size: 0.86rem; }
}

@keyframes waypoint-in {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.roadmap-item:nth-child(1) { animation-delay: 0s; }
.roadmap-item:nth-child(2) { animation-delay: 0.1s; }
.roadmap-item:nth-child(3) { animation-delay: 0.2s; }
.roadmap-item:nth-child(4) { animation-delay: 0.3s; }
.roadmap-item:nth-child(5) { animation-delay: 0.4s; }
.roadmap-item:nth-child(6) { animation-delay: 0.5s; }


@media (max-width: 940px) {
  .roadmap-item,
  .roadmap-item.alt {
    width: 100%;
    margin-left: 0;
    text-align: left;
    padding: 0 0 0 20px;
  }
  .roadmap-item.alt {
    padding: 0 0 0 20px;
  }
  .roadmap-timeline::before {
    left: 14px;
  }
  .roadmap-point {
    left: 14px;
  }
}

/* ========== Team page shell ========== */
body.page-team {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

.team-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.btn-team-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-team-back:hover {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
}

.team-page-title {
  font-family: "Poppins", sans-serif;
  color: #f8fafc !important;
}

.team-page-sub {
  color: #94a3b8 !important;
}

.handshake-icon,
.handshake-fallback {
  margin: 0 0.4rem;
  color: #86d8ff;
  text-shadow: 0 0 8px rgba(134, 216, 255, 0.8);
}

.handshake-fallback {
  font-size: 0.95rem;
}

.navbar-brand-logo-link {
  line-height: 0;
}

.nav-org-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-org-logo--sm {
  height: 36px;
}

/* ========== Legacy / org chart (team.html) ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  width: 70px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(66, 133, 244, 0.5));
}

.center-content {
  width: 50%;
  min-width: 260px;
  flex: 1;
}

.message-box {
  margin: 16px 0;
  line-height: 1.5;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

button {
  padding: 10px 20px;
  margin: 0;
  background: #4285f4;
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.65), 0 0 28px rgba(66, 133, 244, 0.35);
}

button:active {
  transform: scale(1.02);
}

/* ORG */
.org {
  margin-top: 28px;
  padding: 0 12px 48px;
  text-align: center;
  width: 100%;
}

.faculty-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.fork-from-faculty {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(92vw, 1100px);
  margin: 0 auto 8px;
}

.fork-bar {
  position: relative;
  width: 100%;
  height: 30px;
  margin-top: 0;
}

.line,
.line-h,
.line-v,
.line-v--stem,
.line-h--wide,
.line-v--drop,
.line-v--left,
.line-v--right,
.csi-four-bar,
.csi-four-drops,
.line-v--short,
.fork-from-faculty {
  display: none !important;
}

.split {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  padding-top: 8px;
}

.hierarchy-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px 0;
}

.branch {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}

.branch.active {
  display: block !important;
}

.branch--gdg {
  opacity: 1;
  visibility: visible;
  transform: scale(0.95);
  transform-origin: top center;
}

.branch-title {
  margin: 0 0 16px;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
}

.branch--csi {
  /* border-right: 1px solid rgba(255, 255, 255, 0.12); */
  padding-right: 0;
  margin: 0 auto;
}

.branch--gdg {
  padding-left: 8px;
}

.branch--csi .csi-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
}

@media (max-width: 900px) {
  .branch--csi {
    /* border-right: none; */
    padding-right: 0;
  }
}

.csi-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.csi-four-bar {
  width: 100%;
  max-width: 500px;
  margin: 4px auto 0;
  position: relative;
  padding-top: 2px;
}

.line-h--csi {
  display: block;
  height: 2px;
  width: 100%;
  margin: 0 auto;
}

.csi-four-drops {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 12px;
  width: 100%;
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
}

.line-v--short {
  height: 18px;
  margin: 0 auto;
}

.csi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 1400px;
  margin: 12px auto 0;
  align-items: start;
  justify-items: center;
}

.csi-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 160px;
  max-width: 180px;
}

.csi-col h4 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap; /* Prevent line breaks on long titles like Event Managing */
}

.role-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

.member-name {
  margin: 2px 0 4px;
  font-size: 0.82rem;
  opacity: 0.95;
}

.csi-col .node {
  margin: 0;
}

.csi-col .img-box {
  width: 80px;
  height: 80px;
}

.gdg-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gdg-members-bar {
  width: 100%;
  max-width: 280px;
  margin: 2px auto 0;
}

.line-h--gdg {
  display: block;
  height: 2px;
  width: 100%;
  margin: 0 auto;
}

.gdg-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  width: 100%;
  max-width: 320px;
}

.gdg-row .node {
  margin: 0;
}

.node {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.node p {
  margin: 8px 0 4px;
  font-size: 0.95rem;
}

.node span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.node:hover {
  transform: translateY(-2px);
}

.faculty .img-box {
  margin: 0 auto;
}

.img-box {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.img-box.big {
  width: 148px;
  height: 148px;
}

.img-box.img-box-sm {
  width: 68px;
  height: 68px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.overlay i {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.img-box-sm .overlay i {
  font-size: 1.1rem;
}

.img-box:hover .overlay {
  opacity: 1;
}

.img-box:hover .overlay i {
  transform: scale(1.1);
}

.img-box:hover img {
  transform: scale(1.12);
}

.csi-stack > .line-v,
.gdg-stack > .line-v {
  height: 22px;
  margin: 6px auto;
}

@media (max-width: 640px) {
  .csi-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
  }

  .csi-four-drops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }

  .center-content {
    width: 100%;
    order: -1;
  }

  .header {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .csi-grid {
    grid-template-columns: 1fr;
  }

  .csi-four-drops {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
  }

  .img-box {
    width: 100px;
    height: 100px;
  }

  .img-box.big {
    width: 132px;
    height: 132px;
  }
}

/* Global overflow guard */
html, body {
  overflow-x: hidden;
}

/* Mobile-only Team fixes (<=768px) */
@media (max-width: 768px) {
  .org {
    transform: scale(0.9);
    transform-origin: top center;
  }

  .split {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .csi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch {
    width: 100%;
    position: relative;
    display: none;
  }

  .branch.active {
    display: block !important;
  }

  .split {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }

  .node {
    transform: scale(0.95);
  }

  .img-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .img-box.big {
    width: 140px;
    height: 140px;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .branch-title,
  .member-name,
  .role-label {
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
  }
  
}

.faculty-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.team-toggle-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.toggle-btns {
  display: flex;
  gap: 1rem;
}

.toggle-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background: rgba(34, 34, 34, 0.8);
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn:hover {
  background: rgba(55, 55, 55, 0.9);
}

.toggle-btn.active {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 8px rgba(0, 198, 255, 0.5);
}

.dynamic-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dynamic-desc h3 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.dynamic-desc p {
  color: #94a3b8;
  line-height: 1.5;
  font-size: 0.95rem;
}

.team-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.team-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* ====== Mobile responsiveness fix block ====== */
html, body {
  overflow-x: hidden;
}

body {
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header,
.team-topbar,
.landing-nav {
  position: relative;
  z-index: 1000;
  width: 100%;
}

@media (max-width: 768px) {
  .header,
  .team-topbar,
  .landing-nav {
    height: auto;
    padding: 10px;
  }

  .header-title,
  .team-page-title,
  .landing-nav__title {
    font-size: 14px !important;
    text-align: center;
    line-height: 1.3;
    display: block !important;
    position: static !important;
    transform: none !important;
    white-space: normal;
    margin: 0 auto;
  }

  .landing-nav__title {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .landing-hero__title {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .landing-hero__desc,
  .landing-hero__typed {
    font-size: 14px !important;
    padding: 0 10px !important;
  }

  .countdown-container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
  }

  .countdown-top {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .countdown-box {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }

  .roadmap-timeline {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 20px 10px !important;
    height: auto !important;
  }

  .roadmap-timeline::before,
  .timeline-line {
    display: none !important;
  }

  .roadmap-item {
    position: relative !important;
    width: 90% !important;
    max-width: 340px !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    margin-bottom: 20px !important;
  }

  .roadmap-item:nth-child(6) {
    display: block !important;
  }

  .roadmap-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .highlights-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: stretch;
  }

  .hl-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .btn,
  .btn-nav-cta,
  .btn-glow,
  .btn-team-back {
    width: 100% !important;
    display: block !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .btn-nav-cta {
    white-space: normal !important;
  }

  .split {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .branch {
    width: 100% !important;
    max-width: 100% !important;
  }

  .csi-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    width: 90% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }

  .csi-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  .node img {
    width: 80px !important;
    height: 80px !important;
  }

  .team-slider {
    overflow: hidden !important;
  }

  .slide {
    width: 100% !important;
    min-width: 100% !important;
  }

  .footer-icons {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  footer,
  .landing-footer {
    text-align: center !important;
    padding: 20px !important;
  }

  .landing-footer__fineprint {
    margin-top: 1rem !important;
  }
}


.team-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

.team-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.leaders-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .toggle-btns {
    flex-direction: column;
    align-items: center;
  }

  .leaders-row {
    gap: 20px;
  }

  .team-card {
    padding: 20px;
  }
}

/* ========== Visual Polish ========== */

/* 1. Countdown pulse glow */
@keyframes pulseGlow {
  0%   { text-shadow: 0 0 5px rgba(0,198,255,0.5); }
  50%  { text-shadow: 0 0 18px rgba(0,198,255,1), 0 0 30px rgba(0,198,255,0.5); }
  100% { text-shadow: 0 0 5px rgba(0,198,255,0.5); }
}

.countdown-container {
  animation: pulseGlow 2s ease-in-out infinite;
}

#countdown-timer {
  font-size: 15px;
  font-weight: 700;
}

/* 2. Header title hover glow */
.landing-nav__title {
  transition: text-shadow 0.3s ease;
}

.landing-nav__title:hover {
  text-shadow: 0 0 18px rgba(0,198,255,0.8);
}

/* 3. Button hover lift — nav CTAs */
.btn-nav-cta {
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              border-color 0.3s ease, background 0.3s ease !important;
}

/* ====  Mobile + Tablet responsive final pass (user request) ==== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img, picture, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button, a, .btn, .btn-nav-cta, .btn-team-cta {
  min-height: 44px;
  padding: 10px 15px;
}

/* Header */
.landing-nav__title {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .landing-nav__title {
    font-size: 1.1rem;
  }
  .landing-nav__inner {
    padding: 0.5rem 0.75rem;
  }
  .landing-hero {
    padding-top: calc(4rem + 0.5rem);
  }
}

@media (max-width: 768px) {
  .landing-nav__title {
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
    max-width: 90%;
  }

  .landing-hero__title {
    font-size: 24px;
  }

  .landing-hero__desc {
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.6;
    max-width: 92%;
    margin-inline: auto;
  }

  .btn, .btn-nav-cta, .btn-team-cta {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .highlights-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .hl-card {
    max-width: 100%;
  }

  .roadmap-timeline {
    padding: 20px 10px;
    overflow-x: hidden;
  }

  .roadmap-timeline::before {
    display: none;
  }

  .roadmap-item {
    position: relative;
    width: 100%;
    max-width: 92%;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    margin-bottom: 16px;
  }

  .roadmap-content {
    width: 100%;
    padding: 14px;
  }

  .timeline-line,
  .roadmap-timeline::before,
  .roadmap-point {
    display: none !important;
  }

  .team-card {
    width: 95%;
    padding: 15px;
  }

  .team-slider {
    overflow: hidden;
  }

  .gdg .csi-grid {
    overflow-x: auto;
    flex-wrap: nowrap !important;
  }

  .footer-icons {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .footer-icons a {
    width: auto;
    min-width: 110px;
  }
}

/* include tablet-specific improvements (768-1024) */
@media (min-width: 769px) and (max-width: 1024px) {
  .highlights-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hl-card {
    flex: 1 1 280px;
    max-width: 420px;
  }

  .landing-hero__title {
    font-size: clamp(2.2rem, 6vw, 3.25rem);
  }

  .landing-hero__desc {
    font-size: 15px;
    padding: 0 1rem;
  }
}


.btn-nav-cta:hover {
  transform: translateY(-3px) scale(1.04) !important;
}

/* 4. Highlights cards premium hover */
.hl-card {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.hl-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(0,198,255,0.25), 0 0 0 1px rgba(0,198,255,0.2) !important;
  border-color: rgba(0,198,255,0.45) !important;
}

/* 5. Team card glow */
.team-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(0,198,255,0.25), 0 0 0 1px rgba(0,198,255,0.15) !important;
}

/* 6. Image zoom already handled — ensure smooth */
.img-box img {
  transition: transform 0.4s ease !important;
}

.img-box:hover img {
  transform: scale(1.12) !important;
}

/* 7. LinkedIn icon glow on hover */
.overlay i {
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.node:hover .overlay i {
  transform: scale(1.2) !important;
  color: #00c6ff !important;
}

/* 8. Roadmap scroll animation */
.roadmap-content {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.roadmap-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 10. Navbar glass — already has backdrop-filter, boost it */
.landing-nav {
  background: rgba(10, 18, 38, 0.6) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

/* Team topbar glass */
.team-topbar {
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  background: rgba(10, 18, 38, 0.6) !important;
}

/* Toggle buttons glow */
.toggle-btn:hover {
  box-shadow: 0 0 14px rgba(0,198,255,0.5);
  border-color: rgba(0,198,255,0.6);
}

/* Team CTA button */
.btn-team-cta {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease !important;
}

.btn-team-cta:hover {
  transform: translateY(-5px) scale(1.04) !important;
  box-shadow: 0 0 40px rgba(0,198,255,0.5), 0 20px 48px rgba(0,0,0,0.35) !important;
}

/* ====== Mobile alignment fixes (max-width: 768px) ====== */
@media (max-width: 768px) {
  /* 1. Center "Register as soon as possible" text */
  .countdown-sub {
    text-align: center !important;
    width: 100%;
  }

  /* 2. Center countdown timer */
  .countdown-top {
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }

  /* 3. Center roadmap cards */
  .roadmap-timeline {
    align-items: center !important;
  }

  .roadmap-item {
    left: 0 !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ====== Mobile: Center text inside Hackathon Highlight cards ====== */
@media (max-width: 768px) {
  .hl-card {
    text-align: center !important;
  }

  .hl-card__emoji,
  .hl-card__icon,
  .hl-card__label,
  .hl-card__text {
    text-align: center !important;
  }
}

/* ====== Announcement Bar ====== */
.announcement-bar {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  color: #fff;
  padding: 8px 0;
  font-weight: 600;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: scrollText 22s linear infinite;
}

.announcement-track span {
  white-space: nowrap;
  padding-right: 80px;
  font-size: 14px;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

@keyframes scrollText {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .announcement-track span {
    font-size: 12px;
    padding-right: 50px;
  }

  .announcement-bar {
    padding: 6px 0;
    text-align: center;
  }

  .countdown-container {
    text-align: center !important;
  }

  body {
    overflow-x: hidden;
  }
}
