@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f4fbff;
  --bg-soft: #e8f6ff;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(35, 101, 152, 0.14);
  --line-strong: rgba(35, 101, 152, 0.24);
  --text: #12314d;
  --text-muted: #4f6780;
  --text-soft: #5d748d;
  --accent-a: #2893e3;
  --accent-b: #00d8d5;
  --accent-c: #2893e3;
  --accent-strong: #2b76d5;
  --accent-soft: rgba(18, 159, 203, 0.1);
  --success: #139971;
  --danger: #d94d66;
  --shadow: 0 24px 60px rgba(31, 98, 153, 0.18);
  --radius-xl: 14px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1360px;
  /* Quick controls for the home page "How it works" section. */
  --how-it-works-section-padding-y: 30px;
  --how-it-works-shell-padding: 18px;
  --how-it-works-intro-gap: 12px;
  --how-it-works-layout-gap: 12px;
  --how-it-works-nav-gap: 8px;
  --how-it-works-nav-button-height: 70px;
  --how-it-works-panel-padding: 18px;
  --how-it-works-gallery-gap: 12px;
  --how-it-works-gallery-rail-width: 320px;
  --how-it-works-main-stage-height: 500px;
  --how-it-works-main-media-width: 332px;
  --how-it-works-thumb-height: 176px;
  --how-it-works-bullets-padding: 10px 10px 10px 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.3),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.18),
      transparent 22%
    ),
    linear-gradient(160deg, #1fd0cb 0%, #3d8fe9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main p a,
main li a,
.muted a {
  color: var(--accent-strong);
  border-bottom: 1px solid rgba(61, 143, 233, 0.24);
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.38;
  z-index: 0;
}

.site-shell::before {
  top: -120px;
  right: -120px;
  background: rgba(255, 255, 255, 0.4);
}

.site-shell::after {
  bottom: -180px;
  left: -150px;
  background: rgba(40, 147, 227, 0.26);
}

.container {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

.section-viewport {
  padding: 48px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #000;
  background: var(--accent-soft);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-copy {
  max-width: 1250px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(35, 101, 152, 0.12);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(31, 98, 153, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(40, 147, 227, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 30px rgba(18, 120, 190, 0.12);
  outline: none;
}

.menu-toggle__icon {
  display: grid;
  gap: 5px;
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 160ms ease,
    background-color 180ms ease;
}

body[data-nav-open="true"] .menu-toggle {
  border-color: rgba(40, 147, 227, 0.38);
  background:
    linear-gradient(135deg, rgba(40, 147, 227, 0.16), rgba(0, 216, 213, 0.12)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 34px rgba(18, 120, 190, 0.14);
}

body[data-nav-open="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body[data-nav-open="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

body[data-nav-open="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.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;
}

.button,
.button-secondary,
.button-ghost,
.button-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
  cursor: pointer;
}

.button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(31, 98, 153, 0.08);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(31, 98, 153, 0.08);
}

.button-danger {
  color: #fff7f8;
  background: linear-gradient(135deg, #ff6077, #ff8660);
  box-shadow: 0 18px 42px rgba(198, 58, 83, 0.18);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button-danger:hover {
  transform: translateY(-2px);
}

.button[disabled],
.button-secondary[disabled],
.button-ghost[disabled],
.button-danger[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero {
  padding: 84px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-grid--visual {
  align-items: stretch;
}

.hero-copy h1 {
  margin: 20px 0 20px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--accent-strong);
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.8;
}

.about-hero {
  padding: 88px 0 40px;
}

.about-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 26px;
  padding: 40px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.38),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(234, 247, 255, 0.74));
  box-shadow: 0 30px 72px rgba(17, 80, 124, 0.2);
  backdrop-filter: blur(18px);
}

.about-hero__copy h1 {
  margin: 20px 0 18px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  color: #0f3150;
}

.about-hero__copy p {
  max-width: 620px;
  margin: 0 0 26px;
}

.about-hero__lede {
  max-width: 640px;
  margin: 0 0 12px;
  color: #1a4468;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.7;
}

.about-hero__support {
  max-width: 640px;
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-hero__story {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.about-story-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(35, 101, 152, 0.14);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(232, 246, 255, 0.72)
    ),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 36px rgba(31, 98, 153, 0.08);
}

.about-story-card__step {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(40, 147, 227, 0.12);
  color: #0d78d5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-story-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  color: #0f3150;
}

.about-story-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-hero__metric {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35, 101, 152, 0.12);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(234, 247, 255, 0.72)
  );
  box-shadow: 0 16px 32px rgba(31, 98, 153, 0.08);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: -0.03em;
  color: #0f3150;
}

.about-hero .hero-actions .button,
.about-hero .hero-actions .button-secondary,
.about-hero .hero-actions .button-ghost {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.about-hero .hero-actions .button::after,
.about-hero .hero-actions .button-secondary::after,
.about-hero .hero-actions .button-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(40, 147, 227, 0.12),
    rgba(0, 216, 213, 0.08)
  );
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.about-hero .hero-actions .button:hover,
.about-hero .hero-actions .button:focus-visible,
.about-hero .hero-actions .button-secondary:hover,
.about-hero .hero-actions .button-secondary:focus-visible,
.about-hero .hero-actions .button-ghost:hover,
.about-hero .hero-actions .button-ghost:focus-visible {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(40, 147, 227, 0.4);
  box-shadow: 0 22px 38px rgba(18, 120, 190, 0.16);
  color: #0f3150;
}

.about-hero .hero-actions .button:hover::after,
.about-hero .hero-actions .button:focus-visible::after,
.about-hero .hero-actions .button-secondary:hover::after,
.about-hero .hero-actions .button-secondary:focus-visible::after,
.about-hero .hero-actions .button-ghost:hover::after,
.about-hero .hero-actions .button-ghost:focus-visible::after {
  opacity: 1;
}

.about-hero__stage {
  position: relative;
  min-height: 710px;
  display: grid;
  padding: 26px;
  justify-items: center;
  align-content: center;
  gap: 27px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 216, 213, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(40, 147, 227, 0.2),
      transparent 28%
    ),
    linear-gradient(180deg, #0d1727, #12243b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-hero__stage::before,
.about-hero__stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.68;
  pointer-events: none;
}

.about-hero__stage::before {
  top: 80px;
  left: 34px;
  width: 170px;
  height: 170px;
  background: rgba(0, 216, 213, 0.2);
}

.about-hero__stage::after {
  right: 18px;
  bottom: 118px;
  width: 230px;
  height: 230px;
  background: rgba(40, 147, 227, 0.24);
}

.about-stage__top {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 560px);
}

.about-stage__intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #80ecf0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stage__intro strong {
  display: block;
  max-width: 520px;
  color: #eef9ff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.about-stage__hint {
  display: none;
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(214, 236, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-stage__showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  min-height: 0;
}

.scroll-cue--showcase {
  width: min(100%, 612px);
  margin-inline: auto;
}

.about-phone {
  position: relative;
  padding: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    #07111f;
  box-shadow: 0 30px 60px rgba(2, 8, 18, 0.44);
  overflow: hidden;
}

.about-phone img,
.about-phone video {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 24px;
  background: #050c15;
  pointer-events: none;
}

.about-phone__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 15, 28, 0.76);
  color: #ebf7ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-phone__caption {
  margin: 12px 6px 0;
  color: #d6ecff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.about-phone--scan,
.about-phone--hero,
.about-phone--preview {
  animation: about-stage-float 6.8s ease-in-out infinite;
}

.about-phone--scan {
  --about-stage-y: 20px;
  --about-stage-rotation: -4deg;
  transform: translateY(var(--about-stage-y))
    rotate(var(--about-stage-rotation));
}

.about-phone--hero {
  --about-stage-y: -4px;
  --about-stage-rotation: 0deg;
  z-index: 2;
  transform: translateY(var(--about-stage-y))
    rotate(var(--about-stage-rotation));
  box-shadow: 0 36px 76px rgba(2, 8, 18, 0.5);
}

.about-phone--preview {
  --about-stage-y: 20px;
  --about-stage-rotation: 4deg;
  transform: translateY(var(--about-stage-y))
    rotate(var(--about-stage-rotation));
  animation-delay: -2.2s;
}

.about-phone--scan {
  animation-delay: -1.1s;
}

.about-stage__pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.about-stage__pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 66px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 36px rgba(5, 15, 28, 0.14);
  backdrop-filter: blur(16px);
  color: #ffffff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

@keyframes about-stage-float {
  0%,
  100% {
    transform: translateY(var(--about-stage-y))
      rotate(var(--about-stage-rotation));
  }

  50% {
    transform: translateY(calc(var(--about-stage-y) - 12px))
      rotate(var(--about-stage-rotation));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-phone--scan,
  .about-phone--hero,
  .about-phone--preview {
    animation: none;
  }
}

.about-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(3, minmax(0, 0.61fr));
  gap: 18px;
  align-items: stretch;
}

.about-proof__lead,
.about-proof__card,
.about-focus__card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.8)
    ),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 46px rgba(31, 98, 153, 0.1);
}

