/* Theme controls: change these variables to recolor the site quickly. */
:root {
  --paper: #fdfcfe;
  --paper-deep: #ebe8f3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(243, 240, 248, 0.92);
  --ink: #241f39;
  --ink-soft: #4f4a64;
  --text: #241f39;
  --text-soft: #4f4a64;
  --line-strong: rgba(82, 73, 114, 0.28);
  --card: #ffffff;
  --card-deep: #efebf8;
  --accent: #2c2743;
  --accent-strong: #1f1a33;
  --teal: #8070da;
  --rose: #6f59d1;
  --glow: #b7abef;
  --glow-soft: #e6defe;
  --shadow-xl: 0 35px 90px rgba(44, 39, 67, 0.12);
  --shadow-lg: 0 18px 46px rgba(44, 39, 67, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1200px;
  --motion-scale: 2;
  --hero-load-distance: 18px;
  --hero-load-duration: 3600ms;
  --hero-load-stagger: 430ms;
  --reveal-rise: 16px;
  --reveal-duration: 1820ms;
  --reveal-fade-duration: 1120ms;
  --stagger-step: 220ms;
  --stack-top-offset: clamp(0.85rem, 1.8vh, 1.25rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--paper);
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  overflow-x: hidden;
}

body.is-ready {
  --page-ready: 1;
}

/* remove decorative overlays so background is strictly the background color */
body::before {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  position: relative;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__mark {
  display: none;
}

.brand__mark img {
  display: none;
}

.brand__text {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4rem;
  padding: 1.5rem;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.site-nav a {
  padding: 0;
  border-radius: 0;
  color: var(--text);
  transition: color calc(180ms * var(--motion-scale)) ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: transparent;
  color: var(--accent-strong);
}

.header-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(78, 68, 107, 0.16);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.site-header .header-cta.button {
  min-height: 2.25rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(42, 36, 66, 0.08);
}

.section {
  padding: 4rem 0;
}

#proof,
#testimonials,
#faq {
  min-height: 150svh;
  display: flex;
  align-items: flex-start;
}

#product {
  --feature-steps: 3;
  --feature-step-span: 28svh;
  --feature-release-hold: 7;
  position: relative;
  min-height: calc(
    100svh +
      (
        (var(--feature-steps) + var(--feature-release-hold)) *
          var(--feature-step-span)
      )
  );
  padding-top: 20px;
  padding-bottom: 2rem;
}

#testimonials {
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.6rem, 4vh, 2.6rem);
  padding-top: clamp(2.5rem, 5vh, 3.6rem);
  padding-bottom: clamp(4rem, 9vh, 6rem);
}

.section--hero {
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.section--purchase {
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: #7d75a2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Typography controls: edit these selectors to change all headings/body copy site-wide.
   For one-off text, add utility classes like class="text-weight-200 text-soft" in the HTML. */
h1,
h2,
h3,
.display {
  margin: 0;
  color: inherit;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  line-height: 0.96;
}

h1,
.display {
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.52rem, 2.2vw, 1.95rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.button,
.button--ghost,
.button--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform calc(180ms * var(--motion-scale)) ease,
    background calc(180ms * var(--motion-scale)) ease,
    border-color calc(180ms * var(--motion-scale)) ease,
    color calc(180ms * var(--motion-scale)) ease,
    box-shadow calc(180ms * var(--motion-scale)) ease;
}

.button:hover,
.button:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible,
.button--dark:hover,
.button--dark:focus-visible,
.feature-tabs__button:hover,
.feature-tabs__button:focus-visible {
  transform: translateY(-2px);
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, #372f58 100%);
  color: #f8fbff;
  box-shadow: 0 16px 30px rgba(42, 36, 66, 0.2);
}

.button--ghost {
  background: transparent;
  border-color: rgba(78, 68, 107, 0.16);
  color: var(--text);
}

.button--dark {
  background: rgba(42, 36, 66, 0.08);
  border-color: rgba(42, 36, 66, 0.14);
  color: var(--text);
}

.button--full {
  width: 100%;
}

.hero-shell {
  margin-top: 1rem; /* distance from navigation */
  min-height: calc(95svh - 6.4rem);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keep outer container unstyled so it disappears visually */
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  border: none;
  width: 100%;
  margin-inline: 0;
  background: transparent;
}

.hero-shell--landing {
  /* make landing shell visually disappear */
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  margin-inline: 0;
}

.hero-landing {
  position: relative;
  min-height: inherit;
  display: grid;
  align-content: space-between;
  gap: clamp(1.25rem, 2.4vw, 1.8rem);
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  /* remove internal gradient so the photo fills the card cleanly */
  background: none;
}

.hero-landing__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
}

.hero-landing__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.hero-landing__content,
.hero-landing__footer {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-landing__content {
  /* center the copy over the image */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 18rem;
}

@media (max-width: 640px) {
  .hero-landing__content,
  .hero-landing__footer {
    padding: 1rem;
  }
}

.hero-shell--landing .hero-copy {
  max-width: 60ch;
  text-align: center;
}

.site-header {
  opacity: 0;
  transform: translate3d(0, calc(var(--hero-load-distance) * -1), 0);
}

body.is-ready .site-header {
  animation: driftFadeFromTop var(--hero-load-duration)
    cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy--intro h2,
.hero-copy--intro h3 {
  opacity: 0;
  transform: translate3d(0, calc(var(--hero-load-distance) * -1), 0);
}

body.is-ready .hero-copy--intro h2 {
  animation: driftFadeFromTop var(--hero-load-duration)
    cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-load-stagger) * 1) forwards;
}

body.is-ready .hero-copy--intro h3 {
  animation: driftFadeFromTop var(--hero-load-duration)
    cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hero-load-stagger) * 2) forwards;
}

.hero-shell--landing .hero-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin: 0;
}

.hero-shell--landing .hero-copy h3 {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  margin-top: 0.6rem;
  font-weight: 400;
  color: var(--text-soft);
}

.hero-keywords,
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-keywords {
  margin-top: 1.1rem;
}

