:root {
  --ink: #102033;
  --muted: #66768a;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #2b7cff;
  --teal: #18c6b8;
  --violet: #7c5cff;
  --shadow: 0 28px 80px rgba(16, 32, 51, 0.18);
  --radius-xl: 34px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Sora, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(24, 198, 184, 0.26), transparent 30%),
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #eef5ff 0%, #f9fbff 45%, #edf8f6 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.45;
  z-index: -1;
}

body::before {
  right: -120px;
  top: 16%;
  background: conic-gradient(from 90deg, var(--blue), var(--teal), var(--violet), var(--blue));
}

body::after {
  left: -140px;
  bottom: -80px;
  background: linear-gradient(135deg, rgba(43,124,255,0.32), rgba(24,198,184,0.26));
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    url("data:image/svg+xml,%3Csvg width='900' height='650' viewBox='0 0 900 650' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232b7cff' stroke-opacity='.08'%3E%3Cpath d='M95 107h184v184H95zM310 107h184v184H310zM525 107h184v184H525zM95 322h184v184H95zM310 322h184v184H310zM525 322h184v184H525z'/%3E%3Cpath d='M187 107v399M402 107v399M617 107v399M95 199h614M95 414h614'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.7);
  font-family: Sora, sans-serif;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -140px;
  bottom: -170px;
 

  background-size: cover;
  font-family: Sora, sans-serif;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 14px 20px rgba(43,124,255,0.2));
}

.brand-name {
  font-size: 1.85rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-tag {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-top: 20px;
  font-family: Sora, sans-serif;
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(43,124,255,0.10);
  color: #1d64d8;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1 {
  margin: 22px 0 14px;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
  margin: 0 0 30px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 34px 0;
}

.time-box {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(16,32,51,0.07);
  box-shadow: 0 14px 36px rgba(16,32,51,0.08);
  text-align: center;
}

.time-box span {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  color: transparent;
}

.time-box small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 630px;
  margin-top: 16px;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(16,32,51,0.12);
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
}

.notify-form input:focus {
  border-color: rgba(43,124,255,0.6);
  box-shadow: 0 0 0 4px rgba(43,124,255,0.12);
}

.notify-form button {
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 850;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(43,124,255,0.26);
}

.notify-form button:hover {
  transform: translateY(-1px);
}

.thanks {
  min-height: -10px;
  color: #0c8f83;
  font-weight: 700;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.feature-strip article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 48px rgba(16,32,51,0.08);
}

.feature-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.84rem;
}

.feature-strip strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 20px 0;
    width: min(100% - 22px, 1180px);
  }

  .hero-card {
    padding: 24px;
    border-radius: 26px;
    min-height: auto;
    font-family: Sora, sans-serif;
  }

  .brand-row {
    align-items: flex-start;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .hero-content {
    margin-top: 56px;
    font-family: Sora, sans-serif;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .notify-form button {
    padding: 16px 22px;
  }

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