:root {
  --navy-950: #0f2840;
  --navy-900: #16344f;
  --navy-800: #244764;
  --navy-700: #355f80;
  --coral-500: #f1463a;
  --coral-300: #ff887d;
  --paper: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #10273d;
  --muted: #5f7387;
  --line: rgba(16, 39, 61, 0.1);
  --shadow-xl: 0 35px 80px rgba(15, 40, 64, 0.18);
  --shadow-lg: 0 18px 45px rgba(15, 40, 64, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, #eef3f8 0%, #f7f9fc 38%, #fff7f5 100%);
}

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

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

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

.page-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.page-glow-one {
  top: -6rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(241, 70, 58, 0.26) 0%, rgba(241, 70, 58, 0) 72%);
}

.page-glow-two {
  right: -10rem;
  bottom: -8rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(22, 52, 79, 0.22) 0%, rgba(22, 52, 79, 0) 72%);
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 80%);
  opacity: 0.4;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  animation: panel-rise 0.8s ease both;
}

.hero-copy,
.status-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: clamp(1.5rem, 2vw, 2.4rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    linear-gradient(130deg, rgba(241, 70, 58, 0.08), rgba(22, 52, 79, 0.06));
  border: 1px solid rgba(16, 39, 61, 0.08);
  animation: fade-up 0.85s ease both;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(241, 70, 58, 0.1);
  color: var(--coral-500);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.brand-logo {
  width: min(100%, 590px);
  margin-bottom: 1.8rem;
  animation: fade-up 0.9s ease both;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.availability-note {
  margin: 1rem 0 0;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 600;
}

.availability-note strong {
  color: var(--coral-500);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-secondary,
.highlights li,
.status-card,
.info-strip article,
.contact-strip,
.launch-banner,
.maintenance-alert {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral-500), #ff6d5f);
  box-shadow: 0 16px 35px rgba(241, 70, 58, 0.28);
}

.button-secondary {
  border: 1px solid rgba(22, 52, 79, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.highlights li {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(16, 39, 61, 0.06);
  border: 1px solid rgba(16, 39, 61, 0.08);
  color: var(--navy-900);
  font-weight: 700;
}

.highlights li:hover,
.status-card:hover,
.info-strip article:hover {
  transform: translateY(-4px);
}

.status-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 2vw, 1.7rem);
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #edf5fb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: fade-up 1s ease 0.08s both;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08) !important;
  color: #edf5fb !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.status-head {
  display: grid;
  gap: 0.9rem;
}

.status-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.status-lead {
  margin: 0;
  color: rgba(237, 245, 251, 0.78);
  font-size: 1rem;
}

.maintenance-alert,
.info-strip {
  display: grid;
}

.maintenance-alert {
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  margin: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(241, 70, 58, 0.18), rgba(255, 255, 255, 0.06));
  color: #edf5fb;
  animation: fade-up 0.9s ease 0.12s both;
}

.maintenance-alert strong,
.launch-label,
.status-card h3,
.info-strip article {
  font-family: "Sora", sans-serif;
}

.maintenance-alert p {
  margin: 0.35rem 0 0;
  color: rgba(237, 245, 251, 0.82);
}

.alert-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd3ce;
  font-size: 1.25rem;
}

.launch-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fade-up 0.9s ease 0.18s both;
}

.launch-date {
  min-width: 98px;
  padding: 0.95rem 0.9rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  text-align: center;
}

.launch-date span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.launch-date small {
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: rgba(237, 245, 251, 0.78);
}

.launch-label,
.launch-copy {
  margin: 0;
}

.launch-label {
  font-size: 1rem;
}

.launch-copy {
  margin-top: 0.35rem;
  color: rgba(237, 245, 251, 0.78);
}

.maintenance-progress {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  animation: fade-up 0.9s ease 0.24s both;
}

.maintenance-progress .progress-bar {
  background: linear-gradient(90deg, var(--coral-500), #ff7c70 55%, #ffb2aa 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.maintenance-progress .progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: progress-shine 2.7s ease-in-out infinite;
}

.progress-caption {
  margin: -0.15rem 0 0;
  color: rgba(237, 245, 251, 0.72);
  font-size: 0.92rem;
  animation: fade-up 0.9s ease 0.28s both;
}

.status-card,
.info-strip article {
  border-radius: var(--radius-lg);
}

.status-card {
  height: 100%;
  min-height: 210px;
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fade-up 0.8s ease both;
}

.status-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd3ce;
  font-size: 1.2rem;
}

.status-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.1;
}

.status-card p {
  margin: 0;
  color: rgba(237, 245, 251, 0.74);
  font-size: 0.98rem;
  line-height: 1.45;
  text-wrap: balance;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fade-up 0.9s ease 0.36s both;
}

.contact-strip span,
.contact-strip strong,
.contact-strip a {
  display: block;
}

.contact-strip span {
  color: rgba(237, 245, 251, 0.68);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-strip strong {
  margin-top: 0.2rem;
  color: #fff;
}

.contact-strip a {
  flex-shrink: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-950);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.info-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-strip article {
  padding: 1.4rem;
  background: var(--surface-strong);
  border: 1px solid rgba(16, 39, 61, 0.08);
  box-shadow: var(--shadow-lg);
  animation: fade-up 0.8s ease both;
}

.info-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(241, 70, 58, 0.14), rgba(22, 52, 79, 0.08));
  color: var(--coral-500);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.info-strip h2 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
}

.status-grid > div:nth-child(1) .status-card,
.info-strip article:nth-child(1) {
  animation-delay: 0.3s;
}

.status-grid > div:nth-child(2) .status-card,
.info-strip article:nth-child(2) {
  animation-delay: 0.38s;
}

.status-grid > div:nth-child(3) .status-card,
.info-strip article:nth-child(3) {
  animation-delay: 0.46s;
}

@keyframes panel-rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(140%);
  }
}

@media (max-width: 980px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .status-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--container));
    padding: 1rem 0 2rem;
  }

  .hero-card {
    padding: 0.8rem;
    border-radius: 24px;
  }

  .hero-copy,
  .status-panel {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .brand-logo {
    margin-bottom: 1.3rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .cta-group {
    display: grid;
  }

  .highlights {
    display: grid;
  }

  .launch-banner,
  .maintenance-alert,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    display: grid;
  }

  .contact-strip a {
    width: 100%;
    text-align: center;
  }

  .status-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .status-card {
    min-height: 0;
    padding: 1rem;
  }

  .status-card p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
