/* Finish Him — landing (app dark theme) */

:root {
  --text: #ffffff;
  --text-secondary: #8e9bb5;
  --bg: #070b14;
  --bg-mid: #0a1020;
  --bg-end: #050818;
  --accent: #0a84ff;
  --accent-end: #0055cc;
  --accent-start: #409cff;
  --accent-muted: rgba(10, 132, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(100, 180, 255, 0.22);
  --border: rgba(100, 180, 255, 0.14);
  --success: #30d158;
  --funny: #ffd60a;
  --savage: #ff9f0a;
  --unexpected: #bf5af2;
  --glow-accent: rgba(10, 132, 255, 0.55);
  --glow-cool: rgba(94, 92, 230, 0.38);
  --glow-warm: rgba(100, 210, 255, 0.24);
  --sheet: #161e32;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Unbounded", system-ui, sans-serif;
  --nav-h: 72px;
  --max: 960px;
  --page-pad: clamp(1rem, 4vw, 1.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-phone: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 60px rgba(10, 132, 255, 0.12);
  --app-store-url: https://apps.apple.com/;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.grad {
  background: linear-gradient(135deg, var(--accent-start), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 36rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-start), var(--accent));
  box-shadow: 0 10px 28px rgba(10, 132, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(10, 132, 255, 0.48);
}

.btn--ghost {
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.btn--store {
  gap: 0.55rem;
}

.btn--store svg {
  flex-shrink: 0;
}

/* App Store QR */
.store-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.store-cta--center {
  justify-content: center;
}

.qr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.qr img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.qr__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
  max-width: 7.5rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  padding: 0 var(--page-pad);
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 11, 20, 0.9);
}

.nav__inner {
  width: min(100%, var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__icon {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(10, 132, 255, 0.35);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav__links {
  display: none;
  gap: 1.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav__links a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* Hero — full-bleed; copy + phone sit side-by-side on desktop */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: calc(var(--nav-h) + 1.5rem) var(--page-pad) 0;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--bg) 0%,
    var(--bg-mid) 45%,
    var(--bg-end) 100%
  );
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, var(--glow-warm), transparent 60%),
    radial-gradient(ellipse 45% 35% at 80% 20%, var(--glow-accent), transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 80%, var(--glow-cool), transparent 50%);
  animation: mesh-drift 18s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.4;
  background: linear-gradient(145deg, rgba(64, 156, 255, 0.35), rgba(10, 132, 255, 0.12));
  border: 1px solid rgba(100, 180, 255, 0.22);
  animation: float 12s var(--ease) infinite;
}

.orb--1 {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 8%;
}

.orb--2 {
  width: 120px;
  height: 120px;
  top: 28%;
  right: 12%;
  animation-delay: -4s;
}

.orb--3 {
  width: 90px;
  height: 90px;
  bottom: 22%;
  left: 22%;
  animation-delay: -7s;
}

@keyframes mesh-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-2%, 3%) scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding-bottom: 0.5rem;
  text-align: center;
}

.hero__icon {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(10, 132, 255, 0.4);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4rem);
  letter-spacing: -0.03em;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0;
}

.hero__support {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.hero__cta .store-cta {
  justify-content: center;
}

.hero__cta .qr {
  margin-inline: auto;
}

.hero__visual {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  will-change: transform;
  flex-shrink: 0;
}

.hero__shot {
  width: 100%;
  border-radius: 28px 28px 0 0;
}

/* Soft edge dissolve into page background */
.hero__shot,
.section__media img,
.way__media img,
.roadmap__visual img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 82%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 82%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding-inline: clamp(var(--page-pad), 5vw, 3rem);
    padding-bottom: 0;
  }

  .hero__content {
    width: min(100%, 440px);
    text-align: center;
    padding: 2rem 0 3rem;
  }

  .hero__brand,
  .hero__cta {
    align-items: center;
  }

  .hero__support {
    margin-inline: auto;
  }

  .hero__cta .store-cta {
    justify-content: center;
  }

  .hero__visual {
    width: min(42vw, 460px);
    align-self: flex-end;
  }
}

