:root {
  color-scheme: dark;
  --brand-navy: #082b52;
  --brand-green: #21b573;
  --brand-mint: #46d68c;
  --brand-night: #061b33;
  --text-muted: #c8d7e6;
  --border: rgb(200 215 230 / 18%);
  --surface: rgb(8 43 82 / 78%);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--brand-night);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 38%, rgb(33 181 115 / 14%), transparent 28rem),
    var(--brand-night);
  font-family: Inter, system-ui, sans-serif;
}

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

.launch {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(100%, 1440px);
  min-height: 100dvh;
  flex-direction: column;
  padding: 32px clamp(24px, 6vw, 96px) 24px;
  margin: 0 auto;
  overflow: hidden;
}

.launch::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.launch__header,
.launch__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: clamp(172px, 17vw, 224px);
  border-radius: 10px;
}

.brand:focus-visible {
  outline: 3px solid var(--brand-mint);
  outline-offset: 6px;
}

.brand img {
  width: 100%;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgb(70 214 140 / 24%);
  border-radius: 999px;
  color: #c9f5dd;
  background: rgb(33 181 115 / 8%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-mint);
  box-shadow: 0 0 0 5px rgb(70 214 140 / 10%);
}

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(64px, 9vh, 112px) 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--brand-mint);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 span {
  color: var(--brand-mint);
}

.hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.coming-soon__line {
  flex: 0 0 42px;
  height: 2px;
  background: var(--brand-mint);
}

.coming-soon p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.coming-soon strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.flow {
  position: relative;
  min-height: 530px;
}

.flow__rings {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(36vw, 480px);
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(33 181 115 / 12%), transparent 68%);
  transform: translate(-50%, -50%);
}

.flow__rings::before,
.flow__rings::after {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: inherit;
  content: "";
}

.flow__rings::before {
  inset: 12%;
}

.flow__rings::after {
  inset: 28%;
}

.flow__path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow__base,
.flow__dashes {
  stroke: var(--brand-mint);
  stroke-linecap: round;
}

.flow__base {
  stroke-width: 3;
  opacity: 0.8;
}

.flow__dashes {
  stroke-width: 1.5;
  stroke-dasharray: 2 13;
  animation: flow-dashes 14s linear infinite;
}

.flow__path circle {
  fill: var(--brand-mint);
}

.flow__symbol {
  position: absolute;
  top: 50%;
  left: 52%;
  display: grid;
  width: clamp(124px, 13vw, 164px);
  aspect-ratio: 1;
  place-items: center;
  padding: 28px;
  border: 1px solid rgb(70 214 140 / 55%);
  border-radius: 24px;
  background: linear-gradient(145deg, #f7fffb, #d9f8e9);
  box-shadow:
    0 30px 80px rgb(0 0 0 / 32%),
    0 0 60px rgb(70 214 140 / 18%);
  transform: translate(-50%, -50%);
}

.flow-card {
  position: absolute;
  z-index: 1;
  display: flex;
  min-width: 156px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgb(0 0 0 / 20%);
}

.flow-card--clarity {
  top: 20%;
  right: 0;
}

.flow-card--simplicity {
  bottom: 16%;
  left: 0;
}

.flow-card svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 10px;
  background: rgb(70 214 140 / 10%);
  stroke: var(--brand-mint);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-card small,
.flow-card strong {
  display: block;
}

.flow-card small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.flow-card strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.launch__footer {
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: rgb(200 215 230 / 62%);
  font-size: 0.74rem;
}

.launch__footer p {
  margin: 0;
}

@keyframes flow-dashes {
  to {
    stroke-dashoffset: -150;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 72px 48px;
  }

  .flow {
    width: min(100%, 600px);
    min-height: 410px;
    margin: 0 auto;
  }

  .flow__rings {
    width: min(68vw, 420px);
  }
}

@media (max-width: 560px) {
  .launch {
    padding: 22px 16px 18px;
  }

  .brand {
    width: 164px;
  }

  .status {
    max-width: 170px;
    gap: 7px;
    padding: 8px 9px;
    font-size: 0.62rem;
    line-height: 1.35;
    text-align: right;
  }

  .hero {
    padding-block: 58px 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .hero__lead {
    margin-top: 22px;
    line-height: 1.65;
  }

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

  .coming-soon__line {
    flex-basis: 28px;
  }

  .flow {
    min-height: 320px;
  }

  .flow__rings {
    width: min(95vw, 360px);
  }

  .flow__symbol {
    width: 112px;
    padding: 20px;
  }

  .flow-card {
    min-width: 136px;
    padding: 9px 11px;
  }

  .flow-card--clarity {
    top: 10%;
  }

  .flow-card--simplicity {
    bottom: 7%;
  }

  .launch__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

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