.about-proof__lead {
  padding: 28px;
}

.about-proof__lead .section-heading {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.about-proof__card img,
.about-focus__card img {
  width: 100%;
  aspect-ratio: 9 / 15.4;
  object-fit: cover;
}

.about-proof__body,
.about-focus__body {
  padding: 20px;
}

.about-proof__body h3,
.about-focus__body h3 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-proof__body p,
.about-focus__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.about-preview__shell {
  min-width: 0;
  padding: var(--how-it-works-shell-padding);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.28),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.84),
      rgba(230, 245, 255, 0.76)
    );
  box-shadow: 0 28px 64px rgba(17, 80, 124, 0.16);
  backdrop-filter: blur(14px);
}

.about-preview.section-viewport {
  padding: var(--how-it-works-section-padding-y) 0;
}

.about-preview__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--how-it-works-intro-gap);
}

.about-preview__intro .section-heading {
  margin: 14px 0 6px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
}

.about-preview__intro .section-copy {
  max-width: 420px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-preview__layout {
  min-width: 0;
  margin-top: 12px;
}

.scroll-cue {
  min-width: 0;
  position: relative;
}

.scroll-cue__button {
  display: none;
}

.preview-copy {
  min-width: 0;
}

.about-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-point {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-soft);
  box-shadow: 0 14px 30px rgba(31, 98, 153, 0.08);
}

