/* ============================================================
   miraiton — Design System
   ============================================================ */

:root {
  color-scheme: dark;
  /* ---- Color ---- */
  --bg: #0F1113;
  --surface: #1C1E20;
  --surface-hi: #23272B;
  --border: #26292B;

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-faint: rgba(255, 255, 255, 0.55);

  --accent-blue: #57A1EB;
  --accent-yellow: #F6FF00;
  --accent-pink: #EA747E;
  --accent-purple: #A75CF9;
  --accent-orange: #FF5436;

  --on-light: #0F1113;

  /* ---- Radius ---- */
  --r-card: 1.875rem;   /* 30px */
  --r-md: 1.25rem;      /* 20px */
  --r-sm: 1.125rem;     /* 18px */
  --r-pill: 9999px;

  /* ---- Spacing ---- */
  --gap-xs: 0.5rem;     /* 8px  */
  --gap-sm: 0.75rem;    /* 12px */
  --section-pad-y: 6.25rem;  /* 100px */
  --section-pad-x: 5rem;     /* 80px  */
  --scroll-offset: 7.5rem;   /* 120px */

  /* ---- Effects ---- */
  --inner-glow: inset 0 0 1.25rem rgba(255, 255, 255, 0.05);
  --btn-inner: rgba(255, 255, 255, 0.2) 0 0 0.9375rem inset;
  --beam-color: #ffffff;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-pop: cubic-bezier(0.2, 0.8, 0.4, 1);

  /* ---- Brand gradients ---- */
  --grad-title: linear-gradient(to right, #F6FF00 0%, #0AAE88 100%);
  --grad-orb: radial-gradient(circle at 35% 30%, #12C79A 0%, #0AAE88 30%, #0A7D63 62%, #0A5546 82%, #0F1113 100%);
}

/* ============================================================
   Reset
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom cursor */
html.has-ucursor,
html.has-ucursor *,
html.has-ucursor *::before,
html.has-ucursor *::after { cursor: none !important; }
/* On clickable targets: hide the custom cursor, show the default hand */
html.has-ucursor.is-pointer,
html.has-ucursor.is-pointer *,
html.has-ucursor.is-pointer *::before,
html.has-ucursor.is-pointer *::after { cursor: pointer !important; }
.ucursor {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.ucursor__arrow,
.ucursor__label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 140ms ease;
  will-change: transform, opacity;
}
.ucursor.is-visible .ucursor__arrow,
.ucursor.is-visible .ucursor__label { opacity: 1; }
/* On clickable targets: fade the label out smoothly, keep just the arrow */
.ucursor.is-pointer .ucursor__label,
.ucursor.is-pointer .ucursor__arrow { opacity: 0; }
.ucursor__label { transition: opacity 320ms ease; }
.ucursor__arrow { transition: opacity 320ms ease; }
.ucursor__arrow { transform-origin: 0% 0%; }
.ucursor__label {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 0% 50%;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  user-select: none;
}
.ucursor__label-text {
  display: block;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1px;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Onest', system-ui, sans-serif;
}

img,
svg {
  display: block;
}

/* ============================================================
   Layout root
   ============================================================ */
.landing {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   Reusable primitives
   ============================================================ */

/* Section shell */
.about,
.features,
.services,
.pricing,
.contact {
  padding: var(--section-pad-y) var(--section-pad-x);
  scroll-margin-top: var(--scroll-offset);
  display: flex;
  flex-direction: column;
}

.about,
.features,
.pricing {
  align-items: center;
}

.services,
.contact {
  align-items: flex-start;
}

/* Section labels (pill) */
.about__label,
.features__label,
.services__label {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 1rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

/* Section titles */
.about__title,
.features__title,
.services__title {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about__title,
.features__title {
  text-align: center;
}

/* Gradient title lines */
.about__title-gradient,
.features__title-gradient,
.services__title-gradient {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: rgba(15, 17, 19, 0.55);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              background-color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.header--scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__spark {
  height: 2.3rem;
  width: auto;
  transition: height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.logo__wordmark {
  height: 1.15rem;
  width: auto;
  transition: height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header--scrolled .logo__spark { height: 2.05rem; }
.header--scrolled .logo__wordmark { height: 1.03rem; }

.divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.05);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  white-space: nowrap;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.4s var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active {
  color: var(--accent-yellow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--r-pill);
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              background-color 0.4s var(--ease),
              border-color 0.4s var(--ease),
              color 0.4s var(--ease);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--btn-inner);
}

.btn--primary {
  gap: 0.5rem;
  border: none;
  color: var(--text);
  font-weight: 500;
  background: #4A8AD6;
  box-shadow: var(--btn-inner);
}

.btn--outline:hover,
.btn--primary:hover {
  transform: scale(1.045);
}
.btn--outline:active,
.btn--primary:active {
  transform: scale(0.98);
}

.btn__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ============================================================
   Home
   ============================================================ */
.home {
  position: relative;
  padding: 2.5rem var(--section-pad-x) 0;
  margin-top: 6.5rem;
  scroll-margin-top: var(--scroll-offset);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
}

.home::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
}

.home__title {
  margin: 0;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.home__title-accent {
  display: inline-block;
  background-image: linear-gradient(to right, #B06AD6, #CC66C4, #E082A0, #CC66C4, #B06AD6);
  background-size: 200% 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: voiceGradient 7s linear infinite;
}
@keyframes voiceGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.home__media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: -2rem;
}

.home__mobile {
  position: relative;
  z-index: 1;
  width: 36.25rem;
  max-width: 100%;
  height: auto;
  margin-top: 0;
}

/* Floating service cards around the phone */
.home__float {
  position: absolute;
  z-index: 2;
  width: 16rem;
  height: 5.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.25rem;
  border-radius: 1.1rem;
  background: rgba(28, 30, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.05);
}
.home__float-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
}
.home__float-ic svg { width: 1.7rem; height: 1.7rem; }
.home__float-tx {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}
.home__float-ic, .home__float-tx { transition: opacity 0.5s ease; }
.home__float.is-swapping .home__float-ic,
.home__float.is-swapping .home__float-tx { opacity: 0; }
.home__float--tl { right: calc(50% + 14rem); top: 41%; animation-delay: 0s; }
.home__float--bl { right: calc(50% + 18rem); top: 62%; animation-delay: 1.4s; }
.home__float--tr { left: calc(50% + 14rem);  top: 41%; animation-delay: 0.7s; }
.home__float--br { left: calc(50% + 18rem);  top: 62%; animation-delay: 2.1s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1024px) {
  .home__float { display: none; }
}

/* Speak button — sits on the phone screen above START SPEAKING */
.home__speak {
  position: absolute;
  left: 50%;
  bottom: 5.25rem;
  transform: translateX(-50%);
  width: 10rem;
  height: 4rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background:
    linear-gradient(#1446D0, #1446D0) padding-box,
    linear-gradient(to top, #1446D0 0%, #2D65FF 100%) border-box;
  box-shadow:
    inset 0 10px 20px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(20, 70, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.6s ease;
}
.home__speak:hover { animation: none; transform: translateX(-50%); }
.home__speak:active { transform: translateX(-50%) scale(0.98); }
.home__speak-icon { width: 5.25rem; height: 2.15rem; position: relative; z-index: 1; }

/* Hover: animated aurora gradient */

/* Aurora overlay — fades in smoothly on hover */
@property --aur-x { syntax: '<percentage>'; initial-value: 20%; inherits: false; }
.home__speak::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-pill);
  background:
    radial-gradient(120% 180% at var(--aur-x, 20%) 25%, #6E3FE8 0%, transparent 65%),
    radial-gradient(120% 180% at calc(100% - var(--aur-x, 20%)) 75%, #EA747E 0%, transparent 65%),
    linear-gradient(120deg, #2D65FF 0%, #6E3FE8 50%, #2D65FF 100%);
  background-size: 100% 100%, 100% 100%, 220% 100%;
  animation: speakAur 3.2s ease-in-out infinite alternate, speakAurBase 4s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}
.home__speak:hover::before { opacity: 1; }
.home__speak:hover {
  box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.08), 0 0 52px rgba(110, 63, 232, 0.45);
}
@keyframes speakAur { from { --aur-x: 15%; } to { --aur-x: 85%; } }
@keyframes speakAurBase {
  0% { background-position: 0 0, 0 0, 0% 0%; }
  100% { background-position: 0 0, 0 0, 220% 0%; }
}

/* Heartbeat — two quick bold thumps then rest */
.home__speak { animation: speakBeat 1.7s ease-in-out infinite; }
@keyframes speakBeat {
  0%, 42%, 100% { transform: translateX(-50%) scale(1); }
  9%  { transform: translateX(-50%) scale(1.09); }
  19% { transform: translateX(-50%) scale(1); }
  28% { transform: translateX(-50%) scale(1.09); }
  37% { transform: translateX(-50%) scale(1); }
}

/* Equalizer bars beside the mic — static */

.home__rings {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}.home__ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Comet sweep — a gradient light arc travelling slowly along the ring */
.home__ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg, transparent 292deg,
    rgba(87, 161, 235, 0.0) 292deg,
    rgba(87, 161, 235, 0.85) 316deg,
    rgba(234, 116, 126, 0.9) 332deg,
    rgba(246, 255, 0, 0.9) 342deg,
    rgba(255, 255, 255, 0.95) 344.5deg,
    transparent 345deg);
  animation: ringComet linear infinite;
}
.home__ring:nth-child(1)::before { animation-duration: 11s; }
.home__ring:nth-child(2)::before { animation-duration: 16s; animation-delay: -6s; }
.home__ring:nth-child(3)::before { animation-duration: 22s; animation-delay: -13s; }

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

.home__ring:nth-child(1) { width: 31.25rem; height: 31.25rem; bottom: -15.625rem; }
.home__ring:nth-child(2) { width: 38.75rem; height: 38.75rem; bottom: -19.375rem; }
.home__ring:nth-child(3) { width: 46.25rem; height: 46.25rem; bottom: -23.125rem; }

/* ============================================================
   About
   ============================================================ */
.about__cards {
  display: flex;
  gap: var(--gap-xs);
  width: 100%;
  margin-top: 3.75rem;
}

.about__card {
  flex: 1;
  position: relative;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--inner-glow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Interior spotlight wash — soft light falling onto the card surface */
.about__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-card) - 2px);
  background: radial-gradient(16rem 16rem at var(--mx, -999px) var(--my, -999px),
    rgba(0, 174, 255, 0.12) 0%,
    rgba(0, 174, 255, 0.05) 40%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.about__card:hover::before { opacity: 1; }


/* Spotlight border glow — follows the pointer along the card border */
.about__card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-card);
  border: 2px solid transparent;
  background:
    radial-gradient(11rem 11rem at var(--mx, -999px) var(--my, -999px),
      rgba(255, 255, 255, 0.95) 0%,
      rgba(0, 174, 255, 0.6) 35%,
      transparent 70%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(0, 174, 255, 0.55));
}
.about__card:hover::after { opacity: 1; }


.about__card-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.about__card-title {
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.about__card-desc {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-faint);
}

/* ============================================================
   Features — animated beams
   ============================================================ */
.features__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 3.75rem;
}

.features__row::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18rem;
  height: 18rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(7.5rem);
  z-index: 0;
  pointer-events: none;
  animation: orbGlow 5s ease-in-out infinite;
}

.features__connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  color: var(--beam-color);
}

.features__col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.features__chip {
  width: 14rem;
  height: 3.6rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  box-shadow: var(--inner-glow);
}

.features__orb {
  position: relative;
  z-index: 1;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.features__orb:active { transform: none; }
.features__orb:focus { outline: none; }
.features__orb:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 4px; }

.features__orb-globe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

/* ============================================================
   Services — marquee
   ============================================================ */
.services__rows {
  width: auto;
  margin: 3.75rem calc(-1 * var(--section-pad-x)) 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

.services__row {
  width: 100%;
  overflow: hidden;
}

.services__track {
  display: flex;
  width: max-content;
}

.services__track--left {
  animation: marqueeLeft 48s linear infinite;
}

.services__track--right {
  animation: marqueeRight 48s linear infinite;
}

.services__card {
  flex-shrink: 0;
  width: 15rem;
  height: 8.75rem;
  margin-right: var(--gap-xs);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(28, 30, 32, 0.55);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 1.75rem;
  /* soft light bleeding in from the edges */
  box-shadow: inset 0 0 1rem rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap-sm);
  transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.services__card { --ac: 246, 255, 0; }
.services__card:hover {
  border-color: rgba(var(--ac), 0.3);
  box-shadow: inset 0 0 1.8rem rgba(var(--ac), 0.16);
}

/* Pointer-tracked spotlight (same as How-it-works cards, stronger light) */
.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: radial-gradient(11rem 11rem at var(--mx, -999px) var(--my, -999px),
    rgba(var(--ac), 0.14) 0%,
    rgba(var(--ac), 0.05) 40%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.services__card:hover::before { opacity: 1; }

.services__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background:
    radial-gradient(9rem 9rem at var(--mx, -999px) var(--my, -999px),
      rgba(255, 255, 255, 1) 0%,
      rgba(var(--ac), 0.75) 35%,
      transparent 70%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.services__card:hover::after { opacity: 1; }

.services__card--empty::before,
.services__card--empty::after { display: none; }

.services__card--empty {
  opacity: 0.2;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}
.services__card--empty:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.services__card-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--text);
  flex-shrink: 0;
}

.services__card-title {
  margin: 0;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  position: relative;
  overflow: hidden;
}

.pricing__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 28rem;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 4, 255, 0.16);
  filter: blur(120px);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 0%, #000 35%, transparent 100%);
  mask-image: radial-gradient(closest-side at 50% 50%, #000 0%, #000 35%, transparent 100%);
  animation: glowBreathe 7s ease-in-out infinite;
}

@keyframes glowBreathe {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.pricing__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 28rem;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 8px);
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 88%);
  mask-image: radial-gradient(closest-side at 50% 50%, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 88%);
}

