:root {
  --black: #050607;
  --header: #090a0c;
  --header-soft: #101216;
  --white: #ffffff;
  --muted: #9b9da3;
  --line: #34373d;
  --lime: #c8ff00;
  --lime-deep: #172007;
  --pink: #f40450;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body:has(.entry-loader:not([hidden])) {
  overflow: hidden;
}

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

.entry-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  pointer-events: all;
  transform: translate3d(0, 0, 0);
  animation: entryPanelExit 980ms cubic-bezier(0.76, 0, 0.24, 1) 2.35s forwards;
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint style;
}

.entry-loader[hidden] {
  display: none;
}

.entry-mark {
  width: clamp(96px, 9.6vw, 177px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 112vh, 0) rotate(-34deg) scale(0.72);
  transform-origin: center 56%;
  animation: entryGenieIntro 1680ms cubic-bezier(0.19, 1, 0.22, 1) 120ms forwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.entry-mark img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  /* PNG ships with a solid black background instead of true alpha; `screen`
     blend mode drops pure black to invisible against any backdrop while
     keeping the neon magenta pixels intact. No re-export needed. */
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.36))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.18));
}

@keyframes entryGenieIntro {
  0% {
    opacity: 0;
    transform: translate3d(0, 112vh, 0) rotate(-34deg) scale(0.72);
  }

  42% {
    opacity: 1;
  }

  72% {
    opacity: 1;
    transform: translate3d(0, -2.8vh, 0) rotate(8deg) scale(1.035);
  }

  86% {
    transform: translate3d(0, 0.65vh, 0) rotate(-2deg) scale(0.992);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes entryPanelExit {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -104%, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 26px);
  min-height: 124px;
  padding: 22px clamp(18px, 2.2vw, 42px);
  background: rgba(8, 9, 11, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(218px, 14.8vw, 306px);
  height: auto;
}

.site-menu {
  display: contents;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  font: inherit;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 28px);
  flex: 0 1 auto;
  min-width: 0;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 20px);
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .active {
  color: var(--lime);
}

.nav-divider {
  width: 2px;
  height: 34px;
  background: var(--line);
  opacity: 0.9;
}

.chrome-link {
  gap: 10px;
}

.chrome-link img {
  width: 32px;
  height: 32px;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.pricing-button,
.login-button,
.signup-button,
.support-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: clamp(14px, 0.92vw, 19px);
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pricing-button:hover,
.login-button:hover,
.signup-button:hover,
.support-button:hover,
.pricing-button:focus-visible,
.login-button:focus-visible,
.signup-button:focus-visible,
.support-button:focus-visible {
  transform: translateY(-1px);
}

.support-button {
  gap: 8px;
  min-width: 102px;
  padding: 0 14px;
  color: #fff;
  background: #5865F2;
  border: 1px solid #5865F2;
}

.support-button:hover,
.support-button:focus-visible {
  background: #4752c4;
  border-color: #4752c4;
}

.support-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.pricing-button {
  position: relative;
  gap: 9px;
  min-width: 104px;
  padding: 0 14px;
  color: #f4f4f4;
  background: #1b1d21;
}

.pricing-button strong {
  position: absolute;
  left: 22px;
  bottom: -16px;
  min-width: 82px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tag-icon,
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tag-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.login-button,
.signup-button {
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 220ms ease,
    filter 160ms ease;
}

/* Shimmer sweep — the same shine as the hero "Sign Up" CTA. */
.login-button::before,
.signup-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 620ms ease;
  pointer-events: none;
}

.login-button:hover::before,
.login-button:focus-visible::before,
.signup-button:hover::before,
.signup-button:focus-visible::before {
  left: 130%;
}

/* Signup — full cool treatment: lime gradient, glow, shine. */
.signup-button {
  min-width: 92px;
  padding: 0 18px;
  color: #0a0d04;
  background: linear-gradient(135deg, #e4ff5a 0%, var(--lime) 48%, #a9e000 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 12px 26px rgba(200, 255, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.signup-button:hover,
.signup-button:focus-visible {
  filter: brightness(1.04);
  box-shadow:
    0 16px 34px rgba(200, 255, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Login — matching "ghost" variant: same shine, subtler fill. */
.login-button {
  min-width: 76px;
  padding: 0 16px;
  color: var(--lime);
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.login-button:hover,
.login-button:focus-visible {
  background: rgba(200, 255, 0, 0.13);
  border-color: rgba(200, 255, 0, 0.5);
  box-shadow:
    0 10px 24px rgba(200, 255, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 124px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(58px, 7vh, 86px) clamp(24px, 5vw, 96px) clamp(66px, 8vh, 98px);
  background:
    radial-gradient(circle at 66% 48%, rgba(79, 47, 98, 0.22), transparent 34%),
    linear-gradient(180deg, #080b0d 0%, #060708 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 80%, transparent 100%);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 77% 40%, rgba(199, 255, 0, 0.12), transparent 18%),
    radial-gradient(circle at 18% 74%, rgba(69, 94, 255, 0.13), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.86) 0%, rgba(3, 4, 5, 0.58) 44%, rgba(3, 4, 5, 0.38) 100%),
    radial-gradient(circle at 62% 44%, rgba(199, 255, 0, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.2) 0%, rgba(4, 5, 6, 0.38) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(1680px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 96px);
}

.hero-copy {
  max-width: 820px;
  text-align: left;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3.6vw, 68px);
  line-height: 1.04;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-genie-glow {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(105deg, #dfff32 0%, #43f1b7 27%, #66b8ff 52%, #c99cff 74%, #ff7272 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 18px rgba(199, 255, 0, 0.32),
    0 0 38px rgba(102, 184, 255, 0.22),
    0 0 58px rgba(255, 114, 114, 0.14);
  filter: saturate(1.18);
  animation: genieTextGlow 4.2s ease-in-out infinite;
}

@keyframes genieTextGlow {
  0%,
  100% {
    background-position: 0% 50%;
    text-shadow:
      0 0 16px rgba(199, 255, 0, 0.28),
      0 0 34px rgba(102, 184, 255, 0.2),
      0 0 54px rgba(255, 114, 114, 0.12);
  }

  45% {
    background-position: 100% 50%;
    text-shadow:
      0 0 22px rgba(67, 241, 183, 0.32),
      0 0 44px rgba(201, 156, 255, 0.26),
      0 0 68px rgba(255, 114, 114, 0.18);
  }

  70% {
    background-position: 64% 50%;
    text-shadow:
      0 0 20px rgba(223, 255, 50, 0.32),
      0 0 42px rgba(102, 184, 255, 0.26),
      0 0 62px rgba(201, 156, 255, 0.16);
  }
}

.hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(20px, 1.45vw, 29px);
  line-height: 1.5;
  font-weight: 430;
}

.hero-copy-short {
  display: none;
}

.hero-proof-strip {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 12, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 830;
  line-height: 1;
}

.hero-proof-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(199, 255, 0, 0.6);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  justify-self: stretch;
  perspective: 1400px;
}

.hero-reel {
  position: relative;
  width: min(100%, 880px);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #05070a;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  /* Black-and-white preview scene; bursts into color once the viewer hits play. */
  filter: grayscale(1) contrast(1.04);
  transition: filter 0.6s ease;
}

.hero-reel.has-started .hero-reel-video {
  filter: none;
}

.video-carousel {
  position: relative;
  min-height: clamp(520px, 60vh, 820px);
  aspect-ratio: 0.94;
  width: min(100%, 820px);
  margin-left: auto;
}

.video-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.video-slot {
  position: absolute;
  width: min(64%, 520px);
  aspect-ratio: 10 / 16;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 0, -120px) scale(0.72);
  transform-origin: center;
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    filter 520ms ease;
  will-change: transform, opacity;
}

.video-slot.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.video-slot.is-left,
.video-slot.is-right {
  z-index: 2;
  opacity: 0.68;
  filter: saturate(0.9) brightness(0.74);
}

.video-slot.is-left {
  transform: translate3d(-47%, 3%, -180px) rotateY(14deg) scale(0.68);
}

.video-slot.is-right {
  transform: translate3d(47%, 3%, -180px) rotateY(-14deg) scale(0.68);
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(22px, 2.2vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  overflow: hidden;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 50% 34%, rgba(199, 255, 0, 0.17), transparent 31%),
    radial-gradient(circle at 52% 74%, rgba(56, 96, 255, 0.12), transparent 36%),
    rgba(10, 11, 13, 0.62);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(199, 255, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  text-align: center;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  pointer-events: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 36%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13px);
  opacity: 0.8;
  pointer-events: none;
}

.video-slot.is-active .video-frame::before {
  border-color: rgba(199, 255, 0, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 36px rgba(199, 255, 0, 0.11);
}

.video-kicker,
.video-frame strong,
.video-caption {
  position: relative;
  z-index: 1;
}

.video-kicker {
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  color: var(--lime);
  letter-spacing: 0.08em;
}

.video-frame strong {
  max-width: 380px;
  font-size: clamp(32px, 3vw, 56px);
  line-height: 1.08;
}

.video-caption {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 650;
}

.video-slot.is-left .video-kicker,
.video-slot.is-right .video-kicker {
  font-size: 13px;
}

.video-slot.is-left .video-frame strong,
.video-slot.is-right .video-frame strong {
  font-size: clamp(22px, 2vw, 34px);
}

.video-slot.is-left .video-caption,
.video-slot.is-right .video-caption {
  display: none;
}

.video-slot:hover,
.video-slot:focus-visible {
  filter: brightness(1.08);
}

.video-sound-button {
  position: absolute;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 5;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 7, 9, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font: inherit;
  font-size: 14px;
  font-weight: 830;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.video-sound-button:hover,
.video-sound-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 255, 0, 0.36);
  background: rgba(11, 14, 16, 0.86);
}

.sound-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sound-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.speaker-shape {
  fill: currentColor;
  stroke: none;
}

.video-sound-button .sound-wave {
  opacity: 0;
}

.video-sound-button.is-unmuted .sound-wave {
  opacity: 1;
}

.video-sound-button.is-unmuted .sound-slash {
  opacity: 0;
}

.primary-cta,
.secondary-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 780;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.primary-cta {
  gap: 11px;
  min-width: 240px;
  padding: 0 22px;
  color: #f8f8f8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(23, 24, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.secondary-cta {
  gap: 12px;
  min-width: 246px;
  padding: 0 24px;
  color: #1c1d1f;
  background:
    linear-gradient(180deg, #fff 0%, rgba(241, 244, 247, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 42px rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.primary-cta:hover,
.secondary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:focus-visible {
  transform: translateY(-1px);
}

.signup-cta {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 820;
  line-height: 1;
  color: #0a0d04;
  background: linear-gradient(135deg, #e4ff5a 0%, var(--lime) 48%, #a9e000 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 18px 42px rgba(200, 255, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 220ms ease, filter 160ms ease;
}

.signup-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 620ms ease;
  pointer-events: none;
}

.signup-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.signup-cta:hover,
.signup-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 52px rgba(200, 255, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.signup-cta:hover::before,
.signup-cta:focus-visible::before {
  left: 130%;
}

.signup-cta:hover svg,
.signup-cta:focus-visible svg {
  transform: translateX(3px);
}

.cta-chrome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-chrome-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.play-icon svg {
  width: 22px;
  height: 22px;
}

.play-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.play-icon path {
  fill: currentColor;
}

.home-offer-section {
  padding: clamp(60px, 5.5vw, 92px) 18px;
  background:
    linear-gradient(180deg, #050607 0%, #050608 100%);
}

.pricing-promo.home-pricing-promo {
  margin-bottom: 0;
  min-height: clamp(258px, 19.2vw, 286px);
}

.promo-plan-button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: clamp(14px, 1.2vw, 22px);
  padding: 0 19px 0 21px;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, #ff1d67 0%, var(--pink) 56%, #b4003b 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 12px 28px rgba(244, 4, 80, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.promo-plan-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.promo-plan-button:hover,
.promo-plan-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 16px 34px rgba(244, 4, 80, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.detection-callout-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 126px;
  padding: clamp(72px, 6.5vw, 112px) 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(199, 255, 0, 0.07), transparent 21%),
    linear-gradient(180deg, #050608 0%, #111315 42%, #050608 100%);
}

.detection-callout-section::before,
.detection-callout-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.detection-callout-section::before {
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.5px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(255, 255, 255, 0.03));
  background-size: 34px 34px, 100% 100%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.detection-callout-section::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.03) 43px 44px, transparent 45px 86px),
    radial-gradient(ellipse at 50% 52%, transparent 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.62) 100%);
  opacity: 0.72;
}

.detection-callout {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.undetectable-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(24px, 2vw, 38px);
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(26, 27, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 56px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(199, 255, 0, 0.06);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 800;
  line-height: 1;
}

.undetectable-pill span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  filter: drop-shadow(0 0 14px rgba(199, 255, 0, 0.45));
}

.undetectable-pill svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.detection-callout h2 {
  margin: 0;
  color: #f8f8f8;
  text-transform: uppercase;
  font-size: clamp(36px, 3.7vw, 60px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 28px rgba(0, 0, 0, 0.32);
}

.detection-callout h2 span {
  display: inline;
}

.detection-callout h2 > span {
  display: block;
}

.detection-title-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 22px);
  white-space: normal;
}

.wembean-word,
.detected-word {
  display: inline-flex !important;
}

.wembean-logo-inline {
  width: clamp(90px, 7vw, 140px);
  height: auto;
  flex: 0 0 auto;
  margin: -0.12em 0 -0.18em;
  filter:
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.09));
}

.detection-callout p {
  max-width: 660px;
  margin: clamp(22px, 1.8vw, 32px) auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  font-weight: 520;
}

.detection-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(28px, 2.4vw, 40px);
}

.detection-action-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 clamp(26px, 2.2vw, 38px);
  border-radius: 14px;
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.detection-action-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.detection-reviews-button {
  color: #050705;
  background:
    linear-gradient(180deg, #dfff36 0%, var(--lime) 58%, #bfff00 100%);
  box-shadow:
    0 22px 50px rgba(199, 255, 0, 0.24),
    0 0 70px rgba(199, 255, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.detection-reviews-button:hover,
.detection-reviews-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 26px 58px rgba(199, 255, 0, 0.3),
    0 0 82px rgba(199, 255, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.detection-discord-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #7a8cff 0%, #5865f2 44%, #3442df 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 22px 54px rgba(88, 101, 242, 0.34),
    0 0 84px rgba(88, 101, 242, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.detection-discord-button::before {
  content: "";
  position: absolute;
  inset: -70% -45%;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.22) 32%, transparent 48%);
  transform: translateX(-45%) rotate(10deg);
  animation: discordSheen 3.4s ease-in-out infinite;
}

.detection-discord-button::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.55;
}

.discord-icon-wrap {
  width: clamp(42px, 3.1vw, 64px);
  height: clamp(42px, 3.1vw, 64px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

.discord-icon-wrap img {
  width: 120%;
  height: 120%;
  display: block;
  object-fit: cover;
}

.detection-discord-button:hover,
.detection-discord-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06) saturate(1.06);
  box-shadow:
    0 28px 62px rgba(88, 101, 242, 0.42),
    0 0 94px rgba(88, 101, 242, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.discord-proof-callout {
  position: relative;
  width: min(100%, 560px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(36px, 2.6vw, 56px) auto 0;
  margin-left: calc(50% + clamp(8px, 2vw, 42px));
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.78);
}

.discord-proof-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(199, 255, 0, 0.045)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(88, 101, 242, 0.2);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.discord-proof-callout p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1vw, 22px);
  line-height: 1.28;
  font-weight: 760;
  text-align: left;
}

.proof-arrow {
  position: absolute;
  left: 0;
  top: -88px;
  width: 106px;
  height: 106px;
  display: block;
  color: #8f9aff;
  filter:
    drop-shadow(0 0 12px rgba(88, 101, 242, 0.62))
    drop-shadow(0 0 22px rgba(199, 255, 0, 0.14));
  animation: proofArrowFloat 2.2s ease-in-out infinite;
}

.proof-arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.proof-arrow-tail,
.proof-arrow-head {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: proofArrowDraw 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.proof-arrow-head {
  stroke-width: 5.5;
  animation-delay: 160ms;
}

@keyframes discordSheen {
  0%,
  46% {
    transform: translateX(-58%) rotate(10deg);
    opacity: 0;
  }

  62% {
    opacity: 1;
  }

  100% {
    transform: translateX(58%) rotate(10deg);
    opacity: 0;
  }
}

@keyframes proofArrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes proofArrowDraw {
  0% {
    stroke-dashoffset: 190;
    opacity: 0;
  }

  18%,
  74% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -190;
    opacity: 0;
  }
}

.memgenie-update {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 39vw, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(84px, 8vw, 150px) 24px;
  background:
    radial-gradient(circle at 48% 50%, rgba(44, 130, 255, 0.24), transparent 21%),
    radial-gradient(circle at 35% 42%, rgba(17, 91, 160, 0.26), transparent 26%),
    linear-gradient(105deg, #0b1a23 0%, #0b1017 47%, #0b0c10 100%);
}

.memgenie-update::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 28% 18%, rgba(70, 229, 255, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(73, 155, 255, 0.08), transparent 34%, rgba(244, 4, 80, 0.05));
}

.update-grid {
  position: absolute;
  inset: -18%;
  z-index: -2;
  opacity: 0;
  background:
    linear-gradient(rgba(92, 192, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 192, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(58deg) scale(1.2) translateY(18%);
}

.update-scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(92, 237, 255, 0.1) 48%, transparent 100%);
  transform: translateY(-115%);
}

.memgenie-update-card {
  position: relative;
  width: min(780px, 100%);
  min-height: 178px;
  display: grid;
  place-items: center;
  text-align: center;
}

.update-lockup {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  filter: blur(10px);
}

.update-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(211, 225, 242, 0.9);
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 840;
  line-height: 1;
  text-shadow: 0 0 18px rgba(84, 196, 255, 0.28);
}

.warning-mark {
  position: relative;
  width: 20px;
  height: 18px;
  display: inline-block;
}

.warning-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #ffd94a, #ffb72e);
  filter: drop-shadow(0 0 9px rgba(255, 205, 70, 0.35));
}

.warning-mark::after {
  content: "!";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  color: #1b1720;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.update-title-shell {
  position: relative;
  min-height: clamp(62px, 4.8vw, 86px);
  display: grid;
  place-items: center;
  padding: 0 clamp(28px, 3vw, 52px);
  overflow: visible;
  background:
    linear-gradient(90deg, transparent 0%, rgba(45, 128, 255, 0.2) 16%, rgba(83, 238, 255, 0.18) 84%, transparent 100%);
  clip-path: inset(0 50% 0 50%);
  box-shadow:
    0 0 0 1px rgba(112, 214, 255, 0),
    0 0 60px rgba(49, 130, 255, 0);
}

.update-title-shell h2 {
  margin: 0;
  background: linear-gradient(90deg, #2f7fff 0%, #46a7ff 38%, #6ff7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(40px, 3.2vw, 62px);
  line-height: 1.08;
  font-weight: 850;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  filter: blur(8px);
  text-shadow: 0 0 22px rgba(74, 188, 255, 0.24);
}

.update-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  border-color: rgba(127, 215, 255, 0.62);
}

.update-corner.top-left {
  left: -18px;
  top: -18px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.update-corner.top-right {
  right: -18px;
  top: -18px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.update-corner.bottom-left {
  left: -18px;
  bottom: -18px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.update-corner.bottom-right {
  right: -18px;
  bottom: -18px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.memgenie-update.is-open .update-grid {
  animation: updateGridOpen 1400ms ease forwards;
}

.memgenie-update.is-open .update-scan {
  animation: updateScanOpen 2100ms cubic-bezier(0.22, 1, 0.36, 1) 240ms forwards;
}

.memgenie-update.is-open .update-lockup {
  animation: updateLockupOpen 900ms cubic-bezier(0.22, 1, 0.36, 1) 560ms forwards;
}

.memgenie-update.is-open .update-title-shell {
  animation: updateShellOpen 1150ms cubic-bezier(0.16, 1, 0.3, 1) 740ms forwards;
}

.memgenie-update.is-open .update-title-shell h2 {
  animation: updateTitleOpen 820ms cubic-bezier(0.22, 1, 0.36, 1) 1180ms forwards;
}

.memgenie-update.is-open .update-corner {
  animation: updateCornerOpen 820ms ease 1080ms forwards;
}

@keyframes updateGridOpen {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateX(58deg) scale(1.2) translateY(18%);
  }

  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(58deg) scale(1) translateY(5%);
  }
}

@keyframes updateScanOpen {
  0% {
    opacity: 0;
    transform: translateY(-115%);
  }

  18%,
  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(115%);
  }
}

@keyframes updateLockupOpen {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes updateShellOpen {
  0% {
    clip-path: inset(0 50% 0 50%);
    box-shadow:
      0 0 0 1px rgba(112, 214, 255, 0),
      0 0 60px rgba(49, 130, 255, 0);
  }

  62% {
    clip-path: inset(0 -4% 0 -4%);
  }

  100% {
    clip-path: inset(0 0 0 0);
    box-shadow:
      0 0 0 1px rgba(112, 214, 255, 0.08),
      0 0 70px rgba(49, 130, 255, 0.22);
  }
}

@keyframes updateTitleOpen {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes updateCornerOpen {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.chrome-store-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(480px, 42vw, 640px);
  display: grid;
  place-items: center;
  padding: clamp(72px, 6.5vw, 112px) 24px;
  background: #050707;
}

.chrome-store-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.105) 1px, transparent 1.35px);
  background-size: 24px 24px;
  opacity: 0.34;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.84) 48%, transparent 100%);
  pointer-events: none;
}

.chrome-store-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 80%, rgba(248, 249, 248, 0.45) 92%, #f8f9f8 100%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.34) 68%, rgba(0, 0, 0, 0.78) 86%, #030405 100%),
    radial-gradient(circle at 31% 86%, rgba(16, 151, 116, 0.4), transparent 30%),
    radial-gradient(circle at 58% 70%, rgba(45, 117, 255, 0.34), transparent 38%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.88) 0%, rgba(5, 10, 10, 0.58) 46%, rgba(2, 3, 4, 0.72) 76%, #030405 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 50%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.chrome-store-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: brightness(0.76) saturate(1.08) contrast(1.06);
  transform: scale(1.01);
}

