:root {
  --bg: #021027;
  --yellow: #f3cd13;
  --blue: #3387c8;
  --red: #d01931;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  /* Exact sample from assets/ontrak_logo.png corners */
  background: #021027;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: #021027;
}

.watermark-target {
  position: absolute;
  left: 50%;
  top: 38%;
  width: min(110vw, 900px);
  height: auto;
  opacity: 0.02;
  transform: translate(-50%, -50%);
  animation: drift 28s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@keyframes drift {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.015;
  }
  to {
    transform: translate(calc(-50% - 14px), calc(-50% + 18px)) rotate(-3deg);
    opacity: 0.028;
  }
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.15rem clamp(1.1rem, 4vw, 2.5rem);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.site-header nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--yellow);
}

.site-header nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(2.75rem, 5vw, 3.5rem) 0 1.25rem;
  background: transparent;
}

.logo-banner {
  width: 100vw;
  max-width: 100%;
  margin: 0 0 0.85rem;
  line-height: 0;
  background: #021027;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: block;
  width: min(92vw, 560px);
  max-width: 560px;
  height: auto;
  margin: 0;
}

.hero-inner {
  width: min(640px, 100%);
  text-align: center;
  padding: 0 1.25rem;
}

.strap {
  margin: 0 auto 1rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: var(--yellow);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.lede {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.65rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--bg);
  background: var(--yellow);
  border-radius: 4px;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(243, 205, 19, 0.22);
}

.cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.cta-secondary {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover {
  color: var(--text);
  border-bottom-color: var(--blue);
}

.section {
  padding: 2rem 1.25rem 1rem;
  background: transparent;
}

.section.what {
  padding-left: 0;
  padding-right: 0;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.what .section-lede {
  max-width: none;
}

.what .pillars {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: -0.02em;
}

.section-lede {
  margin: 0 0 2.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

.pillars h3 {
  margin: 0 0 0.35rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.pillars p {
  margin: 0;
  color: var(--muted);
}

.section.how {
  padding-left: 0;
  padding-right: 0;
  padding-top: 1rem;
}

.tour-step {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.tour-step.reverse .tour-copy {
  order: 2;
}

.tour-step.reverse .tour-media,
.tour-step.reverse .tour-demo,
.tour-step.reverse .tour-ready {
  order: 1;
}

.tour-copy .step-index {
  display: block;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 0.55rem;
}

.tour-copy h3 {
  margin: 0 0 0.45rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.tagline {
  margin: 0 0 1rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.98rem;
}

.tagline.tight {
  margin-top: 1rem;
  margin-bottom: 0;
}

.tour-copy > p:not(.eyebrow):not(.tagline) {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.tour-copy > p:not(.eyebrow):not(.tagline):last-child {
  margin-bottom: 0;
}

.tour-media {
  margin: 0;
}

.tour-media img,
.tour-ready img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 320px;
  margin: 0 auto;
}

.tour-media img {
  max-width: none;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(2, 16, 39, 0.55);
}

.tour-demo {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(2, 16, 39, 0.72);
  overflow: hidden;
  min-height: 210px;
  position: relative;
}

/* â€”â€” Drill carousel (from tutorial tour) â€”â€” */
.dotw-stage {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
  background: rgba(2, 16, 39, 0.85);
}

.dotw-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.dotw-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 42%, transparent 78%);
}

.dotw-copy {
  position: absolute;
  left: 14px;
  top: 14px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.dotw-copy .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.dotw-copy .name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.dotw-copy .hint {
  font-size: 11px;
  color: #9fb2c4;
}

.swipe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 28px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.swipe-btn.prev {
  left: 4px;
}

.swipe-btn.next {
  right: 4px;
}

.swipe-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.swipe-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.swipe-dots span.on {
  background: var(--yellow);
}

/* â€”â€” Take your shot sequence â€”â€” */
.seq {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.seq-panel {
  position: absolute;
  inset: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.4s, transform 0.4s;
}

.seq-panel.on {
  opacity: 1;
  transform: none;
}

.seq-panel.off-left {
  opacity: 0;
  transform: translateX(-18px);
}

.timer-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tbtn {
  min-width: 52px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #c5d3e0;
  font-weight: 800;
  font-size: 13px;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.tbtn.on {
  border-color: var(--yellow);
  background: rgba(243, 205, 19, 0.16);
  color: var(--yellow);
  transform: scale(1.06);
}

.go-big {
  width: 86%;
  max-width: 260px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #3ecf6a, #1f9a45);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(30, 160, 70, 0.35);
  animation: pulseGo 1.2s ease-in-out infinite;
}

@keyframes pulseGo {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.rec-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--red);
  display: grid;
  place-items: center;
  animation: recPulse 1s ease-in-out infinite;
}

.rec-ring .dot-rec {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes recPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(208, 25, 49, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(208, 25, 49, 0);
  }
}

.analyse {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.pulse-target {
  position: relative;
  width: 96px;
  height: 96px;
}

.pulse-target .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-sizing: border-box;
  animation: pulseRing 1.6s linear infinite;
}

.pulse-target .ring.r0 {
  border: 3.2px solid var(--red);
}

.pulse-target .ring.r1 {
  border: 3.2px solid var(--blue);
  animation-delay: -0.533s;
}

.pulse-target .ring.r2 {
  border: 3.2px solid var(--yellow);
  animation-delay: -1.067s;
}

.pulse-target img {
  position: absolute;
  width: 55%;
  height: 55%;
  left: 22.5%;
  top: 22.5%;
  object-fit: contain;
  animation: pulseBreathe 1.6s ease-in-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.35);
    opacity: 0.55;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulseBreathe {
  0%,
  100% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1);
  }
}

.seq-label {
  font-size: 12px;
  color: #9fb2c4;
  font-weight: 600;
}

.seq-steps {
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  justify-content: center;
  z-index: 3;
}

.seq-steps span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.seq-steps span.on {
  background: var(--yellow);
}

/* â€”â€” Results video + stars â€”â€” */
.results-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.5rem;
}

.results-video {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.stars-pop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 10px 0 4px;
}

.stars-pop svg {
  width: 42px;
  height: 42px;
  display: block;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 50%;
}

.stars-pop svg.in {
  animation: starPop 420ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  55% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.stars-caption {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #9fb2c4;
}

/* â€”â€” Stats + badge pop â€”â€” */
.stats-badges-box {
  padding: 0;
  min-height: 420px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.stat .v {
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

.stat .k {
  font-size: 11px;
  color: var(--faint);
  margin-top: 4px;
  font-family: Manrope, sans-serif;
}

/* Badge unlock â€” matches tools/tutorial_tour_preview.html / in-app popup */
.badge-unlock {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 20px;
  opacity: 0;
  pointer-events: none;
}

.badge-unlock.in {
  opacity: 1;
}

.wu-stage {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
}

.wu-glow,
.wu-ring,
.wu-medal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wu-glow {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 25, 49, 0.55), transparent 70%);
  opacity: 0;
  filter: blur(10px);
}

.wu-ring {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px dashed rgba(208, 25, 49, 0.55);
  opacity: 0;
}

.wu-medal {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #1a2f4a, #061022 70%);
  border: 11px solid var(--red);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45), 0 0 14px rgba(208, 25, 49, 0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px)) scale(0.05);
}

.wu-medal svg {
  width: 54px;
  height: 54px;
  fill: #fff;
}

.wu-copy {
  text-align: center;
  opacity: 0;
  margin-top: 4px;
}

.wu-pill {
  display: inline-block;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--red);
  border: 1px solid rgba(208, 25, 49, 0.55);
  background: rgba(208, 25, 49, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
}

.wu-name {
  margin-top: 12px;
  font-family: Roboto, system-ui, sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
}

.wu-desc {
  margin: 10px auto 0;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #9fb2c4;
  max-width: 18rem;
}

.badge-unlock.in .wu-glow {
  animation: wuGlow 780ms ease-out forwards, wuPulse 1100ms ease-in-out 780ms infinite alternate;
}

.badge-unlock.in .wu-ring {
  animation: wuRing 780ms ease-out forwards;
}

.badge-unlock.in .wu-medal {
  animation: wuPop 780ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.badge-unlock.in .wu-copy {
  animation: wuFade 780ms ease-out forwards;
}

@keyframes wuPop {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px)) scale(0.05);
  }
  55% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.22);
  }
  75% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes wuGlow {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}

