/* WordPop landing — wordpop.ru */

:root {
  color-scheme: light;
  --word: #0f172a;
  --pop-start: #9785ee;
  --pop-end: #2f6fed;
  --text: #0f172a;
  --text-muted: #64748b;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --border: rgba(255, 255, 255, 0.65);
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(47, 111, 237, 0.06);
  --shadow-sm: 0 12px 32px rgba(15, 23, 42, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 64px;
  --install-bar-h: 68px;
  --gradient-pop: linear-gradient(135deg, var(--pop-start) 0%, var(--pop-end) 100%);
  --gradient-bg: linear-gradient(160deg, #eef2ff 0%, #f5f3ff 35%, #e8f0fe 70%, #f8fafc 100%);
  --touch-min: 44px;
  --bg: #f8fafc;
  --header-bg: rgba(248, 250, 252, 0.85);
  --header-border: rgba(255, 255, 255, 0.6);
  --ghost-bg: rgba(255, 255, 255, 0.65);
  --ghost-border: rgba(15, 23, 42, 0.08);
  --install-bar-bg: rgba(255, 255, 255, 0.92);
  --install-bar-border: rgba(15, 23, 42, 0.06);
  --install-bar-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  --section-alt-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%, rgba(255, 255, 255, 0.25) 100%);
  --hint-bg: rgba(151, 133, 238, 0.08);
  --hint-border: rgba(151, 133, 238, 0.15);
  --check-ring: rgba(151, 133, 238, 0.18);
  --feature-card-bg: rgba(255, 255, 255, 0.55);
  --feature-card-border: rgba(255, 255, 255, 0.7);
  --badge-soon-color: #7c3aed;
  --badge-soon-bg: rgba(151, 133, 238, 0.15);
  --badge-live-color: #166534;
  --badge-live-bg: rgba(34, 197, 94, 0.12);
  --waitlist-bg: rgba(151, 133, 238, 0.06);
  --waitlist-border: rgba(151, 133, 238, 0.12);
  --steps-border: rgba(15, 23, 42, 0.06);
  --input-bg: rgba(255, 255, 255, 0.85);
  --input-border: rgba(15, 23, 42, 0.1);
  --input-focus: rgba(47, 111, 237, 0.35);
  --footer-bg: rgba(255, 255, 255, 0.45);
  --footer-border: rgba(15, 23, 42, 0.06);
  --footer-legal: #94a3b8;
  --code-bg: rgba(151, 133, 238, 0.1);
  --code-border: rgba(151, 133, 238, 0.15);
  --blob-1: rgba(151, 133, 238, 0.35);
  --blob-2: rgba(47, 111, 237, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.has-install-bar {
  padding-bottom: var(--install-bar-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pop-end);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--gradient-bg);
  pointer-events: none;
}

.page-bg::before,
.page-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.page-bg::before {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, var(--blob-1), transparent 70%);
}

.page-bg::after {
  width: 420px;
  height: 420px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, var(--blob-2), transparent 70%);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.brand__icon {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(47, 111, 237, 0.18);
}

.brand__text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__word {
  color: var(--word);
}

.brand__pop {
  background: var(--gradient-pop);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text {
  background: var(--gradient-pop);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem;
}

.site-nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--word);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn__icon {
  flex-shrink: 0;
}

.btn--primary {
  color: #fff;
  background: var(--gradient-pop);
  box-shadow: 0 8px 24px rgba(47, 111, 237, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(47, 111, 237, 0.35);
}

.btn--secondary {
  color: #fff;
  background: var(--gradient-pop);
  box-shadow: 0 4px 16px rgba(47, 111, 237, 0.22);
  white-space: nowrap;
}

.btn--ghost {
  color: var(--word);
  background: var(--ghost-bg);
  border: 1px solid var(--ghost-border);
  backdrop-filter: blur(8px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn--disabled {
  opacity: 0.72;
  cursor: default;
  pointer-events: auto;
}

.btn--disabled:hover {
  transform: none;
}

.btn--waitlist {
  width: 100%;
}

/* Sticky mobile install bar */
.install-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: var(--install-bar-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--install-bar-border);
  box-shadow: var(--install-bar-shadow);
}

.install-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1120px;
  margin-inline: auto;
}

.install-bar__info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.install-bar__icon {
  border-radius: 8px;
  flex-shrink: 0;
}

.install-bar__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--word);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.install-bar .btn {
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--hero {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.section--alt {
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--section-alt-overlay);
  pointer-events: none;
}

.section__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.section__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pop-start);
}