.hero-note {
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(82, 73, 114, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 50px rgba(44, 39, 67, 0.1);
  backdrop-filter: blur(18px);
  /* align content to the top so the hero sits higher */
  justify-content: flex-start;
}

.hero-note__label {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note p:last-child {
  color: var(--text-soft);
}

.hero-landing__mist,
.hero-landing__glow,
.hero-landing__screen,
.hero-landing__orb {
  position: absolute;
}

.hero-landing__mist--right {
  right: -4%;
  bottom: -2%;
  width: min(34vw, 24rem);
  height: min(16vw, 11rem);
  background: radial-gradient(
    circle,
    rgba(129, 112, 218, 0.46),
    rgba(129, 112, 218, 0)
  );
}

.hero-landing__glow {
  right: 10%;
  top: 18%;
  width: min(28vw, 18rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.74;
}

.hero-landing__screen {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(44, 39, 67, 0.18);
  backdrop-filter: blur(8px);
}

.hero-landing__screen img {
  width: 100%;
}

.hero-landing__screen--primary {
  right: clamp(1rem, 6vw, 4.5rem);
  bottom: clamp(3.8rem, 10vw, 6rem);
  width: min(50vw, 40rem);
}

.hero-landing__screen--secondary {
  left: clamp(1rem, 5vw, 3.4rem);
  bottom: clamp(1rem, 3.8vw, 2.5rem);
  width: min(24vw, 18rem);
  transform: rotate(-6deg);
}

.hero-landing__orb {
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.95),
    rgba(150, 131, 222, 0.88) 52%,
    rgba(94, 78, 160, 0.92) 100%
  );
  box-shadow: 0 18px 46px rgba(86, 70, 145, 0.24);
}

.hero-landing__orb--a {
  left: 20%;
  bottom: 16%;
  width: clamp(5rem, 8vw, 7.2rem);
  height: clamp(5rem, 8vw, 7.2rem);
}

.hero-landing__orb--b {
  right: 18%;
  bottom: 14%;
  width: clamp(2.8rem, 4.6vw, 4.2rem);
  height: clamp(2.8rem, 4.6vw, 4.2rem);
}

.hero-landing__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat {
  padding: 1.05rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(44, 39, 67, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.12rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: start;
}

.hero-copy,
.hero-summary,
.hero-foot {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 36rem;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 7vw, 5.4rem);
}

.hero-summary {
  max-width: 24rem;
  padding-top: 0.6rem;
}

.hero-summary p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-subtitle {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: auto;
}

.hero-card {
  position: relative;
  min-height: 18rem;
  padding: 1.35rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(78, 68, 107, 0.11);
  box-shadow: 0 20px 45px rgba(49, 34, 84, 0.08);
}

.hero-card h3 {
  max-width: 10ch;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.hero-card p {
  max-width: 26rem;
  margin-top: 0.8rem;
}

.hero-card--glow {
  background: linear-gradient(135deg, #ece7ff 0%, #e7e1f8 55%, #f6f0ed 100%);
}

.hero-card--dark {
  background: linear-gradient(180deg, #2a2442 0%, #31294e 100%);
  color: #fbf8f5;
}

.hero-card--dark p {
  color: rgba(251, 248, 245, 0.75);
}

.hero-glow-scene {
  position: absolute;
  inset: 3.8rem 1.2rem 1rem 1.2rem;
}

.hero-glow-scene__ring,
.hero-glow-scene__core,
.hero-glow-scene__orb,
.hero-glow-scene__spark {
  position: absolute;
}

.hero-glow-scene__ring {
  left: 32%;
  top: 14%;
  border-radius: 50%;
  border: 1px solid rgba(88, 67, 152, 0.18);
}

.hero-glow-scene__ring--outer {
  width: 17rem;
  height: 17rem;
  background: radial-gradient(
    circle,
    rgba(179, 155, 255, 0.18),
    rgba(179, 155, 255, 0.02) 70%
  );
  box-shadow: 0 0 80px rgba(179, 155, 255, 0.28);
  animation: glowOrbit calc(8s * var(--motion-scale)) ease-in-out infinite;
}

.hero-glow-scene__ring--inner {
  width: 11rem;
  height: 11rem;
  left: 40%;
  top: 26%;
  background: radial-gradient(
    circle,
    rgba(245, 234, 255, 0.82),
    rgba(245, 234, 255, 0.08) 68%
  );
  box-shadow: 0 0 65px rgba(255, 245, 255, 0.45);
  animation: glowOrbitReverse calc(6.4s * var(--motion-scale)) ease-in-out
    infinite;
}

.hero-glow-scene__core {
  left: 48%;
  top: 38%;
  width: 7rem;
  height: 7rem;
  border-radius: 42% 58% 55% 45%;
  background: radial-gradient(
    circle at 40% 35%,
    #ffffff 0%,
    #e6d9ff 38%,
    #9d84ff 72%,
    #7760ff 100%
  );
  box-shadow:
    0 0 42px rgba(179, 155, 255, 0.75),
    0 0 96px rgba(179, 155, 255, 0.42),
    inset 0 0 28px rgba(255, 255, 255, 0.82);
  animation: glowPulse calc(4.8s * var(--motion-scale)) ease-in-out infinite;
}

.hero-glow-scene__orb {
  border-radius: 50%;
  filter: blur(1px);
}

.hero-glow-scene__orb--a {
  left: 28%;
  bottom: 10%;
  width: 8.2rem;
  height: 8.2rem;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.9),
    rgba(150, 121, 255, 0.86) 48%,
    rgba(90, 74, 176, 0.95) 100%
  );
  box-shadow: 0 20px 60px rgba(90, 74, 176, 0.35);
  animation: floatOrb calc(6.8s * var(--motion-scale)) ease-in-out infinite;
}

.hero-glow-scene__orb--b {
  left: 52%;
  bottom: 4%;
  width: 4.6rem;
  height: 4.6rem;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.9),
    rgba(205, 192, 255, 0.9) 50%,
    rgba(116, 97, 198, 0.95) 100%
  );
  box-shadow: 0 14px 44px rgba(116, 97, 198, 0.32);
  animation: floatOrb calc(5.2s * var(--motion-scale)) ease-in-out infinite
    reverse;
}

.hero-glow-scene__spark {
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(186, 168, 255, 0)
  );
  animation: sparkRise calc(3.4s * var(--motion-scale)) ease-in-out infinite;
}

.hero-glow-scene__spark--a {
  left: 64%;
  bottom: 18%;
  width: 0.42rem;
  height: 3.8rem;
}

.hero-glow-scene__spark--b {
  left: 38%;
  bottom: 22%;
  width: 0.34rem;
  height: 3rem;
  animation-delay: 1s;
}

.hero-foot {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(109, 113, 255, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 78% 24%,
      rgba(55, 200, 199, 0.12),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(252, 253, 255, 0.92),
      rgba(241, 246, 253, 0.88)
    );
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      125deg,
      transparent 24%,
      rgba(122, 138, 186, 0.06) 34%,
      transparent 46%
    ),
    linear-gradient(
      75deg,
      transparent 56%,
      rgba(109, 113, 255, 0.05) 66%,
      transparent 78%
    );
  pointer-events: none;
}

.hero-window {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 520px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(246, 249, 255, 0.86)
  );
  border: 1px solid rgba(122, 138, 186, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 48px rgba(122, 138, 186, 0.14);
  overflow: hidden;
}