.pricing__card {
  position: relative;
  z-index: 1;
  width: 30rem;
  border-radius: var(--r-card);
  background: radial-gradient(circle at 30% 18%, #471E8C 0%, #5325B7 26%, #842FB0 56%, #BD2D98 80%, #EA747E 100%);
}

.pricing__glass {
  position: relative;
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5rem);
  -webkit-backdrop-filter: blur(5rem);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.pricing__top {
  position: relative;
  width: 100%;
  height: 10rem;
  background: #fff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pricing__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--accent-yellow);
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 0.45s var(--ease), transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.pricing__top--revealed .pricing__badge {
  opacity: 1;
  transform: translateY(0);
}

.pricing__price-box {
  width: 10rem;
  height: 10rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.pricing__top--revealed .pricing__price-box { transform: translateX(-2rem); }

.pricing__price {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
}

/* NumberFlow-style rolling digits */
.odo {
  display: inline-flex;
  overflow: hidden;
  height: 1em;
}
.odo__digit {
  display: inline-block;
  width: 1ch;
  height: 1em;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.odo__digit--hidden { width: 0; }
.odo__strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.odo__num {
  display: block;
  height: 1em;
  line-height: 1;
  text-align: center;
}

.pricing__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.08s, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.pricing__top--revealed .pricing__divider { opacity: 1; transform: translateX(-2rem); }

.pricing__note {
  padding-left: 2rem;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-light);
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  padding-left: 0;
  opacity: 0;
  transform: translateX(0.75rem);
  transition:
    max-width 0.6s cubic-bezier(0.32, 0.72, 0, 1),
    padding-left 0.6s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.45s var(--ease) 0.12s,
    transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.pricing__top--revealed .pricing__note {
  max-width: 18rem;
  padding-left: 2rem;
  opacity: 1;
  transform: translateX(-2rem);
}

.pricing__bottom {
  flex: 1;
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.pricing__included {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03125rem;
  color: var(--text);
}

.pricing__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

.pricing__check {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__check svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--on-light);
}

/* ============================================================
   Contact — editorial
   ============================================================ */
.contact {
  padding-bottom: 0;
}.contact__panel {
  position: relative;
  display: flex;
  width: 66.6667%;
  align-self: center;
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: inset 0 0 3.75rem rgba(255, 255, 255, 0.28), inset 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

/* Spotlight — same treatment as the About cards, in this card's orange */
.contact__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-card) - 1px);
  background: radial-gradient(18rem 18rem at var(--mx, -999px) var(--my, -999px),
    rgba(246, 255, 0, 0.14) 0%,
    rgba(246, 255, 0, 0.05) 40%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.contact__panel:hover::before { opacity: 1; }

.contact__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-card) - 1px);
  border: 1px solid transparent;
  background:
    radial-gradient(12rem 12rem at var(--mx, -999px) var(--my, -999px),
      rgba(255, 255, 255, 1) 0%,
      rgba(246, 255, 0, 0.75) 35%,
      transparent 70%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(246, 255, 0, 0.4));
}
.contact__panel:hover::after { opacity: 1; }


.contact__col {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact__col--cta {
  align-items: flex-start;
  background: linear-gradient(to right, rgba(246, 255, 0, 0.12) 0%, rgba(87, 161, 235, 0.12) 55%, rgba(28, 30, 32, 0) 100%);
}

.contact__col--reach {
  align-items: flex-start;
}

.contact__col-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.contact__col-title--grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contact__col-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 34ch;
}

.contact__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.03);
}