.hero-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.hero-showcase {
  position: relative;
  min-height: 640px;
  padding: 32px 20px 28px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.3),
      transparent 34%
    ),
    linear-gradient(160deg, rgba(8, 25, 46, 0.16), rgba(10, 53, 90, 0.08)),
    rgba(255, 255, 255, 0.3);
  box-shadow: 0 28px 70px rgba(12, 69, 108, 0.24);
  overflow: hidden;
}

.hero-showcase__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.78;
}

.hero-showcase__glow--one {
  top: 48px;
  left: 32px;
  width: 180px;
  height: 180px;
  background: rgba(0, 216, 213, 0.24);
}

.hero-showcase__glow--two {
  right: 26px;
  bottom: 122px;
  width: 220px;
  height: 220px;
  background: rgba(40, 147, 227, 0.26);
}

.phone-card {
  position: absolute;
  width: 220px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    #0a1321;
  box-shadow: 0 24px 50px rgba(7, 25, 46, 0.28);
}

.phone-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 22px;
}

.phone-card video {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 22px;
  background: #08111d;
}

.phone-card__label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 15, 28, 0.76);
  color: #ebf7ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-card--left {
  top: 92px;
  left: 10px;
  transform: rotate(-9deg);
}

.phone-card--center {
  top: 24px;
  left: 50%;
  width: 260px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-card--right {
  right: 6px;
  bottom: 126px;
  transform: rotate(9deg);
}

.hero-showcase__note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  box-shadow: 0 18px 36px rgba(12, 69, 108, 0.16);
}

.hero-showcase__note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 1rem;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 32px rgba(31, 98, 153, 0.08);
}

.flow-step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #129fcb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flow-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--how-it-works-layout-gap);
  align-items: start;
}

.preview-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--how-it-works-nav-gap);
  margin-top: 0;
}