.hero-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(122, 138, 186, 0.12);
}

.hero-window__dots {
  display: flex;
  gap: 0.45rem;
}

.hero-window__dots span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(109, 113, 255, 0.26),
    rgba(109, 113, 255, 0.16)
  );
}

.hero-window__search {
  width: min(48%, 15rem);
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(241, 244, 251, 0.86);
  border: 1px solid rgba(122, 138, 186, 0.12);
}

.hero-window__body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  height: calc(100% - 69px);
}

.hero-window__sidebar {
  padding: 1.05rem 0.8rem;
  display: grid;
  grid-template-rows: repeat(6, min-content) 1fr min-content;
  gap: 0.9rem;
  border-right: 1px solid rgba(122, 138, 186, 0.1);
  background: linear-gradient(
    180deg,
    rgba(250, 252, 255, 0.88),
    rgba(244, 247, 253, 0.8)
  );
}

.hero-window__icon,
.hero-window__theme {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(122, 138, 186, 0.12);
  box-shadow: 0 10px 22px rgba(122, 138, 186, 0.08);
}

.hero-window__theme {
  margin-top: auto;
  background: linear-gradient(
    180deg,
    rgba(109, 113, 255, 0.14),
    rgba(109, 113, 255, 0.06)
  );
}

.hero-window__content {
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
}

.hero-window__headline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.hero-window__headline strong {
  font-size: 2.1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--text);
}

.hero-window__headline span {
  color: #8a98b0;
  font-size: 0.88rem;
}

.hero-window__sync {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(122, 138, 186, 0.14);
  background: rgba(245, 248, 254, 0.88);
  color: var(--text);
}

.hero-window__metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-window__metric {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(122, 138, 186, 0.12);
  box-shadow: 0 10px 28px rgba(122, 138, 186, 0.09);
}

.hero-window__metric span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8090aa;
}

.hero-window__metric strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.5rem;
}

.hero-window__metric strong.is-negative {
  color: var(--rose);
}

.hero-window__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.95fr 0.82fr;
  gap: 1rem;
}

.hero-window__card {
  min-height: 230px;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(122, 138, 186, 0.12);
  box-shadow: 0 14px 34px rgba(122, 138, 186, 0.09);
  overflow: hidden;
}

.hero-window__card--bull {
  position: relative;
  background:
    radial-gradient(
      circle at 72% 44%,
      rgba(109, 113, 255, 0.14),
      transparent 26%
    ),
    rgba(255, 255, 255, 0.88);
}

.hero-window__eyebrow {
  display: block;
  color: #8290a8;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-window__title {
  margin-top: 0.3rem;
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
}

.hero-window__broker {
  margin-top: 0.35rem;
  color: #4a5b78;
}

.hero-window__status {
  margin-top: 0.8rem;
  color: var(--rose);
}

.hero-window__bull {
  position: absolute;
  right: 1rem;
  bottom: 1.2rem;
  width: 46%;
  height: 66%;
  border-radius: 38% 58% 42% 52%;
  background:
    radial-gradient(
      circle at 32% 38%,
      rgba(56, 205, 204, 0.82),
      transparent 20%
    ),
    radial-gradient(
      circle at 66% 26%,
      rgba(194, 98, 255, 0.92),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(59, 208, 212, 0.9), rgba(152, 74, 232, 0.94));
  filter: saturate(1.1);
  transform: skewX(-8deg) rotate(-6deg);
  opacity: 0.96;
  box-shadow: 0 18px 32px rgba(124, 105, 230, 0.22);
}

.hero-window__bull::before,
.hero-window__bull::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 18%;
  height: 18%;
  border-top: 4px solid rgba(255, 255, 255, 0.84);
  border-left: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: 60% 0 0 0;
}

.hero-window__bull::before {
  left: 6%;
  transform: rotate(-36deg);
}

.hero-window__bull::after {
  right: 12%;
  transform: scaleX(-1) rotate(-44deg);
}

.hero-window__stats {
  margin-top: 5.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.hero-window__stats strong {
  display: block;
  font-size: 1.55rem;
}

.hero-window__list {
  display: grid;
  gap: 0.9rem;
}

.hero-window__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(122, 138, 186, 0.12);
  color: var(--text);
}

.hero-window__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-window__row strong.is-positive {
  color: #23b86f;
}

.hero-window__row strong.is-negative {
  color: var(--rose);
}

.hero-window__chart {
  position: relative;
}

.hero-window__donut {
  width: 10.5rem;
  height: 10.5rem;
  margin: 1.2rem auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 48%, #f04b97 48% 100%);
  position: relative;
}

.hero-window__donut::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: white;
}

.hero-window__legend {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.hero-window__legend strong {
  display: block;
  text-align: center;
  font-size: 1.45rem;
}

.hero-window__legend span {
  color: #8191ab;
}

.hero-visual__copy,
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-visual__copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.6rem;
  display: grid;
  gap: 0.45rem;
  color: #7184a1;
}

.hero-visual__copy h2 {
  max-width: 12ch;
  color: var(--text);
}

.hero-visual__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  font-size: 0.86rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.95rem;
  padding: clamp(1.6rem, 3vw, 3rem);
}

.hero-content p,
.hero-content .eyebrow {
  max-width: 31rem;
}

.hero-content h1 {
  max-width: 10ch;
  font-size: clamp(2.85rem, 5.8vw, 5.1rem);
}

.hero-subtitle {
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.15rem;
}

.trust-pill,
.metric-pill,
.badge,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.58rem 0.88rem;
  border: 1px solid rgba(42, 36, 66, 0.12);
  background: rgba(42, 36, 66, 0.05);
  color: #4e4761;
  font-size: 0.84rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.why-shell {
  display: grid;
  gap: 1rem;
  width: 100%;
  min-height: calc(100svh - 4rem);
  align-content: center;
}

.why-layout,
.faq-shell,
.purchase-cta {
  margin-top: clamp(1rem, 2vh, 1.8rem);
  display: grid;
  gap: 1.25rem;
}

.why-layout {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.why-intro,
.value-card,
.faq-panel,
.purchase-cta,
.purchase-cta__panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-intro,
.value-card,
.faq-panel {
  border: 1px solid rgba(82, 73, 114, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 240, 251, 0.84)
  );
}

.faq-panel {
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
}

