:root {
  --pink: #de4c8a;
  --yellow: #f7db1d;
  --purple: #ba55d3;
  --ink: #15182c;
  --muted: #56586a;
  --rule: #c8c9d0;
  --white: #fff;
  --page-gutter: clamp(1.25rem, 5vw, 5rem);
  --font: "Avenir Next", Avenir, "Century Gothic", Futura, Montserrat, sans-serif;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.site-header {
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.2rem, 3.2vw, 2.75rem) var(--page-gutter) 0;
}

.brand {
  display: inline-flex;
  width: clamp(6.25rem, 9vw, 8.8rem);
  height: clamp(5rem, 7.4vw, 7.2rem);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: clamp(.65rem, 2.1vw, 2rem);
  padding-top: .75rem;
}

.language-switcher button {
  position: relative;
  padding: .35rem .08rem .65rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 400 clamp(.72rem, 1.15vw, 1rem)/1 var(--font);
  letter-spacing: .06em;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-switcher button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] { color: var(--pink); }

.language-switcher button[aria-pressed="true"]::after { transform: scaleX(1); }

.language-switcher button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: clamp(1rem, 2vh, 2rem) var(--page-gutter) clamp(1.2rem, 3vh, 2.5rem);
  text-align: center;
}

.hero-copy { max-width: 58rem; }

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 6.2vw, 6.4rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em {
  color: var(--pink);
  font-style: normal;
  font-weight: 300;
}

.hero-copy p {
  max-width: 42rem;
  margin: clamp(1.35rem, 3vh, 2.35rem) auto 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 54rem);
  margin-top: clamp(2rem, 5vh, 4.25rem);
}

.time-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 clamp(.65rem, 2.5vw, 2rem);
}

.time-unit + .time-unit::before {
  position: absolute;
  top: 8%;
  bottom: 2%;
  left: 0;
  width: 1px;
  content: "";
  background: var(--rule);
}

.time-unit strong {
  color: var(--pink);
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -.045em;
}

.time-unit span {
  margin-top: .65rem;
  font-size: clamp(.78rem, 1.35vw, 1.1rem);
  font-weight: 400;
}

.launch-status {
  margin: clamp(1.8rem, 4vh, 3.6rem) 0 0;
  font-size: clamp(.9rem, 1.5vw, 1.22rem);
  line-height: 1.4;
}

.launch-status strong { color: var(--pink); font-weight: 400; }

footer {
  z-index: 4;
  padding: 0 var(--page-gutter) clamp(1.1rem, 2.6vw, 2.2rem);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .02em;
}

.leaf-cluster {
  position: fixed;
  z-index: -1;
  width: clamp(9rem, 18vw, 18rem);
  height: clamp(14rem, 29vw, 29rem);
  pointer-events: none;
}

.leaf-cluster-left { bottom: -7rem; left: -5rem; transform: rotate(8deg); }
.leaf-cluster-right { top: 18%; right: -7rem; transform: rotate(-7deg); }

.leaf {
  position: absolute;
  display: block;
  width: 45%;
  height: 54%;
  border-radius: 100% 0 100% 0;
  transform: rotate(36deg);
}

.leaf::after {
  position: absolute;
  top: 17%;
  left: 50%;
  width: 2px;
  height: 68%;
  content: "";
  background: rgb(255 255 255 / 88%);
  transform: rotate(9deg);
  transform-origin: bottom;
}

.leaf-pink { top: 0; left: 33%; background: var(--pink); }
.leaf-purple { right: 25%; bottom: 0; background: var(--purple); transform: rotate(50deg); }

.dot {
  position: absolute;
  top: 21%;
  left: 4%;
  width: clamp(2rem, 4vw, 4rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
}

.leaf-cluster-right .leaf-purple { top: 0; right: 29%; bottom: auto; }
.leaf-cluster-right .leaf-pink { top: auto; right: 7%; bottom: 0; left: auto; }
.leaf-cluster-right .dot { top: 48%; left: 7%; }

noscript {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  font-size: .85rem;
}

@media (max-width: 700px) {
  .site-header { align-items: center; }
  .brand { width: 5.4rem; height: 4.5rem; }
  .language-switcher { gap: .55rem; padding-top: 0; }
  .language-switcher button { font-size: .66rem; }
  .hero { justify-content: flex-start; padding-top: clamp(2rem, 7vh, 4rem); }
  h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .hero-copy p { font-size: .92rem; }
  .countdown { width: 100%; margin-top: 2.4rem; }
  .time-unit { padding: 0 .3rem; }
  .time-unit strong { font-size: clamp(2.4rem, 12vw, 4rem); }
  .time-unit span { font-size: clamp(.61rem, 2.7vw, .78rem); }
  .leaf-cluster { opacity: .38; }
  .leaf-cluster-left { bottom: -8rem; left: -7rem; }
  .leaf-cluster-right { top: 28%; right: -8rem; }
}

@media (max-width: 430px) {
  .site-header { padding-top: .8rem; }
  .language-switcher { gap: .38rem; }
  .hero { padding-top: 1.6rem; }
  .hero-copy p { line-height: 1.45; }
  .time-unit strong { font-size: 2.2rem; }
  .time-unit span { margin-top: .45rem; }
  .launch-status { margin-top: 1.5rem; }
}

@media (max-height: 760px) and (min-width: 701px) {
  .brand { width: 6rem; height: 5rem; }
  h1 { font-size: clamp(3rem, 5.5vw, 5rem); }
  .hero-copy p { margin-top: 1rem; }
  .countdown { margin-top: 1.75rem; }
  .launch-status { margin-top: 1.5rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .countdown, .launch-status {
    animation: reveal 700ms cubic-bezier(.2,.7,.2,1) both;
  }
  .countdown { animation-delay: 100ms; }
  .launch-status { animation-delay: 180ms; }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
