:root {
  color-scheme: light;
  --ink: #15132a;
  --muted: #67647b;
  --soft: #f7f8ff;
  --white: #ffffff;
  --line: rgba(36, 32, 72, 0.1);
  --line-strong: rgba(36, 32, 72, 0.18);
  --purple: #9a35ff;
  --violet: #6855ff;
  --blue: #168dff;
  --cyan: #18c6e8;
  --mint: #5fe6b5;
  --peach: #ff9f87;
  --lemon: #f5d85f;
  --shadow: 0 22px 70px rgba(54, 41, 136, 0.15);
  --shadow-soft: 0 14px 40px rgba(68, 74, 126, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f5f7ff 100%);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: rgba(154, 53, 255, 0.18);
  color: var(--ink);
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  height: 76px;
  padding: 0 max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(248, 251, 255, 0.74);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(62, 61, 102, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(104, 85, 255, 0.22);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.primary-nav a {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  background: rgba(104, 85, 255, 0.08);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button--primary,
.nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--violet) 48%, var(--blue));
  box-shadow: 0 14px 34px rgba(104, 85, 255, 0.28);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: clamp(650px, calc(100svh - 138px), 820px);
  overflow: hidden;
  padding: 52px max(22px, calc((100% - var(--max)) / 2)) 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  z-index: -3;
  height: 100%;
  background:
    radial-gradient(closest-side at 16% 32%, rgba(255, 159, 135, 0.34), transparent 70%),
    radial-gradient(closest-side at 52% 6%, rgba(95, 230, 181, 0.32), transparent 68%),
    linear-gradient(118deg, rgba(154, 53, 255, 0.18), rgba(22, 141, 255, 0.16) 52%, rgba(245, 216, 95, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 74%);
}

.hero__glow {
  display: none;
}

.hero__content {
  width: min(100%, 650px);
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #393658;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__badge img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  margin-top: 24px;
  font-size: 4.9rem;
  font-weight: 800;
}

.hero__lede {
  max-width: min(650px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin-top: 34px;
}

.hero__stats div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero__stats strong {
  display: block;
  color: var(--violet);
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero__stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.app-orbit {
  position: absolute;
  width: min(100%, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(104, 85, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    conic-gradient(from 160deg, rgba(154, 53, 255, 0.14), rgba(22, 141, 255, 0.26), rgba(95, 230, 181, 0.14), rgba(154, 53, 255, 0.14)) border-box;
  opacity: 0.9;
}

.app-orbit::before,
.app-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(104, 85, 255, 0.12);
  border-radius: 50%;
}

.app-orbit::before {
  inset: 12%;
}

.app-orbit::after {
  inset: 25%;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(390px, 84vw);
  min-height: 640px;
  padding: 13px;
  border: 1px solid rgba(36, 32, 72, 0.16);
  border-radius: 36px;
  background: #111126;
  box-shadow:
    0 34px 90px rgba(53, 44, 124, 0.32),
    inset 0 0 0 7px rgba(255, 255, 255, 0.04);
}

.phone-status {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 5px;
  width: 94px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #060614;
  transform: translateX(-50%);
}

.phone-status span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.phone-status span:nth-child(2) {
  width: 28px;
  border-radius: 999px;
}

.app-home {
  position: relative;
  min-height: 614px;
  overflow: hidden;
  padding: 66px 22px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 252, 255, 0.96)),
    linear-gradient(140deg, rgba(154, 53, 255, 0.2), rgba(22, 141, 255, 0.16));
}

.app-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, rgba(154, 53, 255, 0.14), transparent 44%),
    linear-gradient(22deg, transparent 46%, rgba(95, 230, 181, 0.16));
  pointer-events: none;
}

.app-home__logo {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(104, 85, 255, 0.25);
}

.app-home p,
.app-home h2,
.mind-score,
.mini-wave {
  position: relative;
  z-index: 2;
}