.why-intro {
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.why-intro__accent {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0;
  box-sizing: border-box;
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.why-heading__right :is(h3, h4) {
  margin: 0;
  color: var(--text-soft);
  font-weight: 200;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.42;
}

.value-card {
  position: relative;
  min-height: clamp(10rem, 16vw, 17.25rem);
  padding: 1.35rem 1.2rem;
  background: linear-gradient(160deg, #261d45 0%, #3a2d6c 56%, #58479a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 24px 44px rgba(33, 28, 54, 0.26);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.05rem;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -2.75rem;
  right: -1.8rem;
  width: 6.9rem;
  height: 6.9rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(245, 238, 255, 0.62),
    rgba(223, 211, 255, 0.2) 62%,
    rgba(223, 211, 255, 0) 100%
  );
  box-shadow: 0 0 1.1rem rgba(219, 204, 255, 0.35);
  pointer-events: none;
}

.why-grid .value-card:nth-child(2)::before {
  width: 7.3rem;
  height: 7.3rem;
}

.why-grid .value-card:nth-child(3)::before {
  top: -2.2rem;
  right: -1.2rem;
  width: 5.6rem;
  height: 5.6rem;
}

.why-grid .value-card:nth-child(4)::before {
  right: -2.2rem;
  width: 7.2rem;
  height: 7.2rem;
}

.why-grid .value-card:nth-child(1) {
  background: linear-gradient(160deg, #23193f 0%, #35255f 55%, #4f3f8f 100%);
}

.why-grid .value-card:nth-child(2) {
  background: linear-gradient(160deg, #2a1f4a 0%, #3f2f73 55%, #5d4aa4 100%);
}

.why-grid .value-card:nth-child(3) {
  background: linear-gradient(160deg, #302457 0%, #4b387f 55%, #6a55b4 100%);
}

.why-grid .value-card:nth-child(4) {
  background: linear-gradient(160deg, #382b63 0%, #574298 55%, #7760c2 100%);
}

.why-layout[data-stagger-group] {
  --stagger-step: calc(112ms * var(--motion-scale));
}

.value-card__title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #fff;
}

.value-card__icon {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f8f6ff;
}

.value-card__icon img {
  width: 1.2rem;
  height: 1.2rem;
}

.value-card p {
  color: rgba(248, 245, 255, 0.9);
  line-height: 1.55;
}

.broker-marquee {
  overflow: hidden;
  padding: 0.35rem 0 0;
}

.broker-marquee__row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 60%);
  align-items: center;
  gap: 1.7rem;
  padding: 0.5rem 0;
}

.broker-marquee__label {
  margin: 0;
  color: #8f92a0;
  font-size: clamp(1.5rem, 2.25vw, 2.35rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-self: start;
}
/* when layout collapses / label would overflow, allow wrapping and center it */
@media (max-width: 1080px) {
  .broker-marquee__label {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    justify-self: center;
    align-self: center;
    text-align: center;
    width: 100%;
    max-width: 60ch;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .broker-marquee__label {
    max-width: 48ch;
    font-size: clamp(1.5rem, 2.25vw, 2.35rem);
  }
}

.broker-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.broker-marquee__track {
  display: flex;
  align-items: center;
  gap: 3.3rem;
  width: max-content;
  animation: marqueeDrift calc(36s * var(--motion-scale)) linear infinite;
}

.broker-logo-image {
  /* Per-logo manual sizing hook: tweak the scale variables on each logo class. */
  --broker-logo-width-scale: 1;
  --broker-logo-height-scale: 1;
  width: calc(clamp(5.2rem, 10.4vw, 6.8rem) * var(--broker-logo-width-scale));
  height: calc(clamp(2.7rem, 7vw, 4rem) * var(--broker-logo-height-scale));
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0.72) contrast(0.92);
  opacity: 0.78;
  transition:
    transform calc(220ms * var(--motion-scale)) ease,
    filter calc(220ms * var(--motion-scale)) ease,
    opacity calc(220ms * var(--motion-scale)) ease;
}

.broker-logo-image--axi {
  --broker-logo-width-scale: 0.78;
  --broker-logo-height-scale: 0.78;
}

.broker-logo-image--exness {
  --broker-logo-width-scale: 1.24;
  --broker-logo-height-scale: 2.18;
}

.broker-logo-image:hover,
.broker-logo-image:focus-visible {
  transform: translateY(-2px);
}

.broker-logo-image:hover,
.broker-logo-image:focus-visible {
  filter: grayscale(1) saturate(0) brightness(0.88) contrast(1)
    drop-shadow(0 0 1.15rem rgba(176, 184, 214, 0.74));
  opacity: 1;
}

.support-note {
  margin-top: 0.72rem;
  color: #b9bdcb;
  font-size: clamp(0.78rem, 1.12vw, 0.88rem);
}

.metric-card,
.quote-card,
.signal-card,
.timeline-card,
.story-card,
.detail-card,
.testimonial-card,
.pricing-card,
.checkout-card,
.support-card,
.license-card,
.legal-copy,
.result-panel,
.feature-panel,
.proof-card,
.dark-band {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.metric-card {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(78, 68, 107, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(247, 241, 237, 0.8)
  );
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.45rem;
  font-family: "Urbanist", sans-serif;
  color: var(--text);
}

.metric-card p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 46rem;
}

.feature-heading {
  position: relative;
  top: auto;
  z-index: 4;
  background-color: var(--paper);
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0.55rem;
  transition:
    transform calc(420ms * var(--motion-scale)) cubic-bezier(0.22, 1, 0.36, 1),
    opacity calc(300ms * var(--motion-scale)) ease;
}

/* .feature-heading.is-last-panel — heading now exits with the last card naturally */

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 247, 255, 0.82)
  );
}

.proof-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Urbanist", sans-serif;
  font-size: 1.5rem;
  color: var(--text);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.25rem;
  align-items: stretch;
}

.story-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 247, 255, 0.84)
  );
}

.story-card--dark,
.dark-band,
.feature-panel,
.pricing-card,
.checkout-card,
.result-panel,
.license-card,
.legal-copy,
.support-card {
  background: linear-gradient(
    180deg,
    rgba(252, 253, 255, 0.96),
    rgba(245, 248, 255, 0.9)
  );
  color: var(--text);
  border: 1px solid rgba(122, 138, 186, 0.12);
}

.story-card--dark p,
.dark-band p,
.feature-panel p,
.pricing-card p,
.checkout-card p,
.result-panel p,
.license-card p,
.support-card p {
  color: var(--text-soft);
}

.story-stats {
  display: grid;
  gap: 1rem;
}

.story-stat {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(245, 248, 255, 0.92);
  border: 1px solid rgba(122, 138, 186, 0.12);
}

.story-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 2rem;
  font-family: "Urbanist", sans-serif;
}

.feature-tour {
  --feature-heading-height: 0px;
  --feature-panel-gap: 0;
  --feature-panel-top: calc(
    var(--feature-heading-height) + var(--feature-panel-gap)
  );
  display: grid;
  gap: 1rem;
  grid-template-rows: auto;
  height: auto;
  position: sticky;
  top: max(0.35rem, calc(var(--stack-top-offset) * 0.65));
  align-content: start;
  overflow: visible;
}