.chrome-store-copy {
  position: relative;
  z-index: 3;
  width: min(1050px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.availability-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 20px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 610;
  line-height: 1;
}

.chrome-store-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chrome-store-copy h2 span {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 24px rgba(200, 255, 0, 0.22);
}

.chrome-store-copy p {
  max-width: 820px;
  margin: clamp(26px, 2.2vw, 40px) 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(19px, 1.28vw, 26px);
  line-height: 1.45;
  font-weight: 520;
}

.chrome-store-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: clamp(42px, 4.3vw, 72px);
  flex-wrap: wrap;
}

.chrome-store-cta {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 34px;
  border-radius: 16px;
  color: #050705;
  background: var(--lime);
  box-shadow:
    0 20px 52px rgba(113, 255, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  font-size: clamp(21px, 1.38vw, 27px);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, filter 160ms ease;
}

.chrome-store-cta:hover,
.chrome-store-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.download-icon,
.chrome-store-icon,
.chrome-cta-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chrome-cta-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.14);
}

.chrome-cta-logo img {
  display: block;
  width: 24px;
  height: 24px;
}

.download-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.chrome-store-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.chrome-store-icon img {
  display: block;
  width: 37px;
  height: 37px;
}

.chrome-store-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050607;
}

.workflow-showcase {
  padding: clamp(72px, 6.5vw, 112px) 24px;
  color: #111418;
  background: #f7f8f7;
}

.workflow-inner {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.workflow-inner h2 {
  margin: 0 0 clamp(44px, 4.5vw, 68px);
  color: #111418;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 7vw, 130px);
  margin-top: clamp(84px, 8vw, 148px);
}

.workflow-row:first-of-type {
  margin-top: 0;
}

.workflow-row.is-reversed {
  grid-template-columns: minmax(520px, 1.18fr) minmax(280px, 0.82fr);
}

.workflow-row.is-reversed .workflow-copy {
  order: 2;
}

.workflow-row.is-reversed .workflow-media {
  order: 1;
}

.workflow-copy {
  max-width: 560px;
  justify-self: center;
}

.workflow-copy h3 {
  margin: 0 0 20px;
  color: #111418;
  font-size: clamp(34px, 2.55vw, 54px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-copy p {
  margin: 0;
  color: rgba(17, 20, 24, 0.84);
  font-size: clamp(20px, 1.25vw, 27px);
  line-height: 1.38;
  font-weight: 500;
}

.workflow-media {
  position: relative;
  min-height: clamp(350px, 28vw, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(rgba(10, 14, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 18, 0.045) 1px, transparent 1px),
    #f0f1f0;
  background-size: 26px 26px;
}

.workflow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 46%, rgba(0, 0, 0, 0.035));
  pointer-events: none;
}

.workflow-video-card {
  position: relative;
  z-index: 1;
  width: min(74%, 640px);
  min-height: clamp(300px, 25vw, 450px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 10%, rgba(199, 255, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #111418, #090b0d);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.24);
}

.workflow-video-screen {
  height: clamp(154px, 12.8vw, 230px);
  margin: 0 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(135deg, rgba(61, 135, 255, 0.28), rgba(199, 255, 0, 0.1)),
    radial-gradient(circle at 62% 40%, rgba(255, 255, 255, 0.2), transparent 18%),
    #17202c;
}

.workflow-video-screen span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.workflow-tools {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 24px 0;
  flex-wrap: wrap;
}

.workflow-tools span,
.workflow-grid-top span,
.workflow-grid-top strong {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 800;
}

.workflow-prompt {
  min-height: 88px;
  margin: 28px 24px 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.055);
  font-size: 17px;
  font-weight: 700;
}

.workflow-prompt strong {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #050705;
  background: var(--lime);
  font-size: 23px;
  line-height: 1;
}

.workflow-video-card.image-grid {
  width: min(72%, 600px);
  min-height: clamp(330px, 27vw, 480px);
  padding: 24px;
}

.workflow-grid-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.workflow-grid-top strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.workflow-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-image-grid span {
  min-height: clamp(116px, 9.5vw, 168px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(88, 136, 255, 0.44), rgba(199, 255, 0, 0.16)),
    #1c2329;
}

.workflow-image-grid span:nth-child(2) {
  transform: rotate(-4deg) translate(12px, -10px);
  border: 2px solid rgba(199, 255, 0, 0.72);
}

.workflow-image-grid span:nth-child(3) {
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(244, 4, 80, 0.28), rgba(86, 177, 255, 0.18)),
    #1b2027;
}

.workflow-video-card.timeline-card {
  padding-bottom: 24px;
}

.workflow-timeline {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1.16fr;
  gap: 10px;
  margin: 30px 24px 0;
}

.workflow-timeline span {
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-timeline span:nth-child(2) {
  background: rgba(199, 255, 0, 0.26);
}

.workflow-showcase[data-workflow-showcase] {
  position: relative;
  isolation: isolate;
  padding: clamp(96px, 9vw, 168px) clamp(24px, 4vw, 72px);
  overflow: visible;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 255, 0, 0.08), transparent 24%),
    radial-gradient(circle at 24% 42%, rgba(53, 112, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #030405 0%, #060708 48%, #030405 100%);
}

.workflow-showcase[data-workflow-showcase]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.68) 0%, rgba(3, 4, 5, 0.44) 34%, rgba(3, 4, 5, 0.6) 78%, #030405 100%),
    radial-gradient(circle at 70% 28%, rgba(199, 255, 0, 0.12), transparent 30%),
    radial-gradient(circle at 25% 60%, rgba(53, 112, 255, 0.16), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, auto, auto, 72px 72px, 72px 72px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
  pointer-events: none;
}

.workflow-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: brightness(0.76) saturate(1.16) contrast(1.04);
  pointer-events: none;
}

.workflow-showcase[data-workflow-showcase] .workflow-inner {
  position: relative;
  z-index: 2;
  width: min(1520px, 100%);
  margin: 0 auto;
}

.workflow-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #ffd172;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 850;
}

.workflow-eyebrow span {
  color: var(--lime);
}

.workflow-showcase[data-workflow-showcase] .workflow-inner h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 92px);
  line-height: 0.98;
  font-weight: 920;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  text-wrap: balance;
}

.workflow-lede {
  max-width: 710px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.45;
  font-weight: 520;
}

/* Clean static feature grid — replaces the old scroll-driven sticky stepper. */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.8vw, 30px);
  margin-top: clamp(48px, 4.5vw, 76px);
}

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.32);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 255, 0, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 36px 84px rgba(0, 0, 0, 0.44);
}

.feature-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0a0e16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card-media--auto {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 139, 233, 0.34), transparent 46%),
    radial-gradient(circle at 74% 76%, rgba(66, 105, 255, 0.32), transparent 48%),
    linear-gradient(145deg, #2a1140 0%, #161a3a 52%, #0a0e1a 100%);
}

.feature-auto-orb {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 0, 0.3), transparent 68%);
  filter: blur(6px);
  animation: featureAutoPulse 3.6s ease-in-out infinite;
}

.feature-auto-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 10, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 750;
}

.feature-auto-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(199, 255, 0, 0.8);
  animation: featureAutoPulse 1.5s ease-in-out infinite;
}

@keyframes featureAutoPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.68; }
  50% { transform: scale(1.06); opacity: 1; }
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 1.8vw, 30px);
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #080a0b;
  background: var(--lime);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(199, 255, 0, 0.2);
}

.feature-card-label {
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-card-label--new {
  color: #0a0d04;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lime);
  letter-spacing: 0.08em;
}

.feature-card-body h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(23px, 1.65vw, 29px);
  line-height: 1.12;
  font-weight: 880;
  letter-spacing: -0.01em;
  text-transform: none;
}

.feature-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
  font-weight: 500;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  width: fit-content;
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
  transition: gap 160ms ease, color 160ms ease;
}

.feature-card-link span {
  transition: transform 160ms ease;
}

.feature-card:hover .feature-card-link {
  gap: 10px;
}

.feature-card-link:hover span,
.feature-card-link:focus-visible span {
  transform: translateX(3px);
}

@media (max-width: 920px) {
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-auto-orb,
  .feature-auto-dot {
    animation: none;
  }
}

.workflow-sticky-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(440px, 1fr);
  align-items: start;
  gap: clamp(48px, 5vw, 88px);
  margin-top: clamp(36px, 3.5vw, 56px);
}

.workflow-panel-list {
  display: grid;
  gap: clamp(34px, 6vh, 76px);
  padding-bottom: 12vh;
}