.preview-nav__button {
  width: 100%;
  min-height: var(--how-it-works-nav-button-height);
  padding: 10px 11px;
  border: 1px solid rgba(35, 101, 152, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  text-align: left;
  box-shadow: 0 10px 22px rgba(31, 98, 153, 0.05);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.preview-nav__button:hover,
.preview-nav__button:focus-visible {
  border-color: rgba(40, 147, 227, 0.44);
  background:
    linear-gradient(135deg, rgba(40, 147, 227, 0.2), rgba(0, 216, 213, 0.16)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 36px rgba(18, 120, 190, 0.16);
  outline: none;
}

.preview-nav__button.is-active {
  border-color: rgba(40, 147, 227, 0.28);
  background:
    linear-gradient(135deg, rgba(40, 147, 227, 0.16), rgba(0, 216, 213, 0.12)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 32px rgba(18, 120, 190, 0.12);
}

.preview-nav__button strong {
  display: block;
  margin: 5px 0 4px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.preview-nav__button span:last-child {
  display: block;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.24;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.preview-nav__eyebrow {
  display: inline-flex;
  color: #129fcb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.preview-nav__button:hover .preview-nav__eyebrow,
.preview-nav__button:focus-visible .preview-nav__eyebrow {
  color: #0d78d5;
  transform: translateX(2px);
}

.preview-nav__button:hover span:last-child,
.preview-nav__button:focus-visible span:last-child {
  color: #29506f;
  transform: translateX(2px);
}

.preview-display {
  min-width: 0;
}

.preview-panel {
  padding: var(--how-it-works-panel-padding);
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.82)
    ),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.preview-panel__meta h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.preview-panel__meta p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.preview-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--how-it-works-gallery-rail-width);
  gap: var(--how-it-works-gallery-gap);
  margin-top: 14px;
  align-items: stretch;
}

.preview-main {
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(31, 98, 153, 0.08);
  text-align: center;
}

.preview-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--how-it-works-main-stage-height);
  padding: 14px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(40, 147, 227, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(10, 20, 36, 0.05), rgba(10, 20, 36, 0.02)),
    rgba(255, 255, 255, 0.82);
}

.preview-main__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
}

.preview-main img,
.preview-main video {
  width: min(100%, var(--how-it-works-main-media-width));
  max-width: 100%;
  max-height: none;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(40, 147, 227, 0.12),
    rgba(0, 216, 213, 0.06)
  );
  box-shadow: 0 32px 64px rgba(15, 55, 89, 0.18);
}

.preview-main video {
  background: #08111d;
}

.preview-main figcaption {
  max-width: 430px;
  margin-inline: auto;
}

.preview-rail {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.preview-main figcaption {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.24;
}

.preview-variants {
  display: grid;
  gap: 8px;
}

.preview-variant {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(35, 101, 152, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(31, 98, 153, 0.08);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.preview-variant:hover,
.preview-variant:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(40, 147, 227, 0.36);
  box-shadow: 0 20px 34px rgba(18, 120, 190, 0.14);
  outline: none;
}

.preview-variant.is-active {
  border-color: rgba(40, 147, 227, 0.34);
  background:
    linear-gradient(135deg, rgba(40, 147, 227, 0.12), rgba(0, 216, 213, 0.08)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 36px rgba(18, 120, 190, 0.16);
}

.preview-variant__thumb {
  display: block;
}

.preview-variant__thumb img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(40, 147, 227, 0.12),
    rgba(0, 216, 213, 0.06)
  );
}

.preview-variant__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.preview-variant__type {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(40, 147, 227, 0.12);
  color: #0d78d5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-variant__body strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.preview-variant__body span:last-child {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.36;
}

.preview-detail-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(31, 98, 153, 0.08);
}

.preview-detail-card__eyebrow {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(40, 147, 227, 0.12);
  color: #0d78d5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-detail-card h4 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.14rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.preview-detail-card > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.54;
}

.preview-detail-sections {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.preview-detail-section {
  padding-top: 12px;
  border-top: 1px solid rgba(35, 101, 152, 0.12);
}

.preview-detail-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.preview-detail-section h5 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.preview-detail-section p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.5;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.story-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(31, 98, 153, 0.1);
}

.story-card img {
  width: 100%;
  aspect-ratio: 9 / 15.6;
  object-fit: cover;
}

.story-card__body {
  padding: 20px;
}

.story-card__body h3 {
  margin: 12px 0 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-card__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-actions,
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-right: 10px;
}

.tag-row,
.pillars,
.stat-grid,
.feature-grid,
.step-grid,
.card-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.tag-row {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-top: 32px;
}

.tag {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-soft);
  font-weight: 700;
}

.tag strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.hero-visual,
.panel,
.profile,
.faq-card,
.timeline-card,
.demo-card,
.account-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.8)
    ),
    var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  padding: 22px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px solid rgba(35, 101, 152, 0.08);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    rgba(40, 147, 227, 0.18),
    rgba(0, 216, 213, 0.12)
  );
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 28px;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(35, 101, 152, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--accent-strong);
}