/* Slightly deeper offset so the feature section still feels distinct. */
.feature-tour.reveal {
  --reveal-y: 0px;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tabs__button {
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  padding: 0.82rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background calc(180ms * var(--motion-scale)) ease,
    color calc(180ms * var(--motion-scale)) ease,
    border-color calc(180ms * var(--motion-scale)) ease,
    transform calc(180ms * var(--motion-scale)) ease,
    box-shadow calc(180ms * var(--motion-scale)) ease;
}

.feature-tabs__button.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #7d82ff 100%);
  border-color: transparent;
  color: #f9fbff;
  box-shadow: 0 12px 24px rgba(109, 113, 255, 0.2);
}

.feature-showcase {
  position: relative;
  /* slightly taller so feature panels have more vertical room */
  min-height: clamp(26rem, 68svh, 44rem);
  margin-top: 0;
}

.feature-showcase--calm {
  min-height: inherit;
}

.feature-showcase .feature-scroll {
  position: relative;
  display: block;
  min-height: inherit;
  /* increase viewport height slightly to match min-height above */
  height: clamp(26rem, 68svh, 44rem);
  /* overflow:hidden clips the off-screen panels so they can't be seen;
     shadow is allowed to bleed via the wrapper below */
  overflow: hidden;
  scroll-snap-type: none;
}

/* Wrapper that lets the box-shadow bleed outside the clipped scroll area */
.feature-showcase {
  filter: drop-shadow(0 4px 24px rgba(40, 40, 80, 0.1))
    drop-shadow(0 1px 6px rgba(122, 138, 186, 0.1));
}

.feature-tape {
  position: relative;
  height: 100%;
}

.feature-panel {
  position: absolute;
  /* small horizontal inset to give panels a subtle side margin (mobile-first) */
  inset: 0 3px;
  display: grid;
  /* mobile-first: stack eyebrow, demo frame, then copy */
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "frame"
    "copy";
  gap: 0.9rem;
  /* remove outer padding; internal padding lives in copy/frame */
  padding: 0;
  align-items: start;
  isolation: isolate;
  background: #f9faff;
  border: 1px solid rgba(122, 138, 186, 0.14);
  border-radius: 26px;
  box-shadow: none;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transform: translateY(110%);
  transition:
    opacity 500ms ease,
    transform 560ms cubic-bezier(0.33, 1, 0.68, 1);
  will-change: opacity, transform;
}

/* card starts above viewport — used for backward (reverse) entry */
.feature-panel.is-panel-above {
  transform: translateY(-110%);
  opacity: 1;
}

.feature-panel.is-panel-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 3;
}

/* forward exit: shrinks and fades upward */
.feature-panel.is-panel-exiting-fwd {
  opacity: 0;
  transform: scale(0.88) translateY(-10px);
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 350ms ease,
    transform 350ms ease;
}

/* backward exit: slides back down */
.feature-panel.is-panel-exiting-bwd {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 380ms ease,
    transform 460ms cubic-bezier(0.4, 0, 0.6, 1);
}

/* place the eyebrow, frame and copy into named areas for easy re-ordering */
.feature-panel > .eyebrow {
  grid-area: eyebrow;
  margin: 0;
  display: block;
  /* keep eyebrow inset from the panel edges on mobile */
  padding-left: clamp(0.9rem, 1.8vw, 1.6rem);
  padding-top: clamp(0.6rem, 1.6vw, 0.9rem);
}

/* ensure the copy and frame map to the mobile grid areas so order is
   eyebrow -> frame -> copy regardless of DOM order */
.feature-panel > .feature-frame {
  grid-area: frame;
}

.feature-panel > .feature-copy {
  grid-area: copy;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  max-width: 34rem;
  /* extra left padding so text sits away from the panel edge */
  padding: 1.1rem 0.4rem 1.1rem clamp(0.9rem, 1.8vw, 1.6rem);
}

.feature-copy h3 {
  max-width: 13ch;
  margin-top: 0;
}

.feature-copy ul,
.pricing-list,
.focus-list,
.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.feature-copy li,
.pricing-list li,
.focus-list li,
.signal-list li {
  position: relative;
  padding-left: 1.1rem;
}

.feature-copy li::before,
.pricing-list li::before,
.focus-list li::before,
.signal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.feature-frame {
  /* let the frame size to its content on mobile so the top gap stays
     constant as the video scales. Desktop min-height is set in the
     desktop media query below. */
  min-height: auto;
  height: auto;
  /* symmetric horizontal padding so video has the same inset on both sides */
  padding: 0 clamp(0.9rem, 1.8vw, 1.6rem) 0 clamp(0.9rem, 1.8vw, 1.6rem);
  border-radius: 0;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: flex-start; /* pin video to the top so no extra top gap appears */
  justify-content: center;
}

.feature-frame :is(img, video) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  will-change: transform;
}

.feature-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(58vh, 36rem);
  object-fit: contain;
  border-radius: 16px;
}

/* Desktop: two-column layout with eyebrow grouped above the copy and
   no vertical gap between eyebrow and copy. Keeps small horizontal inset. */
