/* ========================================================================
   LiftedOps "Coming Soon" — 1950s Atomic-Age Cartoon
   Color palette:
     --cream   #F4E4C1   aged paper background
     --coral   #E94B3C   accent: rocket body, primary CTA
     --mint    #5BBA9C   secondary accent: window, success
     --mustard #F0B947   highlight: stars, fins, badges
     --navy    #1A2B4A   outline: comic-book ink
     --ink     #2A1810   body text
   ======================================================================== */

:root {
  --cream:   #F4E4C1;
  --cream-2: #EDD8A8;
  --coral:   #E94B3C;
  --mint:    #5BBA9C;
  --mustard: #F0B947;
  --navy:    #1A2B4A;
  --ink:     #2A1810;

  --font-display: "Bungee Shade", "Bungee", "Impact", sans-serif;
  --font-title:   "Bungee", "Impact", sans-serif;
  --font-body:    "Special Elite", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  /* Subtle paper texture via repeating radial gradient */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26, 43, 74, 0.04) 0px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(233, 75, 60, 0.05) 0px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(26, 43, 74, 0.03) 0px, transparent 1px);
  background-size: 30px 30px, 40px 40px, 15px 15px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ----- Background layers (positioned behind everything) ----- */

.halftone {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--navy) 1px, transparent 1.5px);
  background-size: 8px 8px;
  opacity: 0.06;
}

.sunburst {
  position: absolute;
  top: 18%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg, var(--mustard) 8deg, transparent 16deg,
    transparent 30deg, var(--mustard) 38deg, transparent 46deg,
    transparent 60deg, var(--mustard) 68deg, transparent 76deg,
    transparent 90deg, var(--mustard) 98deg, transparent 106deg,
    transparent 120deg, var(--mustard) 128deg, transparent 136deg,
    transparent 150deg, var(--mustard) 158deg, transparent 166deg,
    transparent 180deg, var(--mustard) 188deg, transparent 196deg,
    transparent 210deg, var(--mustard) 218deg, transparent 226deg,
    transparent 240deg, var(--mustard) 248deg, transparent 256deg,
    transparent 270deg, var(--mustard) 278deg, transparent 286deg,
    transparent 300deg, var(--mustard) 308deg, transparent 316deg,
    transparent 330deg, var(--mustard) 338deg, transparent 346deg
  );
  opacity: 0.10;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: sunburst-spin 80s linear infinite;
}

@keyframes sunburst-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.starfield {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.star {
  position: absolute;
  color: var(--navy);
  font-size: 18px;
  opacity: 0.55;
  animation: twinkle 2.4s ease-in-out infinite;
}
.star.s1 { top:  8%; left:  6%; font-size: 22px; animation-delay: 0.0s; }
.star.s2 { top: 14%; right: 8%; font-size: 16px; animation-delay: 0.5s; }
.star.s3 { top: 28%; left: 12%; font-size: 28px; animation-delay: 1.0s; color: var(--coral); }
.star.s4 { top: 22%; right: 14%; font-size: 14px; animation-delay: 1.5s; color: var(--mustard); }
.star.s5 { top: 62%; left:  4%; font-size: 20px; animation-delay: 0.7s; }
.star.s6 { top: 72%; right:  6%; font-size: 26px; animation-delay: 1.2s; color: var(--coral); }
.star.s7 { top: 86%; left: 18%; font-size: 16px; animation-delay: 1.8s; color: var(--mustard); }
.star.s8 { top: 90%; right: 16%; font-size: 22px; animation-delay: 2.1s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.85); }
  50%      { opacity: 0.9; transform: scale(1.15); }
}

/* ----- Layout ----- */

.stage {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 32px;
}

/* ----- Top bar ----- */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px double var(--navy);
  padding-bottom: 10px;
}
.brandmark {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--navy);
}
.brandmark-ops { color: var(--coral); }
.estd {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}

/* ----- Hero with burst ----- */

.hero {
  position: relative;
  text-align: center;
  padding: 60px 0 0;
  min-height: 200px;
}