.display {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--word);
}

.heading {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--word);
}

.heading--center {
  text-align: center;
}

.heading--sm {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  margin-bottom: 0.65rem;
}

.lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.body-text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.body-text--center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.body-text--compact {
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.browser-hint {
  margin: 1rem 0 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: var(--hint-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--hint-border);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gradient-pop);
  box-shadow: 0 0 0 3px var(--check-ring);
}

/* Glass frames */
.glass-frame {
  margin: 0;
  padding: 0.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.glass-frame img {
  border-radius: var(--radius);
  width: 100%;
}

.glass-frame--compact {
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.glass-frame--compact img {
  border-radius: calc(var(--radius-sm) - 2px);
}

.glass-panel {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

/* Features */
.features-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--feature-card-bg);
  border: 1px solid var(--feature-card-border);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-card__visual {
  margin: 0.75rem 0.75rem 0;
}

.feature-card__body {
  padding: 1rem 1.25rem 1.35rem;
}

.feature-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--word);
}

.feature-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Install section */
.section--install {
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.install-card {
  margin-top: 0.5rem;
}

.install-card__status {
  margin-bottom: 0.75rem;
}

.install-card__badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.install-card__badge--soon {
  color: var(--badge-soon-color);
  background: var(--badge-soon-bg);
}

.install-card__badge--live {
  color: var(--badge-live-color);
  background: var(--badge-live-bg);
}

.install-card__browser {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.install-card__actions {
  margin-bottom: 1rem;
}

.install-card__actions .btn {
  width: 100%;
}

.waitlist {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--waitlist-bg);
  border: 1px solid var(--waitlist-border);
}

.waitlist__text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--steps-border);
  padding-top: 1.25rem;
}

.install-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.install-steps__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-pop);
}

.install-steps__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding-top: 0.15rem;
}

.install-steps__text strong {
  color: var(--word);
  font-weight: 600;
}

/* Share section */
.section--share {
  padding-bottom: clamp(4rem, 9vw, 5.5rem);
}

.share-card {
  max-width: 28rem;
}

.share-field {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.share-field__input {
  flex: 1 1 160px;
  min-width: 0;
  min-height: var(--touch-min);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--word);
  background: var(--input-bg);
}

.share-field__input:focus {
  outline: 2px solid var(--input-focus);
  outline-offset: 1px;
}

.share-field__btn {
  flex: 1 1 auto;
}

.share-teaser {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.share-teaser__icon {
  color: var(--pop-start);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--footer-border);
  background: var(--footer-bg);
  backdrop-filter: blur(12px);
}

.site-footer__inner {
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--footer-legal);
}

/* ── Legal / secondary pages ── */
.page--legal {
  overflow-x: hidden;
}