.workflow-step {
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 3vw, 48px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0.4;
  transform: translateY(36px) scale(0.96);
  transition:
    opacity 360ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.workflow-step.is-active {
  border-color: rgba(199, 255, 0, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(199, 255, 0, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 80px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workflow-step-number {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #080a0b;
  background: var(--lime);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(199, 255, 0, 0.18);
}

.workflow-step-label {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-step-copy h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 3.25vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.workflow-step-copy p:not(.workflow-step-label) {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.5;
  font-weight: 500;
}

.workflow-step-copy a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 21px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.workflow-step-copy a:hover,
.workflow-step-copy a:focus-visible {
  transform: translateY(-1px);
  background: rgba(199, 255, 0, 0.14);
  border-color: rgba(199, 255, 0, 0.26);
}

.workflow-visual-sticky {
  position: sticky;
  top: clamp(96px, 11vh, 142px);
  align-self: start;
  height: min(60vh, 520px);
  min-height: min(60vh, 520px);
  display: grid;
  place-items: center;
}

.workflow-visual-shell {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 4/3;
  border-radius: 28px;
  transform-style: preserve-3d;
}

.workflow-visual-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111522;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  filter: blur(12px) saturate(0.8);
  transform: translate3d(0, 38px, -80px) scale(0.94) rotateX(3deg);
  transition:
    opacity 520ms ease,
    filter 620ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.workflow-visual-card.is-active {
  z-index: 2;
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
}

.workflow-feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-gradient {
  position: absolute;
  inset: 0;
}

.accuracy-card .visual-gradient {
  background:
    radial-gradient(circle at 30% 24%, rgba(199, 255, 0, 0.9), transparent 22%),
    radial-gradient(circle at 77% 68%, rgba(46, 145, 255, 0.9), transparent 34%),
    linear-gradient(135deg, #151c10 0%, #143720 42%, #071117 100%);
}

.delay-card .visual-gradient {
  background:
    radial-gradient(circle at 30% 18%, rgba(239, 227, 107, 0.95), transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(66, 105, 255, 0.95), transparent 36%),
    linear-gradient(135deg, #836dff 0%, #1d43ba 54%, #0c1120 100%);
}

.typing-card .visual-gradient {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 139, 233, 0.95), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(40, 67, 155, 0.95), transparent 34%),
    linear-gradient(145deg, #ff7f48 0%, #f675db 45%, #131737 100%);
}

.membean-window,
.delay-console,
.typing-console {
  position: relative;
  z-index: 1;
  width: min(78%, 560px);
  padding: clamp(22px, 2.5vw, 34px);
  border-radius: 30px;
  background: rgba(7, 12, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.window-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.accuracy-meter {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.accuracy-meter span,
.answer-choice small,
.delay-row span,
.typing-line span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accuracy-meter strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.94;
}

.accuracy-meter div {
  height: 10px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.accuracy-meter div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.answer-choice {
  min-height: 70px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.answer-choice.is-selected {
  outline: 2px solid rgba(199, 255, 0, 0.55);
  background: rgba(199, 255, 0, 0.12);
}

.answer-choice > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #071009;
  background: #fff;
  font-weight: 950;
}

.answer-choice strong {
  font-size: 20px;
}

.delay-console {
  display: grid;
  gap: 14px;
}

.delay-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.delay-row strong {
  color: var(--lime);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.delay-wave {
  height: 112px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.delay-wave span {
  width: 14%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lime), rgba(199, 255, 0, 0.18));
}

.delay-wave span:nth-child(1) { height: 42%; }
.delay-wave span:nth-child(2) { height: 70%; }
.delay-wave span:nth-child(3) { height: 54%; }
.delay-wave span:nth-child(4) { height: 88%; }
.delay-wave span:nth-child(5) { height: 48%; }

.typing-line {
  min-height: 112px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.typing-line strong {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.typing-line strong::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 7%;
  width: 3px;
  height: 88%;
  border-radius: 999px;
  background: var(--lime);
  animation: caretBlink 920ms steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.typing-fix {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #071009;
  background: var(--lime);
  font-weight: 900;
}

.keyboard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.keyboard-grid span {
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.13);
}

@media (max-width: 1080px) {
  .workflow-showcase[data-workflow-showcase] {
    padding: clamp(64px, 8vw, 96px) 24px;
  }

  .workflow-showcase[data-workflow-showcase] .workflow-inner h2 {
    font-size: clamp(32px, 5vw, 48px);
  }

  /* Flatten the 2-column layout into a single column, then interleave
     each visual-card right under its matching workflow-step via order. */
  .workflow-sticky-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }

  .workflow-panel-list,
  .workflow-visual-sticky,
  .workflow-visual-shell {
    display: contents;
  }

  .workflow-step[data-workflow-step="0"] { order: 1; }
  .workflow-visual-card[data-workflow-visual="0"] { order: 2; }
  .workflow-step[data-workflow-step="1"] { order: 3; }
  .workflow-visual-card[data-workflow-visual="1"] { order: 4; }
  .workflow-step[data-workflow-step="2"] { order: 5; }
  .workflow-visual-card[data-workflow-visual="2"] { order: 6; }

  /* Each card is no longer absolutely stacked — they each render in place.
     Use [data-workflow-visual] to match specificity of .is-active so source
     order wins, ensuring all three cards stay visible on mobile. */
  .workflow-visual-card[data-workflow-visual] {
    position: relative;
    inset: auto;
    width: min(100%, 560px);
    aspect-ratio: 1.4;
    margin: 0 auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .workflow-step {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .workflow-step {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .workflow-showcase[data-workflow-showcase] {
    padding: 68px 16px 74px;
  }

  .workflow-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .workflow-showcase[data-workflow-showcase] .workflow-inner h2 {
    max-width: 11ch;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .workflow-lede {
    max-width: 30ch;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .workflow-sticky-layout {
    gap: 24px;
    margin-top: 36px;
  }

  .workflow-visual-card[data-workflow-visual] {
    width: 100%;
    aspect-ratio: 1.02;
    border-radius: 22px;
  }

  .workflow-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
  }

  .workflow-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 12px;
  }

  .workflow-step-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(27px, 7.8vw, 36px);
  }

  .workflow-step-copy p:not(.workflow-step-label) {
    font-size: 15px;
    line-height: 1.45;
  }

  .workflow-step-copy a {
    min-height: 43px;
    margin-top: 22px;
    padding: 0 16px;
    font-size: 14px;
  }

  .membean-window,
  .delay-console,
  .typing-console {
    width: 85%;
    padding: 16px;
    border-radius: 22px;
  }

  .window-top {
    margin-bottom: 14px;
  }

  .accuracy-meter {
    padding: 14px;
    border-radius: 17px;
  }

  .accuracy-meter strong {
    font-size: 42px;
  }

  .answer-choice {
    min-height: 52px;
    grid-template-columns: 30px 1fr;
    padding: 0 12px;
    border-radius: 15px;
  }

  .answer-choice > span {
    width: 28px;
    height: 28px;
  }

  .answer-choice strong {
    font-size: 15px;
  }

  .answer-choice small {
    display: none;
  }

  .delay-row {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 15px;
  }

  .delay-row strong {
    font-size: 26px;
  }

  .delay-wave {
    height: 76px;
    gap: 8px;
    border-radius: 16px;
  }

  .typing-line {
    min-height: 88px;
    padding: 17px;
    border-radius: 18px;
  }

  .typing-line strong {
    font-size: 28px;
  }

  .typing-fix {
    padding: 12px;
    border-radius: 14px;
    font-size: 13px;
  }

  .keyboard-grid {
    gap: 7px;
  }

  .keyboard-grid span {
    height: 24px;
    border-radius: 8px;
  }
}

.review-entry-transition {
  --transition-bg-opacity: 0;
  --transition-card-opacity: 0;
  --transition-card-y: 120px;
  --transition-card-scale: 0.84;
  --transition-circle-size: 7%;
  --transition-grid-opacity: 0.58;
  --transition-grid-scale: 1;
  --transition-grid-y: 0px;
  --transition-glow-opacity: 0.26;
  --transition-rings-opacity: 1;
  --transition-rings-scale: 0.72;
  --transition-rings-rotate: 0deg;
  --transition-wash-blur: 0px;
  position: relative;
  z-index: 3;
  height: 150vh;
  margin-top: -1px;
  overflow: visible;
  isolation: isolate;
  background: #030405;
}

.review-entry-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 54%, rgba(199, 255, 0, 0.09), transparent 18%),
    radial-gradient(circle at 50% 54%, rgba(59, 129, 255, 0.13), transparent 28%),
    #030405;
}

.review-entry-sticky::before,
.review-entry-sticky::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.review-entry-sticky::before {
  inset: -18%;
  z-index: 1;
  opacity: var(--transition-glow-opacity);
  background:
    radial-gradient(circle at 50% 54%, rgba(199, 255, 0, 0.28), transparent 18%),
    conic-gradient(from 0deg at 50% 54%, transparent 0deg, rgba(199, 255, 0, 0.18) 13deg, transparent 28deg, transparent 54deg, rgba(64, 156, 255, 0.14) 70deg, transparent 92deg, transparent 360deg);
  filter: blur(1px);
  transform: scale(var(--transition-rings-scale)) rotate(var(--transition-rings-rotate));
}

.review-entry-sticky::after {
  inset: auto 0 -2px;
  z-index: 5;
  height: 24vh;
  opacity: var(--transition-bg-opacity);
  background: linear-gradient(180deg, rgba(248, 249, 248, 0), #f8f9f8 74%);
}

.review-entry-grid {
  position: absolute;
  inset: -30% -16%;
  z-index: 1;
  opacity: var(--transition-grid-opacity);
  background:
    linear-gradient(rgba(199, 255, 0, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 255, 0, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 50% 54%, transparent 0%, rgba(3, 4, 5, 0.22) 34%, rgba(3, 4, 5, 0.92) 72%);
  background-size: 76px 76px, 76px 76px, auto;
  transform: perspective(900px) rotateX(62deg) translate3d(0, var(--transition-grid-y), 0) scale(var(--transition-grid-scale));
  transform-origin: center 58%;
}

.review-entry-lightwash {
  position: absolute;
  inset: -14%;
  z-index: 2;
  opacity: var(--transition-bg-opacity);
  /* Soft, full-bleed dissolve to the reviews background colour — no hard
     clip-path circle edge, so the dark-to-light reveal feels fluid.
     At full opacity this is exactly #f8f9f8, giving a seamless handoff. */
  background:
    radial-gradient(circle at 50% 46%, #ffffff, rgba(248, 249, 248, 0.94) 56%, #f8f9f8 100%);
  filter: blur(calc(10px + var(--transition-wash-blur)));
}

.review-entry-rings {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  opacity: var(--transition-rings-opacity);
  transform: scale(var(--transition-rings-scale)) rotate(var(--transition-rings-rotate));
  transform-origin: center;
  pointer-events: none;
}

.review-entry-rings span {
  grid-area: 1 / 1;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(199, 255, 0, 0.34);
  box-shadow:
    0 0 34px rgba(199, 255, 0, 0.12),
    inset 0 0 34px rgba(199, 255, 0, 0.06);
}

.review-entry-rings span:nth-child(2) {
  width: min(62vw, 820px);
  border-color: rgba(72, 155, 255, 0.22);
}

.review-entry-rings span:nth-child(3) {
  width: min(84vw, 1120px);
  border-color: rgba(255, 255, 255, 0.13);
}

.review-entry-card {
  position: relative;
  z-index: 4;
  width: min(92vw, 620px);
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px;
  color: #101317;
  background:
    radial-gradient(circle at 92% 12%, rgba(199, 255, 0, 0.32), transparent 28%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 19, 23, 0.08);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.28),
    0 0 0 10px rgba(255, 255, 255, 0.08);
  opacity: var(--transition-card-opacity);
  transform: translate3d(0, var(--transition-card-y), 0) scale(var(--transition-card-scale));
  transform-origin: center;
}

.review-entry-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-entry-card span {
  color: #101317;
  font-size: 17px;
  letter-spacing: 0.22em;
}

.review-entry-card small {
  color: rgba(16, 19, 23, 0.56);
  font-size: 13px;
  font-weight: 930;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-entry-card strong {
  display: block;
  color: #101317;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.98;
  font-weight: 940;
  letter-spacing: 0;
  text-wrap: balance;
}

.reviews-showcase {
  --reviews-opacity: 1;
  --reviews-rise: 0px;
  --reviews-card-rise: 0px;
  --reviews-progress-rise: 0px;
  --reviews-trust-rise: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(72px, 6.5vw, 112px) clamp(18px, 4vw, 64px);
  color: #101317;
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 255, 0, 0.32), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(35, 109, 255, 0.17), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(244, 4, 80, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f9f8 0%, #f1f3f1 100%);
}

.reviews-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background:
    linear-gradient(rgba(10, 13, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 16, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 36%, #000 0%, transparent 72%);
}

.reviews-showcase::after {
  content: "";
  position: absolute;
  top: 22%;
  right: -12%;
  z-index: -1;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(199, 255, 0, 0.28), rgba(199, 255, 0, 0.06) 36%, transparent 68%);
  filter: blur(10px);
  opacity: 0.8;
}

.reviews-header {
  width: min(1420px, 100%);
  margin: 0 auto clamp(48px, 5vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) auto;
  align-items: end;
  gap: 34px;
  opacity: var(--reviews-opacity);
  transform: translate3d(0, var(--reviews-rise), 0);
  transition: opacity 180ms linear, transform 180ms linear;
  will-change: opacity, transform;
}

.reviews-kicker {
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #111418;
  background: rgba(199, 255, 0, 0.9);
  font-size: 13px;
  font-weight: 930;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-header h2 {
  max-width: 780px;
  margin: 0;
  color: #101317;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.02;
  font-weight: 940;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.reviews-header p:not(.reviews-kicker) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(16, 19, 23, 0.58);
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.45;
  font-weight: 520;
}

.review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.review-stats div {
  min-width: 132px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 19, 23, 0.06);
  box-shadow: 0 18px 42px rgba(10, 14, 18, 0.06);
}

.review-stats strong {
  display: block;
  color: #101317;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.review-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(16, 19, 23, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.chrome-store-review-cta {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border-radius: 15px;
  color: #050705;
  background: var(--lime);
  border: 1px solid rgba(5, 7, 5, 0.06);
  box-shadow:
    0 20px 42px rgba(108, 134, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.chrome-store-review-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -44%;
  width: 36%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: chromeCtaSheen 3.8s ease-in-out infinite;
}

@keyframes chromeCtaSheen {
  0%, 42% {
    left: -44%;
  }

  72%, 100% {
    left: 112%;
  }
}

.chrome-store-review-cta:hover,
.chrome-store-review-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 24px 50px rgba(108, 134, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.chrome-store-review-cta img {
  width: 28px;
  height: 28px;
  display: block;
}

.review-arrows {
  display: flex;
  gap: 12px;
}

.review-arrows button {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: rgba(16, 19, 23, 0.58);
  background: rgba(16, 19, 23, 0.06);
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.review-arrows button:hover,
.review-arrows button:focus-visible {
  transform: translateY(-1px);
  color: #101317;
  background: rgba(199, 255, 0, 0.58);
}

.reviews-carousel {
  width: min(1540px, 100%);
  margin: 0 auto;
  opacity: var(--reviews-opacity);
  transform: translate3d(0, var(--reviews-card-rise), 0);
  transition: opacity 180ms linear, transform 180ms linear;
  will-change: opacity, transform;
}

.reviews-viewport {
  overflow: hidden;
  padding: 18px 6px 26px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: #eef0ef;
  border: 1px solid rgba(16, 19, 23, 0.06);
  box-shadow:
    inset 0 0 0 4px rgba(16, 19, 23, 0.035),
    0 28px 76px rgba(10, 14, 18, 0.08);
  transform: translateY(0) scale(1);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    border-color 360ms ease,
    background 360ms ease;
}

.review-card[aria-current="true"] {
  border-color: rgba(199, 255, 0, 0.56);
  background: linear-gradient(180deg, rgba(199, 255, 0, 0.16), #eef0ef);
  box-shadow:
    inset 0 0 0 4px rgba(199, 255, 0, 0.2),
    0 34px 92px rgba(73, 92, 0, 0.18);
  transform: translateY(-12px) scale(1.018);
}

.review-card-main {
  position: relative;
  flex: 1;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.review-card-main::before {
  content: "“";
  position: absolute;
  right: 24px;
  bottom: -28px;
  color: rgba(16, 19, 23, 0.045);
  font-size: 150px;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card-top {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.review-card h3 {
  margin: 0;
  color: #15191e;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.review-stars {
  color: #111418;
  font-size: 18px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-shadow: 0 6px 18px rgba(199, 255, 0, 0.24);
}

.review-card-main p {
  margin: clamp(34px, 4vw, 62px) 0 0;
  color: rgba(16, 19, 23, 0.88);
  font-size: clamp(18px, 1.15vw, 24px);
  line-height: 1.36;
  font-weight: 580;
}

.review-author {
  min-height: 82px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 4px 14px;
  padding: 0 26px;
}

.review-author span,
.review-avatar-stack span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #101317;
  font-size: 12px;
  font-weight: 950;
}

.review-author strong {
  color: #15191e;
  font-size: 18px;
  font-weight: 820;
}

.review-author small {
  grid-column: 2;
  margin-top: -12px;
  color: rgba(16, 19, 23, 0.48);
  font-size: 12px;
  font-weight: 780;
}

.reviews-progress {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 19, 23, 0.06);
  box-shadow: 0 16px 42px rgba(10, 14, 18, 0.07);
  opacity: var(--reviews-opacity);
  transform: translate3d(0, var(--reviews-progress-rise), 0);
  transition: opacity 180ms linear, transform 180ms linear;
}

.reviews-progress button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 19, 23, 0.18);
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease;
}

.reviews-progress button.is-active {
  width: 34px;
  background: #101317;
}

.reviews-trust {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 38px auto 0;
  color: rgba(16, 19, 23, 0.82);
  font-size: 17px;
  font-weight: 740;
  opacity: var(--reviews-opacity);
  transform: translate3d(0, var(--reviews-trust-rise), 0);
  transition: opacity 180ms linear, transform 180ms linear;
}

.review-avatar-stack {
  display: flex;
}

.review-avatar-stack span {
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border: 2px solid #f1f3f1;
  background: #101317;
}

.review-avatar-stack span:first-child {
  margin-left: 0;
  background: #2c6cff;
}

.review-avatar-stack span:nth-child(2) {
  background: #f40450;
}

.review-avatar-stack span:nth-child(3) {
  background: #101317;
}

.reviews-trust p {
  margin: 0;
}

@media (max-width: 900px) {
  .review-entry-transition {
    height: 130vh;
  }

  .review-entry-grid {
    inset: -26% -44%;
    background-size: 58px 58px, 58px 58px, auto;
  }

  .review-entry-rings span {
    width: min(72vw, 520px);
  }

  .review-entry-rings span:nth-child(2) {
    width: min(94vw, 680px);
  }

  .review-entry-rings span:nth-child(3) {
    width: 124vw;
  }
}

@media (max-width: 720px) {
  .review-entry-transition {
    height: 115vh;
  }

  .review-entry-sticky::after {
    height: 32vh;
  }

  .review-entry-card {
    width: min(90vw, 380px);
    min-height: 210px;
    gap: 18px;
    padding: 26px;
    border-radius: 26px;
    justify-items: center;
    text-align: center;
  }

  .review-entry-card div {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .review-entry-card span {
    font-size: 13px;
  }

  .review-entry-card small {
    font-size: 11px;
  }

  .review-entry-card strong {
    font-size: clamp(32px, 10vw, 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-entry-transition {
    height: 34vh;
  }

  .review-entry-sticky {
    position: relative;
    height: 34vh;
  }

  .review-entry-lightwash {
    opacity: 1;
    clip-path: circle(120% at 50% 54%);
  }

  .review-entry-rings,
  .review-entry-card,
  .review-entry-grid {
    display: none;
  }
}

@media (max-width: 1180px) {
  .reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 720px) {
  .reviews-showcase {
    padding: 104px 14px 76px;
  }

  .reviews-header {
    margin-bottom: 32px;
    gap: 24px;
  }

  .reviews-header h2 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.02;
  }

  .reviews-header p:not(.reviews-kicker) {
    margin-top: 16px;
    font-size: 15px;
  }

  .review-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  .review-stats div {
    min-width: 0;
    padding: 13px 15px;
  }

  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .chrome-store-review-cta {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .review-arrows {
    justify-content: center;
  }

  .review-arrows button {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 330px;
    border-radius: 22px;
  }

  .review-card[aria-current="true"] {
    transform: translateY(-6px) scale(1.006);
  }

  .review-card-main {
    padding: 22px;
    border-radius: 20px;
  }

  .review-card-top {
    min-height: 54px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-stars {
    font-size: 15px;
  }

  .review-card-main p {
    margin-top: 28px;
    font-size: 17px;
  }

  .review-author {
    min-height: 74px;
    padding: 0 20px;
  }

  .reviews-progress {
    margin-top: 14px;
  }

  .reviews-trust {
    width: min(100%, 330px);
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
}

.site-footer {
  color: #071006;
  background: #000;
}

.footer-lime {
  min-height: clamp(600px, 54vw, 860px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(60px, 7vw, 118px);
  padding: clamp(36px, 3.4vw, 58px) clamp(24px, 4.4vw, 74px) clamp(30px, 2.8vw, 48px);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #d6ff37 0%, #caff19 48%, #dfff42 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.03fr) repeat(4, minmax(142px, 0.72fr));
  gap: clamp(34px, 4.8vw, 96px);
  align-items: start;
}

.footer-brandline p {
  max-width: 420px;
  margin: 0;
  color: #061006;
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: rgba(7, 16, 6, 0.48);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(7, 16, 6, 0.94);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  opacity: 0.62;
  transform: translateX(3px);
}

.footer-lime-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: rgba(7, 16, 6, 0.92);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 760;
}

.footer-lime-bottom p {
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
}

.footer-socials a {
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 0.62;
  transform: translateY(-2px);
}

.footer-black {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(24px, 4.4vw, 74px);
  color: rgba(255, 255, 255, 0.48);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
}

.footer-black p {
  margin: 0;
}

.footer-black nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-black a {
  transition: color 160ms ease;
}

.footer-black a:hover,
.footer-black a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px 42px;
  }

  .footer-brandline {
    grid-column: 1 / -1;
  }

  .footer-brandline p {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .footer-lime {
    min-height: 0;
    gap: 46px;
    padding: 34px 18px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brandline p {
    font-size: clamp(28px, 9.5vw, 42px);
    line-height: 1.08;
  }

  .footer-column {
    gap: 11px;
  }

  .footer-column h2 {
    font-size: 14px;
  }

  .footer-column a {
    font-size: 14px;
    line-height: 1.22;
  }

  .footer-lime-bottom,
  .footer-black {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials,
  .footer-black nav {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .footer-black {
    padding: 20px 18px 24px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column a {
    width: 100%;
  }
}

.hack-page {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, #050607 0%, #090b10 44%, #050607 100%);
}

.hack-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 132px) 24px clamp(68px, 7vw, 120px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hack-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
}

.hack-hero::before,
.hack-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hack-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.76) 45%, rgba(5, 6, 7, 0.46) 100%),
    radial-gradient(circle at 82% 40%, rgba(199, 255, 0, 0.18), transparent 28%);
}

.hack-hero::after {
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.17;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

.hack-hero-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hack-hero-copy {
  max-width: 800px;
}

.hack-hero-copy .hack-eyebrow {
  margin-inline: auto;
}

.hack-eyebrow,
.hack-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 15px 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(199, 255, 0, 0.26);
  background:
    linear-gradient(180deg, rgba(199, 255, 0, 0.10), rgba(199, 255, 0, 0.03));
  color: var(--lime);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hack-eyebrow::before,
.hack-section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px 1px rgba(199, 255, 0, 0.85);
}

.hack-hero-copy h1 {
  margin: 0 auto;
  max-width: 15ch;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hack-hero-copy > p:not(.hack-eyebrow) {
  max-width: 600px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}

.hack-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.hack-status-panel {
  position: relative;
  min-height: 490px;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(199, 255, 0, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(12, 15, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 42px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(199, 255, 0, 0.09);
  backdrop-filter: blur(16px);
}

.hack-status-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  pointer-events: none;
}

.hack-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 900;
}

.hack-panel-top img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
}

.hack-panel-meter {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding: 24px;
  border-radius: 22px;
  color: #071006;
  background: var(--lime);
  box-shadow: 0 22px 52px rgba(199, 255, 0, 0.18);
}

.hack-panel-meter span,
.hack-panel-meter strong {
  display: block;
}

.hack-panel-meter span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}

.hack-panel-meter strong {
  margin-top: 8px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.95;
  font-weight: 950;
}

.hack-panel-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.hack-panel-lines span {
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(199, 255, 0, 0.7), rgba(255, 255, 255, 0.16));
}

.hack-panel-lines span:nth-child(2) {
  width: 78%;
}

.hack-panel-lines span:nth-child(3) {
  width: 58%;
}

.hack-status-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hack-status-panel li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 780;
}

.hack-intro,
.hack-feature-section,
.hack-process,
.hack-comparison {
  padding: clamp(82px, 8vw, 132px) 24px;
}

.hack-intro {
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 255, 0, 0.1), transparent 28%),
    #07090a;
}

.hack-intro-grid,
.hack-feature-section,
.hack-process,
.hack-comparison {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hack-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: start;
}

.hack-intro h2,
.hack-heading-block h2,
.hack-process h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 950;
  text-wrap: balance;
}

.hack-intro-copy {
  display: grid;
  gap: 22px;
}

.hack-intro-copy p,
.hack-heading-block p:not(.hack-eyebrow),
.hack-process-copy > p:not(.hack-eyebrow),
.hack-steps p,
.hack-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.6;
}

.hack-feature-section {
  padding-top: clamp(88px, 8vw, 142px);
  padding-bottom: clamp(92px, 8vw, 150px);
}

.hack-heading-block {
  max-width: 790px;
  margin-bottom: clamp(34px, 4vw, 62px);
}

.hack-heading-block p:not(.hack-eyebrow) {
  max-width: 690px;
  margin-top: 20px;
}

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

.hack-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 284px;
  padding: 30px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(125% 90% at 100% 0%, rgba(199, 255, 0, 0.06), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    #0d1014;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.hack-feature-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 255, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hack-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 255, 0, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 32px 80px rgba(0, 0, 0, 0.46),
    0 0 54px rgba(199, 255, 0, 0.11);
}

.hack-feature-card:hover::before {
  opacity: 1;
}

.hack-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  border-radius: 14px;
  color: #0a1200;
  background: linear-gradient(150deg, #e4ff5a, var(--lime));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(199, 255, 0, 0.26);
  font-size: 16px;
  font-weight: 950;
}

.hack-feature-card h3 {
  padding-top: 30px;
}

.hack-feature-card h3,
.hack-steps h3,
.hack-compare-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.1;
  font-weight: 930;
}

.hack-feature-card p {
  font-size: clamp(15px, 1.05vw, 17px);
}

.hack-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: start;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(199, 255, 0, 0.1), rgba(244, 4, 80, 0.08)),
    #0c0f14;
}

.hack-process-copy {
  position: sticky;
  top: 142px;
}

.hack-steps {
  display: grid;
  gap: 18px;
}

.hack-steps article {
  position: relative;
  padding: clamp(26px, 2.4vw, 34px) clamp(26px, 2.4vw, 34px) clamp(26px, 2.4vw, 34px) clamp(36px, 3vw, 50px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.hack-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--lime), rgba(199, 255, 0, 0.08));
}

.hack-steps article:hover {
  transform: translateX(5px);
  border-color: rgba(199, 255, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(199, 255, 0, 0.05), rgba(255, 255, 255, 0.018));
}

.hack-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hack-comparison {
  width: 100%;
  max-width: none;
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(199, 255, 0, 0.1), transparent 30%),
    radial-gradient(circle at 86% 100%, rgba(244, 4, 80, 0.1), transparent 32%),
    linear-gradient(180deg, #07090a 0%, #0a0d11 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hack-comparison .hack-heading-block {
  width: min(1180px, 100%);
  margin: 0 auto clamp(40px, 4.5vw, 66px);
  text-align: center;
}

.hack-comparison .hack-eyebrow {
  margin-inline: auto;
}

.hack-comparison h2 {
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
}

.hack-comparison-grid {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hack-compare-card {
  position: relative;
  min-height: 380px;
  padding: clamp(30px, 3vw, 46px);
  border-radius: 26px;
  overflow: hidden;
}

.hack-compare-card.muted {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #0c0f12;
  color: rgba(255, 255, 255, 0.6);
}

.hack-compare-card.muted h3 {
  color: rgba(255, 255, 255, 0.82);
}

.hack-compare-card.featured {
  color: #fff;
  border: 1px solid rgba(199, 255, 0, 0.34);
  background:
    radial-gradient(125% 80% at 100% 0%, rgba(199, 255, 0, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    #0b0f0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(199, 255, 0, 0.1);
}

.hack-compare-card.featured::after {
  content: "Recommended";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 13px;
  border-radius: 999px;
  background: linear-gradient(150deg, #e4ff5a, var(--lime));
  color: #0a1200;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(199, 255, 0, 0.28);
}

.hack-compare-card ul {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hack-compare-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-left: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.4;
}

.hack-compare-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: 0.04em;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}

.hack-compare-card.muted li::before {
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23808890' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.hack-compare-card.featured li::before {
  background-color: rgba(199, 255, 0, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8ff00' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.hack-compare-card.featured a {
  min-height: 50px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 26px;
  border-radius: 12px;
  color: #0a1200;
  background: linear-gradient(150deg, #e4ff5a, var(--lime));
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(199, 255, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hack-compare-card.featured a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(199, 255, 0, 0.32);
}

.hack-faq {
  margin-top: 90px;
}

@media (max-width: 1040px) {
  .hack-hero-inner,
  .hack-intro-grid,
  .hack-process {
    grid-template-columns: 1fr;
  }

  .hack-status-panel {
    width: min(100%, 620px);
    min-height: 0;
  }

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

  .hack-process-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .hack-hero {
    min-height: auto;
    padding: 58px 16px 70px;
  }

  .hack-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.72) 100%),
      radial-gradient(circle at 50% 18%, rgba(199, 255, 0, 0.16), transparent 34%);
  }

  .hack-hero-copy {
    text-align: center;
  }

  .hack-eyebrow {
    margin-inline: auto;
  }

  .hack-hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .hack-hero-copy > p:not(.hack-eyebrow) {
    max-width: 32ch;
    margin-inline: auto;
    font-size: 17px;
  }

  .hack-hero-actions {
    justify-content: center;
  }

  .hack-status-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hack-panel-top img {
    width: 52px;
    height: 52px;
  }

  .hack-panel-meter {
    margin-top: 26px;
  }

  .hack-intro,
  .hack-feature-section,
  .hack-process,
  .hack-comparison {
    padding: 66px 16px;
  }

  .hack-section-label {
    margin-inline: auto;
  }

  .hack-intro-grid,
  .hack-heading-block,
  .hack-process-copy {
    text-align: center;
  }

  .hack-intro h2,
  .hack-heading-block h2,
  .hack-process h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hack-intro-copy p,
  .hack-heading-block p,
  .hack-process-copy > p:not(.hack-eyebrow) {
    font-size: 16px;
  }

  .hack-feature-grid,
  .hack-comparison-grid {
    grid-template-columns: 1fr;
  }

  .hack-feature-card {
    min-height: 0;
    padding: 22px;
  }

  .hack-feature-card span {
    margin-bottom: 28px;
  }

  .hack-process {
    border-radius: 0;
    margin-inline: -16px;
    width: calc(100% + 32px);
  }

  .hack-compare-card {
    min-height: 0;
    border-radius: 18px;
  }
}

.pricing-page {
  min-height: calc(100vh - 124px);
  padding: 20px 18px 64px;
  background:
    radial-gradient(circle at 80% 4%, rgba(244, 4, 80, 0.1), transparent 24%),
    linear-gradient(180deg, #111315 0%, #07090b 34%, #030407 100%);
}

.pricing-promo {
  position: relative;
  isolation: isolate;
  width: calc(100% - 48px);
  max-width: 1336px;
  min-height: 220px;
  margin: 20px auto 22px;
  padding: clamp(26px, 3vw, 44px) clamp(28px, 3.4vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  overflow: hidden;
  /* Gradient border via padding-box / border-box trick — a soft pink rim
     that's strongest at the top-left and fades into transparency. */
  border: 2px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(244, 4, 80, 0.05) 0%, rgba(244, 4, 80, 0.18) 100%) padding-box,
    linear-gradient(135deg, rgba(244, 4, 80, 0.55) 0%, rgba(244, 4, 80, 0.12) 55%, rgba(255, 255, 255, 0.05) 100%) border-box;
  box-shadow:
    inset 0 0 64px 0 rgba(244, 4, 80, 0.32),
    0 8px 24px 0 rgba(0, 0, 0, 0.12);
}

.pricing-promo::before {
  /* Subtle radial bloom in the lower-left so the banner has depth without
     fighting the gradient border. */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 96%, rgba(244, 4, 80, 0.18), transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.pricing-promo-copy {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(820px, 100%);
}

/* Decorative organic blob was removed — the MemGenie genie art is the
   only right-side graphic. Hide any blob nodes still present in old
   cached HTML so nothing leaks through. */
.pricing-promo-blob { display: none !important; }

.sale-badge,
.popular-ribbon,
.discount-chip,
.new-chip {
  background: var(--pink);
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

.sale-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(18px, 1.55vw, 26px);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: clamp(13px, 1vw, 17px);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 26px rgba(244, 4, 80, 0.3);
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.pricing-promo h1,
.pricing-promo h2,
.plans-heading h2,
.plan-card h3 {
  text-transform: uppercase;
}

.pricing-promo h1 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(26px, 2.3vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: normal;
}

.pricing-promo h2 {
  margin: clamp(4px, 0.4vw, 8px) 0 0;
  color: #fff;
  font-size: clamp(26px, 2.3vw, 42px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pricing-promo p {
  margin: clamp(12px, 1vw, 18px) 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.35;
  font-weight: 500;
}

/* Genie art on the right of the promo.
   `mix-blend-mode: screen` drops the PNG's black backdrop so only the
   neon-stroke genie shows over the gradient panel. */
.pricing-promo .pricing-genie-art {
  display: block;
  position: absolute;
  right: clamp(-12px, 1.5vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: clamp(150px, 82%, 240px);
  opacity: 0.95;
  object-fit: contain;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

/* Refined home promo banner — cleaner hierarchy and a softer panel.
   Scoped to .home-pricing-promo so the pricing page promo is untouched. */
.pricing-promo.home-pricing-promo {
  gap: clamp(24px, 4vw, 64px);
  background:
    linear-gradient(115deg, rgba(244, 4, 80, 0.18) 0%, rgba(244, 4, 80, 0.06) 44%, rgba(244, 4, 80, 0) 72%) padding-box,
    linear-gradient(130deg, rgba(244, 4, 80, 0.62) 0%, rgba(244, 4, 80, 0.16) 42%, rgba(255, 255, 255, 0.06) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 54px rgba(244, 4, 80, 0.14);
}

.pricing-promo.home-pricing-promo .sale-badge {
  margin-bottom: clamp(16px, 1.4vw, 22px);
  padding: 7px 15px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #ff6c95;
  background: rgba(244, 4, 80, 0.12);
  border: 1px solid rgba(244, 4, 80, 0.4);
  box-shadow: none;
}

.pricing-promo.home-pricing-promo h1 {
  color: #fff;
  font-size: clamp(27px, 2.55vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pricing-promo.home-pricing-promo h1 .promo-accent {
  color: var(--pink);
}

.pricing-promo.home-pricing-promo h2 {
  margin-top: clamp(8px, 0.7vw, 12px);
  text-transform: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 600;
  letter-spacing: 0;
}

/* On mobile / tablet, tuck the genie behind the right side of the copy
   at lower opacity so it decorates without crowding the headline. */
@media (max-width: 900px) {
  .pricing-promo .pricing-genie-art {
    right: -28px;
    height: 64%;
    max-height: 220px;
    opacity: 0.5;
  }
  .pricing-promo-copy {
    position: relative;
    z-index: 2;
  }
}

.plan-section {
  width: calc(100% - 60px);
  max-width: 1336px;
  margin: 0 auto;
  padding: 24px 30px 22px;
  border: 1px solid rgba(81, 54, 130, 0.5);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 27, 96, 0.48), transparent 33%),
    radial-gradient(circle at 88% 22%, rgba(244, 4, 80, 0.08), transparent 24%),
    linear-gradient(180deg, #080a12 0%, #060710 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 22px 70px rgba(0, 0, 0, 0.18);
}

.plans-heading {
  text-align: center;
  margin-bottom: 20px;
}

.plans-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 2.9vw, 46px);
  line-height: 1.08;
  font-weight: 950;
}

.plans-heading span {
  color: var(--pink);
}

.plans-heading p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.16vw, 18px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: 26px;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 486px;
  padding: 24px 20px 16px;
  border-radius: 14px;
  border: 1px solid rgba(91, 76, 142, 0.68);
  background:
    radial-gradient(circle at 50% 104%, rgba(52, 78, 100, 0.26), transparent 47%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.98) 0%, rgba(12, 14, 23, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.22);
}

.plan-card.popular {
  padding-top: 64px;
  border-color: var(--pink);
  box-shadow:
    0 0 0 1px rgba(244, 4, 80, 0.12),
    0 18px 66px rgba(244, 4, 80, 0.24);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px 13px 0 0;
  font-size: 13px;
  text-transform: uppercase;
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  margin-bottom: 16px;
}

.plan-card h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1;
  font-weight: 920;
}

.plan-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.38;
}

.discount-chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 4px;
  vertical-align: middle;
  font-size: 12px;
  font-style: italic;
}

.price {
  min-width: 92px;
  text-align: right;
}

.price strong {
  display: block;
  color: #fff;
  font-size: clamp(29px, 2.35vw, 36px);
  line-height: 0.95;
  font-weight: 820;
}

.price span,
.price s {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.price s {
  margin-top: 2px;
  font-size: 17px;
}

.included-box {
  flex: 1;
  min-height: 314px;
  padding: 16px 18px 15px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(145deg, rgba(35, 39, 49, 0.94), rgba(24, 28, 37, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.included-box h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 840;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 19px;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(12px, 0.92vw, 13.5px);
  line-height: 1.22;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  border-radius: 0;
}

.feature-list li::after {
  content: none;
}

.feature-list .is-included {
  color: rgba(255, 255, 255, 0.82);
}

.feature-list .is-included::before {
  background-image: url('assets/check-icon.png');
}

.feature-list .is-included::after {
  content: none;
}

.feature-list .is-excluded {
  color: rgba(255, 255, 255, 0.5);
}

.feature-list .is-excluded::before {
  background-image: url('assets/x-icon.png');
}

.feature-list .is-excluded::after {
  content: none;
}

.feature-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 19px 0 17px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.feature-divider::before,
.feature-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.feature-divider span {
  white-space: nowrap;
}

.new-chip {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  margin-left: 6px;
  padding: 0 7px;
  border-radius: 4px;
  font-size: 10px;
  font-style: italic;
  vertical-align: middle;
}

.plan-cta {
  min-height: 46px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.plan-cta.starter {
  color: #151515;
  background: #fff;
}

.plan-cta.plus {
  color: #050705;
  background: linear-gradient(90deg, #f1ff00, #d5ff00);
}

.plan-cta.ultra {
  color: #fff;
  background: var(--pink);
}

.plan-note {
  min-height: 20px;
  margin: 10px 0 0;
  text-align: center;
}

.plan-note strong {
  color: #eaff00;
}

.faq-section {
  max-width: 760px;
  margin: clamp(72px, 6.5vw, 112px) auto 0;
  padding: 0 16px clamp(60px, 5.5vw, 92px);
}

.faq-section h2 {
  margin: 0 0 34px;
  color: #fff;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 880;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: rgba(244, 4, 80, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.16);
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.28vw, 22px);
  font-weight: 780;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease, padding-left 220ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(255, 255, 255, 0.48);
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
  border-color: var(--pink);
}

.faq-item[open] summary {
  color: #fff;
  padding-left: 28px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition: grid-template-rows 260ms ease, opacity 220ms ease, transform 260ms ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  overflow: hidden;
  margin: -4px 24px 22px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 800;
}

.faq-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 10px;
  color: #071009;
  background: var(--lime);
  font-weight: 900;
}

/* Compact desktop: shrink the header so the full nav + 4 buttons fit on one
   row without overlap, all the way down to the hamburger breakpoint. */
@media (min-width: 1201px) and (max-width: 1600px) {
  .site-header {
    gap: clamp(10px, 1vw, 18px);
    min-height: 96px;
    padding: 18px clamp(18px, 1.8vw, 28px);
  }

  .brand-logo {
    width: clamp(176px, 13vw, 210px);
  }

  .main-nav {
    gap: clamp(10px, 0.9vw, 18px);
    font-size: clamp(13.5px, 0.92vw, 15.5px);
  }

  .header-actions {
    gap: 8px;
  }

  .pricing-button,
  .login-button,
  .signup-button,
  .support-button {
    min-height: 46px;
    font-size: 14px;
    border-radius: 12px;
  }

  .support-button {
    min-width: 0;
    padding: 0 13px;
    gap: 7px;
  }

  .support-button svg {
    width: 17px;
    height: 17px;
  }

  .pricing-button {
    min-width: 0;
    padding: 0 13px;
    gap: 7px;
  }

  .pricing-button strong {
    left: 13px;
    min-width: 70px;
    min-height: 21px;
    font-size: 11.5px;
  }

  .tag-icon svg {
    width: 19px;
    height: 19px;
  }

  .login-button {
    min-width: 0;
    padding: 0 14px;
  }

  .signup-button {
    min-width: 0;
    padding: 0 16px;
  }
}

@media (max-width: 1340px) {
  .hero {
    min-height: calc(100vh - 112px);
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(39px, 3.7vw, 53px);
    line-height: 1.08;
  }

  .hero p {
    margin-top: 20px;
    font-size: clamp(18px, 1.32vw, 21px);
    line-height: 1.45;
  }

  .hero-buttons {
    margin-top: 30px;
    gap: 18px;
  }

  .video-carousel {
    min-height: 0;
    aspect-ratio: 1.08;
  }

  .video-frame strong {
    font-size: clamp(30px, 3vw, 44px);
  }

  .pricing-page {
    min-height: calc(100vh - 112px);
    padding-top: 8px;
  }

  .pricing-promo {
    min-height: 230px;
    padding-block: 28px;
  }

  .pricing-promo h1 {
    font-size: clamp(30px, 3vw, 40px);
  }

  .pricing-promo h2 {
    font-size: clamp(26px, 2.7vw, 36px);
  }

  .plan-section {
    padding: 18px 28px 20px;
  }

  .pricing-cards {
    gap: 24px;
  }

  .plan-card {
    min-height: 486px;
  }

  .feature-list li {
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 22px 22px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding: 8px 2px 0;
    scrollbar-width: thin;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .video-carousel {
    width: min(100%, 760px);
    min-height: 460px;
    aspect-ratio: 16 / 10.5;
    margin: 0;
  }

  .pricing-promo {
    align-items: flex-start;
  }

  .pricing-promo-copy {
    max-width: 680px;
  }

  .pricing-promo h1 {
    white-space: normal;
  }

  .pricing-genie-art {
    right: 10px;
    width: 260px;
    height: auto;
    opacity: 0.55;
  }

  .plan-section {
    padding: 24px;
  }

  .pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-card {
    min-height: auto;
  }
}

@media (min-width: 721px) and (max-width: 1200px) {
  .site-header {
    position: sticky;
    top: 0;
    min-height: 94px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 17px 26px;
  }

  /* In hamburger mode, all nav items show vertically — bring extra-link back */
  .main-nav .nav-extra-link {
    display: inline-flex;
  }

  .chrome-link span {
    display: inline;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .brand-logo {
    width: min(252px, 44vw);
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 15px;
    border: 1px solid rgba(199, 255, 0, 0.18);
    color: #f5f5f5;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(18, 20, 24, 0.92);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 14px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 255, 0, 0.36);
    background:
      linear-gradient(180deg, rgba(199, 255, 0, 0.08), rgba(255, 255, 255, 0.02)),
      rgba(18, 20, 24, 0.96);
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 230ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.45);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-menu {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 16px;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 210ms ease,
      padding-top 260ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-menu-open .site-menu {
    max-height: 460px;
    opacity: 1;
    padding-top: 17px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu .main-nav {
    order: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: start;
    gap: 10px;
    justify-content: stretch;
    padding: 0;
    overflow: visible;
    white-space: normal;
    font-size: 15px;
  }

  .site-menu .main-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    line-height: 1.1;
  }

  .site-menu .main-nav .active {
    color: var(--lime);
    background: rgba(199, 255, 0, 0.09);
    border-color: rgba(199, 255, 0, 0.15);
  }

  .nav-divider {
    display: none;
  }

  .site-menu .main-nav .chrome-link {
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
  }

  .site-menu .chrome-link img {
    width: 26px;
    height: 26px;
  }

  .site-menu .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-self: start;
    justify-content: stretch;
    align-items: stretch;
    margin-left: 0;
    padding: 0;
  }

  .site-menu .pricing-button,
  .site-menu .login-button,
  .site-menu .signup-button,
  .site-menu .support-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .site-menu .support-button {
    gap: 10px;
    padding: 0 14px;
  }

  .site-menu .support-button svg {
    width: 20px;
    height: 20px;
  }

  .site-menu .pricing-button {
    gap: 9px;
    padding: 0 14px;
  }

  .site-menu .pricing-button strong {
    position: static;
    min-width: 84px;
    min-height: 25px;
    margin-left: 4px;
    padding: 0 9px;
    transform: none;
    border-radius: 7px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 64px 42px 80px;
  }

  .hero-content {
    width: min(980px, 100%);
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .hero-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    max-width: 900px;
    margin-inline: auto;
    font-size: clamp(46px, 5.25vw, 66px);
    line-height: 1.07;
    text-wrap: balance;
  }

  .hero p {
    max-width: 830px;
    margin: 22px auto 0;
    font-size: clamp(19px, 2.18vw, 25px);
    line-height: 1.48;
  }

  .hero-buttons {
    position: relative;
    z-index: 4;
    justify-content: center;
    margin-top: 32px;
  }

  .hero-media {
    width: 100%;
    justify-self: center;
  }

  .video-carousel {
    width: min(720px, 90vw);
    min-height: clamp(460px, 58vw, 620px);
    aspect-ratio: 1.02;
    margin: 0 auto;
  }

  .video-slot {
    width: min(58%, 410px);
  }

  .video-slot.is-left {
    transform: translate3d(-42%, 4%, -170px) rotateY(13deg) scale(0.65);
  }

  .video-slot.is-right {
    transform: translate3d(42%, 4%, -170px) rotateY(-13deg) scale(0.65);
  }

  .pricing-page {
    min-height: auto;
    padding-top: 14px;
  }

  .pricing-promo,
  .plan-section {
    width: calc(100% - 44px);
  }
}

@media (max-width: 720px) {
  .entry-mark {
    width: clamp(84px, 24.75vw, 130px);
  }

  .site-header {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
  }

  .brand-logo {
    width: min(236px, 62vw);
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pricing-button,
  .login-button,
  .signup-button,
  .support-button {
    min-height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .support-button {
    flex: 1 1 100%;
    min-width: 0;
  }

  .pricing-button strong {
    left: 18px;
    bottom: -14px;
    min-height: 24px;
    font-size: 12px;
  }

  .main-nav {
    gap: 18px;
    font-size: 16px;
  }

  /* In stacked mobile layout, restore the secondary nav links */
  .main-nav .nav-extra-link {
    display: inline-flex;
  }

  .chrome-link {
    gap: 10px;
  }

  .chrome-link span {
    display: inline;
  }

  .nav-divider {
    height: 28px;
  }

  .chrome-link img {
    width: 28px;
    height: 28px;
  }

  .hero {
    min-height: auto;
    padding: 64px 18px 78px;
  }

  .hero-content {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 11.05vw, 49px);
    line-height: 1.12;
  }

  .hero p {
    margin-top: 20px;
    font-size: 19px;
  }

  .hero-buttons {
    gap: 14px;
    margin-top: 28px;
  }

  .primary-cta,
  .secondary-cta {
    width: min(100%, 310px);
    min-height: 56px;
  }

  .video-carousel {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.2;
    overflow: visible;
  }

  .video-slot {
    width: min(74%, 340px);
    border-radius: 26px;
  }

  .video-slot.is-left {
    transform: translate3d(-46%, 4%, -150px) rotateY(13deg) scale(0.7);
  }

  .video-slot.is-right {
    transform: translate3d(46%, 4%, -150px) rotateY(-13deg) scale(0.7);
  }

  .video-frame {
    padding: 24px 18px;
  }

  .video-frame::before {
    inset: 16px;
    border-radius: 18px;
  }

  .video-kicker {
    font-size: 12px;
  }

  .video-frame strong {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .video-caption {
    font-size: 14px;
  }

  .video-sound-button {
    right: 18px;
    bottom: 18px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .home-offer-section {
    padding: 18px 8px 18px;
  }

  .promo-plan-button {
    min-height: 46px;
    margin-top: 16px;
    padding-inline: 17px;
    border-radius: 10px;
    font-size: 15px;
  }

  .memgenie-update {
    min-height: 430px;
    padding: 72px 18px;
  }

  .update-lockup {
    gap: 14px;
  }

  .update-alert {
    font-size: 17px;
  }

  .warning-mark {
    width: 17px;
    height: 15px;
  }

  .warning-mark::after {
    top: 2px;
    font-size: 10px;
  }

  .update-title-shell {
    min-height: 112px;
    padding-inline: 22px;
  }

  .update-title-shell h2 {
    max-width: 330px;
    font-size: clamp(35px, 10vw, 46px);
    line-height: 1.08;
  }

  .update-corner.top-left,
  .update-corner.bottom-left {
    left: -8px;
  }

  .update-corner.top-right,
  .update-corner.bottom-right {
    right: -8px;
  }

  .chrome-store-feature {
    min-height: 650px;
    padding: 62px 18px 54px;
  }

  .availability-pill {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  .chrome-store-copy h2 {
    font-size: clamp(34px, 8.5vw, 46px);
    line-height: 1.06;
  }

  .chrome-store-copy h2 span {
    display: inline;
  }

  .chrome-store-copy p {
    max-width: 340px;
    margin-top: 22px;
    font-size: 17px;
  }

  .chrome-store-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .chrome-store-cta {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 19px;
  }

  .download-icon svg {
    width: 22px;
    height: 22px;
  }

  .chrome-store-icon {
    width: 50px;
    height: 50px;
  }

  .chrome-store-icon img {
    width: 32px;
    height: 32px;
  }

  .workflow-showcase {
    padding: 72px 18px 82px;
  }

  .workflow-inner h2 {
    margin-bottom: 60px;
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.1;
  }

  .workflow-row,
  .workflow-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 70px;
  }

  .workflow-row.is-reversed .workflow-copy,
  .workflow-row.is-reversed .workflow-media {
    order: initial;
  }

  .workflow-copy {
    justify-self: start;
    max-width: 100%;
  }

  .workflow-copy h3 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.6vw, 36px);
  }

  .workflow-copy p {
    font-size: 17px;
    line-height: 1.45;
  }

  .workflow-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .workflow-video-card,
  .workflow-video-card.image-grid {
    width: min(88%, 390px);
    min-height: 280px;
    border-radius: 24px;
  }

  .workflow-video-card.image-grid {
    padding: 16px;
  }

  .workflow-video-screen {
    height: 130px;
    margin-inline: 18px;
  }

  .workflow-tools {
    gap: 8px;
    margin: 20px 16px 0;
  }

  .workflow-tools span,
  .workflow-grid-top span,
  .workflow-grid-top strong {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .workflow-prompt {
    min-height: 66px;
    margin: 20px 16px 0;
    border-radius: 18px;
    font-size: 14px;
  }

  .workflow-prompt strong {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .workflow-grid-top {
    margin-bottom: 16px;
  }

  .workflow-image-grid {
    gap: 12px;
  }

  .workflow-image-grid span {
    min-height: 95px;
    border-radius: 14px;
  }

  .workflow-timeline {
    margin: 22px 16px 0;
  }

  .pricing-page {
    padding: 12px 8px 42px;
  }

  .pricing-promo {
    aspect-ratio: auto;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 24px 20px 120px;
    border-radius: 20px;
  }

  .pricing-promo.home-pricing-promo {
    min-height: 0;
  }

  .pricing-promo-copy {
    width: 100%;
    max-width: 100%;
  }

  .sale-badge {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .pricing-promo h1 {
    font-size: clamp(27px, 8.7vw, 38px);
  }

  .pricing-promo h2 {
    margin-top: 14px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .pricing-promo p {
    margin-top: 18px;
    font-size: 17px;
  }

  .pricing-genie-art {
    right: -26px;
    bottom: -18px;
    top: auto;
    width: 220px;
    height: auto;
  }

  .plan-section {
    width: 100%;
    padding: 22px 14px 16px;
    border-radius: 16px;
  }

  .plans-heading h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .plan-card {
    padding: 22px 16px 16px;
  }

  .plan-card.popular {
    padding-top: 72px;
  }

  .plan-top {
    gap: 12px;
  }

  .included-box {
    padding: 16px 14px;
  }

  .feature-list li {
    padding-left: 28px;
  }
}

@media (max-width: 440px) {
  .main-nav {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(31px, 10.2vw, 39px);
  }

  .hero p {
    font-size: 17px;
  }

  .video-carousel {
    min-height: 330px;
  }

  .video-slot {
    width: min(68%, 230px);
  }

  .video-frame strong {
    font-size: clamp(25px, 8vw, 31px);
  }

  .chrome-store-feature {
    min-height: 620px;
    padding-inline: 12px;
  }

  .chrome-store-copy h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .chrome-store-copy h2 span {
    display: inline;
  }

  .chrome-store-copy p {
    font-size: 16px;
  }

  .chrome-store-cta {
    width: min(100%, 236px);
  }

  .workflow-showcase {
    padding: 72px 18px 82px;
  }

  .workflow-inner h2 {
    margin-bottom: 60px;
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.1;
  }

  .workflow-row,
  .workflow-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 70px;
  }

  .workflow-row.is-reversed .workflow-copy,
  .workflow-row.is-reversed .workflow-media {
    order: initial;
  }

  .workflow-copy {
    justify-self: start;
    max-width: 100%;
  }

  .workflow-copy h3 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.6vw, 36px);
  }

  .workflow-copy p {
    font-size: 17px;
    line-height: 1.45;
  }

  .workflow-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .workflow-video-card,
  .workflow-video-card.image-grid {
    width: min(88%, 390px);
    min-height: 280px;
    border-radius: 24px;
  }

  .workflow-video-card.image-grid {
    padding: 16px;
  }

  .workflow-video-screen {
    height: 130px;
    margin-inline: 18px;
  }

  .workflow-tools {
    gap: 8px;
    margin: 20px 16px 0;
  }

  .workflow-tools span,
  .workflow-grid-top span,
  .workflow-grid-top strong {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .workflow-prompt {
    min-height: 66px;
    margin: 20px 16px 0;
    border-radius: 18px;
    font-size: 14px;
  }

  .workflow-prompt strong {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .workflow-grid-top {
    margin-bottom: 16px;
  }

  .workflow-image-grid {
    gap: 12px;
  }

  .workflow-image-grid span {
    min-height: 95px;
    border-radius: 14px;
  }

  .workflow-timeline {
    margin: 22px 16px 0;
  }
}

@media (max-width: 720px) {
  body {
    /* clip (not hidden) so horizontal overflow is contained WITHOUT turning
       body into a scroll container — that would break position: sticky
       (e.g. the review-entry transition). */
    overflow-x: clip;
  }

  .site-header {
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding: 14px 14px 18px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: min(226px, 74vw);
  }

  .header-actions {
    order: 2;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    padding-bottom: 12px;
  }

  .pricing-button,
  .login-button,
  .signup-button {
    min-height: 44px;
    border-radius: 13px;
    font-size: 14px;
  }

  .pricing-button {
    min-width: 96px;
    padding: 0 11px;
    gap: 7px;
  }

  .pricing-button strong {
    left: 50%;
    bottom: -14px;
    min-width: 74px;
    min-height: 22px;
    padding: 0 8px;
    transform: translateX(-50%);
    border-radius: 7px;
    font-size: 11px;
  }

  .tag-icon svg {
    width: 19px;
    height: 19px;
  }

  .login-button {
    min-width: 72px;
    padding: 0 13px;
  }

  .signup-button {
    min-width: 90px;
    padding: 0 15px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    gap: 8px 9px;
    overflow: visible;
    padding: 4px 0 0;
    white-space: normal;
    scrollbar-width: none;
    font-size: 13.5px;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    min-height: 32px;
    justify-content: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1;
  }

  .main-nav .active {
    background: rgba(199, 255, 0, 0.09);
    border-color: rgba(199, 255, 0, 0.13);
  }

  .nav-divider {
    display: none;
  }

  .main-nav .chrome-link {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 0;
    gap: 8px;
    padding-inline: 12px;
    color: rgba(255, 255, 255, 0.72);
  }

  .chrome-link img {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding: 34px 18px 50px;
    text-align: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.82) 0%, rgba(3, 4, 5, 0.55) 44%, rgba(3, 4, 5, 0.76) 100%),
      radial-gradient(circle at 52% 40%, rgba(199, 255, 0, 0.08), transparent 34%);
  }

  .hero-content {
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    max-width: 11.5ch;
    margin-inline: auto;
    font-size: clamp(32px, 9vw, 39px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero p {
    max-width: none;
    margin: 14px auto 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-copy-full {
    display: none;
  }

  .hero-copy-short {
    display: inline;
  }

  .hero-buttons {
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .primary-cta,
  .secondary-cta {
    width: min(100%, 278px);
    min-height: 47px;
    border-radius: 11px;
    font-size: 15px;
  }

  .video-carousel {
    min-height: 300px;
    aspect-ratio: 1 / 1.03;
    margin-inline: auto;
  }

  .video-slot {
    width: min(65%, 236px);
    border-radius: 22px;
  }

  .video-slot.is-left {
    transform: translate3d(-40%, 5%, -150px) rotateY(12deg) scale(0.65);
  }

  .video-slot.is-right {
    transform: translate3d(40%, 5%, -150px) rotateY(-12deg) scale(0.65);
  }

  .video-frame strong {
    font-size: clamp(25px, 7.6vw, 32px);
  }

  .video-sound-button {
    right: 14px;
    bottom: 14px;
  }

  .home-offer-section {
    padding: 18px 8px;
  }

  .pricing-promo {
    width: 100%;
    padding: 22px 18px 106px;
    border-radius: 20px;
  }

  .pricing-promo h1 {
    max-width: 13ch;
    font-size: clamp(26px, 8.35vw, 37px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .pricing-promo h2 {
    max-width: 13ch;
    margin-top: 10px;
    font-size: clamp(24px, 7.55vw, 33px);
    line-height: 1.03;
    text-wrap: balance;
  }

  .pricing-promo p {
    margin-top: 13px;
    font-size: 16px;
  }

  .pricing-genie-art {
    right: 6px;
    bottom: -20px;
    width: min(190px, 50vw);
    opacity: 0.44;
  }

  .promo-plan-button {
    min-height: 44px;
    margin-top: 17px;
    font-size: 14px;
  }

  .memgenie-update {
    min-height: 390px;
    padding: 62px 16px;
  }

  .update-title-shell {
    width: min(100%, 346px);
    min-height: 104px;
    padding-inline: 18px;
  }

  .update-title-shell h2 {
    max-width: 300px;
    font-size: clamp(32px, 9.2vw, 42px);
  }

  .chrome-store-feature {
    min-height: 560px;
    padding: 58px 18px 52px;
  }

  .chrome-store-copy h2 {
    font-size: clamp(32px, 7.8vw, 44px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .chrome-store-copy h2 span {
    display: inline;
  }

  .chrome-store-copy p {
    max-width: none;
    font-size: 16px;
    line-height: 1.48;
  }

  .chrome-store-actions {
    justify-content: center;
  }

  .workflow-showcase {
    padding: 62px 16px 70px;
  }

  .workflow-inner h2 {
    max-width: 12ch;
    margin-inline: auto;
    margin-bottom: 44px;
    font-size: clamp(30px, 8.6vw, 40px);
    text-wrap: balance;
  }

  .workflow-row,
  .workflow-row.is-reversed {
    gap: 25px;
    margin-top: 56px;
  }

  .workflow-copy {
    justify-self: center;
    text-align: center;
  }

  .workflow-copy h3 {
    font-size: clamp(25px, 7.2vw, 33px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .workflow-copy p {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.5;
  }

  .workflow-media {
    min-height: 270px;
    border-radius: 20px;
  }

  .workflow-video-card,
  .workflow-video-card.image-grid {
    width: min(94%, 374px);
    min-height: 250px;
    border-radius: 22px;
  }

  .pricing-page {
    padding: 10px 8px 42px;
  }

  .plan-section {
    width: 100%;
    padding: 20px 12px 14px;
    border-radius: 16px;
  }

  .plans-heading {
    margin-bottom: 18px;
  }

  .plans-heading h2 {
    font-size: clamp(25px, 7.5vw, 32px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .plans-heading p {
    max-width: 28ch;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.4;
  }

  .pricing-cards {
    gap: 16px;
  }

  .plan-card {
    padding: 20px 14px 15px;
    border-radius: 13px;
  }

  .plan-card.popular {
    padding-top: 64px;
  }

  .popular-ribbon {
    height: 38px;
    font-size: 12px;
  }

  .plan-top {
    gap: 10px;
    min-height: 50px;
    margin-bottom: 13px;
  }

  .plan-card h3 {
    font-size: clamp(23px, 7.2vw, 30px);
  }

  .price {
    min-width: 74px;
  }

  .price strong {
    font-size: clamp(29px, 8.4vw, 37px);
  }

  .included-box {
    min-height: auto;
    padding: 15px 13px;
  }

  .feature-list {
    gap: 9px;
  }

  .feature-list li {
    padding-left: 27px;
    font-size: 13px;
    line-height: 1.26;
  }

  .feature-list li::before {
    width: 15px;
    height: 15px;
  }

  .feature-divider {
    gap: 10px;
    margin: 17px 0 15px;
    font-size: 13px;
  }

  .plan-cta {
    min-height: 44px;
  }

  .faq-section {
    margin-top: 58px;
    padding: 0 6px 38px;
  }

  .faq-section h2 {
    margin-bottom: 24px;
    font-size: clamp(29px, 8vw, 38px);
    text-wrap: balance;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item summary {
    min-height: 58px;
    gap: 14px;
    padding: 0 16px;
    font-size: 15.5px;
    line-height: 1.25;
  }

  .faq-item[open] summary {
    padding-left: 16px;
  }

  .faq-answer p {
    margin: -2px 16px 18px;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .faq-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand-logo {
    width: min(210px, 76vw);
  }

  .header-actions {
    gap: 6px;
  }

  .pricing-button,
  .login-button,
  .signup-button {
    font-size: 13px;
  }

  .pricing-button {
    min-width: 88px;
    padding-inline: 8px;
  }

  .login-button {
    min-width: 66px;
  }

  .signup-button {
    min-width: 82px;
  }

  .main-nav {
    gap: 7px;
    font-size: 12.5px;
  }

  .main-nav a {
    min-height: 31px;
    padding-inline: 7px;
  }

  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.6vw, 34px);
  }

  .hero p {
    max-width: 25ch;
    font-size: 13px;
    line-height: 1.45;
  }

  .primary-cta,
  .secondary-cta {
    width: min(100%, 258px);
    min-height: 45px;
    font-size: 14px;
  }

  .video-carousel {
    min-height: 280px;
  }

  .video-slot {
    width: min(66%, 214px);
  }

  .pricing-promo h1,
  .pricing-promo h2 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    min-height: 78px;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 12px 14px;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .brand-logo {
    width: min(202px, 62vw);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid rgba(199, 255, 0, 0.18);
    color: #f5f5f5;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(18, 20, 24, 0.92);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 14px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 255, 0, 0.36);
    background:
      linear-gradient(180deg, rgba(199, 255, 0, 0.08), rgba(255, 255, 255, 0.02)),
      rgba(18, 20, 24, 0.96);
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 230ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.45);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-menu {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 12px;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 210ms ease,
      padding-top 260ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-menu-open .site-menu {
    max-height: 560px;
    opacity: 1;
    padding-top: 16px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu .main-nav {
    order: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    justify-content: stretch;
    padding: 0;
    overflow: visible;
    white-space: normal;
    font-size: 15px;
  }

  .site-menu .main-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 0 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    line-height: 1.1;
  }

  .site-menu .main-nav .active {
    color: var(--lime);
    background: rgba(199, 255, 0, 0.09);
    border-color: rgba(199, 255, 0, 0.15);
  }

  .site-menu .main-nav .chrome-link {
    grid-column: auto;
    justify-self: stretch;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
  }

  .site-menu .chrome-link img {
    width: 24px;
    height: 24px;
  }

  .site-menu .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: stretch;
    align-items: stretch;
    margin-left: 0;
    padding: 2px 0 0;
  }

  .site-menu .pricing-button,
  .site-menu .login-button,
  .site-menu .signup-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border-radius: 13px;
    font-size: 15px;
  }

  .site-menu .pricing-button {
    gap: 8px;
    padding: 0 14px;
  }

  .site-menu .pricing-button strong {
    position: static;
    min-width: 78px;
    min-height: 24px;
    margin-left: 4px;
    padding: 0 9px;
    transform: none;
    border-radius: 7px;
    font-size: 12px;
  }

  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-logo {
    width: min(188px, 60vw);
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .site-menu .main-nav {
    font-size: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .site-header {
    min-height: 98px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: clamp(12px, 1.35vw, 22px);
    padding: 18px clamp(18px, 2vw, 32px);
  }

  .brand {
    width: auto;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: clamp(190px, 20vw, 258px);
  }

  .menu-toggle {
    display: none;
  }

  .site-menu {
    display: contents;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding-top: 0;
    pointer-events: auto;
    transform: none;
  }

  .site-menu .main-nav {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    gap: clamp(12px, 1.35vw, 20px);
    padding: 0;
    overflow: visible;
    font-size: clamp(14px, 1.25vw, 16px);
    white-space: nowrap;
  }

  .site-menu .main-nav a {
    width: auto;
    min-height: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-menu .nav-divider {
    width: 2px;
    height: 28px;
    display: block;
  }

  .site-menu .main-nav .chrome-link {
    gap: 9px;
  }

  .site-menu .chrome-link img {
    width: 28px;
    height: 28px;
  }

  .site-menu .header-actions {
    width: auto;
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding: 0;
  }

  .site-menu .pricing-button,
  .site-menu .login-button,
  .site-menu .signup-button {
    width: auto;
    min-width: 0;
    min-height: 48px;
    border-radius: 14px;
    font-size: 14px;
  }

  .site-menu .pricing-button {
    min-width: 96px;
    gap: 7px;
    padding: 0 12px;
  }

  .site-menu .pricing-button strong {
    position: absolute;
    left: 17px;
    bottom: -15px;
    min-width: 74px;
    min-height: 24px;
    margin-left: 0;
    padding: 0 8px;
    border-radius: 7px;
    transform: none;
    font-size: 12px;
  }

  .site-menu .login-button {
    min-width: 72px;
    padding: 0 14px;
  }

  .site-menu .signup-button {
    min-width: 90px;
    padding: 0 16px;
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand-logo {
    width: clamp(180px, 19vw, 204px);
  }

  .site-menu .main-nav {
    gap: 11px;
    font-size: 13px;
  }

  .site-menu .main-nav .chrome-link {
    gap: 7px;
  }

  .site-menu .chrome-link img {
    width: 26px;
    height: 26px;
  }

  .site-menu .header-actions {
    gap: 8px;
  }

  .site-menu .pricing-button,
  .site-menu .login-button,
  .site-menu .signup-button {
    min-height: 46px;
    font-size: 13px;
  }

  .site-menu .pricing-button {
    min-width: 88px;
    padding-inline: 10px;
  }

  .site-menu .login-button {
    min-width: 66px;
    padding-inline: 12px;
  }

  .site-menu .signup-button {
    min-width: 82px;
    padding-inline: 13px;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    /* clip (not hidden) to avoid making html/body a scroll container, which
       would break position: sticky on the review-entry transition. */
    overflow-x: clip;
  }

  img,
  video {
    max-width: 100%;
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 78px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 12px 16px;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .brand-logo {
    width: min(218px, 62vw);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid rgba(199, 255, 0, 0.18);
    color: #f5f5f5;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
      rgba(18, 20, 24, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 14px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 230ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.45);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-menu {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 12px;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 210ms ease,
      padding-top 260ms ease,
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-menu-open .site-menu {
    max-height: calc(100svh - 90px);
    overflow-y: auto;
    opacity: 1;
    padding-top: 16px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu .main-nav {
    order: 1;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    justify-content: stretch;
    padding: 0;
    overflow: visible;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    white-space: normal;
  }

  .site-menu .main-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 0 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    line-height: 1.12;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .site-menu .nav-divider {
    display: none;
  }

  .site-menu .main-nav .active {
    color: var(--lime);
    background: rgba(199, 255, 0, 0.09);
    border-color: rgba(199, 255, 0, 0.15);
  }

  .site-menu .main-nav .chrome-link {
    grid-column: auto;
    justify-self: stretch;
    gap: 9px;
  }

  .site-menu .chrome-link img {
    width: 24px;
    height: 24px;
  }

  .site-menu .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: stretch;
    align-items: stretch;
    margin-left: 0;
    padding: 2px 0 0;
  }

  .site-menu .pricing-button,
  .site-menu .login-button,
  .site-menu .signup-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border-radius: 13px;
    font-size: 15px;
  }

  .site-menu .pricing-button {
    gap: 8px;
    padding: 0 14px;
  }

  .site-menu .pricing-button strong {
    position: static;
    min-width: 78px;
    min-height: 24px;
    margin-left: 4px;
    padding: 0 9px;
    transform: none;
    border-radius: 7px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 54px 16px 62px;
    align-items: start;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.88) 0%, rgba(3, 4, 5, 0.66) 48%, rgba(3, 4, 5, 0.78) 100%),
      radial-gradient(circle at 50% 20%, rgba(199, 255, 0, 0.08), transparent 34%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    max-width: 10ch;
    margin: 0 auto;
    font-size: clamp(44px, 12vw, 64px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .hero p {
    max-width: none;
    margin: 22px auto 0;
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 1.48;
  }

  .hero-copy-full {
    display: none;
  }

  .hero-copy-short {
    display: inline;
  }

  .hero-proof-strip {
    width: min(100%, 420px);
    justify-content: center;
    margin: 20px auto 0;
    gap: 8px;
  }

  .hero-proof-strip span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-buttons,
  .hack-hero-actions {
    width: min(100%, 520px);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 17px;
  }

  .hero-media {
    width: 100%;
    min-height: 360px;
    perspective: none;
  }

  .video-carousel {
    width: 100%;
    max-width: 420px;
    min-height: 360px;
    aspect-ratio: auto;
    margin: 0 auto;
  }

  .video-slot {
    width: min(100%, 310px);
    aspect-ratio: 9 / 12;
    border-radius: 24px;
  }

  .video-slot.is-left,
  .video-slot.is-right {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, -80px) scale(0.82);
  }

  .video-frame {
    padding: 22px;
    border-radius: inherit;
  }

  .video-frame::before {
    inset: 16px;
    border-radius: 18px;
  }

  .video-frame strong {
    max-width: 250px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .video-caption {
    font-size: 15px;
  }

  .video-sound-button {
    left: 50%;
    right: auto;
    bottom: 8px;
    transform: translateX(-50%);
  }

  .home-offer-section {
    padding: 24px 12px 18px;
  }

  .pricing-promo,
  .pricing-promo.home-pricing-promo {
    width: 100%;
    max-width: 560px;
    min-height: 420px;
    aspect-ratio: auto;
    padding: 24px;
    align-items: flex-start;
    border-radius: 22px;
  }

  .pricing-promo-copy {
    max-width: 100%;
  }

  .pricing-promo h1 {
    max-width: 11ch;
    font-size: clamp(34px, 9.7vw, 48px);
    line-height: 1.02;
    white-space: normal;
  }

  .pricing-promo h2 {
    max-width: 12ch;
    margin-top: 12px;
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1.02;
  }

  .pricing-promo p {
    margin-top: 14px;
    font-size: 16px;
  }

  .sale-badge {
    margin-bottom: 18px;
    padding: 8px 11px;
    border-radius: 7px;
    font-size: 12px;
  }

  .pricing-genie-art {
    right: -44px;
    top: auto;
    bottom: -12px;
    height: 52%;
    opacity: 0.42;
  }

  .promo-plan-button {
    min-height: 48px;
    margin-top: 20px;
    padding: 0 16px;
    font-size: 15px;
  }

  .detection-callout-section {
    padding: 58px 14px 66px;
  }

  .detection-callout {
    min-height: 0;
  }

  .undetectable-pill {
    min-height: 48px;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0 16px;
    border-radius: 15px;
    font-size: clamp(17px, 4.8vw, 22px);
  }

  .undetectable-pill span {
    width: 28px;
    height: 28px;
  }

  .detection-callout h2 {
    width: min(100%, 620px);
    max-width: none;
    margin-inline: auto;
    font-size: clamp(29px, 7.4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    text-wrap: balance;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  }

  .detection-callout h2 span {
    display: inline;
  }

  .detection-title-line {
    display: inline !important;
    white-space: normal;
  }

  .wembean-word,
  .detected-word {
    display: inline !important;
  }

  .wembean-logo-inline {
    width: clamp(82px, 20vw, 124px);
    margin: -0.16em 0 -0.26em;
    vertical-align: middle;
  }

  .detection-callout p {
    max-width: 520px;
    margin-top: 24px;
    font-size: clamp(17px, 4.7vw, 22px);
    line-height: 1.42;
  }

  .detection-actions {
    width: min(100%, 320px);
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .detection-action-button {
    width: 100%;
    min-width: min(100%, 260px);
    min-height: 60px;
    gap: 12px;
    padding: 15px 24px;
    border-radius: 16px;
    font-size: 22px;
    line-height: 1.25;
  }

  .detection-action-button svg {
    width: 30px;
    height: 30px;
  }

  .discord-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .discord-proof-callout {
    width: min(100%, 360px);
    min-height: 0;
    margin: 32px auto 0;
    padding: 18px 18px;
  }

  .discord-proof-callout::before {
    inset: 0;
    border-radius: 14px;
  }

  .discord-proof-callout p {
    font-size: 14px;
    line-height: 1.24;
  }

  .proof-arrow {
    left: clamp(88px, 40vw, 160px);
    top: -62px;
    width: 72px;
    height: 72px;
  }

  .chrome-store-feature {
    min-height: 620px;
    padding: 76px 16px 88px;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .chrome-store-copy {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .chrome-store-copy h2 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(32px, 8.5vw, 44px);
    line-height: 1.04;
  }

  .chrome-store-copy h2 span {
    display: inline;
  }

  .chrome-store-copy p {
    max-width: none;
    margin-inline: auto;
    font-size: 16px;
  }

  .chrome-store-actions {
    justify-content: center;
    gap: 12px;
  }

  .chrome-store-cta {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 15px;
    font-size: 16px;
  }

  .chrome-store-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .workflow-showcase[data-workflow-showcase] {
    padding: 70px 16px 76px;
  }

  .workflow-showcase[data-workflow-showcase] .workflow-inner h2 {
    max-width: 11ch;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(36px, 10vw, 52px);
  }

  .workflow-lede {
    max-width: 31ch;
    margin: 18px auto 0;
    text-align: center;
  }

  .workflow-sticky-layout {
    display: block;
    margin-top: 34px;
  }

  .workflow-visual-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 22px;
  }

  .workflow-visual-shell {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1.08;
    margin: 0 auto;
    border-radius: 22px;
  }

  .workflow-panel-list {
    gap: 16px;
    padding-bottom: 0;
  }

  .workflow-step {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    opacity: 1;
    transform: none;
  }

  .workflow-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .workflow-step-copy h3 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .workflow-step-copy p:not(.workflow-step-label) {
    font-size: 15px;
  }

  .membean-window,
  .delay-console,
  .typing-console {
    width: min(88%, 360px);
    padding: 18px;
    border-radius: 22px;
  }

  .answer-choice {
    grid-template-columns: 34px 1fr;
    min-height: 62px;
    padding: 0 12px;
  }

  .answer-choice small {
    display: none;
  }

  .delay-row {
    min-height: 60px;
    padding: 0 14px;
  }

  .delay-wave {
    height: 80px;
  }

  .typing-line strong {
    font-size: clamp(27px, 8vw, 40px);
  }

  .keyboard-grid span {
    height: 28px;
  }

  .review-entry-transition {
    height: 46vh;
  }

  .review-entry-sticky {
    position: relative;
    height: 46vh;
  }

  .review-entry-rings {
    opacity: 0.35;
  }

  .review-entry-card {
    width: min(90vw, 360px);
    min-height: 190px;
    padding: 24px;
  }

  .review-entry-card strong {
    font-size: clamp(28px, 8vw, 38px);
  }

  .reviews-showcase {
    padding: 76px 14px 72px;
  }

  .reviews-header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .reviews-header h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .reviews-header p:not(.reviews-kicker) {
    max-width: 34ch;
  }

  .reviews-viewport {
    padding: 10px 0 22px;
    mask-image: none;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 310px;
  }

  .review-card-main {
    padding: 20px;
  }

  .faq-section,
  .hack-faq {
    width: 100%;
    max-width: 760px;
    margin: 58px auto 0;
    padding: 0 14px 52px;
  }

  .faq-section h2 {
    max-width: 11ch;
    margin-inline: auto;
    margin-bottom: 24px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-item summary {
    min-height: 60px;
    padding: 0 16px;
    font-size: 16px;
  }

  .faq-answer p {
    margin: -2px 16px 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .faq-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .faq-cta a {
    width: min(100%, 280px);
  }

  .pricing-page {
    min-height: auto;
    padding: 16px 12px 52px;
  }

  .plan-section {
    width: 100%;
    padding: 20px 12px 16px;
    border-radius: 18px;
  }

  .plans-heading h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    min-height: 0;
    padding: 20px 14px 16px;
    border-radius: 16px;
  }

  .plan-top {
    min-height: 0;
    gap: 12px;
  }

  .plan-card h3 {
    font-size: 27px;
  }

  .price {
    min-width: 82px;
  }

  .included-box {
    min-height: 0;
    padding: 16px 14px;
  }

  .feature-list {
    gap: 11px;
  }

  .feature-list li {
    padding-left: 28px;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .plan-cta {
    min-height: 48px;
  }

  .hack-hero {
    min-height: auto;
    padding: 58px 16px 66px;
  }

  .hack-hero-inner,
  .hack-intro-grid,
  .hack-process,
  .hack-comparison-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hack-hero-copy,
  .hack-intro-grid,
  .hack-heading-block,
  .hack-process-copy {
    text-align: center;
  }

  .hack-eyebrow,
  .hack-section-label {
    margin-inline: auto;
  }

  .hack-hero-copy h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(37px, 10.4vw, 54px);
  }

  .hack-hero-copy > p:not(.hack-eyebrow) {
    max-width: 33ch;
    margin-inline: auto;
    font-size: 16px;
  }

  .hack-status-panel {
    width: 100%;
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .hack-panel-top {
    font-size: 16px;
  }

  .hack-panel-top img {
    width: 50px;
    height: 50px;
  }

  .hack-panel-meter {
    margin-top: 24px;
    padding: 20px;
  }

  .hack-panel-lines {
    margin: 24px 0;
  }

  .hack-intro,
  .hack-feature-section,
  .hack-process,
  .hack-comparison {
    padding: 64px 16px;
  }

  .hack-intro h2,
  .hack-heading-block h2,
  .hack-process h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(32px, 9vw, 44px);
  }

  .hack-intro-copy p,
  .hack-heading-block p:not(.hack-eyebrow),
  .hack-process-copy > p:not(.hack-eyebrow) {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 16px;
  }

  .hack-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hack-feature-card {
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .hack-feature-card span {
    margin-bottom: 18px;
  }

  .hack-feature-card h3 {
    padding-top: 0;
  }

  .hack-process {
    width: calc(100% + 32px);
    margin-inline: -16px;
    border-radius: 0;
  }

  .hack-steps {
    gap: 14px;
  }

  .hack-steps article,
  .hack-compare-card {
    padding: 22px;
    border-radius: 16px;
  }

  .hack-compare-card {
    min-height: 0;
  }

  .hack-compare-card.featured a {
    width: 100%;
  }

  .site-footer {
    overflow: hidden;
  }

  .footer-lime {
    min-height: 0;
    gap: 38px;
    padding: 32px 16px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .footer-brandline {
    grid-column: 1 / -1;
  }

  .footer-brandline p {
    max-width: 11ch;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-column h2 {
    font-size: 13px;
  }

  .footer-column a {
    width: 100%;
    font-size: 13.5px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .footer-lime-bottom,
  .footer-black {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-socials,
  .footer-black nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .footer-black {
    padding: 20px 16px 24px;
    font-size: 13px;
  }
}

/* Tablet-range home promo (≈581–900px).
   The shared mobile block above caps this panel to 560px wide and the
   headline to 11ch — built for the big-font phone layout. At tablet widths
   that crams the desktop-style copy into a thin column. Restore a roomy,
   balanced two-column layout for this range only. */
@media (min-width: 581px) and (max-width: 900px) {
  .pricing-promo.home-pricing-promo {
    max-width: none;
    min-height: 240px;
    padding: clamp(26px, 4vw, 40px);
    align-items: center;
  }

  .pricing-promo.home-pricing-promo .pricing-promo-copy {
    max-width: 62%;
  }

  .pricing-promo.home-pricing-promo h1 {
    max-width: none;
    font-size: clamp(26px, 4.1vw, 34px);
    line-height: 1.08;
  }

  .pricing-promo.home-pricing-promo h2 {
    max-width: none;
    font-size: clamp(15px, 1.9vw, 18px);
  }

  .pricing-promo.home-pricing-promo .pricing-genie-art {
    right: clamp(6px, 2vw, 28px);
    height: clamp(150px, 64%, 210px);
    opacity: 0.9;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero-media {
    min-height: 330px;
  }

  .video-carousel {
    min-height: 330px;
  }

  .video-slot {
    width: min(100%, 286px);
  }

  .pricing-promo,
  .pricing-promo.home-pricing-promo {
    min-height: 390px;
    padding: 20px;
  }

  .pricing-promo h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .pricing-promo h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .detection-callout-section {
    padding: 48px 12px 58px;
  }

  .detection-callout h2 {
    font-size: clamp(29px, 8.3vw, 42px);
  }

  .detection-title-line {
    gap: 4px 12px;
  }

  .wembean-logo-inline {
    width: clamp(76px, 21vw, 92px);
  }

  .detection-callout p {
    font-size: 16px;
  }

  .detection-actions {
    width: 100%;
  }

  .detection-action-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 14px 22px;
    line-height: 1.25;
  }

  .discord-proof-callout {
    width: 100%;
  }

  .discord-proof-callout p {
    font-size: 13px;
  }

  .proof-arrow {
    left: clamp(76px, 40vw, 142px);
    top: -56px;
    width: 64px;
    height: 64px;
  }

  .chrome-store-copy h2,
  .workflow-showcase[data-workflow-showcase] .workflow-inner h2,
  .hack-hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .workflow-visual-shell {
    aspect-ratio: 1 / 1.18;
  }

  .review-card-main p {
    font-size: 16px;
  }

  .plan-top {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  .entry-loader {
    animation: entryPanelExit 1ms ease 280ms forwards;
  }

  .entry-mark {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: none;
  }

  .hero-genie-glow {
    animation: none;
    background-position: 50% 50%;
  }

  .video-slot {
    transition-duration: 1ms;
  }

  .memgenie-update,
  .memgenie-update * {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }

  .memgenie-update .update-grid,
  .memgenie-update .update-scan,
  .memgenie-update .update-lockup,
  .memgenie-update .update-title-shell h2,
  .memgenie-update .update-corner {
    opacity: 1;
    filter: none;
  }

  .memgenie-update .update-lockup,
  .memgenie-update .update-title-shell h2 {
    transform: none;
  }

  .memgenie-update .update-title-shell {
    clip-path: inset(0 0 0 0);
  }
}

/* === MemGenie auth bridge: avatar + account dropdown === */
.mg-account {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mg-avatar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: 999px;
  /* No overflow:hidden here — the .mg-avatar-pro-dot sits at right/bottom 1px
     with a 2px dark ring that would otherwise visually bite into the avatar's
     edge. Inner image/initials clip to the circle themselves below. */
  cursor: pointer;
  text-decoration: none;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(200, 255, 0, 0.22), transparent 60%),
    linear-gradient(135deg, #1a1f0a, #0c0d09);
  color: var(--lime);
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 6px 20px -10px rgba(200, 255, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.mg-avatar-link:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 255, 0, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px -10px rgba(200, 255, 0, 0.6);
}
.mg-avatar-link:focus-visible {
  outline: none;
  border-color: var(--lime);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 3px rgba(200, 255, 0, 0.35);
}
.mg-account.is-open .mg-avatar-link {
  border-color: var(--lime);
}
.mg-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.mg-avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a3a0a, #161a0a);
  color: var(--lime);
  border-radius: inherit;
}
.mg-avatar-initials.is-pro {
  background: linear-gradient(135deg, var(--lime), #8fb800);
  color: #0a0c05;
}
.mg-avatar-pro-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--lime);
  /* Sits just outside the avatar edge; the dark ring becomes a clean badge
     border rather than a notch cut out of the circle. */
  box-shadow: 0 0 0 2px #0a0c05, 0 0 8px rgba(200, 255, 0, 0.7);
  pointer-events: none;
}

/* Account dropdown panel */
.mg-account-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  min-width: 260px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #14161b, #0c0d10);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px -20px rgba(0, 0, 0, 0.85),
    0 8px 24px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 0.14s ease,
    transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.2),
    visibility 0.18s;
  pointer-events: none;
}
.mg-account.is-open .mg-account-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mg-account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
}
.mg-account-head-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a3a0a, #161a0a);
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
}
.mg-account-head-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mg-account-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.mg-account-name {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f3f5ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mg-account-pro-badge {
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--lime);
  color: #0a0c05;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.mg-account-email {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mg-account-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #d6d9d1;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.mg-account-item:hover,
.mg-account-item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  outline: none;
}
.mg-account-item.is-accent {
  color: var(--lime);
}
.mg-account-item.is-accent:hover {
  background: rgba(200, 255, 0, 0.08);
  color: var(--lime);
}
.mg-account-item.is-danger:hover {
  background: rgba(244, 4, 80, 0.10);
  color: #ff5277;
}
.mg-account-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  opacity: 0.85;
}
.mg-account-sep {
  display: block;
  height: 1px;
  margin: 6px 4px;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 720px) {
  .mg-account-panel {
    right: 0;
    left: auto;
    min-width: 240px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mg-account-panel { transition: opacity 0.1s ease, visibility 0.1s; transform: none; }
  .mg-avatar-link { transition: none; }
}

/* =====================================================================
   HEADER SYSTEM (overhauled) — robust 3-column grid: [logo | nav | actions]
   The middle nav lives in a 1fr track with overflow-x, so it can never
   collide with the logo or the action buttons. Selectors are prefixed with
   `header.site-header` to win over all earlier header rules.
   ===================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 44px);
  min-height: 88px;
  padding: 14px clamp(18px, 2.4vw, 44px);
  background: rgba(8, 9, 11, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.site-header .brand {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

header.site-header .brand-logo {
  display: block;
  width: clamp(164px, 12.5vw, 232px);
  height: auto;
}

/* wrapper is transparent so nav + actions become direct grid items */
header.site-header .site-menu {
  display: contents;
}

/* ---- middle nav: boxed into the 1fr track, scrolls if cramped ---- */
header.site-header .main-nav {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.6vw, 12px);
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  color: var(--muted);
  font-size: clamp(13.5px, 0.92vw, 16px);
  font-weight: 600;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

header.site-header .main-nav::-webkit-scrollbar {
  display: none;
}

header.site-header .main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 7px 11px;
  border-radius: 10px;
  color: var(--muted);
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}

header.site-header .main-nav a:hover,
header.site-header .main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

header.site-header .main-nav a.active {
  color: var(--lime);
}

/* Pricing link + 30% OFF badge inside nav */
header.site-header .nav-pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Support link styled in Discord brand color so it stands out in the nav */
header.site-header .nav-support {
  color: #98a0f5;
}

header.site-header .nav-support:hover,
header.site-header .nav-support:focus-visible {
  color: #fff !important;
  background: rgba(88, 101, 242, 0.18) !important;
}

header.site-header .nav-support svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* ---- right-side actions: only Login + Sign up, never shrink ---- */
header.site-header .header-actions {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

header.site-header .header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

header.site-header .header-actions a:hover {
  transform: translateY(-1px);
}

header.site-header .login-button {
  color: var(--lime);
  background: rgba(199, 255, 0, 0.07);
  border: 1px solid rgba(199, 255, 0, 0.16);
}

header.site-header .login-button:hover {
  background: rgba(199, 255, 0, 0.12);
}

header.site-header .signup-button {
  color: #050705;
  background: var(--lime);
  border: 1px solid var(--lime);
}

header.site-header .signup-button:hover {
  background: #d4ff33;
}

/* hamburger hidden on desktop */
header.site-header .menu-toggle {
  display: none;
  grid-column: 4;
  grid-row: 1;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 13px;
  border: 1px solid rgba(199, 255, 0, 0.18);
  color: #f5f5f5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 20, 24, 0.92);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

header.site-header .menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 230ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

/* ===================== TABLET / MOBILE: hamburger ===================== */
@media (max-width: 940px) {
  header.site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 14px 10px;
    min-height: 0;
    padding: 14px clamp(14px, 3vw, 24px);
  }

  header.site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  header.site-header .brand-logo {
    width: min(190px, 46vw);
  }

  header.site-header .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 42px;
    height: 42px;
  }

  header.site-header .menu-toggle:hover,
  header.site-header .menu-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 255, 0, 0.36);
  }

  header.site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  header.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  header.site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* The whole drawer (nav links + login/signup) becomes one collapsible
     panel spanning the full width on row 2 — .site-menu stops being a grid
     pass-through here so its children (nav, actions) stack vertically. */
  header.site-header .site-menu {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  header.site-header.is-menu-open .site-menu {
    max-height: 620px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 4px;
  }

  header.site-header .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    font-size: 15px;
    -webkit-mask-image: none;
            mask-image: none;
  }

  header.site-header .main-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  header.site-header .main-nav a.active {
    background: rgba(199, 255, 0, 0.09);
    border-color: rgba(199, 255, 0, 0.16);
  }

  header.site-header .nav-support {
    background: rgba(88, 101, 242, 0.16);
    border-color: rgba(88, 101, 242, 0.28);
    color: #c2c8fb;
  }

  /* Login / Sign up move into the drawer, below the nav links */
  header.site-header .header-actions {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
  }

  header.site-header .header-actions a {
    flex: 1 1 0;
    height: 48px;
    padding: 0 13px;
    font-size: 14.5px;
    border-radius: 12px;
  }
}

@media (max-width: 540px) {
  header.site-header {
    gap: 10px 8px;
    padding: 12px 14px;
  }

  header.site-header .brand-logo {
    width: min(150px, 38vw);
  }

  header.site-header .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  header.site-header .menu-toggle span {
    width: 18px;
  }
}

@media (max-width: 380px) {
  header.site-header .brand-logo {
    width: min(122px, 34vw);
  }
}

/* =====================================================================
   MOBILE POLISH OVERRIDES  (appended last so they win the cascade)
   Consolidated fixes for phone layout. Scoped to <=720px.
   ===================================================================== */
@media (max-width: 720px) {
  /* ---- Hero video carousel: bigger active video + peeking side videos ---- */
  .hero-media {
    width: 100%;
    min-height: 0;
    perspective: 1100px;
  }

  .video-carousel {
    width: 100%;
    max-width: 460px;
    min-height: clamp(440px, 122vw, 540px);
    aspect-ratio: auto;
    margin: 0 auto;
    overflow: hidden;            /* clip the peeking flanks at the carousel edge,
                                    so they show without causing page scroll */
    border-radius: 28px;
  }

  .video-slot {
    width: min(72%, 300px);
    aspect-ratio: 10 / 16;
    border-radius: 26px;
  }

  /* Re-show the left/right videos flanking the active one (matches desktop). */
  .video-slot.is-left,
  .video-slot.is-right {
    opacity: 0.5;
    pointer-events: auto;
    filter: saturate(0.9) brightness(0.7);
  }

  .video-slot.is-left {
    transform: translate3d(-46%, 3%, -120px) rotateY(13deg) scale(0.7);
  }

  .video-slot.is-right {
    transform: translate3d(46%, 3%, -120px) rotateY(-13deg) scale(0.7);
  }

  .video-slot.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .video-frame strong {
    max-width: 220px;
    font-size: clamp(26px, 7.6vw, 34px);
  }

  /* (mobile genie hide was removed — the new compact promo design tucks
     the genie behind the headline at lower opacity, so we want it
     visible at all breakpoints. Positioning is handled by the
     `.pricing-promo .pricing-genie-art` rule earlier in the file.) */

  /* On mobile keep the main promo heading but drop the secondary line, and
     keep the heading at a sensible size so it doesn't dominate the card. */
  .home-pricing-promo h2 {
    display: none;
  }

  .pricing-promo.home-pricing-promo h1 {
    max-width: 14ch;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.06;
  }

  .pricing-promo.home-pricing-promo {
    min-height: 0;
  }

  /* ---- Hero title: drop the "|" and put MemGenie on its own line ---- */
  .hero-title-sep {
    display: none;
  }

  .hero-genie-glow {
    display: block;
  }

  /* ---- Hide the secondary "See How It Works" button on mobile ---- */
  .secondary-cta {
    display: none;
  }

  /* ---- Workflow: drop each demo video directly under its matching step ---- */
  .workflow-sticky-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .workflow-panel-list,
  .workflow-visual-sticky,
  .workflow-visual-shell {
    display: contents;
  }

  .workflow-step[data-workflow-step="0"] { order: 1; }
  .workflow-visual-card[data-workflow-visual="0"] { order: 2; }
  .workflow-step[data-workflow-step="1"] { order: 3; }
  .workflow-visual-card[data-workflow-visual="1"] { order: 4; }
  .workflow-step[data-workflow-step="2"] { order: 5; }
  .workflow-visual-card[data-workflow-visual="2"] { order: 6; }

  /* Every card renders in-flow and stays visible (no scroll-toggled fade). */
  .workflow-visual-card[data-workflow-visual] {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1.05;
    margin: 0 auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .workflow-step {
    min-height: auto;
    opacity: 1;
    transform: none;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 20px;
  }

  /* Keep the three step blocks visually uniform. */
  .workflow-step-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.06;
  }

  .workflow-step-copy p:not(.workflow-step-label) {
    max-width: none;
    font-size: 15px;
    line-height: 1.46;
  }

  /* ---- Detection callout: cleaner, tighter heading block ---- */
  .detection-callout-section {
    padding: 52px 16px 60px;
  }

  .detection-callout h2 {
    font-size: clamp(28px, 7.4vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    text-wrap: balance;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
  }

  .detection-callout h2 > span,
  .detection-callout h2 span {
    display: inline;
  }

  .detection-title-line {
    display: inline !important;
    white-space: normal;
  }

  .wembean-word,
  .detected-word {
    display: inline !important;
  }

  .wembean-logo-inline {
    width: clamp(88px, 22vw, 120px);
    margin: -0.1em 0 -0.18em;
  }

  .detection-callout p {
    max-width: 36ch;
    margin-top: 22px;
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.45;
  }

  /* ---- "Want more proof?" callout: cut the dead space above it ---- */
  .discord-proof-callout {
    margin: 16px auto 0;
  }

  .proof-arrow {
    top: -44px;
    width: 60px;
    height: 60px;
  }

  /* ---- Chrome Store section: stop it looking like a tall skinny strip ---- */
  .chrome-store-feature {
    min-height: 0;
    padding: 56px 18px 60px;
  }

  .chrome-store-copy {
    width: 100%;
    max-width: 560px;
  }

  .chrome-store-copy h2 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.06;
  }

  .chrome-store-copy p {
    max-width: 40ch;
    margin-inline: auto;
  }

  /* ---- Footer brandline: span the full width on mobile ---- */
  .footer-brandline {
    grid-column: 1 / -1;
  }

  .footer-brandline p {
    max-width: none;
  }
}

/* ---- Review entry transition: re-enable the desktop-style sticky scroll
   animation on mobile. An earlier max-width:900px rule had pinned it to
   position:relative / 46vh, which disabled the whole effect on phones.
   Scoped to no-preference so reduced-motion users keep the static fallback. */
@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .review-entry-transition {
    height: 170vh;
  }

  .review-entry-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 100vh;
  }
}

/* Genie-art positioning for the home-page promo card is handled by the
   shared `.pricing-promo .pricing-genie-art` rule above (lines ~4358).
   This block was previously a homepage-only override; it's no longer
   needed because the new design applies on both pages. */

/* ── Cross-site nav transition (memgenie.net → api.memgenie.net) ────────
 * When the user clicks Dashboard / Login / Sign up on the marketing site,
 * we re-show the .entry-loader and slide it DOWN over the page (reverse
 * of its exit animation), then navigate. The dashboard then mounts with
 * the same loader already covering the screen, so the two pages feel
 * visually continuous despite the cross-origin hop.
 */
.entry-loader.is-leaving {
  display: grid;
  animation: entryPanelEnter 480ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.entry-loader.is-leaving .entry-mark {
  animation: entryGenieFlashIn 480ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes entryPanelEnter {
  0%   { transform: translate3d(0, -104%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes entryGenieFlashIn {
  0%   { opacity: 0; transform: translate3d(0, -40vh, 0) scale(0.7); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

/* ── Final pricing-promo genie positioning override ───────────────────
 * The PNG has a black background so mix-blend-mode:screen drops the
 * black to invisible while keeping the neon pixels — no re-export needed.
 */
.pricing-promo .pricing-genie-art {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  right: clamp(-12px, 1.5vw, 56px);
  left: auto;
  width: auto;
  height: clamp(150px, 82%, 240px);
  max-height: none;
  opacity: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .pricing-promo .pricing-genie-art {
    right: -32px;
    height: clamp(160px, 58%, 220px);
    opacity: 0.55;
  }
  .pricing-promo .pricing-promo-copy {
    position: relative;
    z-index: 2;
  }
}

/* ===== Dashboard Feature Popup (desktop only, bottom-right) ===== */
.dbp {
  display: none;
}

@media (min-width: 768px) {
  .dbp {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 308px;
    background: #0c1400;
    border: 1px solid rgba(200, 255, 0, 0.16);
    border-radius: 20px;
    padding: 16px 16px 14px;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.5),
      0 0 48px -6px rgba(200, 255, 0, 0.18),
      0 28px 72px rgba(0, 0, 0, 0.65);
    z-index: 8900;
    transform: translateY(calc(100% + 48px));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    pointer-events: none;
    will-change: transform, opacity;
  }

  .dbp--in {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .dbp--out {
    transform: translateY(calc(100% + 48px));
    opacity: 0;
    pointer-events: none;
  }
}

.dbp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dbp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lime);
}

.dbp-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.dbp-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.dbp-title {
  margin: -6px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
}

.dbp-video-wrap {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(200, 255, 0, 0.08);
  box-shadow: 0 0 24px -4px rgba(200, 255, 0, 0.12);
}

.dbp-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dbp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--lime);
  color: #0c1400;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 16px 11px;
  border-radius: 10px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.dbp-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ============================================================
   MemGenie hero — autoplay-on-scroll demo video (Pre-comp 4_5)
   ============================================================ */
.mg-demo {
  position: relative;
  padding: clamp(56px, 6vw, 100px) clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, #050607 0%, #07090b 100%);
}

.mg-demo-head {
  max-width: 720px;
  margin: 0 auto clamp(28px, 3vw, 44px);
  text-align: center;
}

.mg-demo-head .hack-eyebrow { justify-content: center; }

.mg-demo-head h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.mg-demo-stage {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  padding: clamp(8px, 0.85vw, 12px);
  border-radius: clamp(16px, 1.6vw, 24px);
  background: linear-gradient(180deg, #15181d 0%, #0a0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px -30px rgba(0, 0, 0, 0.6),
    0 50px 120px -24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}

.mg-demo-stage:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 60px 140px -24px rgba(0, 0, 0, 0.75),
    0 0 70px -10px rgba(199, 255, 0, 0.1);
}

/* Skeleton shimmer shown behind the video until it paints */
.mg-demo-stage::before {
  content: "";
  position: absolute;
  inset: clamp(8px, 0.85vw, 12px);
  border-radius: clamp(9px, 1vw, 15px);
  background: #1f2125;
  animation: quizSkeleton 1.8s ease-in-out infinite;
  z-index: 0;
}

.mg-demo-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(9px, 1vw, 15px);
  cursor: pointer;
}

/* ============================================================
   Quiz Automation page — featured video section
   ============================================================ */
.quiz-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 124px) clamp(18px, 4vw, 64px);
  background:
    linear-gradient(180deg, #06080a 0%, #0a0d11 48%, #06080a 100%);
}

.quiz-feature-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 16%, rgba(199, 255, 0, 0.10), transparent 40%),
    radial-gradient(circle at 82% 82%, rgba(56, 96, 255, 0.10), transparent 46%),
    radial-gradient(circle at 16% 78%, rgba(244, 4, 80, 0.06), transparent 42%);
}

.quiz-feature-head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 3.6vw, 56px);
  text-align: center;
}

.quiz-feature-head h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.04;
  font-weight: 920;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.quiz-feature-head .hack-eyebrow {
  justify-content: center;
}

.quiz-feature-head > p {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
  font-weight: 500;
}

/* Premium dark video player frame */
.quiz-feature-stage {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  padding: clamp(8px, 0.85vw, 12px);
  border-radius: clamp(16px, 1.6vw, 22px);
  background: linear-gradient(180deg, #15181d 0%, #0a0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px -30px rgba(0, 0, 0, 0.6),
    0 50px 120px -24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}

.quiz-feature-stage:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 60px 140px -24px rgba(0, 0, 0, 0.75),
    0 0 70px -10px rgba(199, 255, 0, 0.1);
}

/* Skeleton shimmer shown behind the video until it paints */
.quiz-feature-stage::before {
  content: "";
  position: absolute;
  inset: clamp(8px, 0.85vw, 12px);
  border-radius: clamp(9px, 1vw, 13px);
  background: #1f2125;
  animation: quizSkeleton 1.8s ease-in-out infinite;
  z-index: 0;
}

@keyframes quizSkeleton {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.5; }
}

.quiz-feature-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(9px, 1vw, 13px);
  background: #05070a;
  outline: none;
}

.quiz-feature-badge {
  position: absolute;
  top: clamp(16px, 1.6vw, 26px);
  left: clamp(16px, 1.6vw, 26px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.quiz-feature-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(199, 255, 0, 0.85);
  animation: featureAutoPulse 1.5s ease-in-out infinite;
}

.quiz-feature-actions {
  margin-top: clamp(30px, 3vw, 46px);
  display: flex;
  justify-content: center;
}

@media (max-width: 720px) {
  .quiz-feature-badge {
    top: 12px;
    left: 12px;
    padding: 6px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-feature-dot {
    animation: none;
  }
}

/* === Custom video player (quiz demo) === */
.quiz-feature-video {
  cursor: pointer;
}

/* Big center play button */
.qp-bigplay {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 3;
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 12, 16, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.3s ease;
}

.qp-bigplay svg {
  width: 38%;
  height: 38%;
  fill: currentColor;
  margin-left: 8%;
}

.qp-bigplay:hover {
  transform: scale(1.06);
  background: rgba(10, 12, 16, 0.58);
}

[data-quiz-player].has-started .qp-bigplay {
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

/* Control bar */
.qp-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 8px;
  padding: clamp(30px, 5vw, 46px) clamp(12px, 1.4vw, 18px) clamp(11px, 1.2vw, 15px);
  background: linear-gradient(180deg, transparent, rgba(4, 6, 9, 0.82));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

[data-quiz-player].has-started:hover .qp-bar,
[data-quiz-player].has-started:focus-within .qp-bar,
[data-quiz-player].is-paused .qp-bar {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.qp-scrub {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qp-seek {
  flex: 1;
  height: 5px;
  margin: 0;
  accent-color: var(--lime);
  cursor: pointer;
}

.qp-time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(11.5px, 0.9vw, 13px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.qp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qp-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.qp-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 9px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.qp-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.qp-btn:hover {
  background: rgba(255, 255, 255, 0.13);
}

.qp-btn:active {
  transform: scale(0.92);
}

/* Speed menu */
.qp-settings-wrap {
  position: relative;
}

.qp-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 132px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 15, 19, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.qp-menu.open {
  display: flex;
}

.qp-menu-title {
  padding: 4px 10px 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qp-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: none;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.qp-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.qp-menu button.active {
  color: var(--lime);
}

.qp-menu button.active::after {
  content: "✓";
  font-weight: 900;
}

@media (max-width: 720px) {
  .qp-btn {
    width: 34px;
    height: 34px;
  }
  .qp-btn svg {
    width: 19px;
    height: 19px;
  }
}

/* === Legal pages (privacy / terms) === */
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 96px) clamp(20px, 5vw, 32px) clamp(80px, 10vw, 128px);
}
.legal-hero {
  padding-bottom: clamp(26px, 4vw, 40px);
  margin-bottom: clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime);
}
.legal-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 12px 1px rgba(200, 255, 0, 0.55);
}
.legal-page h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 6vw, 54px); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.025em; color: var(--white);
}
.legal-meta {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 20px 0 0; padding: 6px 14px;
  font-size: 13px; color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line); border-radius: 999px;
}
.legal-meta time { color: #d8dade; font-weight: 600; }
.legal-intro {
  margin: 24px 0 0; max-width: 68ch;
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: #c4c7ce;
}
.legal-body { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 58px); }
.legal-block h2 {
  position: relative; margin: 0 0 16px; padding-left: 18px;
  font-size: clamp(21px, 2.4vw, 27px); font-weight: 700; line-height: 1.2;
  letter-spacing: -0.015em; color: var(--white);
}
.legal-block h2::before {
  content: ""; position: absolute; left: 0; top: 5px; bottom: 5px;
  width: 4px; border-radius: 4px; background: var(--lime);
}
.legal-block h3 {
  margin: 26px 0 10px; font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em; color: #eceef2;
}
.legal-block p {
  margin: 0 0 14px; max-width: 72ch;
  font-size: 15.5px; line-height: 1.78; color: var(--muted);
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-note { font-size: 14px; color: #797d85; font-style: italic; }
.legal-block ul {
  list-style: none; margin: 4px 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.legal-block ul li {
  position: relative; padding-left: 28px; max-width: 72ch;
  font-size: 15px; line-height: 1.6; color: #c9ccd3;
}
.legal-block ul li::before {
  content: ""; position: absolute; left: 5px; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 9px 0 rgba(200, 255, 0, 0.4);
}
.legal-block--deny ul li::before,
.legal-block ul.legal-deny li::before {
  content: "\00d7"; width: auto; height: auto; left: 4px; top: 0;
  background: none; box-shadow: none;
  color: var(--pink); font-size: 14px; font-weight: 800; line-height: 1.6;
}
.legal-quote {
  position: relative; overflow: hidden;
  margin: clamp(54px, 7vw, 84px) 0 0; padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.045), rgba(255, 255, 255, 0.012));
}
.legal-quote::before {
  content: "\201C"; position: absolute; top: -18px; left: 16px;
  font-family: Georgia, "Times New Roman", serif; font-size: 130px; line-height: 1;
  color: rgba(200, 255, 0, 0.13);
}
.legal-quote blockquote {
  position: relative; margin: 0; max-width: 60ch;
  font-size: clamp(17px, 2vw, 21px); line-height: 1.6; font-style: italic; color: #eceef2;
}
.legal-quote figcaption {
  margin-top: 16px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--lime);
}


/* === Header action cluster: occlude cramped-nav overflow === */
@media (min-width: 1201px) {
  .header-actions {
    position: relative;
    z-index: 2;
    padding-left: clamp(12px, 1.4vw, 22px);
    background: rgba(8, 9, 11, 0.98);
  }
}

/* ============================================================
   StudyGenie universal layer — family hub, product switcher,
   coming-soon teasers. Framer-flavored dark/mono aesthetic.
   Per-product accents; MemGenie page keeps its own styling.
   ============================================================ */

.sg-page {
  --accent: var(--lime);
  --accent-ink: #0a0d04;
  --mem: #c8ff00;
  --delta: #3d8bff;
  --ixl: #a970ff;
  --sg-card: #101216;
  --sg-card-2: #0d0f13;
  --sg-line: rgba(255, 255, 255, 0.08);
  --sg-line-soft: rgba(255, 255, 255, 0.05);
}
.sg-page--mem   { --accent: var(--mem);   --accent-ink: #0a0d04; }
.sg-page--delta { --accent: var(--delta); --accent-ink: #ffffff; }
.sg-page--ixl   { --accent: var(--ixl);   --accent-ink: #ffffff; }

/* ---- Universal brand wordmark ---- */
.sg-brand { gap: 12px; }
.sg-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--mem) 0%, var(--delta) 52%, var(--ixl) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset, 0 6px 18px rgba(0, 0, 0, 0.5);
  position: relative;
}
.sg-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.85) 0 1.6px, transparent 2px),
    radial-gradient(circle at 64% 62%, rgba(255, 255, 255, 0.55) 0 1.1px, transparent 1.6px);
}
.sg-wordmark {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.55vw, 27px);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.sg-wordmark b {
  font-weight: 900;
  background: linear-gradient(92deg, var(--mem), var(--delta) 55%, var(--ixl));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Product switcher (the family taskbar element) ---- */
.sg-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 5px;
  border: 1px solid var(--sg-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.sg-switcher::-webkit-scrollbar { display: none; }
.sg-switcher a {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 10px;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}
.sg-switcher a:hover,
.sg-switcher a:focus-visible { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.sg-switcher a[data-genie="mem"]:hover   { color: var(--mem); }
.sg-switcher a[data-genie="delta"]:hover { color: var(--delta); }
.sg-switcher a[data-genie="ixl"]:hover   { color: var(--ixl); }
.sg-switcher a.is-current { color: var(--accent-ink); background: var(--accent); font-weight: 600; }
.sg-page--mem   .sg-switcher a.is-current { color: #0a0d04; }

/* ---- Shared eyebrow + section heads ---- */
.sg-eyebrow {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}
.sg-page--hub .sg-eyebrow { color: var(--delta); }
.sg-section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 4vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sg-section-head h2 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.sg-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
}
.sg-grad {
  background: linear-gradient(92deg, var(--mem), var(--delta) 55%, var(--ixl));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Hub hero ---- */
.sg-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 12vh, 150px) clamp(20px, 5vw, 64px) clamp(60px, 9vh, 120px);
  text-align: center;
  border-bottom: 1px solid var(--sg-line);
}
.sg-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  z-index: 0;
}
.sg-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(10, 12, 16, 0.2) 0%, rgba(5, 6, 7, 0.86) 62%, var(--black) 100%);
}
.sg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: sgFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.sg-hero h1 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.sg-hero-lede {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}
.sg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
.sg-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}
.sg-hero-stars { color: var(--mem); letter-spacing: 2px; }

@keyframes sgFadeUp {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* ---- Generic section wrappers ---- */
.sg-products,
.sg-engine,
.sg-steps,
.sg-faq {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
}
.sg-engine,
.sg-steps { border-top: 1px solid var(--sg-line); }

/* ---- Product cards ---- */
.sg-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sg-product-card {
  --card-accent: var(--mem);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--sg-line);
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--card-accent) 14%, transparent) 0%, transparent 55%),
    var(--sg-card);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.sg-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--card-accent);
  opacity: 0.9;
}
.sg-product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 55%, var(--sg-line));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.sg-product-card--mem   { --card-accent: var(--mem); }
.sg-product-card--delta { --card-accent: var(--delta); }
.sg-product-card--ixl   { --card-accent: var(--ixl); }
.sg-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sg-product-status {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid var(--sg-line);
}
.sg-product-status.is-live {
  color: var(--accent-ink, #0a0d04);
  color: #0a0d04;
  background: var(--card-accent);
  border-color: transparent;
}
.sg-product-platform {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.sg-product-name {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--white);
}
.sg-product-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.sg-product-feats {
  list-style: none;
  margin: 4px 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sg-product-feats li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #cdd0d6;
  line-height: 1.4;
}
.sg-product-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--card-accent) 22%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--card-accent) 45%, transparent) inset;
}
.sg-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 15px;
  color: #0a0d04;
  background: var(--card-accent);
  transition: filter 160ms ease, transform 160ms ease;
}
.sg-product-card--delta .sg-product-cta,
.sg-product-card--ixl .sg-product-cta { color: #fff; }
.sg-product-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.sg-product-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* ---- Feature grid (shared engine / previews) ---- */
.sg-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sg-feature-card {
  padding: 28px;
  border: 1px solid var(--sg-line);
  border-radius: 18px;
  background: var(--sg-card-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sg-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent) inset;
}
.sg-page--hub .sg-feature-icon {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px var(--sg-line) inset;
}
.sg-feature-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sg-page--hub .sg-feature-icon svg { stroke: var(--delta); }
.sg-feature-card h3 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--white);
}
.sg-feature-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---- Steps ---- */
.sg-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: sg-step;
}
.sg-step {
  padding: 28px;
  border: 1px solid var(--sg-line);
  border-radius: 18px;
  background: var(--sg-card-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sg-step-num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--delta);
  letter-spacing: 0.06em;
}
.sg-step h3 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.sg-step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---- Stats band ---- */
.sg-stats {
  border-top: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}
.sg-stat {
  padding: clamp(36px, 5vw, 60px) 20px;
  text-align: center;
  border-right: 1px solid var(--sg-line);
}
.sg-stat:last-child { border-right: 0; }
.sg-stat strong {
  display: block;
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
  color: var(--white);
}
.sg-stat span { color: var(--muted); font-size: 14px; }

/* ---- FAQ head (reuses existing .faq-list / .faq-item) ---- */
.sg-faq .faq-list { max-width: 820px; margin: 0 auto; }

/* ---- CTA band ---- */
.sg-cta {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--sg-line);
}
.sg-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(40px, 5vw, 68px) clamp(24px, 4vw, 56px);
  border: 1px solid var(--sg-line);
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 60%),
    var(--sg-card);
}
.sg-page--hub .sg-cta-inner {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(61, 139, 255, 0.14) 0%, transparent 60%),
    var(--sg-card);
}
.sg-cta-inner h2 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.sg-cta-inner p { margin: 0; color: var(--muted); font-size: clamp(15px, 1.2vw, 19px); }

/* ---- Coming-soon hero ---- */
.sg-soon {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vh, 150px) clamp(20px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--sg-line);
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 50% 0%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 58%),
    var(--black);
}
.sg-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask: radial-gradient(80% 70% at 50% 30%, #000 0%, transparent 75%);
  z-index: 0;
}
.sg-soon-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: sgFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.sg-soon h1 {
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
  margin: 0;
}
.sg-soon-lede { max-width: 620px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
.sg-soon-note { margin: 4px 0 0; color: var(--muted); font-size: 13px; opacity: 0.85; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .sg-product-grid,
  .sg-feature-grid,
  .sg-step-list { grid-template-columns: 1fr 1fr; }
  .sg-stats { grid-template-columns: 1fr 1fr; }
  .sg-stat:nth-child(2) { border-right: 0; }
  .sg-stat:nth-child(1),
  .sg-stat:nth-child(2) { border-bottom: 1px solid var(--sg-line); }
}
@media (max-width: 760px) {
  .sg-product-grid,
  .sg-feature-grid,
  .sg-step-list { grid-template-columns: 1fr; }
  .sg-switcher a { padding: 7px 10px; }
  .sg-wordmark { font-size: 19px; }
}
@media (max-width: 460px) {
  .sg-wordmark { display: none; }
  .sg-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   StudyGenie v2 — compact taskbar, genie dropdown, buttons,
   motion. Overrides the earlier .sg-* header/switcher styles.
   ============================================================ */

/* ---- Compact header ---- */
.sg-header {
  min-height: 64px;
  padding: 10px clamp(14px, 2.2vw, 40px);
  gap: clamp(8px, 1.4vw, 20px);
  background: rgba(9, 10, 12, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--sg-line);
}
.sg-brandwrap {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  min-width: 0;
}
.sg-brand { gap: 9px; flex: 0 0 auto; }
.sg-mark { width: 30px; height: 30px; border-radius: 9px; }
.sg-wordmark { font-size: clamp(17px, 1.3vw, 21px); }

/* ---- Genie dropdown ---- */
.sg-genie-dd { position: relative; flex: 0 0 auto; }
.sg-genie-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--sg-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.sg-genie-trigger:hover,
.sg-genie-dd.is-open .sg-genie-trigger { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.16); }
.sg-genie-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(from 210deg, var(--mem), var(--delta), var(--ixl), var(--mem));
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}
.sg-genie-dd[data-current="mem"]   .sg-genie-dot { background: var(--mem); }
.sg-genie-dd[data-current="delta"] .sg-genie-dot { background: var(--delta); }
.sg-genie-dd[data-current="ixl"]   .sg-genie-dot { background: var(--ixl); }
.sg-genie-label { white-space: nowrap; }
.sg-caret {
  width: 14px; height: 14px; fill: none; stroke: currentColor;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.65; transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-genie-dd.is-open .sg-caret { transform: rotate(180deg); }

.sg-genie-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  min-width: 0;
  padding: 6px;
  border: 1px solid var(--sg-line);
  border-radius: 15px;
  background: #0d0f13;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), visibility 160ms;
}
.sg-genie-dd.is-open .sg-genie-menu { opacity: 1; visibility: visible; transform: none; }
.sg-genie-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 11px;
  color: var(--white);
  transition: background 140ms ease;
}
.sg-genie-menu a:hover { background: rgba(255, 255, 255, 0.06); }
.sg-genie-menu a.is-current { background: rgba(255, 255, 255, 0.05); }
.sg-gm-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; box-shadow: 0 0 10px currentColor; }
.sg-genie-menu a[data-genie="mem"] .sg-gm-dot   { background: var(--mem);   color: var(--mem); }
.sg-genie-menu a[data-genie="delta"] .sg-gm-dot { background: var(--delta); color: var(--delta); }
.sg-genie-menu a[data-genie="ixl"] .sg-gm-dot   { background: var(--ixl);   color: var(--ixl); }
.sg-gm-text { flex: 1 1 auto; font-family: "Geist", Inter, sans-serif; font-weight: 600; font-size: 14px; line-height: 1.2; }
.sg-gm-text small { display: block; margin-top: 2px; color: var(--muted); font-family: "Geist Mono", monospace; font-weight: 500; font-size: 11px; }
.sg-gm-badge {
  font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 999px;
  color: var(--muted); border: 1px solid var(--sg-line);
}
.sg-gm-badge.is-live { color: #0a0d04; background: var(--mem); border-color: transparent; }

/* ---- Nav (pill items) ---- */
.sg-nav {
  gap: 2px;
  margin-inline: clamp(6px, 1.4vw, 16px) auto;
  font-family: "Geist", Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.sg-nav a {
  min-height: 0;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--muted);
  transition: color 150ms ease, background 150ms ease;
}
.sg-nav a:hover,
.sg-nav a:focus-visible { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.sg-nav-sep { width: 1px; height: 14px; background: var(--sg-line); margin: 0 5px; align-self: center; flex: 0 0 auto; }

/* ---- Actions ---- */
.sg-actions { gap: 8px; }
.sg-pricing {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 12px; border-radius: 10px;
  color: var(--white); font-family: "Geist", Inter, sans-serif; font-weight: 600; font-size: 14px;
  transition: background 150ms ease;
}
.sg-pricing:hover { background: rgba(255, 255, 255, 0.06); }
.sg-discount {
  font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  padding: 2px 6px; border-radius: 6px; color: #0a0d04; background: var(--mem);
}
.sg-actions-divider { width: 1px; height: 20px; background: var(--sg-line); margin: 0 3px; flex: 0 0 auto; }

/* Compact login/signup inside the taskbar (override tall MemGenie buttons) */
.sg-header .login-button,
.sg-header .signup-button {
  min-height: 36px; height: 36px; padding: 0 15px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
}
.sg-header .login-button {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--sg-line);
  box-shadow: none;
}
.sg-header .login-button:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.18); }
.sg-header .signup-button {
  color: #0a0d04;
  background: linear-gradient(135deg, #e4ff5a 0%, var(--mem) 52%, #a9e000 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(200, 255, 0, 0.24);
}

/* ---- Buttons (hero / CTA) ---- */
.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 54px;
  padding: 0 26px;
  border-radius: 15px;
  font-family: "Geist", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 170ms ease, box-shadow 240ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}
.sg-btn:hover { transform: translateY(-2px); }
.sg-btn:active { transform: translateY(0); }
.sg-btn-arrow {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 200ms ease;
}
.sg-btn:hover .sg-btn-arrow { transform: translateX(4px); }
.sg-btn--lime { color: #0a0d04; background: linear-gradient(135deg, #e4ff5a, var(--mem) 52%, #a9e000); box-shadow: 0 12px 30px rgba(200, 255, 0, 0.28); }
.sg-btn--lime:hover { box-shadow: 0 18px 42px rgba(200, 255, 0, 0.42); filter: brightness(1.03); }
.sg-btn--accent { color: var(--accent-ink); background: var(--accent); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 34%, transparent); }
.sg-btn--accent:hover { filter: brightness(1.06); box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 48%, transparent); }
.sg-btn--ghost { color: var(--white); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--sg-line); }
.sg-btn--ghost:hover { background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.2); }
.sg-btn::before {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 640ms ease;
  pointer-events: none;
}
.sg-btn--lime:hover::before,
.sg-btn--accent:hover::before { left: 135%; }

/* ---- Motion: scroll reveal + counters ---- */
.sg-anim .sg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.sg-anim .sg-reveal.is-in { opacity: 1; transform: none; }
.sg-stat strong { font-variant-numeric: tabular-nums; }
.sg-product-card,
.sg-feature-card { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .sg-anim .sg-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .sg-hero-inner, .sg-soon-inner { animation: none !important; }
}

/* ---- Mobile taskbar tweaks ---- */
@media (max-width: 760px) {
  .sg-header { min-height: 58px; padding: 8px 14px; }
  .sg-genie-trigger { height: 30px; }
  .sg-genie-menu { min-width: 220px; }
}
@media (max-width: 460px) {
  .sg-wordmark { display: none; }
}

/* ============================================================
   MemGenie plug-in hero (memgenie.html only) — scoped to
   .mg-plugin-hero so it never touches other pages.
   ============================================================ */
.mg-plugin-hero {
  position: relative;
  height: 260vh;
  background: #050607;
  --energy: #34e07a;
  --energy-soft: rgba(52, 224, 122, .55);
  --pf: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
.mg-plugin-hero .ph-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.mg-plugin-hero .ph-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mg-plugin-hero .ph-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(75% 60% at 62% 50%, #000 0%, transparent 78%);
          mask-image: radial-gradient(75% 60% at 62% 50%, #000 0%, transparent 78%);
  opacity: .5;
}
.mg-plugin-hero .ph-glow {
  position: absolute; left: 64%; top: 52%; width: 900px; height: 900px;
  transform: translate(-50%, -50%) scale(calc(.7 + var(--pw,0) * .5));
  background: radial-gradient(circle, var(--energy-soft) 0%, transparent 62%);
  opacity: calc(var(--pw,0) * .5); filter: blur(8px);
}
/* Soft fade at the bottom of the pinned stage so the green glow (and grid) melt
   into the base color instead of being hard-clipped by overflow:hidden. */
.mg-plugin-hero .ph-stage::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 30vh;
  background: linear-gradient(180deg, transparent 0%, rgba(5,6,7,.7) 55%, var(--black) 100%);
  z-index: 1; pointer-events: none;
}

.mg-plugin-hero .ph-scene {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
  width: 100%;
  max-width: 1180px;
  padding: 96px clamp(20px, 5vw, 48px) 0;
}
.mg-plugin-hero .ph-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.mg-plugin-hero .ph-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--lime);
}
.mg-plugin-hero .ph-title {
  font-family: 'Geist', Inter, system-ui, sans-serif;
  font-weight: 900; font-size: clamp(44px, 5.4vw, 82px); letter-spacing: -.05em; line-height: .96;
  text-transform: uppercase; margin: 0; color: #fff;
}
.mg-plugin-hero .ph-title .ph-on { transition: color .5s ease, text-shadow .5s ease; color: #3a3f4a; }
.mg-plugin-hero.is-lit .ph-title .ph-on { color: var(--energy); text-shadow: 0 0 30px var(--energy-soft); }
.mg-plugin-hero .ph-sub {
  max-width: 440px; margin: 0; color: var(--muted);
  font-family: var(--pf); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55;
}
.mg-plugin-hero .ph-cta { margin-top: 8px; }

.mg-plugin-hero .ph-panel-wrap { position: relative; will-change: transform, opacity; justify-self: center; }

/* cable */
.mg-plugin-hero .ph-cable { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.mg-plugin-hero .ph-core { fill: none; stroke: #3b4048; stroke-width: 4; stroke-linecap: round; transition: stroke .45s ease; }
.mg-plugin-hero .ph-cglow { fill: none; stroke: var(--energy); stroke-width: 7; stroke-linecap: round; opacity: 0; filter: blur(5px); transition: opacity .5s ease; }
.mg-plugin-hero.is-lit .ph-core { stroke: var(--energy); }
.mg-plugin-hero.is-lit .ph-cglow { opacity: .85; }
.mg-plugin-hero .ph-plug path, .mg-plugin-hero .ph-plug rect { fill: #2b2f37; stroke: #454b55; stroke-width: 1.5; transition: fill .4s ease, stroke .4s ease; }
.mg-plugin-hero.is-lit .ph-plug path, .mg-plugin-hero.is-lit .ph-plug rect { fill: #14361f; stroke: var(--energy); }
.mg-plugin-hero .ph-spark { fill: #eafff2; opacity: 0; }

/* popup (rebuilt from the extension source) */
.mg-plugin-hero .ph-pop {
  position: relative; width: 360px; background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.18);
  font-family: var(--pf); filter: grayscale(.55) brightness(.9) saturate(.7);
  transition: filter .6s ease, box-shadow .6s ease;
}
.mg-plugin-hero .ph-pop.is-live { filter: none; box-shadow: 0 26px 74px -14px rgba(52,224,122,.34), 0 0 0 1px rgba(52,224,122,.16), 0 2px 8px rgba(0,0,0,.2); }
.mg-plugin-hero .ph-port { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); width: 30px; height: 12px; border-radius: 5px 5px 3px 3px; background: #d7dbe1; border: 1px solid #c4c9d1; transition: background .4s, box-shadow .4s, border-color .4s; }
.mg-plugin-hero .ph-pop.is-live .ph-port { background: var(--energy); border-color: var(--energy); box-shadow: 0 0 16px var(--energy-soft); }
.mg-plugin-hero .pop-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mg-plugin-hero .pop-brand { display: flex; align-items: center; gap: 12px; }
.mg-plugin-hero .pop-logo { width: 96px; height: auto; display: block; }
.mg-plugin-hero .pop-badge { background: #8b5cf6; color: #fff; font: 700 12px var(--pf); padding: 2px 7px; border-radius: 4px; letter-spacing: .02em; }
.mg-plugin-hero .pop-avatar { width: 32px; height: 32px; border-radius: 50%; border: none; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg,#c7d2fe,#a5b4fc); color: #4b5563; }
.mg-plugin-hero .pop-avatar svg { width: 20px; height: 20px; }
.mg-plugin-hero .pop-rows { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.mg-plugin-hero .pop-row { display: flex; align-items: center; justify-content: space-between; border-radius: 12px; border-left: 4px solid #22c55e; background: #f3f4f6; padding: 12px 16px; }
.mg-plugin-hero .pop-row--quiz { border-left-color: #3b82f6; box-shadow: 0 0 0 1px rgba(59,130,246,.15), 0 0 12px 0 rgba(59,130,246,.18); }
.mg-plugin-hero .pop-row-left { display: flex; align-items: center; gap: 8px; }
.mg-plugin-hero .pop-row-label { font: 500 12px var(--pf); color: #111827; }
.mg-plugin-hero .pop-help { width: 16px; height: 16px; border-radius: 50%; background: #d1d5db; color: #4b5563; font: 600 11px var(--pf); display: grid; place-items: center; }
.mg-plugin-hero .tgl { position: relative; width: 44px; height: 24px; flex-shrink: 0; border-radius: 500px; background: #d2d2d2; box-shadow: inset 0 1px 2px rgba(0,0,0,.25); transition: background .3s ease; }
.mg-plugin-hero .ph-pop.is-live .tgl { background: #22c55e; }
.mg-plugin-hero .tgl-i { position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 1.5px; height: 9px; background: rgba(255,255,255,.85); border-radius: 1px; transition: opacity .25s; }
.mg-plugin-hero .tgl-o { position: absolute; right: 7px; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); transition: opacity .25s; }
.mg-plugin-hero .ph-pop.is-live .tgl-i, .mg-plugin-hero .ph-pop.is-live .tgl-o { opacity: 0; }
.mg-plugin-hero .knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(180deg,#fff,#d1d1d1); box-shadow: 0 .8px 1.2px -.6px rgba(0,0,0,.26), 0 2.1px 3px -1.25px rgba(0,0,0,.25), 0 4.2px 5.9px -1.9px rgba(0,0,0,.24), 0 8px 11px -2.5px rgba(0,0,0,.22), 0 16px 22px -3px rgba(0,0,0,.16); display: grid; place-items: center; transition: left .3s cubic-bezier(.4,0,.2,1); }
.mg-plugin-hero .ph-pop.is-live .knob { left: calc(100% - 22px); }
.mg-plugin-hero .knob-face { width: 15px; height: 15px; border-radius: 50%; background: linear-gradient(180deg,#f2f2f2,#e4e4e4); }
.mg-plugin-hero .pop-row:nth-of-type(2) .knob, .mg-plugin-hero .pop-row:nth-of-type(2) .tgl { transition-delay: .1s; }
.mg-plugin-hero .pop-row:nth-of-type(3) .knob, .mg-plugin-hero .pop-row:nth-of-type(3) .tgl { transition-delay: .2s; }
.mg-plugin-hero .pop-tiles { display: flex; align-items: flex-start; justify-content: center; gap: 24px; margin-bottom: 22px; }
.mg-plugin-hero .pop-tile { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #6b7280; }
.mg-plugin-hero .pop-tile-ic { position: relative; display: flex; }
.mg-plugin-hero .pop-tile-ic svg { width: 20px; height: 20px; }
.mg-plugin-hero .pop-tile-ic .dot { position: absolute; right: -3px; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: #eab308; }
.mg-plugin-hero .pop-tile-label { font: 400 12px var(--pf); }
.mg-plugin-hero .pop-tile-prem { display: inline-flex; align-items: center; gap: 3px; border-radius: 4px; padding: 0 4px; background: #e5e7eb; color: #374151; font: 500 11px var(--pf); }
.mg-plugin-hero .pop-tile-prem svg { width: 12px; height: 12px; color: #eab308; }
.mg-plugin-hero .pop-dash { position: relative; margin-top: 16px; border-radius: 12px; overflow: hidden; padding: 1.5px; box-shadow: 0 0 16px 2px rgba(99,102,241,.28), 0 0 5px 0 rgba(139,92,246,.18); }
.mg-plugin-hero .pop-dash-aura { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background: conic-gradient(from 0deg, transparent 0%, #3730a3 20%, #818cf8 35%, transparent 50%); animation: ph-aura-spin 3s linear infinite; z-index: 0; }
.mg-plugin-hero .pop-dash-inner { position: relative; z-index: 1; width: 100%; height: 52px; background: radial-gradient(90px at 80% -20%, rgba(255,255,255,.1), #0a0c16 64%); border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.mg-plugin-hero .pop-dash-shim { position: absolute; top: 0; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); }
.mg-plugin-hero .pop-dash-inner svg { width: 15px; height: 15px; stroke: #6366f1; }
.mg-plugin-hero .pop-dash-text { font: 600 13px 'Geist Mono', monospace; color: #a5b4fc; letter-spacing: .06em; white-space: nowrap; }
.mg-plugin-hero .pop-count { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; border-radius: 12px; padding: 10px 16px; background: #f0fdf4; border: 1px solid #dcfce7; }
.mg-plugin-hero .pop-count-label { font: 500 12px var(--pf); color: #4b5563; }
.mg-plugin-hero .pop-count-val { font: 700 14px var(--pf); color: #15803d; font-variant-numeric: tabular-nums; }

@keyframes ph-aura-spin { to { transform: rotate(360deg); } }
@keyframes ph-port-flash { 0% { box-shadow: 0 0 0 0 var(--energy-soft); } 100% { box-shadow: 0 0 0 22px transparent; } }
.mg-plugin-hero .ph-pop.just-connected .ph-port { animation: ph-port-flash .7s ease-out; }

/* scroll hint */
.mg-plugin-hero .ph-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--muted); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: calc(1 - var(--pw,0) * 2); transition: opacity .3s; }
.mg-plugin-hero .ph-hint svg { width: 16px; height: 16px; animation: ph-bob 1.6s ease-in-out infinite; }
@keyframes ph-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 900px) {
  .mg-plugin-hero { height: 260vh; }
  .mg-plugin-hero .ph-scene { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 26px; padding-top: 84px; }
  .mg-plugin-hero .ph-copy { align-items: center; }
  .mg-plugin-hero .ph-sub { max-width: 420px; }
  .mg-plugin-hero .ph-glow { left: 50%; }
  .mg-plugin-hero .ph-grid { -webkit-mask-image: radial-gradient(70% 55% at 50% 56%, #000 0%, transparent 78%); mask-image: radial-gradient(70% 55% at 50% 56%, #000 0%, transparent 78%); }
}
@media (max-width: 420px) {
  .mg-plugin-hero .ph-pop { width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .mg-plugin-hero .pop-dash-aura { animation: none; }
}

/* Panel entrance (plays on load so the extension is already "dropped" at rest) */
.mg-plugin-hero .ph-panel-wrap { animation: ph-drop 1s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes ph-drop { from { opacity: 0; transform: translateY(-140px) scale(.96); } 60% { opacity: 1; } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .mg-plugin-hero .ph-panel-wrap { animation: none; } }

/* Plug-in hero — mobile fit (keep the whole scene inside one viewport) */
@media (max-width: 900px) {
  .mg-plugin-hero .ph-scene { gap: 16px; padding-top: 62px; }
  .mg-plugin-hero .ph-copy { gap: 12px; }
  .mg-plugin-hero .ph-title { font-size: clamp(34px, 8.6vw, 50px); line-height: 1; }
  .mg-plugin-hero .ph-sub { display: none; }
  .mg-plugin-hero .ph-pop { padding: 18px; }
  .mg-plugin-hero .pop-head { margin-bottom: 12px; }
  .mg-plugin-hero .pop-rows { gap: 12px; margin-bottom: 16px; }
  .mg-plugin-hero .pop-tiles { margin-bottom: 16px; }
  .mg-plugin-hero .ph-hint { display: none; }
}

/* Plug-in hero — compact CTAs on mobile so the panel isn't pushed off-screen */
@media (max-width: 900px) {
  .mg-plugin-hero .ph-cta { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; width: 100%; }
  .mg-plugin-hero .ph-cta .primary-cta,
  .mg-plugin-hero .ph-cta .signup-cta { min-height: 46px; height: 46px; padding: 0 16px; font-size: 14px; }
  .mg-plugin-hero .ph-cta .cta-chrome-icon img { width: 18px; height: 18px; }
}

/* Headline separator */
.mg-plugin-hero .ph-title .ph-sep { color: #464b56; font-weight: 400; }

/* "This is what the extension looks like" — handwritten label + flowing dotted arrow */
.mg-plugin-hero .ph-annot {
  position: absolute;
  bottom: calc(100% - 34px);
  right: calc(100% - 92px);
  width: 208px;
  display: flex; flex-direction: column; align-items: flex-end;
  z-index: 5; pointer-events: none;
  opacity: calc(1 - var(--pw, 0) * .8);
  transition: opacity .3s ease;
}
.mg-plugin-hero .ph-annot-text {
  margin: 0 8px 0 0;
  font-family: 'Caveat', ui-rounded, cursive;
  font-weight: 600; font-size: 23px; line-height: 1.12;
  text-align: right; color: #e4e8ee; max-width: 196px;
}
.mg-plugin-hero .ph-annot-arrow { width: 116px; height: 68px; margin: 0 -4px -8px 0; overflow: visible; }
.mg-plugin-hero .ph-annot-line {
  stroke: var(--lime); stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 0.1 9;
  animation: ph-flow 1.05s linear infinite;
}
.mg-plugin-hero .ph-annot-head { stroke: var(--lime); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
@keyframes ph-flow { to { stroke-dashoffset: -18.2; } }

@media (max-width: 900px) {
  .mg-plugin-hero .ph-cta { display: none; }
  /* Mobile: label sits BELOW the extension with the arrow pointing up at it */
  .mg-plugin-hero .ph-annot {
    right: auto; bottom: auto;
    top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    width: 300px;
    flex-direction: column-reverse; align-items: center; gap: 2px;
    /* label lives below the panel (below the fold) so keep it legible instead
       of fading it out on scroll like the desktop side-label */
    opacity: 1;
  }
  .mg-plugin-hero .ph-annot-text { text-align: center; font-size: 20px; max-width: 300px; margin: 0; }
  .mg-plugin-hero .ph-annot-arrow { transform: rotate(-122deg); width: 78px; height: 48px; margin: 0 0 2px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .mg-plugin-hero .ph-annot-line { animation: none; }
}

/* Plug-in hero — mobile: pull the panel up so there is room BELOW it for the
   label, and leave a little breathing space before the next section */
@media (max-width: 900px) {
  .mg-plugin-hero .ph-scene { gap: 20px; padding-top: 20px; padding-bottom: 128px; }
  .mg-plugin-hero .ph-title { font-size: clamp(28px, 7.2vw, 40px); }
  .mg-plugin-hero .ph-annot { width: 288px; }
  .mg-plugin-hero .ph-annot-text { font-size: 19px; }
  .mg-plugin-hero .ph-annot-arrow { width: 78px; height: 48px; }
}

/* ============================================================
   Logo-reel product switcher (replaces wordmark + dot pill).
   Current product's logo shows in a reel that spins through all
   four on load; one caret opens the dropdown.
   ============================================================ */
.sg-brandwrap { gap: 7px; }
.sg-logo-link { display: flex; align-items: center; flex: 0 0 auto; }
.sg-logo-reel {
  display: block;
  height: 34px;
  width: 116px;
  overflow: hidden;
  position: relative;
}
.sg-logo-strip { display: flex; flex-direction: column; will-change: transform, filter; }
.sg-logo-strip img {
  height: 34px; width: 116px;
  object-fit: contain; object-position: left center;
  display: block; flex: 0 0 auto;
}
/* Resting position is owned by CSS so the current product's logo is ALWAYS
   visible — even if sg.js is slow, throttled, blocked, or the visitor has
   reduced-motion on. The un-cloned strip stacks 4 logos, so each is 25% of its
   height: no pixel math, works at every breakpoint. sg.js only adds the spin. */
.sg-page--mem   .sg-logo-strip { transform: translateY(-25%); }
.sg-page--delta .sg-logo-strip { transform: translateY(-50%); }
.sg-page--ixl   .sg-logo-strip { transform: translateY(-75%); }
.sg-genie-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; padding: 0;
  border: 1px solid var(--sg-line); border-radius: 8px;
  background: rgba(255, 255, 255, .04); color: var(--white);
  cursor: pointer; flex: 0 0 auto;
  transition: background 160ms ease, border-color 160ms ease;
}
.sg-genie-trigger:hover,
.sg-genie-dd.is-open .sg-genie-trigger { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); }
.sg-genie-trigger .sg-caret { opacity: .8; }

/* dropdown items now show each brand logo */
.sg-genie-menu a { gap: 12px; }
.sg-gm-logo {
  height: 24px; width: 84px;
  object-fit: contain; object-position: left center;
  flex: 0 0 auto;
}
.sg-gm-plat {
  flex: 1 1 auto;
  font: 500 12px 'Geist Mono', ui-monospace, monospace;
  color: var(--muted);
  text-align: right;
}
.sg-genie-menu a.is-current { background: rgba(255, 255, 255, .06); }
.sg-genie-menu a.is-current .sg-gm-plat { color: #fff; }

@media (max-width: 760px) {
  .sg-logo-reel { width: 104px; height: 30px; }
  .sg-logo-strip img { height: 30px; width: 104px; }
}

/* keep the logo + caret on one row */
.sg-genie-dd { display: flex; align-items: center; gap: 6px; }

/* Logos +75% (34->60, 116->203, menu 24->42/84->147) */
.sg-logo-reel { height: 60px; width: 203px; }
.sg-logo-strip img { height: 60px; width: 203px; }
.sg-gm-logo { height: 42px; width: 147px; }
@media (max-width: 760px) {
  .sg-logo-reel { width: 182px; height: 53px; }
  .sg-logo-strip img { height: 53px; width: 182px; }
}

/* ---- Logo swapper living inside the restored classic grid header ----
   It replaces the static .brand, so give it the brand's grid slot and shrink
   the reel to fit the column on tablet/phone (mirrors .brand-logo sizing) so
   it never collides with the Login / Sign up buttons. */
header.site-header .sg-brandwrap { grid-column: 1; grid-row: 1; align-self: center; }
@media (max-width: 940px) {
  header.site-header .sg-logo-reel,
  header.site-header .sg-logo-strip img { width: 168px; height: 50px; }
}
@media (max-width: 540px) {
  header.site-header .sg-logo-reel,
  header.site-header .sg-logo-strip img { width: 130px; height: 38px; }
}
@media (max-width: 380px) {
  header.site-header .sg-logo-reel,
  header.site-header .sg-logo-strip img { width: 112px; height: 33px; }
}