@keyframes wuPulse {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }
  to {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 1;
  }
}

@keyframes wuRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(250deg);
  }
}

@keyframes wuFade {
  0%,
  45% {
    opacity: 0;
  }
  85%,
  100% {
    opacity: 1;
  }
}

/* â€”â€” Better together â€”â€” */
.together-box {
  padding: 16px 12px 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.tog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tog-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.tog-card.p1 {
  border-color: rgba(243, 205, 19, 0.45);
}

.tog-card.p2 {
  border-color: rgba(51, 135, 200, 0.45);
}

.tog-card .nm {
  font-size: 15px;
  font-weight: 800;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tog-card .ds {
  font-size: 11px;
  color: var(--faint);
  margin-top: 4px;
  font-family: Manrope, sans-serif;
}

.ico.duo {
  position: relative;
  height: 44px;
  margin-bottom: 8px;
}

.ico.duo .avatar {
  position: absolute;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #021027;
}

.ico.duo .a1 {
  left: calc(50% - 22px);
  background: var(--yellow);
  animation: duoBob 1.8s ease-in-out infinite;
}

.ico.duo .a2 {
  left: calc(50% - 6px);
  background: var(--blue);
  animation: duoBob 1.8s ease-in-out 0.25s infinite;
}

@keyframes duoBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.ico.trophy {
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.trophy-svg {
  width: 44px;
  height: 44px;
  transform-origin: 50% 80%;
  animation: trophyBounce 1.6s ease-in-out infinite;
}

@keyframes trophyBounce {
  0%,
  100% {
    transform: rotate(-6deg) scale(1);
  }
  40% {
    transform: rotate(6deg) scale(1.08);
  }
  70% {
    transform: rotate(-2deg) scale(1.02);
  }
}

.tog-note {
  text-align: center;
  font-size: 11px;
  color: #9fb2c4;
}

.ready-step {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
  max-width: 720px;
}

footer {
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: transparent;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--faint);
}

footer a {
  color: var(--blue);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* â€”â€” Privacy â€”â€” */
.legal-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: #021027;
}

.legal-header .logo-link {
  display: block;
  line-height: 0;
}

.legal-header .logo-link img {
  height: 42px;
  width: auto;
  display: block;
}

.legal-header a.mail {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-header a.mail:hover {
  color: var(--yellow);
}

.legal-main {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  background: #021027;
}

.legal-main h1 {
  margin: 0.5rem 0 0.4rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
}

.policy {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.legal-foot {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.85rem;
  background: #021027;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.24s;
}

.reveal.delay-3 {
  transition-delay: 0.36s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .watermark-target,
  .go-big,
  .rec-ring,
  .pulse-target .ring,
  .pulse-target img,
  .trophy-svg,
  .ico.duo .avatar {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 820px) {
  .what .pillars {
    grid-template-columns: 1fr;
  }

  .tour-step,
  .tour-step.reverse .tour-copy,
  .tour-step.reverse .tour-media,
  .tour-step.reverse .tour-demo,
  .tour-step.reverse .tour-ready {
    order: unset;
  }

  .tour-step {
    grid-template-columns: 1fr;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (max-width: 520px) {
  .site-header nav a:nth-child(1),
  .site-header nav a:nth-child(2) {
    display: none;
  }

  .dotw-stage {
    height: 220px;
  }
}