@media (min-width: 1081px) {
  .feature-panel {
    inset: 0 3px;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    grid-template-areas: "eyebrow frame" "copy frame";
    gap: 0 1.6rem; /* row-gap 0 to keep eyebrow flush above copy */
    align-items: start;
  }

  .feature-panel > .eyebrow {
    margin: 0; /* remove extra spacing */
    /* desktop inset: keep eyebrow away from left edge and push it down a bit */
    padding-left: clamp(0.9rem, 1.8vw, 1.6rem);
    padding-top: clamp(0.6rem, 1.2vw, 0.9rem);
  }

  .feature-panel > .feature-copy {
    grid-column: 1;
    grid-row: 2;
    /* remove top padding so eyebrow sits directly above the h3 */
    padding-top: 0;
  }

  .feature-panel > .feature-frame {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    /* center the video vertically inside the frame on desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.6rem, 1.2vw, 1rem) clamp(0.9rem, 1.8vw, 1.6rem);
    min-height: clamp(20rem, 34vw, 30rem);
  }

  .feature-copy h3 {
    margin-top: 0;
  }
}

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.quote-card,
.signal-card,
.timeline-card,
.testimonial-card {
  padding: 1.45rem;
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 247, 255, 0.84)
  );
}

.quote-card p:first-child,
.testimonial-card p:first-child {
  color: var(--text);
  font-size: 1.02rem;
}

.quote-meta,
.testimonial-meta {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar-badge {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8dcff, #f1f4ff);
  color: var(--accent);
  font-weight: 800;
}

.dark-band {
  padding: clamp(1.8rem, 3vw, 2.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 1.25rem;
}

.dark-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.detail-card {
  padding: 1.2rem;
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(244, 247, 255, 0.84)
  );
}

.detail-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Urbanist", sans-serif;
  font-size: 1.45rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.testimonial-kicker {
  max-width: 34rem;
  margin-top: 0.25rem;
  color: var(--text-soft);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-shell {
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
}

.faq-intro {
  padding-top: 0.9rem;
  text-align: center;
}

.faq-panel {
  padding: 0.85rem clamp(1rem, 2vw, 1.35rem);
}

.faq-item {
  position: relative;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(82, 73, 114, 0.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  padding-right: 2.4rem;
}

.faq-item summary h3 {
  margin: 0;
  max-width: 42rem;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.35;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: transparent;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.9rem;
}

.purchase-shell {
  margin-top: 0.15rem;
  border-radius: clamp(24px, 4vw, 40px);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(247, 250, 255, 0.82)
  );
  border: 1px solid rgba(122, 138, 186, 0.12);
}

.purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.purchase-copy {
  position: relative;
  min-height: 540px;
  padding: clamp(1.35rem, 2.6vw, 2.3rem);
  background:
    radial-gradient(
      circle at top left,
      rgba(109, 113, 255, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(55, 200, 199, 0.08),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(252, 253, 255, 0.92),
      rgba(241, 246, 253, 0.86)
    );
}

.purchase-copy__frame {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(122, 138, 186, 0.12);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.purchase-copy__frame img {
  border-radius: 18px;
  transition: transform calc(500ms * var(--motion-scale)) ease;
}

.purchase-flow {
  padding: clamp(1.4rem, 3vw, 2.35rem);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.98),
    rgba(241, 246, 253, 0.92)
  );
}

.pricing-card,
.checkout-card {
  padding: 1.45rem;
}

.pricing-card h2 {
  margin-top: 0.6rem;
}

.pricing-tag,
.license-card__label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  background: rgba(109, 113, 255, 0.08);
  border: 1px solid rgba(109, 113, 255, 0.12);
  color: #5e67cf;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-card {
  margin-top: 1rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.05rem;
}

.checkout-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
}

.checkout-form input {
  border-radius: 14px;
  border: 1px solid rgba(122, 138, 186, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.9rem 1rem;
}

.checkout-form input::placeholder {
  color: rgba(109, 125, 151, 0.7);
}

.form-feedback {
  min-height: 1.5rem;
}

.badge-row,
.purchase-metrics,
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.purchase-metrics {
  margin-top: 1rem;
}

.mini-pill {
  background: rgba(109, 113, 255, 0.06);
  border: 1px solid rgba(109, 113, 255, 0.1);
  color: var(--text-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  padding: 1.4rem;
}

.result-panel,
.legal-copy {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.result-panel {
  max-width: 56rem;
  margin-inline: auto;
}

.license-card {
  margin-top: 1.4rem;
  padding: 1.4rem;
}

.license-card__key {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(109, 113, 255, 0.08);
  color: var(--accent-strong);
}

.legal-copy {
  max-width: 56rem;
  margin-inline: auto;
}

.legal-copy h2 {
  margin-top: 2rem;
}

.page-shell--inner .legal-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -0.02em;
}

.page-shell--inner .legal-copy h2 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  letter-spacing: -0.01em;
}

.site-footer {
  padding: 3.5rem 0 3rem; /* extra space above footer for separation */
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-soft);
  align-items: flex-start;
}

.site-footer .brand {
  display: inline-flex;
  margin-bottom: 0.85rem; /* space between brand and the paragraph below */
}

.footer-links {
  display: flex;
  flex-direction: column; /* stack links in a single column */
  gap: 0.45rem; /* vertical spacing between stacked links */
  margin-top: 1.6rem; /* push links lower under the brand paragraph */
  align-items: flex-start;
}

.footer-links a {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.footer-links a[href="/contact.html"] {
  white-space: nowrap; /* keep 'Contact Us' on one line */
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-links {
    gap: 0.35rem;
    margin-top: 1.25rem;
  }
}

.footer-disclaimer {
  margin-top: 0.85rem;
  max-width: 56rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #746f88;
}

.page-shell--home main {
  position: relative;
  isolation: isolate;
}

.page-shell--home main > .section {
  position: relative;
  z-index: var(--section-layer, 1);
}

.page-shell--home .stack-panel {
  --stack-shift: 0px;
  --stack-opacity: 1;
  --stack-blur: 0px;
  min-height: calc(100svh + 3svh);
  padding-top: 0;
  padding-bottom: clamp(0.8rem, 3vh, 1.8rem);
  display: block;
}

.page-shell--home .stack-panel--hero {
  min-height: calc(100svh + 6svh);
}

.page-shell--home .stack-panel--cta {
  min-height: calc(100svh + 6svh);
}

.page-shell--home .stack-panel__inner {
  position: sticky;
  top: var(--stack-top-offset);
  width: 100%;
  min-height: calc(100svh - var(--stack-top-offset));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  transform-origin: 50% 0%;
  transform: translate3d(0, var(--stack-shift), 0);
  opacity: var(--stack-opacity);
  filter: blur(var(--stack-blur));
  transition:
    transform calc(130ms * var(--motion-scale)) linear,
    opacity calc(150ms * var(--motion-scale)) linear,
    filter calc(150ms * var(--motion-scale)) linear;
  will-change: transform, opacity, filter;
}

.page-shell--home .stack-panel__inner > * {
  width: 100%;
}

.page-shell--home #proof.stack-panel,
.page-shell--home #testimonials.stack-panel,
.page-shell--home #faq.stack-panel {
  min-height: calc(100svh + 3svh);
}

.page-shell--home #proof.stack-panel {
  min-height: calc(100svh + 1svh);
}

.page-shell--home #testimonials.stack-panel {
  padding-bottom: clamp(1rem, 3.5vh, 2rem);
}

.page-shell--home #testimonials.stack-panel .stack-panel__inner {
  gap: clamp(1.6rem, 4vh, 2.6rem);
  padding-top: clamp(2.5rem, 5vh, 3.6rem);
}

.page-shell--home .stack-panel--hero .stack-panel__inner {
  min-height: 100svh;
}

.page-shell--home .stack-panel--hero .hero-shell {
  width: calc(100vw - 4rem);
  margin-inline: calc(50% - 50vw + 2rem);
  min-height: calc(95svh - 5rem);
}

.page-shell--home #faq.stack-panel .stack-panel__inner {
  justify-content: flex-start;
  align-items: stretch;
}