.app-home p {
  margin: 0;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.app-home h2 {
  max-width: 280px;
  margin: 8px auto 22px;
  color: var(--ink);
  font-size: 2.05rem;
  line-height: 1.08;
  text-align: center;
}

.mind-score {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin: 0 auto 24px;
  border: 13px solid rgba(104, 85, 255, 0.14);
  border-top-color: var(--purple);
  border-right-color: var(--blue);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

.mind-score span {
  color: var(--ink);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 0.95;
}

.mind-score small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-wave {
  width: 100%;
  min-height: 178px;
  border: 1px solid rgba(36, 32, 72, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card--left {
  left: 0;
  top: 24%;
}

.floating-card--right {
  right: 0;
  bottom: 23%;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-card strong {
  color: var(--violet);
  font-size: 1.55rem;
  line-height: 1;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.logo-strip span {
  min-width: 112px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #ffffff;
  font-weight: 800;
  text-align: center;
}

.logo-strip span:nth-child(1) {
  color: #7f55d9;
}

.logo-strip span:nth-child(2) {
  color: #168dff;
}

.logo-strip span:nth-child(3) {
  color: #0fae95;
}

.logo-strip span:nth-child(4) {
  color: #e36e79;
}

.logo-strip span:nth-child(5) {
  color: #b28c00;
}

.logo-strip span:nth-child(6) {
  color: #7f2cff;
}

.section {
  padding: 98px max(22px, calc((100% - var(--max)) / 2));
}

.section__intro {
  max-width: 760px;
}

.section__intro h2,
.cta-section h2 {
  max-width: 800px;
  font-size: 3.35rem;
  font-weight: 800;
}

.section__intro p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.intro-section {
  background: #ffffff;
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr);
  gap: 16px;
  margin-top: 42px;
}

.bento-card {
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.bento-card--wide {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(0, 0.92fr) minmax(220px, 0.78fr);
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(154, 53, 255, 0.1), rgba(22, 141, 255, 0.1)),
    #ffffff;
}

.bento-card--blue {
  background: linear-gradient(135deg, rgba(22, 141, 255, 0.14), rgba(95, 230, 181, 0.15)), #ffffff;
}

.bento-card--pink {
  background: linear-gradient(135deg, rgba(255, 159, 135, 0.18), rgba(245, 216, 95, 0.16)), #ffffff;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bento-card h3,
.feature-card h3,
.timeline-step h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

.bento-card h3 {
  max-width: 500px;
  font-size: 2rem;
}

.bento-card p,
.feature-card p,
.timeline-step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pulse-stack {
  display: grid;
  gap: 14px;
}

.pulse-stack span {
  display: block;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(154, 53, 255, 0.12), rgba(22, 141, 255, 0.5), rgba(95, 230, 181, 0.14)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.5) 18px 20px);
}

.pulse-stack span:nth-child(2) {
  width: 84%;
  background:
    linear-gradient(90deg, rgba(95, 230, 181, 0.14), rgba(154, 53, 255, 0.42), rgba(255, 159, 135, 0.18)),
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(255, 255, 255, 0.55) 16px 18px);
}

.pulse-stack span:nth-child(3) {
  width: 70%;
  background:
    linear-gradient(90deg, rgba(245, 216, 95, 0.18), rgba(22, 141, 255, 0.42), rgba(154, 53, 255, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(255, 255, 255, 0.5) 20px 22px);
}

.section--soft {
  background: #f6f7ff;
}

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

.feature-card {
  min-width: 0;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(154, 53, 255, 0.14), rgba(22, 141, 255, 0.16));
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon--trace::before {
  left: 8px;
  right: 8px;
  top: 23px;
  height: 3px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 7px -8px 0 var(--blue), 19px 8px 0 var(--mint);
}

.feature-icon--bands::before {
  left: 10px;
  bottom: 10px;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 10px -8px 0 var(--blue), 20px -15px 0 var(--peach);
}

.feature-icon--compare::before {
  inset: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.feature-icon--compare::after {
  right: 9px;
  bottom: 9px;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
  transform: rotate(45deg);
}

.feature-icon--export::before {
  left: 13px;
  top: 9px;
  width: 19px;
  height: 25px;
  border: 3px solid var(--violet);
  border-radius: 4px;
}

.feature-icon--export::after {
  left: 17px;
  top: 27px;
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
}

.feature-card h3 {
  font-size: 1.24rem;
}

.workflow {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

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

.timeline-step {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  font-weight: 800;
}

.timeline-step h3 {
  font-size: 1.42rem;
}

.cta-section {
  padding: 98px max(22px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(154, 53, 255, 0.1), rgba(22, 141, 255, 0.1) 42%, rgba(95, 230, 181, 0.12)),
    #ffffff;
}

.cta-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cta-shell > img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(104, 85, 255, 0.24);
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  outline: 0;
}

.waitlist-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(104, 85, 255, 0.14);
}

.waitlist-form .button {
  width: 100%;
  min-height: 54px;
  border: 0;
}

.form-note {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
  padding: 28px max(22px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-email {
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-email:hover,
.footer-email:focus-visible {
  text-decoration: underline;
}

.fine-print {
  max-width: none;
  white-space: nowrap;
  text-align: right;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero__visual {
    min-height: 560px;
  }

  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-shell {
    grid-template-columns: 80px 1fr;
  }

  .waitlist-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 68px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    color: var(--ink);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 48px 18px 48px;
  }

  .hero h1 {
    font-size: 3.28rem;
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

  .phone-shell {
    min-height: 560px;
  }

  .app-home {
    min-height: 534px;
  }

  .floating-card--left {
    left: 4px;
    top: 18%;
  }

  .floating-card--right {
    right: 4px;
    bottom: 14%;
  }

  .section,
  .cta-section {
    padding: 72px 18px;
  }

  .section__intro h2,
  .cta-section h2 {
    font-size: 2.45rem;
  }

  .bento-grid,
  .bento-card--wide,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .pulse-stack {
    display: none;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-shell > img {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .fine-print {
    max-width: none;
    white-space: normal;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero__lede {
    max-width: 34ch;
  }

  .hero__stats {
    display: none;
  }

  .hero__visual {
    min-height: 470px;
  }

  .phone-shell {
    width: min(300px, 80vw);
    min-height: 456px;
    border-radius: 30px;
  }

  .app-home {
    min-height: 430px;
    padding: 58px 16px 18px;
    border-radius: 22px;
  }

  .app-home__logo {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .app-home h2 {
    font-size: 1.35rem;
  }

  .mind-score {
    width: 116px;
    height: 116px;
    border-width: 10px;
  }

  .mind-score span {
    font-size: 2.25rem;
  }

  .mini-wave {
    min-height: 124px;
  }

  .floating-card {
    min-width: 104px;
    padding: 11px 12px;
  }

  .floating-card--right {
    display: none;
  }

  .section__intro h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .logo-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
