:root {
  --ink: #102b26;
  --mint: #1ed7b5;
  --lime: #f0f9a7;
  --cream: #fbffe4;
  --line: rgba(16, 43, 38, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: hsla(169, 76%, 48%, 1);
  background: linear-gradient(90deg, hsla(169, 76%, 48%, 1) 0%, hsla(67, 87%, 82%, 1) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.48), transparent 25%),
    radial-gradient(circle at 88% 85%, rgba(255, 255, 255, 0.32), transparent 28%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  animation: drift 10s ease-in-out infinite alternate;
}

.orb-one {
  width: 22rem;
  height: 22rem;
  top: -9rem;
  right: 18%;
  background: rgba(255, 255, 255, 0.35);
}

.orb-two {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  bottom: 4rem;
  animation-delay: -4s;
  background: rgba(240, 249, 167, 0.55);
}

.site-header {
  width: min(1200px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  animation: slide-down 0.8s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.35s ease, background 0.35s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-12deg) scale(1.06);
  background: var(--cream);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.62;
}

nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

main {
  width: min(1200px, calc(100% - 48px));
  min-height: calc(100vh - 164px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 60px;
}

.hero {
  max-width: 680px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(16, 43, 38, 0.45);
  animation: pulse 2s infinite;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.8rem, 7.4vw, 7.7rem);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

h1 span {
  color: rgba(16, 43, 38, 0.52);
}

.hero-copy {
  max-width: 570px;
  margin-top: 30px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 43, 38, 0.12);
}

.button:hover svg {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--cream);
  background: var(--ink);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.18);
}

.coming-card {
  width: min(100%, 570px);
  margin-top: 45px;
  padding: 19px 21px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.coming-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.55;
}

.coming-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.coming-card p {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  opacity: 0.62;
}

.loader {
  display: flex;
  gap: 4px;
}

.loader span {
  width: 5px;
  height: 15px;
  border-radius: 99px;
  background: var(--ink);
  animation: bars 1.15s ease-in-out infinite;
}

.loader span:nth-child(2) { animation-delay: 0.1s; }
.loader span:nth-child(3) { animation-delay: 0.2s; }
.loader span:nth-child(4) { animation-delay: 0.3s; }

.visual {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
}

.visual::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(16, 43, 38, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 80px rgba(16, 43, 38, 0.14);
  backdrop-filter: blur(10px);
}

.question-mark {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(10rem, 19vw, 17rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  filter: drop-shadow(12px 15px 0 rgba(255, 255, 255, 0.18));
  animation: float 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(16, 43, 38, 0.3);
  border-radius: 50%;
}

.orbit-outer {
  inset: 0;
  animation: spin 20s linear infinite;
}

.orbit-inner {
  inset: 19%;
  border-style: dashed;
  animation: spin-reverse 16s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 7%;
  left: 18%;
  width: 17px;
  height: 17px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  background: var(--ink);
}

.float-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 4px 5px 0 rgba(16, 43, 38, 0.13);
}

.tag-one {
  top: 13%;
  right: -2%;
  transform: rotate(8deg);
  animation: tag-float 4.4s ease-in-out infinite;
}

.tag-two {
  left: -3%;
  bottom: 24%;
  transform: rotate(-8deg);
  animation: tag-float 5s ease-in-out infinite -1.4s;
}

.tag-three {
  right: 2%;
  bottom: 8%;
  transform: rotate(5deg);
  animation: tag-float 4.7s ease-in-out infinite -2.3s;
}

footer {
  width: min(1200px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.62;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }
.reveal-delay-4 { animation-delay: 0.48s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(16, 43, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 43, 38, 0); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.45); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes tag-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -11px; }
}

@keyframes drift {
  to { transform: translate(25px, 18px) scale(1.08); }
}

@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero {
    max-width: 760px;
  }

  .visual {
    width: min(82vw, 470px);
    justify-self: center;
    margin-top: 30px;
  }

  h1 {
    font-size: clamp(3.7rem, 12vw, 6.8rem);
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    height: 76px;
  }

  nav > a:not(.nav-cta) {
    display: none;
  }

  nav .nav-cta {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .brand {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  main {
    min-height: auto;
    padding: 44px 0 52px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .coming-card {
    margin-top: 30px;
  }

  .visual {
    width: 88vw;
  }

  footer {
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