.section--legal {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.legal-card {
  max-width: 42rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.legal-card--center {
  text-align: center;
}

.legal-card__header {
  margin-bottom: 0.5rem;
}

.heading--legal {
  margin-bottom: 0.65rem;
}

.legal-meta {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.legal-meta strong {
  color: var(--word);
  font-weight: 600;
}

.legal-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-prose > :first-child {
  margin-top: 0;
}

.legal-prose p {
  margin: 0 0 1rem;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--word);
}

.legal-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-prose li {
  margin-bottom: 0.5rem;
}

.legal-prose li:last-child {
  margin-bottom: 0;
}

.legal-prose strong {
  color: var(--word);
  font-weight: 600;
}

.legal-prose a {
  font-weight: 500;
  word-break: break-word;
}

.legal-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875em;
  background: var(--code-bg);
  color: var(--word);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  border: 1px solid var(--code-border);
  word-break: break-word;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page--404 .body-text {
  max-width: 28rem;
  margin-inline: auto;
}

/* ── Responsive ── */

/* Mobile: 375px base */
@media (max-width: 767px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .site-header .btn--sm {
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
  }

  .lead--hero {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section__visual {
    margin-inline: -0.25rem;
  }

  .glass-frame {
    padding: 0.35rem;
    border-radius: var(--radius-sm);
  }

  .glass-frame img {
    border-radius: calc(var(--radius-sm) - 2px);
  }

  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 min(85vw, 320px);
    scroll-snap-align: start;
  }

  .install-card {
    padding: 1rem 1.15rem;
  }

  .share-card {
    max-width: none;
  }

  .share-field {
    flex-direction: column;
  }

  .share-field__btn {
    width: 100%;
  }

  .section--share .section__grid {
    gap: 1.5rem;
  }

  .section__visual--share {
    order: -1;
  }

  .legal-card {
    padding: 1.15rem 1rem;
  }

  .legal-actions {
    flex-direction: column;
  }

  .legal-actions .btn {
    width: 100%;
  }

  .site-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: var(--touch-min);
    padding: 0.25rem 0.5rem;
  }
}

/* Tablet: 768px */
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .site-nav {
    display: flex;
  }

  .brand__text {
    font-size: 1.25rem;
  }

  .install-card__actions .btn {
    width: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .share-field__btn {
    flex: 0 0 auto;
  }
}

/* Desktop: 900px+ alternating layout */
@media (min-width: 900px) {
  .section__grid {
    grid-template-columns: 1fr 1.05fr;
  }

  .section__grid--reverse .section__copy {
    order: 2;
  }

  .section__grid--reverse .section__visual {
    order: 1;
  }

  .section__grid--install .section__visual {
    order: 2;
  }

  .section--share .section__visual {
    order: 1;
  }

  .section--share .section__copy {
    order: 2;
  }
}

/* Large desktop: 1024px+ */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .feature-card {
    flex: unset;
  }

  .body-text {
    font-size: 1.0625rem;
  }
}

/* Wide: 1280px */
@media (min-width: 1280px) {
  .container {
    width: min(1120px, calc(100% - 3rem));
  }

  .section {
    padding: 5rem 0;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --word: #f1f5f9;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --pop-start: #b4a5f5;
    --pop-end: #6b9cf7;
    --surface: rgba(26, 24, 44, 0.82);
    --surface-solid: #1a1828;
    --border: rgba(151, 133, 238, 0.22);
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(47, 111, 237, 0.15);
    --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.3);
    --gradient-bg: linear-gradient(160deg, #1a1625 0%, #151829 35%, #12152a 70%, #0f1220 100%);
    --bg: #0f1220;
    --header-bg: rgba(15, 18, 32, 0.9);
    --header-border: rgba(151, 133, 238, 0.14);
    --ghost-bg: rgba(26, 24, 44, 0.65);
    --ghost-border: rgba(151, 133, 238, 0.2);
    --install-bar-bg: rgba(15, 18, 32, 0.94);
    --install-bar-border: rgba(151, 133, 238, 0.12);
    --install-bar-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    --section-alt-overlay: linear-gradient(180deg, rgba(151, 133, 238, 0.06) 0%, transparent 50%, rgba(47, 111, 237, 0.04) 100%);
    --hint-bg: rgba(151, 133, 238, 0.12);
    --hint-border: rgba(151, 133, 238, 0.22);
    --check-ring: rgba(151, 133, 238, 0.28);
    --feature-card-bg: rgba(26, 24, 44, 0.72);
    --feature-card-border: rgba(151, 133, 238, 0.16);
    --badge-soon-color: #c4b5fd;
    --badge-soon-bg: rgba(151, 133, 238, 0.22);
    --badge-live-color: #86efac;
    --badge-live-bg: rgba(34, 197, 94, 0.18);
    --waitlist-bg: rgba(151, 133, 238, 0.1);
    --waitlist-border: rgba(151, 133, 238, 0.2);
    --steps-border: rgba(151, 133, 238, 0.12);
    --input-bg: rgba(26, 24, 44, 0.9);
    --input-border: rgba(151, 133, 238, 0.2);
    --input-focus: rgba(107, 156, 247, 0.45);
    --footer-bg: rgba(15, 18, 32, 0.75);
    --footer-border: rgba(151, 133, 238, 0.1);
    --footer-legal: #64748b;
    --code-bg: rgba(151, 133, 238, 0.16);
    --code-border: rgba(151, 133, 238, 0.24);
    --blob-1: rgba(151, 133, 238, 0.22);
    --blob-2: rgba(47, 111, 237, 0.18);
  }

  a {
    color: var(--pop-end);
  }

  .site-nav a:hover {
    color: var(--word);
  }
}

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

  .btn,
  .feature-card {
    transition: none;
  }
}