.page-shell--home #faq.stack-panel .faq-shell {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  align-content: stretch;
  grid-template-rows: auto;
}

.page-shell--home #faq.stack-panel .faq-panel {
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: flex-start;
}

.page-shell--home #faq.stack-panel .faq-list {
  width: min(100%, 70rem);
  margin-inline: auto;
  align-content: start;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: var(--reveal-rise);
  --reveal-scale: 1;
  --parallax-x: 0px;
  --parallax-scale: 1;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-fade-duration) ease-out,
    transform var(--reveal-duration) ease-out;
}

.why-heading.reveal,
.why-layout.reveal,
.broker-marquee.reveal {
  --reveal-y: 0px;
}

.reveal--delay {
  transition-delay: calc(140ms * var(--motion-scale));
}

.reveal--delay-2 {
  transition-delay: calc(280ms * var(--motion-scale));
}

.reveal.is-visible {
  opacity: 1;
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
}

[data-stagger-group] .stagger-item {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition:
    opacity calc(440ms * var(--motion-scale)) ease-out,
    transform calc(600ms * var(--motion-scale)) ease-out;
}

[data-stagger-group].is-visible .stagger-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(var(--stagger-index, 0) * var(--stagger-step));
}

.reveal[data-parallax]:not(.hero-landing__image):not(.feature-frame) {
  transform: translate3d(
      calc(var(--reveal-x) + var(--parallax-x)),
      var(--reveal-y),
      0
    )
    scale(calc(var(--reveal-scale) * var(--parallax-scale)));
}

[data-parallax]:not(.reveal):not(.hero-landing__image):not(.feature-frame) {
  transform: translate3d(var(--parallax-x), 0, 0) scale(var(--parallax-scale));
}

.reveal,
[data-parallax],
.hero-landing__bg,
.feature-frame :is(img, video) {
  will-change: transform;
}

.feature-frame {
  overflow: visible;
}

.hero-landing__image {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
  --parallax-x: 0px;
  --parallax-scale: 1.03;
}

.hero-landing__bg {
  width: 102%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--parallax-x), 0, 0) scale(var(--parallax-scale));
  transform-origin: center;
}

.feature-frame {
  --parallax-x: 0px;
  --parallax-scale: 1;
}

.feature-frame :is(img, video) {
  transform: none;
  transform-origin: center;
}

@keyframes driftFadeFromTop {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--hero-load-distance) * -1), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.purchase-cta {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(
    135deg,
    rgba(44, 39, 67, 1) 0%,
    rgba(61, 53, 94, 0.98) 58%,
    rgba(108, 90, 179, 0.94) 100%
  );
  color: #f8f6ff;
}

.purchase-cta__platform {
  grid-column: 1 / -1;
  margin: 0 0 0.55rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.78rem;
  width: 100%;
  color: rgba(248, 246, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.purchase-cta__platform > span:last-child {
  margin-left: 0.2rem;
}

.platform-badge__icon {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  isolation: isolate;
}

.platform-badge__icon::before {
  content: "";
  position: absolute;
  inset: -0.18rem;
  border-radius: 999px;
  background: transparent;
  box-shadow:
    0 0 34px 18px rgba(205, 187, 255, 0.7),
    0 0 102px 34px rgba(205, 187, 255, 0.34),
    0 0 148px 52px rgba(205, 187, 255, 0.18);
  filter: blur(14px);
  animation: glowPulse calc(1.4s * var(--motion-scale)) ease-in-out infinite;
}

.platform-badge__icon::after {
  display: none;
}

.platform-badge__icon img {
  position: relative;
  z-index: 2;
  width: 3.45rem;
  height: 3.45rem;
  object-fit: contain;
  filter: drop-shadow(0 0 0.38rem rgba(250, 245, 255, 0.92));
}

.purchase-cta::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: min(38vw, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
}

.purchase-cta__copy,
.purchase-cta__panel {
  position: relative;
  z-index: 1;
}

.purchase-cta p {
  color: rgba(248, 246, 255, 0.8);
}

.purchase-cta h2 {
  max-width: 11ch;
  margin-bottom: 0.95rem;
}

.purchase-cta__panel {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.purchase-cta__price {
  display: block;
  margin: 0.7rem 0 0.4rem;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  line-height: 0.88;
}

.purchase-cta .pricing-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.purchase-cta .mini-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.purchase-cta .button {
  margin-top: 1rem;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 16px 30px rgba(23, 17, 41, 0.18);
}

.purchase-cta__feedback {
  min-height: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
}

.purchase-embedded {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 40px rgba(23, 17, 41, 0.12);
}

.purchase-embedded[hidden] {
  display: none;
}

.purchase-embedded__intro {
  max-width: 46rem;
  margin-bottom: 1rem;
}

.purchase-embedded__intro h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
}

.purchase-embedded__intro p:last-child {
  color: var(--text-soft);
}

.purchase-embedded__mount {
  min-height: 720px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
}

.purchase-embedded__fallback {
  margin-top: 1rem;
  border-color: rgba(78, 68, 107, 0.16);
}

.hero-glow-scene [data-parallax],
.feature-frame [data-parallax],
.purchase-copy__frame [data-parallax] {
  will-change: transform;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow:
      0 0 42px rgba(179, 155, 255, 0.75),
      0 0 96px rgba(179, 155, 255, 0.42),
      inset 0 0 28px rgba(255, 255, 255, 0.82);
  }

  50% {
    transform: scale(1.12) rotate(8deg);
    box-shadow:
      0 0 58px rgba(179, 155, 255, 0.92),
      0 0 130px rgba(179, 155, 255, 0.56),
      inset 0 0 34px rgba(255, 255, 255, 0.9);
  }
}

@keyframes glowOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(1.1rem, -0.9rem, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes glowOrbitReverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-0.8rem, 0.8rem, 0) scale(0.96);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -1rem, 0);
  }
}

@keyframes sparkRise {
  0% {
    transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate3d(0, -1.4rem, 0);
    opacity: 0;
  }
}

@keyframes marqueeDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes starSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes brokerFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes brokerFloatB {
  0%,
  100% {
    transform: translate3d(0, -2px, 0);
  }

  50% {
    transform: translate3d(0, 6px, 0);
  }
}

