.hero {
  padding: 44px 0 34px;
}

.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__title {
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 16px 0 10px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.02;
  color: var(--textStrong);
}

.hero__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
}

.hero__cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-weight: 600;
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--borderSoft);
  background: var(--surface3);
}

.trust__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--green), var(--teal));
  box-shadow: var(--trustDotRing);
}

.countdown {
  margin-top: 0;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadowSoft);
  width: 100%;
}

.countdown__label {
  font-weight: 700;
  color: var(--textStrong);
}

.countdown__row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown__cell {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--borderSoft);
  background: var(--countCellBg);
  text-align: center;
}

.countdown__num {
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--textStrong);
}

.countdown__unit {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 600;
}

.countdown__note {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
}

.visual-card {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card__top {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--borderSoft);
  background: var(--surface3);
}

.visual-pill {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--borderStrong);
}

.visual-card__body {
  padding: 20px;
  display: grid;
  gap: 18px;
}

.visual-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background: var(--visualLogoBg);
  border: 1px solid var(--iconBorder);
  box-shadow: var(--visualLogoShadow);
}

.visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 26% 35%;
  border-radius: 20px;
}

.visual-lines {
  display: grid;
  gap: 10px;
}

.visual-line {
  height: 14px;
  border-radius: 999px;
  background: var(--borderSoft);
}

.visual-line:nth-child(2) {
  width: 86%;
}

.visual-line:nth-child(3) {
  width: 68%;
}

.visual-bubbles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bubble {
  width: 74px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--borderSoft);
  background: var(--surface);
  box-shadow: var(--shadowSoft);
}

.bubble--a {
  background: var(--bubbleA);
}

.bubble--b {
  background: var(--bubbleB);
}

.bubble--c {
  background: var(--bubbleC);
}

.blob {
  position: absolute;
  z-index: 0;
  inset: auto;
  width: 180px;
  height: 180px;
  border-radius: 44% 56% 55% 45% / 44% 40% 60% 56%;
  filter: blur(0.3px);
  opacity: 0.9;
  pointer-events: none;
}

.blob--1 {
  right: -26px;
  top: -18px;
  background: var(--blob1Bg);
}

.blob--2 {
  left: -40px;
  bottom: -36px;
  width: 220px;
  height: 220px;
  background: var(--blob2Bg);
}

.countdown--hero {
  width: 100%;
  position: relative;
  z-index: 1;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background:
    radial-gradient(900px 420px at 20% 20%, var(--sectionAltA), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, var(--sectionAltB), transparent 58%),
    var(--sectionAltBase);
  border-top: 1px solid var(--borderHair);
  border-bottom: 1px solid var(--borderHair);
}

.section--waitlist {
  padding: 74px 0;
}

.section__head {
  max-width: 74ch;
}

.section__title {
  font-family: "Baloo 2", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0;
  font-size: 32px;
  color: var(--textStrong);
}

.section__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (min-width: 720px) {
  .hero {
    padding: 70px 0 44px;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .hero__visual {
    min-height: 390px;
  }
}
