:root {
  --bg: #fcf6f0;
  --red: #ff3b1f;
  --red-deep: #f04425;
  --yellow: #ffbc00;
  --blue: #064dbd;
  --navy: #07347f;
  --ink: #143f86;
  --cream: #fcf6f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(44px, 6vh, 84px) clamp(20px, 4vw, 70px);
  background:
    radial-gradient(circle at 52% 38%, rgba(255,255,255,.72), rgba(255,255,255,0) 38%),
    var(--bg);
}

.content {
  position: relative;
  z-index: 3;
  width: min(780px, 68vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1vh);
}

.logo {
  display: block;
  width: min(520px, 55vw);
  height: auto;
  object-fit: contain;
}

.tagline {
  margin: clamp(4px, 1vh, 12px) 0 22px;
  color: var(--red-deep);
  font-size: clamp(18px, 2.15vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.tagline span {
  display: inline-block;
  padding: 0 .25em;
  color: var(--yellow);
}

.coming-soon {
  position: relative;
  margin: 0;
  padding: .24em .62em .3em;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ff4a24, #f43c1f);
  border: 2px solid rgba(255,255,255,.96);
  border-radius: .34em;
  box-shadow:
    0 0 0 3px var(--red-deep),
    0 10px 24px rgba(167, 47, 22, .10);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 2px dashed rgba(255,255,255,.95);
  border-radius: calc(.34em - 5px);
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--navy);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

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

.email:focus-visible {
  outline: 3px solid rgba(6, 77, 189, .28);
  outline-offset: 6px;
  border-radius: 8px;
}

.email-icon {
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
}

.email-icon svg {
  width: 66%;
  height: 66%;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toy-cluster {
  position: absolute;
  z-index: 2;
  bottom: clamp(18px, 5vh, 64px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.toy-cluster-left {
  left: clamp(18px, 2.7vw, 58px);
  width: min(30vw, 430px);
}

.toy-cluster-right {
  right: clamp(20px, 3vw, 64px);
  width: min(29vw, 420px);
}

.decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.decor svg {
  position: absolute;
  width: min(34vw, 560px);
  height: auto;
  overflow: visible;
}

.decor svg path {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 3.4 2.9;
  opacity: .6;
}

.decor-left svg {
  left: -16px;
  top: 24%;
}

.decor-left svg path {
  stroke: #7bbcf1;
}

.decor-right svg {
  right: -10px;
  top: 28%;
}

.decor-right svg path {
  stroke: #f0b247;
}

.star,
.dot,
.ring {
  position: absolute;
  opacity: .72;
}

.star {
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.star-blue {
  left: 22%;
  top: 16%;
  color: #6fb5e8;
}

.star-red {
  right: 19%;
  top: 21%;
  color: #f5a09d;
}

.star-yellow {
  right: 24%;
  bottom: 25%;
  color: #f3be4a;
  font-size: clamp(29px, 2.3vw, 42px);
}

.dot {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.dot-orange {
  left: 8%;
  top: 18%;
  background: #f2b748;
}

.dot-red {
  left: 7.5%;
  top: 47%;
  background: #f4a19c;
}

.dot-blue {
  right: 11%;
  top: 18%;
  background: #7fc0e9;
}

.ring {
  right: 5.5%;
  top: 48%;
  width: 20px;
  aspect-ratio: 1;
  border: 3px solid #7fc0e9;
  border-radius: 50%;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
    align-items: center;
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .content {
    width: min(720px, 92vw);
    transform: translateY(-3vh);
  }

  .logo {
    width: min(450px, 68vw);
  }

  .tagline {
    white-space: normal;
    max-width: 92vw;
  }

  .toy-cluster-left,
  .toy-cluster-right {
    width: min(33vw, 300px);
    bottom: 12px;
  }

  .decor svg {
    width: 48vw;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 34px 16px 210px;
  }

  .content {
    width: 100%;
    transform: none;
  }

  .logo {
    width: min(360px, 82vw);
  }

  .tagline {
    font-size: clamp(16px, 4.5vw, 21px);
    margin-bottom: 18px;
  }

  .coming-soon {
    font-size: clamp(40px, 12vw, 58px);
  }

  .email {
    margin-top: 22px;
    font-size: clamp(16px, 4.4vw, 20px);
  }

  .toy-cluster-left {
    width: 52vw;
    left: -18px;
    bottom: 8px;
  }

  .toy-cluster-right {
    width: 49vw;
    right: -14px;
    bottom: 6px;
  }

  .decor svg {
    width: 72vw;
    opacity: .6;
  }

  .decor-left svg {
    top: 6%;
  }

  .decor-right svg {
    top: 18%;
  }

  .star-blue { top: 7%; left: 9%; }
  .star-red { top: 12%; right: 8%; }
  .star-yellow { display: none; }
  .ring { display: none; }
  .dot-red { top: 30%; }
}

@media (max-height: 720px) and (min-width: 700px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .content {
    transform: translateY(-2vh) scale(.88);
  }

  .toy-cluster {
    bottom: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .email {
    transition: none;
  }
}