.tutorial-hero__stage {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 216, 213, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(40, 147, 227, 0.2),
      transparent 26%
    ),
    linear-gradient(180deg, #0b1524, #12243b);
  box-shadow: 0 30px 72px rgba(17, 80, 124, 0.2);
  overflow: hidden;
}

.tutorial-hero__stage::before,
.tutorial-hero__stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
  pointer-events: none;
}

.tutorial-hero__stage::before {
  top: 72px;
  left: 28px;
  width: 160px;
  height: 160px;
  background: rgba(0, 216, 213, 0.18);
}

.tutorial-hero__stage::after {
  right: 22px;
  bottom: 104px;
  width: 220px;
  height: 220px;
  background: rgba(40, 147, 227, 0.22);
}

.tutorial-hero__layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.tutorial-hero__lead {
  max-width: 1100px;
}

.tutorial-hero__lead .section-heading {
  max-width: 25ch;
}

.tutorial-hero__lead .section-copy {
  max-width: 980px;
}

.tutorial-stage__top,
.tutorial-stage__showcase,
.tutorial-stage__route {
  position: relative;
  z-index: 1;
}

.tutorial-stage__top {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.tutorial-stage__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #80ecf0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tutorial-stage__top strong {
  display: block;
  max-width: 1000px;
  color: #eef9ff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.42rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.tutorial-stage__top p {
  max-width: 1200px;
  margin: 0;
  color: rgba(214, 236, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}

.tutorial-stage__showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
  min-height: 0;
  margin-left: 10px;
}

.tutorial-hero__stage .scroll-cue--showcase {
  width: min(100%, 1120px);
}

.tutorial-phone {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    #07111f;
  box-shadow: 0 28px 58px rgba(2, 8, 18, 0.4);
}

.tutorial-phone__frame {
  position: relative;
}

.tutorial-phone__frame::before,
.tutorial-phone__frame::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
}

.tutorial-phone__frame::before {
  right: -42px;
  width: 41px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(128, 236, 240, 0.24),
    rgba(128, 236, 240, 0.86)
  );
  transform: translateY(-50%);
}

.tutorial-phone__frame::after {
  right: -41px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(128, 236, 240, 0.86);
  border-right: 2px solid rgba(128, 236, 240, 0.86);
  transform: translateY(-50%) rotate(45deg);
}

.tutorial-phone:last-child .tutorial-phone__frame::before,
.tutorial-phone:last-child .tutorial-phone__frame::after {
  display: none;
}

.tutorial-phone__frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 22px;
  background: #050c15;
}

.tutorial-phone__step {
  position: absolute;
  top: -10px;
  left: -6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2893e3, #00d8d5);
  box-shadow: 0 14px 30px rgba(18, 120, 190, 0.28);
  color: #ffffff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.tutorial-phone__label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 15, 28, 0.76);
  color: #ebf7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tutorial-phone__caption {
  margin: 12px 6px 0;
  color: #d6ecff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.tutorial-phone--upload {
  transform: translateY(18px) rotate(-4deg);
}

.tutorial-phone--wardrobe {
  transform: translateY(4px) rotate(-1.5deg);
}

.tutorial-phone--outfit {
  z-index: 2;
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 34px 70px rgba(2, 8, 18, 0.46);
}

.tutorial-phone--travel {
  transform: translateY(14px) rotate(3.5deg);
}

.tutorial-stage__route {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 17px;
}

.tutorial-stage__route span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(5, 15, 28, 0.14);
  backdrop-filter: blur(16px);
  color: #ffffff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  letter-spacing: -0.03em;
}

.tutorial-focus__intro {
  margin-bottom: 24px;
}

.tutorial-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tutorial-step-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.tutorial-step-grid .step-card {
  flex: 0 1 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
}

.panel {
  padding: 26px;
}

.panel h3,
.feature-card h3,
.step-card h3,
.faq-card h3,
.profile-copy h2,
.timeline-card h3,
.demo-card h3,
.account-card h2,
.account-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.panel p,
.feature-card p,
.step-card p,
.faq-card p,
.timeline-card p,
.demo-card p,
.profile-copy p,
.account-card p,
.policy-lead,
.policy-list li {
  color: var(--text-soft);
  line-height: 1.8;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.step-card,
.timeline-card,
.demo-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--text-muted);
  font-weight: 700;
}

