/* ==============================
   North Star Products — Coming Soon
   Same brand system as the main site (see css/tokens.css)
   ============================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-regular);
  line-height: var(--lh-body);
  color: var(--text-on-dark-primary);
  background: var(--color-midnight-deep);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle grid, matching the main site's hero */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

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

/* Oversized faint star, as on the brand guide back page */
.watermark {
  position: fixed;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 46vw;
  min-width: 420px;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* ==============================
   Layout
   ============================== */
.splash {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  text-align: center;
}

/* Logo upper-left, matching the main site's nav placement */
.splash__header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  padding-top: var(--space-sm);
}

.splash__logo {
  height: 30px;
  width: auto;
}

.splash__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  padding: var(--space-2xl) 0;
}

.splash__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-chip);
  padding: 6px var(--space-md);
  margin-bottom: var(--space-xl);
}

.splash__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-white);
  animation: pulse 2s ease-in-out infinite;
}

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

.splash__title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: var(--weight-bold);
  line-height: 1.12;
  letter-spacing: var(--tracking-heading);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--space-lg);
}

.splash__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-subheading);
  color: var(--text-on-dark-secondary);
  max-width: 460px;
  margin-bottom: var(--space-2xl);
}

/* ==============================
   Notify form
   ============================== */
.notify {
  display: flex;
  gap: var(--space-sm);
  width: 100%;
  max-width: 440px;
}

.notify[hidden] {
  display: none;
}

.notify__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body-md);
  color: var(--text-on-dark-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-btn);
  padding: 13px var(--space-md);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.notify__input::placeholder {
  color: var(--text-on-dark-tertiary);
}

.notify__input:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.notify__btn {
  font-family: var(--font-sans);
  font-size: var(--text-body-md);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  color: var(--color-midnight);
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px var(--space-lg);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.notify__btn:hover {
  background: var(--surface-light-2);
  box-shadow: var(--shadow-2);
}

.notify__done {
  font-size: var(--text-body-md);
  color: var(--text-on-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-btn);
  padding: 13px var(--space-lg);
}

/* ==============================
   Footer
   ============================== */
.splash__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  font-size: var(--text-body-sm);
  color: var(--text-on-dark-disabled);
}

/* ==============================
   Utilities
   ============================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 560px) {
  .splash {
    padding: var(--space-lg) var(--space-md);
  }
  .splash__logo {
    height: 30px;
  }
  .notify {
    flex-direction: column;
  }
  .notify__btn {
    width: 100%;
  }
  .splash__footer {
    flex-direction: column;
    gap: var(--space-xs);
  }
  .watermark {
    right: -30vw;
    width: 90vw;
    min-width: 0;
  }
}