/* Sections */
.section,
.band {
  scroll-margin-top: calc(var(--nav-h) + 0.5rem);
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

.section--split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.section--stack {
  max-width: var(--max);
  margin: 0 auto;
}

.section__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section__intro .lede {
  margin-left: auto;
  margin-right: auto;
}

.section__media img,
.way__media img,
.roadmap__visual img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.section__media,
.way__media {
  max-width: 380px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .section--split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .section--reverse .section__copy {
    order: 2;
  }

  .section--reverse .section__media {
    order: 1;
  }

  .section__media {
    max-width: 440px;
    margin: 0;
  }

  .section--reverse .section__media {
    margin-left: auto;
  }
}

/* Tones */
.tone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tone {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tone.is-pulse {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(10, 132, 255, 0.25);
}

.tone--funny {
  border-color: rgba(255, 214, 10, 0.55);
  background: rgba(255, 214, 10, 0.18);
}

.tone--savage {
  border-color: rgba(255, 159, 10, 0.55);
  background: rgba(255, 159, 10, 0.16);
}

.tone--unexpected {
  border-color: rgba(191, 90, 242, 0.45);
  background: rgba(191, 90, 242, 0.14);
}

/* Ways */
.ways {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ways {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.way {
  text-align: center;
}

.way__media {
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.way h3 {
  margin-bottom: 0.4rem;
}

.way p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  max-width: 22rem;
  margin: 0 auto;
}

/* Mode chips */
.mode-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.chip:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-start), var(--accent));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.mode-caption {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  min-height: 1.5em;
  transition: opacity 0.2s ease;
}

.mode-caption.is-fading {
  opacity: 0;
}

/* Elevated bands for rhythm on dark page */
.band--elevated {
  background: linear-gradient(180deg, #090e1a, var(--bg-mid) 45%, #080c18);
  border-block: 1px solid var(--border);
}

.band--elevated .section {
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.coach-orb {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
}

.coach-orb__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(96, 165, 250, 0.35);
  border-top-color: #60a5fa;
  animation: spin 3.2s linear infinite;
}

.coach-orb__core {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #64d2ff, #007aff 70%);
  box-shadow: 0 0 28px rgba(10, 132, 255, 0.55);
}

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

/* Pricing */
.section--pricing {
  width: min(100%, var(--max));
  margin-inline: auto;
  background: transparent;
}

.pricing {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pricing {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.price-card--featured {
  border-color: rgba(64, 156, 255, 0.55);
  background: linear-gradient(
    165deg,
    rgba(10, 132, 255, 0.22),
    rgba(255, 255, 255, 0.04) 55%
  );
  box-shadow: 0 20px 50px rgba(10, 132, 255, 0.18);
}

.price-card__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-start), var(--accent));
}

.price-card__plan {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.price-card__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__period {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  min-height: 2.4em;
}

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 1.5rem;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.price-card__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.15);
}

.price-card .btn {
  width: 100%;
}

.pricing__note {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Roadmap */
.roadmap {
  display: grid;
  gap: 1rem;
  margin: 0 auto 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .roadmap {
    grid-template-columns: 1fr 1fr;
  }

  .idea--shipped {
    grid-column: 1 / -1;
  }
}

.idea {
  position: relative;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--border);
  overflow: hidden;
}

.idea h3 {
  margin: 0.65rem 0 0.5rem;
}

.idea p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.idea__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.8rem;
}

.idea__topic,
.idea__votes {
  color: var(--text-secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--done {
  color: #06240f;
  background: var(--success);
}

.badge--open {
  color: var(--accent-start);
  background: rgba(10, 132, 255, 0.18);
  border: 1px solid rgba(100, 180, 255, 0.3);
}

.idea--shipped {
  border-color: rgba(48, 209, 88, 0.4);
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.1), rgba(255, 255, 255, 0.04));
}

.idea__dev {
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(48, 209, 88, 0.25);
  color: #9ae6b4 !important;
  font-weight: 500;
}

.stamp {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(48, 209, 88, 0.85);
  border: 2px solid rgba(48, 209, 88, 0.65);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  transform: rotate(12deg) scale(1.4);
  opacity: 0;
}

.idea--shipped.reveal.is-visible .stamp {
  animation: stamp-in 0.55s var(--ease) 0.15s forwards;
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: rotate(12deg) scale(1.4);
  }
  to {
    opacity: 1;
    transform: rotate(12deg) scale(1);
  }
}

.roadmap__visual {
  max-width: 360px;
  margin: 0 auto;
}

/* Contact */
.section--contact {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.contact {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.contact .lede {
  margin: 1rem auto 1.5rem;
}

.contact__email {
  color: var(--accent-start);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact__email:hover {
  color: #fff;
}

/* Final CTA */
.section--cta {
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-end));
}

.cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta__icon {
  margin: 0 auto 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(10, 132, 255, 0.4);
}

.cta__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.cta .lede {
  margin: 1rem auto 1.75rem;
}

.cta__legal {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta__legal a:hover {
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer__brand img {
  border-radius: 8px;
}

.footer__copy {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.footer__links a:hover {
  color: var(--accent);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--phone {
  transform: translateY(48px) scale(0.98);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  transition-delay: 0ms;
}

.hero .reveal.is-visible:nth-child(1) {
  transition-delay: 0.05s;
}

.hero .reveal.is-visible:nth-child(2) {
  transition-delay: 0.15s;
}

.hero .reveal.is-visible:nth-child(3) {
  transition-delay: 0.25s;
}

.hero .reveal.is-visible:nth-child(4) {
  transition-delay: 0.35s;
}

.hero__visual.reveal.is-visible {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal--phone {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mesh,
  .orb,
  .coach-orb__ring,
  .stamp {
    animation: none !important;
  }

  .stamp {
    opacity: 1;
    transform: rotate(12deg);
  }

}