@keyframes brokerFloatC {
  0%,
  100% {
    transform: translate3d(0, 1px, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@media (max-width: 1180px) {
  .hero-card-grid,
  .hero-window__metrics,
  .hero-window__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card--glow {
    grid-column: span 2;
  }

  .hero-window__chart {
    grid-column: span 2;
  }
}

@media (max-width: 1080px) {
  .page-shell--home .stack-panel {
    min-height: auto;
    padding-bottom: 0;
  }

  .page-shell--home .stack-panel__inner {
    position: relative;
    top: auto;
    min-height: auto;
    transform: none;
    opacity: 1;
    filter: none;
    transition: none;
  }

  .feature-heading {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .feature-tour {
    position: relative;
    top: auto;
    min-height: auto;
    gap: 1rem;
  }

  #product {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-panel,
  .hero-landing__content,
  .purchase-grid,
  .feature-panel,
  .dark-band,
  .why-layout,
  .split-story,
  .faq-shell,
  .purchase-cta,
  .why-shell {
    min-height: auto;
  }
  .support-grid,
  .testimonial-grid,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .dark-band__grid,
  .hero-landing__footer,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-tape {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    clip-path: none;
  }

  .feature-panel {
    position: relative;
    inset: auto;
    height: auto;
    min-height: auto;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(28px);
    z-index: auto !important;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    transition:
      opacity 520ms ease-out,
      transform 560ms cubic-bezier(0.33, 1, 0.68, 1);
  }

  .feature-panel.is-panel-mobile-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  /* On mobile, put the video frame first (top), copy second (bottom) */
  .feature-panel .feature-frame {
    order: -1;
  }

  .feature-showcase,
  .feature-showcase--calm,
  .feature-showcase .feature-scroll {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .purchase-copy,
  .hero-shell,
  .hero-panel,
  .hero-landing__content {
    min-height: auto;
  }

  .hero-landing__screen--primary {
    width: min(72vw, 38rem);
  }

  .hero-window__body {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .broker-marquee__row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.85rem;
  }

  .broker-marquee__label {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "brand toggle action"
      "nav nav nav";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: start;
  }

  .site-nav {
    display: none;
    grid-area: nav;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    justify-self: stretch;
  }

  .site-nav.is-open,
  .site-nav--always-open {
    display: flex;
  }

  .hero-landing__content {
    margin-top: 80px;
  }

  .hero-landing {
    min-height: inherit;
    padding-bottom: 0;
    align-content: start;
  }

  .hero-landing__image {
    bottom: 0;
  }

  .why-shell {
    gap: 0.5rem;
  }

  .hero-shell,
  .purchase-shell {
    border-radius: 24px;
  }

  .hero-landing {
    min-height: auto;
    padding: 1.2rem;
  }

  .header-cta {
    grid-area: action;
  }

  .hero-window {
    min-height: 0;
  }

  .hero-card-grid,
  .metric-row,
  .hero-landing__footer,
  .why-grid,
  .purchase-cta {
    grid-template-columns: 1fr;
  }

  .hero-card--glow {
    grid-column: auto;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-landing__content {
    min-height: 27rem;
    align-items: start;
  }

  .purchase-embedded__mount {
    min-height: 640px;
  }

  .hero-panel {
    gap: 1rem;
  }

  .hero-note {
    max-width: 22rem;
  }

  .hero-landing__screen--primary {
    right: 0.7rem;
    bottom: 5.3rem;
    width: min(82vw, 24rem);
  }

  .hero-landing__screen--secondary {
    left: 0.5rem;
    bottom: 0.9rem;
    width: min(48vw, 14rem);
  }

  .hero-landing__orb--a {
    left: 10%;
    bottom: 22%;
  }

  .hero-landing__orb--b {
    right: 10%;
    bottom: 20%;
  }

  .hero-glow-scene {
    position: relative;
    inset: auto;
    min-height: 15rem;
    margin-top: 1rem;
  }

  .hero-window__body {
    grid-template-columns: 1fr;
  }

  .hero-window__sidebar {
    display: none;
  }

  .hero-window__metrics,
  .hero-window__grid,
  .metric-row,
  .dark-band__grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-window__chart {
    grid-column: auto;
  }

  .broker-logo-image {
    width: calc(4.4rem * var(--broker-logo-width-scale, 1));
    height: calc(2.35rem * var(--broker-logo-height-scale, 1));
  }

  .brand__text {
    font-size: clamp(0.9rem, 4.6vw, 1.04rem);
    letter-spacing: 0.14em;
  }

  .broker-marquee__row {
    padding: 0.8rem;
  }

  .faq-panel {
    width: 100%;
    margin-inline: auto;
  }

  #proof,
  #testimonials,
  #faq {
    min-height: auto;
    display: block;
  }

  .value-card {
    min-height: auto;
  }

  .section {
    padding: 3rem 0;
  }

  #proof {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  h1,
  .display {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-shell--home .stack-panel {
    min-height: auto;
    padding-bottom: 0;
  }

  .page-shell--home .stack-panel__inner {
    position: relative;
    top: auto;
    min-height: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Mini-Install popup ─────────────────────────────── */
.install-trigger-wrap {
  margin-top: 1.4rem;
}

.install-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-install-card {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: min(380px, calc(100vw - 2rem));
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 138, 186, 0.14);
  box-shadow: var(--shadow-xl);
  z-index: 900;
  padding: 1.6rem 1.5rem 1.4rem;
  transform: translate3d(0, 1.6rem, 0) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition:
    transform calc(420ms * var(--motion-scale)) cubic-bezier(0.22, 1, 0.36, 1),
    opacity calc(320ms * var(--motion-scale)) ease;
}

.mini-install-card.is-open {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mini-install-card__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-soft);
  padding: 0.2rem 0.4rem;
}

.mini-install-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 0.4rem;
}

.mini-install-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text);
}

.mini-install-card__body {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin: 0 0 1.1rem;
  line-height: 1.5;
}

.mini-install-card__store-btn {
  text-align: center;
  justify-content: center;
}

.mini-install-card__hint {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

.mini-install-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 31, 57, 0.28);
  z-index: 800;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity calc(280ms * var(--motion-scale)) ease;
}

.mini-install-backdrop.is-open {
  opacity: 1;
}

/* ─── Contact page ───────────────────────────────────── */
.contact-shell {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.contact-intro {
  margin-bottom: 2.2rem;
}

.contact-intro h1 {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.contact-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(247, 250, 255, 0.88)
  );
  border: 1px solid rgba(122, 138, 186, 0.12);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(122, 138, 186, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.9rem 1rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(109, 125, 151, 0.7);
}

/* ==========================================================================
   ISOLATED HERO ANIMATION KILLSWITCH (Mobile Only)
   Only forces visibility on the initial screen assets
   ========================================================================== */
@media (max-width: 767px) {
  /* Only target header and text/video inside the hero container */
  .site-header,
  .section--hero .hero-copy--intro h2,
  .section--hero .hero-copy--intro h3,
  .section--hero .hero-landing__bg--video,
  .section--hero .hero-landing__image {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
  }
}