.feature-grid,
.step-grid,
.card-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 100%;
}

.feature-card .kicker,
.step-number,
.about-proof__body .kicker,
.about-focus__body .kicker,
.timeline-card .kicker,
.demo-card .kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #129fcb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card ul,
.demo-card ul,
.policy-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.step-card li,
.demo-card li,
.policy-list li {
  margin-bottom: 8px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  position: relative;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-b), var(--accent-a));
  box-shadow: 0 0 0 8px rgba(18, 159, 203, 0.14);
}

.profile-stack {
  display: grid;
  gap: 28px;
}

.profile {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
}

.profile:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.profile:nth-child(even) .profile-art {
  order: 2;
}

.profile-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 28px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.28),
      transparent 42%
    ),
    linear-gradient(160deg, rgba(31, 208, 203, 0.34), rgba(61, 143, 233, 0.28));
}

.profile-art img {
  width: min(100%, 228px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.profile--alex .profile-art img {
  object-position: center 24%;
}

.profile-copy {
  padding: 32px;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.profile-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.22fr);
  gap: 24px;
  align-items: start;
}

.policy-main,
.policy-aside {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.policy-main h2 {
  margin: 34px 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.policy-main h2:first-of-type {
  margin-top: 0;
}

.policy-aside h3 {
  margin-top: 0;
}

.policy-aside ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.policy-aside li + li {
  margin-top: 10px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.demo-form-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.84)
    ),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.demo-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.demo-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-form-card select {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.demo-form-card select:focus-visible {
  outline: none;
  border-color: rgba(40, 147, 227, 0.42);
  box-shadow: 0 0 0 4px rgba(40, 147, 227, 0.12);
}

.demo-form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.request-demo-hero {
  padding: clamp(40px, 7vh, 72px) 0;
}

.request-demo-layout {
  width: min(calc(100% - 36px), 1200px);
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 460px);
  gap: clamp(24px, 3vw, 34px);
}

.demo-video-card {
  display: grid;
  gap: 16px;
}

.request-demo-page .request-demo-media {
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  grid-template-areas:
    "intro intro"
    "video points";
  align-items: start;
  gap: 20px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.28),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.08)
    ),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(18, 76, 130, 0.16);
  backdrop-filter: blur(14px);
}

.request-demo-page .request-demo-media > :first-child {
  grid-area: intro;
}

.request-demo-page .request-demo-media .section-copy {
  max-width: 40rem;
}

.request-demo-page .request-demo-media .section-heading {
  max-width: 16ch;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
}

.demo-video-shell {
  display: flex;
  justify-content: center;
  padding: 16px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.12)
    ),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.demo-video-card video {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #08111d;
  box-shadow: 0 18px 36px rgba(31, 98, 153, 0.14);
}

.request-demo-page .demo-video-card video {
  width: min(100%, 300px);
  max-height: min(52vh, 560px);
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.demo-mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.demo-mini-point {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
}

.demo-mini-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.98rem;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 24px;
}

.request-demo-page .demo-form-card {
  align-self: start;
  height: fit-content;
  padding: 30px;
  border-radius: 36px;
  box-shadow: 0 26px 58px rgba(18, 76, 130, 0.18);
}

.request-demo-page .status-banner[data-demo-request-status] {
  min-height: 0;
}

.request-demo-page .demo-mini-points {
  grid-area: points;
  gap: 14px;
  grid-template-columns: 1fr;
  align-content: start;
}

.request-demo-page .demo-video-shell {
  grid-area: video;
  padding: 14px;
  align-self: start;
}

.request-demo-page .demo-mini-point {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.82);
}

.auth-grid {
  display: grid;
  gap: 16px;
}