.burst {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 320px;
  z-index: 0;
  filter: drop-shadow(4px 6px 0 var(--navy));
  animation: burst-bob 4s ease-in-out infinite;
}
.burst svg { width: 100%; height: 100%; overflow: visible; }
.burst-shape {
  fill: var(--coral);
  stroke: var(--navy);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

@keyframes burst-bob {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50%      { transform: translateX(-50%) rotate(2deg); }
}

.headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 0.85;
  text-shadow:
     3px  3px 0 var(--navy),
    -1px -1px 0 var(--navy),
     1px -1px 0 var(--navy),
    -1px  1px 0 var(--navy);
  letter-spacing: 2px;
}
.headline-line-1 { display: block; font-size: clamp(56px, 11vw, 128px); }
.headline-line-2 { display: block; font-size: clamp(72px, 14vw, 168px); color: var(--mustard); margin-top: 8px; }

/* ----- Centerpiece: the atom ----- */

.centerpiece {
  position: relative;
  margin: 16px auto;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.atom {
  position: relative;
  width: 100%; height: 100%;
}

.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: transparent;
}
.orbit-1 {
  width: 240px; height: 110px;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: orbit-1-spin 6s linear infinite;
}
.orbit-2 {
  width: 240px; height: 110px;
  transform: translate(-50%, -50%) rotate(60deg);
  animation: orbit-2-spin 8s linear infinite;
}
.orbit-3 {
  width: 240px; height: 110px;
  transform: translate(-50%, -50%) rotate(-60deg);
  animation: orbit-3-spin 7s linear infinite reverse;
}
@keyframes orbit-1-spin { from { transform: translate(-50%,-50%) rotate(0deg); }   to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-2-spin { from { transform: translate(-50%,-50%) rotate(60deg); }  to { transform: translate(-50%,-50%) rotate(420deg); } }
@keyframes orbit-3-spin { from { transform: translate(-50%,-50%) rotate(-60deg); } to { transform: translate(-50%,-50%) rotate(300deg); } }

.nucleus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 110px;
  z-index: 3;
  filter: drop-shadow(3px 4px 0 var(--navy));
  animation: nucleus-bob 3s ease-in-out infinite;
}
@keyframes nucleus-bob {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-6px); }
}

.electron {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--mustard);
  border: 2px solid var(--navy);
  top: 50%; left: 50%;
  z-index: 2;
  box-shadow: 0 0 8px var(--mustard);
}
.e-1 { margin-top: -7px; margin-left: -7px; animation: e1 6s linear infinite; background: var(--coral); box-shadow: 0 0 8px var(--coral); }
.e-2 { margin-top: -7px; margin-left: -7px; animation: e2 8s linear infinite; }
.e-3 { margin-top: -7px; margin-left: -7px; animation: e3 7s linear infinite; background: var(--mint); box-shadow: 0 0 8px var(--mint); }

@keyframes e1 { from { transform: rotate(0deg)   translateX(140px) rotate(0deg);  } to { transform: rotate(360deg) translateX(140px) rotate(-360deg); } }
@keyframes e2 { from { transform: rotate(60deg)  translateX(140px) rotate(-60deg); } to { transform: rotate(420deg) translateX(140px) rotate(-420deg); } }
@keyframes e3 { from { transform: rotate(-60deg) translateX(140px) rotate(60deg); } to { transform: rotate(300deg) translateX(140px) rotate(-300deg); } }

.boom {
  position: absolute;
  top: -14px; right: -10px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--mustard);
  -webkit-text-stroke: 2px var(--navy);
  text-shadow: 3px 3px 0 var(--coral);
  letter-spacing: 2px;
  transform: rotate(15deg);
  animation: boom-pulse 1.6s ease-in-out infinite;
  z-index: 5;
}
@keyframes boom-pulse {
  0%, 100% { transform: rotate(15deg) scale(1); }
  50%      { transform: rotate(15deg) scale(1.15); }
}

/* ----- Copy section ----- */

.copy {
  text-align: center;
  margin: 8px auto 0;
  max-width: 640px;
}