.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}.contact__partner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 3rem;
  padding: 0 1.4rem;
  border-radius: var(--r-pill);
  background: #F6FF00;
  color: #0F1113;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.25s var(--ease-pop), background 0.3s ease;
}

.contact__partner:hover {
  transform: scale(1.04);
}

.contact__partner svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke-width: 2.4;
}

.contact__socials {
  display: flex;
  gap: var(--gap-xs);
}

.contact__soc {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: background 0.35s ease;
}

.contact__soc:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact__soc svg {
  width: 1.3rem;
  height: 1.3rem;
}
.contact__soc[aria-label="LinkedIn"] svg,
.contact__soc[aria-label="WhatsApp"] svg {
  width: 1.55rem;
  height: 1.55rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem var(--section-pad-x);
}.footer__copy {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dim);
}@keyframes orbGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============================================================
   Scroll reveal (AOS-style) — repeatable
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal="fade-down"]  { transform: translateY(-2.25rem); }
[data-reveal="fade-left"]  { transform: translateX(2.75rem); }
[data-reveal="fade-right"] { transform: translateX(-2.75rem); }
[data-reveal="zoom-in"]    { transform: scale(0.92); }
[data-reveal="up-left"]    { transform: translate(-2rem, 2rem); }
[data-reveal="rise"]       { transform: translateY(3.5rem) scale(0.98); }
[data-reveal="fade"]       { transform: none; }
[data-reveal].is-in {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Page-load intro (home + header) — class-gated so the hidden
   state is present at first paint (no flash), and rings keep
   their own translateX(-50%) centering (opacity-only reveal).
   ============================================================ */
.header,
.home__title,
.home__media {
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.header {
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
              padding 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              background-color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.intro-armed .header      { opacity: 0; transform: translateY(-2.25rem); }
.intro-armed .home__title { opacity: 0; transform: translateY(2.25rem); }
.intro-armed .home__media { opacity: 0; transform: translateY(3.5rem) scale(0.985); }
.header.intro-in,
.home__title.intro-in,
.home__media.intro-in { opacity: 1; transform: none; }

.home__ring {
  transition: opacity 0.85s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.intro-armed .home__ring { opacity: 0; }
.home__ring.intro-in { opacity: 1; }

/* ============================================================
   Modals
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 8, 0.72);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 30rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--inner-glow), 0 1.5rem 4rem rgba(0, 0, 0, 0.55);
  padding: 2.5rem;
  transform: translateY(1.25rem) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease-pop), opacity 0.4s var(--ease-pop);
}
.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal__close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.modal__close svg { width: 1.25rem; height: 1.25rem; }
.modal__close:hover { background: rgba(255, 255, 255, 0.12); transform: scale(1.06); }
.modal__title {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}/* ---- Store buttons ---- */
.modal__stores {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.store-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: 100%;
  height: 4.5rem;
  padding: 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg);
  color: var(--text);
  cursor: not-allowed;
  opacity: 0.5;
}
.store-btn__logo { width: 2rem; height: 2rem; flex-shrink: 0; }
.store-btn__txt {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
}
.store-btn__txt small { font-size: 1.05rem; font-weight: 500; color: var(--text); }
.store-btn__txt strong { font-size: 1.05rem; font-weight: 500; }
.modal__hint {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent-orange);
}

/* ---- Form (floating labels) ---- */
.form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form__field {
  position: relative;
  display: block;
}
.form__label {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  pointer-events: none;
  transition: top 0.18s var(--ease), font-size 0.18s var(--ease), color 0.18s var(--ease);
}
.form__input {
  width: 100%;
  height: 4rem;
  padding: 1.35rem 1.1rem 0.45rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form__input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(87, 161, 235, 0.18);
}
/* keep the field background/text intact when the browser autofills */
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset;
  caret-color: var(--text);
  transition: background-color 9999s ease 0s;
}
.form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--bg) inset, 0 0 0 3px rgba(87, 161, 235, 0.18);
  caret-color: var(--text);
  transition: background-color 9999s ease 0s;
}
/* float the label up when focused or filled */
.form__field:focus-within .form__label,
.form__field.is-filled .form__label {
  top: 1.05rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--bg);
  color: var(--text);
  padding-right: 2.75rem;
  cursor: pointer;
}
.form__select-arrow {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form__select option { background: var(--surface); color: var(--text); }
.form__submit {
  position: relative;
  height: 4rem;
  margin-top: 1.4rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--accent-orange);
  color: var(--on-light);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--btn-inner);
  transition: transform 0.25s var(--ease-pop), filter 0.25s var(--ease);
}
.form__submit:hover:not(:disabled) { transform: scale(1.02); }
.form__submit:disabled { cursor: default; }
.form__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.85rem;
  height: 1.85rem;
  margin: -0.925rem 0 0 -0.925rem;
  border: 2.5px solid rgba(15, 17, 19, 0.3);
  border-top-color: var(--on-light);
  border-radius: var(--r-pill);
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
.form__submit.is-loading .form__submit-label { opacity: 0; }
.form__submit.is-loading .form__spinner { opacity: 1; }
.form__submit.is-done { background: #1F8A5B; color: #fff; }
.form__submit.is-done .form__submit-label { opacity: 1; }

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

/* ---- Demo modal: true fullscreen, phone scenario ---- */
.modal--video { padding: 0; }
.vmodal__dialog {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
  transform: translateY(1.25rem) scale(0.99);
  opacity: 0;
  transition: transform 0.45s var(--ease-pop), opacity 0.45s var(--ease-pop);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal--video.is-open .vmodal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* close button mirrors the header buttons (same row, same right inset) */
.vmodal__close {
  top: 1.5rem;
  right: 2.5rem;
  width: 2.75rem;
  height: 2.75rem;
  z-index: 20;
  background: rgba(255, 255, 255, 0.12);
}
.vmodal__close:hover { background: rgba(255, 255, 255, 0.22); }

/* phone-in-hand, bottom centre */
.vmodal__phone {
  position: relative;
  height: min(82vh, 56.25rem, 90vw * 1360 / 1440);
  aspect-ratio: 1440 / 1360;
  flex-shrink: 0;
}
.vmodal__phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
/* step-4 phone artwork — swaps in over the base phone */
.vmodal__phone-img--4 {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.vmodal__phone.is-step4 .vmodal__phone-img--4 { opacity: 1; }

/* the phone's screen area (relative to the artwork) */
.vmodal__screen {
  position: absolute;
  left: 26.5%;
  right: 26.5%;
  top: 9%;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

/* scenario steps — one visible at a time */
.vmodal__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.vmodal__step.is-active {
  opacity: 1;
}
/* mellow exit: slide 3 title + text fade in place; orb + label slide down */
.vmodal__step.is-leaving { opacity: 1; }
.vmodal__step.is-leaving .vstep__header,
.vmodal__step.is-leaving .vstep__body {
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.vmodal__control.is-leaving {
  opacity: 0;
  transform: translate(-50%, 1.8rem);
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
.vstep__header {
  flex: 0 0 auto;
  width: 100%;
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vstep__body {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* footer band reserves the space the persistent control occupies */
.vstep__footer {
  flex: 0 0 auto;
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vissue__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}
.vissue__title-accent { color: var(--accent-yellow); }
.vissue__body {
  width: 100%;
  padding: 0 0.15rem;
  justify-content: flex-start;
  padding-top: 2.5rem;
}
/* stacked info cards — slide 4 */
.gcard {
  position: relative;
  width: 100%;
  height: 26rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 30% 12%, #471E8C 0%, #5325B7 26%, #842FB0 56%, #BD2D98 80%, #EA747E 100%);
}
.gcard__glass {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
}
.gcard__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
  gap: 0;
}
.gcard__searching {
  align-self: stretch;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%) 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}
.gcard__aspects {
  align-self: stretch;
  display: flex;
  margin-top: 1.85rem;
}
.aspect {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.aspect + .aspect {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.aspect__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.aspect__icon svg { width: 1.55rem; height: 1.55rem; stroke-width: 2; }
.aspect__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
@keyframes driftLeft {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-9%); }
}
@keyframes driftRight {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(9%); }
}
.gcard__eyebrow {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}
.radar {
  margin-top: 1.25rem;
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.radar__disc {
  position: relative;
  width: 82.35%;
  height: 82.35%;
  border-radius: 50%;
  background: rgba(164, 68, 176, 0.3);
  overflow: hidden;
}
.radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(135, 66, 185, 0.2) 0deg, rgba(255, 255, 255, 0.5) 360deg);
  animation: radarSpin 2.4s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }

/* --- step 4 card entrance sequence --- */
/* header title fades in after the frame colour has changed */
.vmodal__step--issue .vissue__title {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.vmodal__step--issue.title-in .vissue__title { opacity: 1; transform: translateY(0); }
.gcard {
  transform: translateY(46px);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease;
}
.gcard.is-in { transform: translateY(0); opacity: 1; }
.gcard__eyebrow,
.gcard .radar,
.gcard__searching,
.gcard .aspect {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gcard__eyebrow.is-in,
.gcard .radar.is-in,
.gcard__searching.is-in,
.gcard .aspect.is-in { opacity: 1; transform: translateY(0); }
.radar__sweep { animation-play-state: paused; }
.radar.is-spinning .radar__sweep { animation-play-state: running; }

/* --- step 5 (result) card: no rise, only colour crossfade + content reveal --- */
.vmodal__step--result .gcard {
  transform: none;
  opacity: 1;
  transition: none;
}
/* blue tint fades in over the purple base → smooth in-place recolour */
.vmodal__step--result .gcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 12%, #0B1F63 0%, #123A9E 28%, #1E63D6 56%, #2E8FE6 80%, #6FC4F2 100%);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.vmodal__step--result .gcard.is-blue::before { opacity: 1; }
.rcard {
  justify-content: flex-start;
  gap: 0;
  padding-top: 2rem;
}
.rcard .reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rcard .reveal-item.is-in { opacity: 1; transform: translateY(0); }

/* arriving-stat → "Expert arrived" → "Working for" + counting timer (single row) */
.rcard__stats {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.4rem;
}
.rcard__stat-labels {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.rcard__lbl {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s ease;
  white-space: nowrap;
}
.rcard__lbl--work {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.5rem);
  opacity: 0;
}
.rcard__stats.is-working .rcard__lbl--arrive { transform: translateY(-0.5rem); opacity: 0; }
.rcard__stats.is-working .rcard__lbl--work { transform: translateY(0); opacity: 1; }

.rcard__dur-value {
  transition: color 0.45s ease, opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.rcard__stat-value.rcard__dur-value.is-arrived { color: var(--accent-yellow) !important; font-weight: 700; font-size: 0.98rem; text-transform: none !important; letter-spacing: normal; }
.rcard__dur-value.is-pop { animation: arrive-pop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes stat-pop {
  0%   { transform: scale(0.9); opacity: 0.4; }
  55%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes arrive-pop {
  0%   { transform: scale(0.7); opacity: 0; filter: drop-shadow(0 0 0 rgba(246,255,0,0)); }
  40%  { transform: scale(1.22); opacity: 1; filter: drop-shadow(0 0 10px rgba(246,255,0,0.75)); }
  62%  { transform: scale(0.96); }
  80%  { transform: scale(1.07); filter: drop-shadow(0 0 5px rgba(246,255,0,0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(246,255,0,0)); }
}
.rcard__dur-value.fade { opacity: 0; transform: translateY(0.4rem); }
.rcard__dur-value.settle { animation: dur-settle 0.6s cubic-bezier(0.34, 1.4, 0.64, 1); }
@keyframes dur-settle {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* --- slide 6 (done) card: green recolour in place + centred success --- */
.vmodal__step--done .gcard {
  transform: none;
  opacity: 1;
  transition: none;
}
.vmodal__step--done .gcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 12%, #0B1F63 0%, #123A9E 28%, #1E63D6 56%, #2E8FE6 80%, #6FC4F2 100%);
  opacity: 1;
}
.dcard__green {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 12%, #063A22 0%, #0C5E38 30%, #178C50 58%, #27B368 82%, #6FE3A6 100%);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.vmodal__step--done .gcard.is-green .dcard__green { opacity: 1; }
.dcard {
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 2rem;
}
.dcard .reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dcard .reveal-item.is-in { opacity: 1; transform: translateY(0); }
.dcard__check {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}
.dcard__check svg { width: 2.6rem; height: 2.6rem; display: block; }
.dcard__title {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.dcard__sub {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 16rem;
}
.rcard__photo {
  position: relative;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  overflow: visible;
  background: rgba(255, 255, 255, 0.12);
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.rcard__photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.rcard__photo--check {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
}
.rcard__photo--check { width: 3.9rem; height: 3.9rem; border: none; box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.rcard__photo--check svg { width: 1.5rem; height: 1.5rem; display: block; }
.vmodal__step--done .rcard { justify-content: flex-start; gap: 0; padding-top: 2.4rem; padding-bottom: 0; }
.dcard__quality { width: 100%; display: flex; flex-direction: column; gap: 0.7rem; padding: 0 1.1rem; box-sizing: border-box; }
.dcard__quality-head { display: flex; align-items: center; justify-content: space-between; }
.dcard__quality-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.62); letter-spacing: 0.02em; }
.dcard__quality-score { font-size: 1.05rem; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 0.34rem; line-height: 1; }
.dcard__metric-star { color: var(--accent-yellow); font-size: 1.02rem; opacity: 0; transform: scale(0) rotate(-180deg); display: inline-block; }
.dcard__metric-star.is-in { animation: starPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes starPop {
  0% { opacity: 0; transform: scale(0) rotate(-180deg); }
  60% { opacity: 1; transform: scale(1.35) rotate(20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.dcard__score-num.odo { align-items: baseline; }
.odo__dec { display: inline-block; }
.dcard__segbar { position: relative; width: 100%; height: 10px; }
.dcard__fill { position: absolute; left: 0; top: 0; height: 10px; width: 100%; border-radius: 5px; background: rgba(255,255,255,0.14); overflow: hidden; }
.dcard__fill::after { content: ""; position: absolute; inset: 0; border-radius: 5px; background: linear-gradient(90deg, #7BE495, var(--accent-yellow)); transform: scaleX(0); transform-origin: left center; transition: transform 1.6s cubic-bezier(0.33, 1, 0.68, 1); transition-delay: 0.1s; }
.dcard__segbar.is-full .dcard__fill::after { transform: scaleX(1); }
.vmodal__step--done .rcard__divider { margin: 1.7rem 0; }

/* ============================================================
   Final screen (page 7) — phone removed, big message + replay
   ============================================================ */
.vfinal {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  pointer-events: none;
  overflow: hidden;
}
.vmodal__dialog.is-final .vfinal { opacity: 1; visibility: visible; pointer-events: auto; }
.vmodal__dialog.is-final .vmodal__phone {
  opacity: 0;
  transform: translateY(3rem) scale(0.94);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.5, 0, 0.75, 0);
  pointer-events: none;
}
.vfinal__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  margin-left: -75vmax;
  margin-top: -75vmax;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(38% 38% at 30% 34%, color-mix(in srgb, var(--accent-blue) 80%, #05060c), transparent 68%),
    radial-gradient(42% 42% at 72% 66%, color-mix(in srgb, var(--accent-purple) 82%, #05060c), transparent 70%),
    radial-gradient(46% 46% at 60% 28%, color-mix(in srgb, var(--accent-blue) 58%, #05060c), transparent 72%),
    #070812;
  filter: blur(90px);
  pointer-events: none;
  transform: rotate(0deg) scale(0.8);
  will-change: transform, opacity;
}
.vfinal__bg.is-glowing {
  opacity: 0.72;
  animation: vfinalSpin 40s linear infinite;
  transition: opacity 1.1s ease;
}
@keyframes vfinalSpin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.12); }
  to   { transform: rotate(360deg) scale(1); }
}
.vfinal__text {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0;
  text-align: center;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.vfinal__text .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vfinal__text .w.on { opacity: 1; transform: none; }
.vfinal__text .grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.vfinal__replay {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 0.55rem;
  height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.5s ease, transform 0.5s ease;
}
.vmodal__dialog.is-final .vfinal__replay.is-shown { opacity: 1; transform: none; }
.vfinal__replay:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.3); }
.vfinal__replay svg { width: 1.1rem; height: 1.1rem; }
.vmodal__step--done .rcard__stats--done { margin: 0; }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.32); } 30% { transform: scale(1); } 45% { transform: scale(1.22); } 60% { transform: scale(1); } }
.rcard__heart.is-beating { display: inline-block; animation: heartBeat 1.4s ease-in-out infinite; transform-origin: center; }
.rcard__stats--done { flex-direction: column; align-items: center; gap: 0.5rem; padding-left: 1.1rem; padding-right: 1.1rem; }
.rcard__stats--done .rcard__stat-label { white-space: nowrap; font-size: 1.02rem; text-align: center; }
.rcard__stats--done .rcard__stat-value--free { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--accent-yellow); font-size: 0.98rem; white-space: nowrap; }
.rcard__stats--done .rcard__heart { font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
@property --ring-p { syntax: '<percentage>'; initial-value: 0%; inherits: false; }
@property --ring-a { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.rcard__photo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--accent-yellow) var(--ring-p), rgba(255, 255, 255, 0) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(246, 255, 0, 0.7));
}
.rcard__photo.is-filling::after {
  opacity: 1;
  animation: ringFill 1.8s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
/* once full, the yellow ring stays visible and locked at 100% */
.rcard__photo.is-filled::after { opacity: 1; --ring-p: 100%; }
@keyframes ringFill {
  from { --ring-p: 0%; }
  to { --ring-p: 100%; }
}
.rcard__name {
  margin-top: 1.4rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.rcard__name--done { margin-top: 1.4rem; font-size: 1.08rem; white-space: nowrap; }
.rcard__role {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.rcard__rating {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.rcard__stars { display: inline-flex; gap: 0.06rem; }
.rcard__stars svg { width: 1rem; height: 1rem; display: block; }
.rcard__score { font-size: 0.95rem; font-weight: 600; color: #fff; }
.rcard__divider {
  align-self: stretch;
  height: 1px;
  margin: 1.9rem 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}
.rcard__stats {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  min-height: 2.4rem;
}
.rcard__stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.rcard__stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
@keyframes vslideMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes vbuildChevY {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(14%); }
}
@keyframes vbuildChevB {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-14%); }
}
@keyframes vbuildFill {
  from { stroke-dashoffset: 56.5; }
  to { stroke-dashoffset: 0; }
}
.vstep__hint {
  width: 100%;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.3);
}
.vstep__speak {
  position: relative;
  width: 8.75rem;
  height: 3.5rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background:
    linear-gradient(#1446D0, #1446D0) padding-box,
    linear-gradient(to top, #1446D0 0%, #2D65FF 100%) border-box;
  box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    width 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    height 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.4s ease 0.25s;
  pointer-events: none;
}
.vstep__speak img {
  width: 4.5rem;
  height: auto;
  transition: opacity 0.25s ease;
}
/* tap feedback — background flash (no ring) */
.vstep__speak.is-pressed {
  animation: tapFlash 0.5s ease-out forwards;
}
@keyframes tapFlash {
  0% { background: linear-gradient(#1446D0, #1446D0) padding-box, linear-gradient(to top, #1446D0 0%, #2D65FF 100%) border-box; transform: translate(-50%, -50%) scale(1); }
  35% { background: linear-gradient(#3E77FF, #3E77FF) padding-box, linear-gradient(to top, #2D65FF 0%, #7BA8FF 100%) border-box; transform: translate(-50%, -50%) scale(0.93); }
  100% { background: linear-gradient(#2D65FF, #2D65FF) padding-box, linear-gradient(to top, #2D65FF 0%, #5A8CFF 100%) border-box; transform: translate(-50%, -50%) scale(0.97); }
}

/* ---- persistent bottom control: fixed frame, pill ⇄ orb share one centre ---- */
.vmodal__control {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  height: 8.25rem;
  transition: opacity 0.5s var(--ease);
}
.vmodal__control.is-hidden { opacity: 0; pointer-events: none; }

/* the pill is pinned to the orb's centre point, so the morph stays in place */
.vmodal__control .vstep__speak {
  position: absolute;
  top: 2.75rem;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* morph: pill → circle while the orb fades in over it */
.vmodal__control.is-orb .vstep__speak {
  width: 5.5rem;
  height: 5.5rem;
  opacity: 0;
}
.vmodal__control.is-orb .vstep__speak img { opacity: 0; }

.vmodal__control .vstep__voice {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}
/* orb and label appear independently — soft blur-in, no movement */
.vmodal__control .vstep__orb {
  opacity: 0;
  transition: opacity 0.45s ease 0.3s;
}
.vmodal__control.is-orb .vstep__orb { opacity: 1; }
.vmodal__control .vstep__listen {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.45s ease 0.5s, filter 0.45s ease 0.5s;
}
.vmodal__control.is-orb .vstep__listen {
  opacity: 1;
  filter: blur(0);
}

/* ---- thinking state (slide 3): orb recolours, spinner replaces the eq ---- */
.vstep__orb-img { transition: filter 0.7s ease; }
.vmodal__control.is-thinking .vstep__orb-img { filter: hue-rotate(35deg) saturate(1.25); }
.vstep__eq { transition: opacity 0.35s ease; }
.vmodal__control.is-thinking .vstep__eq { opacity: 0; }
.vstep__spin {
  position: absolute;
  z-index: 2;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: -0.65rem 0 rgba(255, 255, 255, 0.35), 0.65rem 0 rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: thinkDots 1.2s ease-in-out infinite;
}
@keyframes thinkDots {
  0%, 100% { background: #fff; box-shadow: -0.65rem 0 rgba(255, 255, 255, 0.35), 0.65rem 0 rgba(255, 255, 255, 0.35); }
  33% { background: rgba(255, 255, 255, 0.35); box-shadow: -0.65rem 0 #fff, 0.65rem 0 rgba(255, 255, 255, 0.35); }
  66% { background: rgba(255, 255, 255, 0.35); box-shadow: -0.65rem 0 rgba(255, 255, 255, 0.35), 0.65rem 0 #fff; }
}
.vmodal__control.is-thinking .vstep__spin { opacity: 1; }
.vmodal__control.is-thinking .vstep__listen { opacity: 0; filter: blur(6px); transition-delay: 0s; }
.vstep__think {
  position: absolute;
  left: 50%;
  top: 6.375rem;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.45s ease 0.3s, filter 0.45s ease 0.3s;
}
.vmodal__control.is-thinking .vstep__think { opacity: 1; filter: blur(0); }

/* dimmed transcript with recognised keywords lighting up one by one */
.vstep__type.vstep__type--dim {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.6s ease;
}
.vstep__type.vstep__type--dim .kw {
  color: inherit;
  transition: color 0.6s ease, text-shadow 0.6s ease;
}
.vstep__type.vstep__type--dim .kw.on {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

/* "Start speaking" caption under the pill (slide 0 only) */
.vstep__start {
  position: absolute;
  left: 50%;
  /* same spot as LISTENING: orb height (5.5rem) + its gap (0.875rem) */
  top: 6.375rem;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.vmodal__control.is-orb .vstep__start { opacity: 0; filter: blur(6px); }

/* ---- Step 1: voice note being transcribed ---- */
.vstep__heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}
.vstep__heading-accent { color: var(--accent-yellow); }
.vstep__type {
  width: 100%;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.vstep__type-text,
.vstep__type-static {
  display: block;
  max-width: 15.5rem;
  margin: 0 auto;
}
.vstep__type-text .w {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.12em) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.vstep__type-text .w.on {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}
@keyframes caretBlink { 50% { opacity: 0; } }
.vstep__voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.vstep__orb {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vstep__orb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbSpinSlow 14s linear infinite;
}
@keyframes orbSpinSlow { to { transform: rotate(360deg); } }
.vstep__eq {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: auto;
}
.vstep__eq .eqb {
  transform-box: fill-box;
  transform-origin: center;
  animation: eqDance 1.1s ease-in-out infinite;
}
.vstep__eq .eqb-1 { animation-delay: 0s; }
.vstep__eq .eqb-2 { animation-delay: 0.15s; }
.vstep__eq .eqb-3 { animation-delay: 0.3s; }
.vstep__eq .eqb-4 { animation-delay: 0.45s; }
.vstep__eq .eqb-5 { animation-delay: 0.25s; }
.vstep__eq .eqb-6 { animation-delay: 0.1s; }
.vstep__eq .eqb-7 { animation-delay: 0.38s; }
@keyframes eqDance {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1.3); }
}
.vstep__listen {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}



/* Demo modal — step nav + replay (shared with demo.html workbench) */
.demo-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}
.demo-nav__tab {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.demo-nav__tab:hover { background: rgba(255,255,255,0.16); color: #fff; }
.demo-nav__tab.is-current { background: #fff; color: #0F1113; border-color: #fff; }
.demo-reset {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.demo-reset:hover { background: rgba(255,255,255,0.16); color: #fff; }
.demo-reset svg { width: 1.05rem; height: 1.05rem; transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1); }
.demo-reset.is-spin svg { transform: rotate(-360deg); }