.auth-methods {
  display: grid;
  gap: 16px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-group input {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.field-group input::placeholder {
  color: rgba(79, 103, 128, 0.72);
}

.field-group input:focus-visible {
  outline: none;
  border-color: rgba(40, 147, 227, 0.42);
  box-shadow: 0 0 0 4px rgba(40, 147, 227, 0.12);
}

.helper-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.status-banner {
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--text-soft);
}

.status-banner a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.status-banner[data-tone="success"] {
  border-color: rgba(19, 153, 113, 0.28);
  background: rgba(19, 153, 113, 0.12);
  color: #155b46;
}

.status-banner[data-tone="danger"] {
  border-color: rgba(217, 77, 102, 0.28);
  background: rgba(217, 77, 102, 0.12);
  color: #8f2439;
}

.account-summary {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(19, 153, 113, 0.18);
  background: rgba(235, 252, 244, 0.86);
}

.account-summary strong {
  font-size: 1.1rem;
}

.checklist {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.75;
}

.danger-zone {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(217, 77, 102, 0.16);
}

.account-card__image {
  width: min(100%, 360px);
  margin: 0 auto 18px;
}

.faq-card details {
  display: block;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin-bottom: 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 32px;
  align-items: center;
  padding: 40px clamp(28px, 4vw, 48px);
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.42),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(40, 147, 227, 0.2), rgba(0, 216, 213, 0.15)),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0.05) 58%,
    transparent 72%
  );
  pointer-events: none;
}

.cta-banner__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  justify-self: start;
}