.tagline {
  margin-bottom: 18px;
}
.kicker {
  display: block;
  font-family: var(--font-title);
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.kicker-body {
  display: block;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.3;
}
.kicker-body em {
  font-style: normal;
  background: var(--mustard);
  padding: 0 6px;
  border-radius: 2px;
  border-bottom: 2px solid var(--navy);
}

.subtagline {
  font-size: 17px;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ----- Countdown ----- */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 540px;
}
.countdown-cell {
  background: var(--cream-2);
  border: 3px solid var(--navy);
  border-radius: 6px;
  padding: 14px 4px 10px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--navy);
  position: relative;
}
.countdown-cell::after {
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px dashed var(--navy);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0.4;
}
.countdown-num {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 1px;
}
.countdown-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 6px;
  opacity: 0.7;
}

/* ----- Notify form ----- */

.notify {
  max-width: 480px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.form-row .form-field {
  flex: 1;
}
.form-row .form-field-sm {
  max-width: 80px;
}

.form-field {
  margin-bottom: 10px;
  text-align: left;
}

.form-label {
  display: block;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 14px;
  background: var(--cream-2);
  color: var(--ink);
  border: 3px solid var(--navy);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--navy);
  outline: none;
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.form-field input:focus {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
  background: var(--cream);
}
.form-field input::placeholder {
  color: var(--navy);
  opacity: 0.35;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 12px 22px;
  background: var(--coral);
  color: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--navy);
  cursor: pointer;
  transition: transform 80ms ease, box-shadow 80ms ease, background 120ms ease;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--mustard);
  color: var(--navy);
}
.form-submit:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--navy);
}
.btn-stars {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.notify-ack {
  flex: 1 0 100%;
  text-align: center;
  font-size: 14px;
  color: var(--mint);
  font-weight: bold;
  min-height: 1.2em;
  margin-top: 4px;
}

/* ----- Footer ----- */

.footbar {
  margin-top: auto;
  padding-top: 28px;
  border-top: 3px double var(--navy);
  text-align: center;
}
.as-seen-on {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.as-seen-on-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}
.as-seen-on-logo {
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--navy);
  padding: 4px 10px;
  border: 2px solid var(--navy);
  border-radius: 3px;
  background: var(--cream-2);
  letter-spacing: 1px;
}
.copyright {
  font-size: 12px;
  color: var(--navy);
  opacity: 0.6;
  letter-spacing: 1px;
}

/* ----- Capability cards ----- */

.capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.cap-card {
  background: var(--cream-2);
  border: 3px solid var(--navy);
  border-radius: 8px;
  padding: 24px 20px 20px;
  box-shadow: 5px 5px 0 var(--navy);
  position: relative;
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.cap-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--navy);
}

.cap-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.cap-icon svg {
  width: 100%;
  height: 100%;
}

.cap-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--coral);
  letter-spacing: 1px;
  margin-bottom: 10px;
  -webkit-text-stroke: 0.5px var(--navy);
}

.cap-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  opacity: 0.9;
}
.cap-body strong {
  color: var(--navy);
  background: var(--mustard);
  padding: 0 4px;
  border-radius: 2px;
  font-weight: normal;
}

.copy-cta {
  margin-top: 12px;
}

/* ----- Responsive ----- */

@media (max-width: 720px) {
  .stage { padding: 20px 16px 32px; gap: 24px; }
  .hero { padding: 36px 0 0; min-height: 160px; }
  .burst { width: 100%; max-width: 460px; height: 240px; }
  .centerpiece { width: 260px; height: 260px; }
  .orbit-1, .orbit-2, .orbit-3 { width: 220px; height: 100px; }
  .boom { font-size: 22px; right: -8px; }
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .countdown-num { font-size: 28px; }
  .kicker-body { font-size: 22px; }
  .as-seen-on { gap: 10px; }
  .as-seen-on-logo { font-size: 12px; padding: 3px 8px; }
  .capabilities { grid-template-columns: 1fr; gap: 16px; }
  .cap-card { padding: 20px 16px 16px; }
  .cap-title { font-size: 16px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-row .form-field-sm { max-width: none; }
  .notify { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .sunburst, .atom, .orbit, .electron, .nucleus, .boom, .star, .burst {
    animation: none !important;
  }
}
