:root {
  --navy: #0d1744;
  --deep-navy: #08102d;
  --royal: #1d3a8a;
  --sky: #62d6ff;
  --aqua: #7cf3d7;
  --gold: #f7c873;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.64);
  --glass: rgba(255, 255, 255, 0.11);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at top left, #193b8f 0%, var(--deep-navy) 42%, #050915 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.42;
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.orb-one {
  top: -160px;
  left: -130px;
  background: rgba(98, 214, 255, 0.55);
}

.orb-two {
  right: -160px;
  top: 18%;
  background: rgba(124, 243, 215, 0.34);
  animation-delay: 2s;
}

.orb-three {
  left: 45%;
  bottom: -240px;
  background: rgba(247, 200, 115, 0.28);
  animation-delay: 4s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, 34px, 0) scale(1.08); }
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--white), #dffbff 42%, var(--aqua));
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 18px 38px rgba(98, 214, 255, 0.25);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--soft-white);
  font-weight: 650;
  font-size: 0.94rem;
}

.header-actions a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-actions a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.pill-link {
  padding: 11px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0 84px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--soft-white);
  font-weight: 750;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  backdrop-filter: blur(18px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(124, 243, 215, 0.12);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.78); opacity: 0.62; }
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  max-width: 820px;
}

.lead {
  color: var(--soft-white);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 720px;
  margin: 28px 0 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--aqua), var(--sky));
  color: var(--deep-navy);
  box-shadow: 0 18px 42px rgba(98, 214, 255, 0.24);
}

.secondary-button {
  border: 1px solid var(--glass-border);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.2);
}

.countdown-card,
.glass-card,
.impact-card,
.maintenance-panel {
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.countdown-card {
  border-radius: 34px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.countdown-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(124, 243, 215, 0.2);
}

.card-topline,
.section-label {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.countdown-card h2 {
  margin: 12px 0 4px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.05em;
}

.countdown-card p {
  color: var(--muted);
  margin: 0;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.time-box {
  min-height: 118px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(7, 16, 45, 0.46);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
}

.time-box strong {
  font-size: clamp(2.1rem, 4vw, 3.05rem);
  letter-spacing: -0.06em;
}

.time-box span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.progress-wrap {
  margin-top: 24px;
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--soft-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--aqua), var(--sky));
  transition: width 0.8s ease;
}

.profile-section,
.impact-section,
.maintenance-panel {
  padding: 42px 0;
}

.section-label {
  margin-bottom: 16px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.52fr 0.52fr;
  gap: 18px;
}

.glass-card {
  border-radius: 28px;
  padding: 28px;
}

.large-card h2,
.maintenance-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: -0.055em;
}

.large-card p,
.maintenance-panel p,
.impact-card p,
.stat-card p {
  color: var(--soft-white);
  line-height: 1.72;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.stat-card span {
  color: var(--aqua);
  font-weight: 850;
}

.stat-card strong {
  font-size: 4.2rem;
  letter-spacing: -0.08em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-card {
  border-radius: 28px;
  padding: 28px;
  min-height: 260px;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 243, 215, 0.15);
  border: 1px solid rgba(124, 243, 215, 0.35);
  color: var(--aqua);
  font-weight: 900;
}

.impact-card h3 {
  font-size: 1.55rem;
  margin: 24px 0 12px;
}

.maintenance-panel {
  margin-top: 34px;
  margin-bottom: 80px;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 26px;
  align-items: center;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-note {
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .profile-grid,
  .impact-grid,
  .maintenance-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .stat-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero {
    padding: 38px 0 58px;
  }

  .countdown-card,
  .glass-card,
  .impact-card,
  .maintenance-panel {
    border-radius: 24px;
    padding: 22px;
  }

  .countdown-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .time-box {
    min-height: 92px;
  }

  .hero-buttons a {
    width: 100%;
  }
}