.cta-banner__heading {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.cta-banner__text {
  max-width: 760px;
}

.cta-banner__actions {
  position: relative;
  z-index: 1;
  width: auto;
  justify-self: end;
}

.cta-banner__actions .cta-group {
  margin-right: 0;
  justify-content: flex-end;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cta-banner__actions .button,
.cta-banner__actions .button-secondary {
  min-width: 146px;
}

.site-footer {
  padding: 28px 0 54px;
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
  color: inherit;
  text-shadow: 0 0 0 rgba(40, 147, 227, 0);
  transform: translateY(0);
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent-a),
    var(--accent-b),
    var(--accent-c)
  );
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
  text-shadow: 0 8px 20px rgba(40, 147, 227, 0.18);
  transform: translateY(-1px);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.muted {
  color: var(--text-muted);
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 440ms ease,
    transform 440ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .about-hero__shell,
  .hero-grid,
  .split-grid,
  .policy-layout,
  .cta-banner,
  .account-layout,
  .preview-layout {
    grid-template-columns: 1fr;
  }

  .about-proof__grid,
  .stat-grid,
  .feature-grid,
  .step-grid,
  .card-grid,
  .faq-grid,
  .demo-grid,
  .flow-strip,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-proof__lead {
    grid-column: 1 / -1;
  }

  .about-focus__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tutorial-focus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutorial-step-grid .step-card {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .profile,
  .profile:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .profile:nth-child(even) .profile-art {
    order: 0;
  }

  .about-hero__stage {
    min-height: 700px;
  }

  .about-preview__intro {
    align-items: start;
    flex-direction: column;
  }

  .hero-showcase {
    min-height: 700px;
  }

  .preview-nav,
  .demo-form__grid,
  .demo-mini-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-demo-page .request-demo-media {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "video"
      "points";
  }

  .request-demo-page .demo-video-shell {
    justify-self: center;
    width: min(100%, 380px);
  }

  .cta-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px;
    text-align: center;
  }

  .cta-banner__copy {
    max-width: none;
    justify-self: center;
  }

  .cta-banner__heading {
    max-width: none;
    margin-inline: auto;
  }

  .cta-banner__actions {
    width: 100%;
    justify-self: center;
  }

  .cta-banner__actions .cta-group {
    justify-content: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-hero__story {
    display: grid;
  }
}

@media (max-width: 860px) {
  :root {
    --how-it-works-main-stage-height: 470px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0s linear 220ms;
  }

  body[data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }

  .about-hero {
    /* padding-top: 136px; */
  }

  .about-hero__shell {
    padding: 24px;
  }

  .about-hero__copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.9rem);
  }

  .about-hero__lede {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .about-hero__support {
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .about-hero__story {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .about-hero__metrics {
    gap: 10px;
    margin-top: 22px;
    justify-content: center;
  }

  .about-hero__stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 22px;
  }

  .about-stage__showcase {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78vw);
    justify-items: stretch;
    justify-content: start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .scroll-cue__button {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(18, 49, 77, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-strong);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 26px rgba(18, 76, 130, 0.16);
    opacity: 0;
    transform: translateY(-50%) scale(0.92);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
    cursor: pointer;
  }

  .scroll-cue__button:hover,
  .scroll-cue__button:focus-visible {
    border-color: rgba(40, 147, 227, 0.32);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(18, 76, 130, 0.2);
    outline: none;
  }

  .scroll-cue__button--prev {
    left: 6px;
  }

  .scroll-cue__button--next {
    right: 6px;
  }

  .scroll-cue.can-scroll:not(.is-at-start) .scroll-cue__button--prev,
  .scroll-cue.can-scroll:not(.is-at-end) .scroll-cue__button--next {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
  }

  .scroll-cue--showcase .scroll-cue__button {
    top: calc(50% - 4px);
    background: rgba(8, 18, 33, 0.84);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(2, 8, 18, 0.28);
  }

  .scroll-cue--showcase .scroll-cue__button:hover,
  .scroll-cue--showcase .scroll-cue__button:focus-visible {
    background: rgba(8, 18, 33, 0.96);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 38px rgba(2, 8, 18, 0.34);
  }

  .scroll-cue--nav .scroll-cue__button {
    top: calc(50% - 1px);
    width: 30px;
    height: 30px;
    font-size: 0.92rem;
  }

  .about-stage__showcase::-webkit-scrollbar {
    display: none;
  }

  .tutorial-hero__stage {
    gap: 14px;
    padding: 22px;
  }

  .tutorial-stage__top strong {
    font-size: 1.18rem;
  }

  .tutorial-stage__showcase {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 76vw);
    justify-items: stretch;
    justify-content: start;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .tutorial-stage__showcase::-webkit-scrollbar,
  .tutorial-stage__route::-webkit-scrollbar {
    display: none;
  }

  .tutorial-phone,
  .tutorial-phone--upload,
  .tutorial-phone--wardrobe,
  .tutorial-phone--outfit,
  .tutorial-phone--travel {
    transform: none;
    scroll-snap-align: start;
  }

  .tutorial-phone__frame::before,
  .tutorial-phone__frame::after {
    display: none;
  }

  .tutorial-stage__route {
    flex-wrap: nowrap;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .about-phone,
  .about-phone--scan,
  .about-phone--hero,
  .about-phone--preview {
    width: auto;
    margin: 0;
    transform: none;
    animation: none;
    scroll-snap-align: start;
  }

  .about-phone--hero {
    order: 0;
  }

  .about-phone--scan {
    order: 0;
  }

  .about-stage__hint {
    display: block;
  }

  .about-stage__pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-stage__pills span {
    padding: 8px 14px;
  }

  .about-focus__grid {
    grid-template-columns: 1fr;
  }

  .tutorial-focus__grid {
    grid-template-columns: 1fr;
  }

  .tutorial-step-grid .step-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .hero-note,
  .hero-showcase__note {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 24px;
  }

  .hero-showcase__glow {
    display: none;
  }

  .phone-card,
  .phone-card--left,
  .phone-card--center,
  .phone-card--right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 280px);
    margin: 0 auto;
    transform: none;
  }

  .preview-gallery {
    grid-template-columns: 1fr;
  }

  .preview-variant {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .preview-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .preview-nav::-webkit-scrollbar {
    display: none;
  }

  .preview-nav__button {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 0;
    padding: 12px 16px;
    border-radius: 999px;
  }

  .preview-nav__button strong,
  .preview-nav__button span:last-child {
    display: none;
  }

  .preview-nav__eyebrow {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .preview-nav__button.is-active .preview-nav__eyebrow {
    color: #0d78d5;
  }

  .preview-nav__button:hover .preview-nav__eyebrow,
  .preview-nav__button:focus-visible .preview-nav__eyebrow {
    transform: none;
  }

  .footer-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --how-it-works-section-padding-y: 30px;
    --how-it-works-shell-padding: 20px;
    --how-it-works-panel-padding: 20px;
    --how-it-works-main-stage-height: 410px;
    --how-it-works-main-media-width: 286px;
  }

  .section {
    padding: 74px 0;
  }

  .stat-grid,
  .feature-grid,
  .step-grid,
  .card-grid,
  .faq-grid,
  .demo-grid,
  .about-proof__grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-group,
  .link-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .button-danger {
    width: 100%;
  }

  .flow-strip,
  .demo-form__grid,
  .demo-mini-points {
    grid-template-columns: 1fr;
  }

  .preview-variant {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .preview-nav {
    padding-bottom: 4px;
  }

  .preview-main {
    padding: 14px;
  }
}
