:root {
  --blue-950: #06133a;
  --blue-900: #081f5f;
  --blue-800: #053aaf;
  --blue-700: #034fdf;
  --blue-600: #0068ff;
  --blue-100: #eaf3ff;
  --cyan: #15d9ff;
  --text: #071339;
  --muted: #5a6987;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.9);
  --border: rgba(10, 72, 180, 0.14);
  --shadow: 0 24px 70px rgba(8, 39, 113, 0.15);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  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(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 104, 255, 0.20), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 55%, #ffffff 100%);
  min-height: 100vh;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 38px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(7, 38, 112, 0.08);
  backdrop-filter: blur(14px);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-900);
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: var(--blue-100);
  color: var(--blue-700);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  min-height: 680px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 90px;
  height: 90px;
  top: 78px;
  left: 45%;
  background:
    linear-gradient(var(--blue-100), var(--blue-100)) center/28px 90px no-repeat,
    linear-gradient(var(--blue-100), var(--blue-100)) center/90px 28px no-repeat;
  opacity: 0.65;
}

.hero::after {
  width: 8px;
  height: 8px;
  right: 72px;
  top: 78px;
  box-shadow:
    0 0 0 #8ed8ff, 24px 0 0 #8ed8ff, 48px 0 0 #8ed8ff, 72px 0 0 #8ed8ff, 96px 0 0 #8ed8ff,
    0 22px 0 #8ed8ff, 24px 22px 0 #8ed8ff, 48px 22px 0 #8ed8ff, 72px 22px 0 #8ed8ff, 96px 22px 0 #8ed8ff,
    0 44px 0 #8ed8ff, 24px 44px 0 #8ed8ff, 48px 44px 0 #8ed8ff, 72px 44px 0 #8ed8ff, 96px 44px 0 #8ed8ff;
  opacity: 0.7;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(2, 77, 215, 0.25);
}

.pill-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-700);
  font-weight: 900;
}

h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  color: var(--blue-700);
  letter-spacing: -0.075em;
}

.hero-text {
  width: min(100%, 510px);
  margin: 28px 0 8px;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.live-line {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-weight: 700;
}

.live-line strong {
  color: var(--blue-700);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 570px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #005eff, #0536ba);
  color: var(--white);
  box-shadow: 0 22px 40px rgba(4, 67, 199, 0.22);
}

.countdown div {
  min-width: 0;
  padding: 22px 12px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  font-size: clamp(2.2rem, 5.2vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.countdown span {
  display: block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.note {
  position: relative;
  width: fit-content;
  margin: 16px 0 24px 70px;
  color: var(--blue-700);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 1rem;
  font-weight: 800;
}

.note::before {
  content: "↪";
  position: absolute;
  left: -55px;
  top: -15px;
  color: var(--blue-950);
  font-size: 2.8rem;
  transform: rotate(18deg);
}

.notify-form {
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(9, 44, 113, 0.08);
  backdrop-filter: blur(16px);
}

.notify-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 0.95rem;
  font-weight: 900;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input,
.form-row button {
  height: 52px;
  border-radius: 14px;
  font: inherit;
}

.form-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(5, 58, 175, 0.16);
  padding: 0 16px;
  color: var(--text);
  outline: none;
}

.form-row input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(0, 104, 255, 0.12);
}

.form-row button {
  border: 0;
  padding: 0 22px;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 82, 225, 0.23);
}

.notify-form small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.blue-orb {
  position: absolute;
  right: -18vw;
  top: -120px;
  width: min(720px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1bb1ff, var(--blue-700) 48%, #002ab0 100%);
  filter: drop-shadow(0 30px 90px rgba(0, 72, 220, 0.25));
  z-index: -2;
}

.product-art {
  width: min(680px, 100%);
  margin-top: 40px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 36, 118, 0.14));
}

.about-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(240px, 360px);
  gap: 26px;
  align-items: center;
  margin: 18px 0 22px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.about-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #ffffff;
}

.about-icon svg {
  width: 42px;
  fill: currentColor;
}

.about-card h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}

.about-card p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  line-height: 1.65;
}

.about-card strong {
  color: var(--blue-700);
}

.info-strip {
  width: 100%;
  border-left: 1px solid rgba(8, 42, 136, 0.16);
  padding-left: 20px;
  object-fit: contain;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 22px 0 26px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 210px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(9, 44, 113, 0.08);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: #ffffff;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 16px 28px rgba(0, 82, 225, 0.16);
}

.feature-icon svg {
  width: 34px;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--blue-800);
  font-size: 1rem;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: #2d3655;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 28px max(28px, calc((100vw - 1180px) / 2 + 18px));
  color: #ffffff;
  background: linear-gradient(135deg, #0146dd, #001b78);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-shield {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
}

.footer-shield svg {
  width: 38px;
  fill: currentColor;
}

.site-footer p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.35;
  font-weight: 800;
}

.site-footer p span {
  color: var(--cyan);
}

.site-footer ul {
  display: flex;
  gap: clamp(16px, 3vw, 50px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 850;
}

.site-footer li {
  position: relative;
  padding-left: 26px;
}

.site-footer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 12px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-art {
    width: min(680px, 94vw);
    margin-top: 0;
  }

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

  .about-card {
    grid-template-columns: 82px 1fr;
  }

  .info-strip {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(8, 42, 136, 0.16);
    padding: 20px 0 0;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 22px, 620px);
    padding-top: 14px;
  }

  .site-header {
    align-items: flex-start;
    padding-bottom: 12px;
  }

  .brand img {
    width: 116px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    gap: 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .status-pill {
    margin-bottom: 16px;
    font-size: 0.74rem;
    padding: 8px 14px 8px 9px;
  }

  .pill-icon {
    width: 24px;
    height: 24px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .hero-text {
    margin-top: 20px;
  }

  .countdown {
    border-radius: 16px;
  }

  .countdown div {
    padding: 17px 8px 15px;
  }

  .countdown strong {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .countdown span {
    font-size: 0.65rem;
  }

  .note {
    margin-left: 38px;
    font-size: 0.88rem;
  }

  .note::before {
    left: -38px;
    font-size: 2.1rem;
  }

  .notify-form {
    padding: 14px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row button {
    width: 100%;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .blue-orb {
    right: -42vw;
    top: -38px;
    width: 120vw;
  }

  .product-art {
    width: 104vw;
    max-width: none;
    margin-left: -8vw;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .about-icon {
    width: 68px;
    height: 68px;
  }

  .info-strip {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: auto;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .site-footer ul {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .countdown strong {
    font-size: 1.7rem;
  }

  .countdown span {
    font-size: 0.58rem;
  }

  .countdown div {
    padding-inline: 4px;
  }
}
