:root {
  color-scheme: dark;
  --bg: #020203;
  --bg-strong: #07070b;
  --panel: rgba(17, 17, 24, 0.85);
  --panel-strong: rgba(21, 21, 30, 0.92);
  --glass-border: rgba(255, 255, 255, 0.08);
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.6);
  --accent-muted: rgba(255, 255, 255, 0.35);
  --primary-green: #90ff6a;
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-soft: rgba(255, 255, 255, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 16px 40px rgba(0, 0, 0, 0.35);
  --font-display:
    "Urbanist", "Space Grotesk", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand:
    "Bebas Neue", "Urbanist", "Space Grotesk", "Inter", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head:
    "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body:
    "Urbanist", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
.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;
}
body,
html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(
      120% 95% at 50% 18%,
      rgba(32, 32, 48, 0.35),
      transparent 65%
    )
    #000;
  animation: starfieldDrift 32s ease-in-out infinite;
}
.starfield__star {
  position: absolute;
  display: block;
  width: var(--size, 3px);
  height: var(--size, 3px);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0,
    rgba(255, 255, 255, 0.45) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: var(--opacity, 0.68);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
  clip-path: polygon(
    50% 0%,
    61% 34%,
    98% 34%,
    68% 57%,
    78% 100%,
    50% 76%,
    22% 100%,
    32% 57%,
    2% 34%,
    39% 34%
  );
  transform-origin: 50% 58%;
  will-change: transform, opacity;
  animation: star-twinkle var(--twinkle-duration, 12s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.5s ease,
    opacity 1.2s ease;
}
.site-shell > :not(.starfield):not(.hero-gradient) {
  position: relative;
  z-index: 1;
}
@keyframes star-twinkle {
  0%,
  100% {
    opacity: var(--opacity, 0.7);
  }
  50% {
    opacity: calc(var(--opacity, 0.7) + 0.25);
  }
}
@media (prefers-reduced-motion: reduce) {
  .starfield__star {
    animation: none;
  }
}
.hero-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(144, 255, 106, 0.15),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 0,
      rgba(135, 245, 255, 0.16),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(2, 2, 3, 0.95), #020203);
  z-index: -2;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 48px);
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(4px, 0.8vw, 8px);
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: none;
  text-rendering: optimizeLegibility;
  transition:
    transform 0.3s ease,
    letter-spacing 0.3s ease;
  margin-left: 0;
}
.brand:hover {
  transform: translateY(-2px);
  letter-spacing: 0.32em;
}
.brand-suffix,
.brand-text {
  color: transparent;
  background: linear-gradient(110deg, #90ff6a 0, #5de6ff 45%, #ac8bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.brand-glyph {
  display: inline-block;
  width: clamp(1.2rem, 2vw, 1.6rem);
  height: clamp(1.2rem, 2vw, 1.6rem);
  background-image: url("assets/solm8_logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-self: center;
  transform: translateY(0.05em);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: auto;
}
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: 0 0;
  color: var(--text);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.site-nav .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.page {
  flex: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(18px, 4vw, 48px) 96px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(8px, 3vh, 32px);
}
.hero__background {
  position: relative;
  width: 100%;
  max-width: min(900px, 90vw);
  aspect-ratio: 1/1;
  pointer-events: none;
  z-index: 0;
  margin-left: 0;
  justify-self: start;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-lg);
  animation: heroFloat 9s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 62%,
    rgba(0, 0, 0, 1) 32%,
    rgba(0, 0, 0, 0) 72%
  );
  mask-image: radial-gradient(
    ellipse at 50% 62%,
    rgba(0, 0, 0, 1) 32%,
    rgba(0, 0, 0, 0) 72%
  );
  -webkit-mask-size: 140% 140%;
  mask-size: 140% 140%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero__background::before {
  content: "";
  position: absolute;
  inset: -22% -20% -10%;
  background: radial-gradient(
    ellipse at 50% 4%,
    rgba(0, 0, 0, 0.96) 0,
    rgba(0, 0, 0, 0.88) 30%,
    rgba(0, 0, 0, 0.46) 56%,
    rgba(0, 0, 0, 0) 78%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.94;
}
.hero__background::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(
    ellipse at 50% 58%,
    rgba(0, 0, 0, 0) 44%,
    rgba(4, 4, 10, 0.78) 70%,
    rgba(0, 0, 0, 0.99) 100%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.88;
  transition: opacity 0.6s ease;
}
.hero__background:hover::after {
  opacity: 1;
}
.hero__background canvas,
.hero__background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  pointer-events: none;
}
#heroVideo {
  opacity: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 28px);
  width: min(640px, 100%);
}
.hero__side {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  width: 100%;
  max-width: 640px;
  justify-self: stretch;
  align-self: start;
}
.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.hero__auth-buttons {
  display: none;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero__auth-button {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
  backdrop-filter: blur(6px);
  background: rgba(10, 10, 18, 0.4);
  text-align: center;
}
.hero__auth-button--fill {
  border-color: transparent;
  background: linear-gradient(135deg, #ff8efb, #7f7bff);
  color: #05050a;
}
@media (max-width: 768px) {
  .hero__auth-buttons {
    display: flex;
  }
}
.hero__auth-buttons--inline {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  margin-top: 18px;
}
.hero__free-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__callback {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__callback-toggle {
  position: relative;
}
.hero__callback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
  border-radius: clamp(22px, 4vw, 30px);
  background: rgba(10, 10, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.hero__callback-form[hidden] {
  display: none;
}
.hero__callback-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hero__callback-form input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1rem;
  outline: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.hero__callback-form input:focus {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}
.hero__callback-submit {
  width: 100%;
}
.hero__cta-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 20/11;
  border-radius: clamp(26px, 4.8vw, 38px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 16, 0.75);
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
}
.hero__cta-panel::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(
      circle at 30% 35%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 78% 65%,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.15));
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  padding: clamp(18px, 3vw, 28px);
  width: 100%;
}
.hero__cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  opacity: 0.92;
  pointer-events: none;
}
/* Demo Timer Display - 5-minute countdown for anonymous users */
.demo-timer {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 100;  /* High z-index to appear above canvas and other elements */
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #fbbf24;  /* Bright amber/yellow for visibility */
  backdrop-filter: blur(8px);
  border: 2px solid rgba(251, 191, 36, 0.5);  /* Amber border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;  /* Don't block clicks */
}
.demo-timer__icon {
  font-size: 1rem;
}
.demo-timer__time {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.demo-timer--warning {
  background: rgba(255, 80, 80, 0.85);
  border-color: rgba(255, 120, 120, 0.5);
  animation: demoTimerPulse 1s ease-in-out infinite;
}
@keyframes demoTimerPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 100, 100, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 12px 4px rgba(255, 100, 100, 0.3);
  }
}
/* Mobile: Adjust timer position */
@media (max-width: 768px) {
  .demo-timer {
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 0.85rem;
  }
}
.hero__cta-icon {
  display: block;
  width: clamp(150px, 22.5vw, 210px);
  max-width: 58%;
  aspect-ratio: 1/1;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
  animation: heroHeartbeat 1.9s ease-in-out infinite;
  transform-origin: center;
}
.hero__cta-icon-wrap {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: inline-block;
  margin-top: 0;
  pointer-events: none;
}
.hero__cta-button {
  position: relative;
  z-index: 1;
}
.hero__callback-submit,
.hero__cta-button .cta-button__label {
  font-family: Manrope, "Space Grotesk", var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero__cta-button.loading {
  opacity: 0.85;
}
.hero__cta-button.active {
  background: linear-gradient(140deg, #fff, #d6ffe3);
}
.hero__cta-button.error {
  background: linear-gradient(140deg, #ff6b6b, #ff9f9f);
  color: #000;
}
.hero__eyebrow {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-transform: none;
  text-shadow: 0 32px 70px rgba(0, 0, 0, 0.6);
}
.hero__title-word {
  display: inline-block;
  background: linear-gradient(120deg, #90ff6a 0, #5de6ff 45%, #ac8bff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.hero__glyph {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin-left: 0.06em;
  background-image: url("assets/solm8_logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(0.05em);
}
.hero__title-word.is-transition {
  opacity: 0;
  transform: translateY(-12px);
}
.hero__body {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  text-align: center;
  margin-top: 8px;
}
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.hero__cta-button {
  min-width: clamp(170px, 36%, 240px);
  padding: 12px 22px;
  border: 5px solid #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  margin-top: clamp(24px, 6.5vw, 96px);
}
.cta-button__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: buttonPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.cta-button__label {
  position: relative;
  z-index: 1;
}
.cta-button.loading {
  color: #000;
  cursor: progress;
}
.cta-button.active {
  background: linear-gradient(140deg, #fff, #d6ffe3);
}
.cta-button.error {
  background: linear-gradient(140deg, #ff6b6b, #ff9f9f);
  color: #000;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(255, 255, 255, 0.16);
}
@keyframes heroFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.01);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes starfieldDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes buttonPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  60% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}
@keyframes heroHeartbeat {
  0% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.08);
  }
  45% {
    transform: scale(0.96);
  }
  65% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.hero-highlights {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 4vw, 26px) 0;
}
.highlights__marquee {
  display: inline-flex;
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  width: max-content;
  padding: 0 clamp(36px, 7vw, 64px);
  animation: highlightMarquee 38s linear infinite;
}
.highlights__marquee:hover {
  animation-play-state: paused;
}
@keyframes highlightMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.highlight-token {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 26px);
  padding: 0 clamp(12px, 3vw, 22px);
  white-space: nowrap;
}
.highlight-token__icon {
  width: clamp(40px, 4vw, 52px);
  height: clamp(40px, 4vw, 52px);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.highlight-token__icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: 78%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.highlight-token__label {
  font-family: "Space Grotesk", var(--font-head);
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.highlight-token__meta {
  font-family: Manrope, var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}
.highlight-token--flower .highlight-token__icon {
  background: rgba(144, 255, 106, 0.22);
}
.highlight-token--flower .highlight-token__icon::before {
  background-image: url("assets/solm8_logo.svg");
  background-size: 80%;
}
.highlight-token--vesica .highlight-token__icon {
  background: rgba(255, 166, 214, 0.22);
}
.highlight-token--vesica .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ff9dd6' stroke-width='5'%3E%3Ccircle cx='24' cy='32' r='18'/%3E%3Ccircle cx='40' cy='32' r='18'/%3E%3C/svg%3E");
}
.highlight-token--seed .highlight-token__icon {
  background: rgba(135, 245, 255, 0.2);
}
.highlight-token--seed .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2398ecff' stroke-width='4'%3E%3Ccircle cx='32' cy='18' r='10'/%3E%3Ccircle cx='18' cy='32' r='10'/%3E%3Ccircle cx='46' cy='32' r='10'/%3E%3Ccircle cx='32' cy='46' r='10'/%3E%3C/svg%3E");
  background-size: 78%;
}
.highlight-token--spiral .highlight-token__icon {
  background: rgba(255, 232, 150, 0.2);
}
.highlight-token--spiral .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffe27a' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M12 32a20 20 0 1 1 40 0 10 10 0 1 1-20 0 5 5 0 1 1 10 0'/%3E%3C/svg%3E");
}
.highlight-token--veil .highlight-token__icon {
  background: rgba(201, 190, 255, 0.22);
}
.highlight-token--veil .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23cbbcff' stroke-width='4'%3E%3Ccircle cx='32' cy='32' r='22'/%3E%3Cpolygon points='32,14 46,32 32,50 18,32'/%3E%3C/svg%3E");
  background-size: 82%;
}
.highlight-token--intel .highlight-token__icon {
  background: rgba(135, 245, 255, 0.18);
}
.highlight-token--intel .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2387f5ff' stroke-width='4'%3E%3Cpolygon points='32,8 52,24 44,48 20,48 12,24'/%3E%3Cline x1='32' y1='8' x2='32' y2='56'/%3E%3C/svg%3E");
}
.highlight-token--persona .highlight-token__icon {
  background: rgba(255, 208, 180, 0.18);
}
.highlight-token--persona .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffd0b4' stroke-width='4'%3E%3Cpolygon points='32,10 52,22 52,42 32,54 12,42 12,22'/%3E%3Ccircle cx='32' cy='32' r='10'/%3E%3C/svg%3E");
}
.highlight-token--bridge .highlight-token__icon {
  background: rgba(144, 255, 213, 0.2);
}
.highlight-token--bridge .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%2390ffd5' stroke-width='4'%3E%3Cpolygon points='32,8 52,40 12,40'/%3E%3Cpolygon points='32,56 12,24 52,24'/%3E%3C/svg%3E");
}
.highlight-token--memory .highlight-token__icon {
  background: rgba(190, 190, 255, 0.18);
}
.highlight-token--memory .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23bebeff' stroke-width='4'%3E%3Ccircle cx='32' cy='32' r='20'/%3E%3Ccircle cx='32' cy='32' r='10'/%3E%3C/svg%3E");
}
.highlight-token--guardian .highlight-token__icon {
  background: rgba(255, 190, 140, 0.2);
}
.highlight-token--guardian .highlight-token__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23ffbe8c' stroke-width='4'%3E%3Cpolygon points='32,6 56,18 50,46 32,58 14,46 8,18'/%3E%3Cpolygon points='32,16 46,24 43,40 32,48 21,40 18,24'/%3E%3C/svg%3E");
}
@media (max-width: 900px) {
  .highlight-token__label {
    font-size: clamp(1rem, 3vw, 1.4rem);
  }
  .highlight-token__meta {
    font-size: clamp(0.9rem, 2.6vw, 1.1rem);
  }
}
@media (max-width: 560px) {
  .highlight-token {
    gap: 10px;
  }
  .highlight-token__label {
    letter-spacing: 0.12em;
  }
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}
.section-heading h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.section-heading p {
  margin: 0;
  color: var(--text-muted);
}
.use-cases__grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.use-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.use-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}
.use-card header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.use-card__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.use-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.4rem;
}
.use-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}
.use-card__demo {
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.use-card__demo:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.feature-accordion {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}
.feature-accordion details {
  background: var(--panel);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  transition: border 0.25s ease;
}
.feature-accordion details[open] {
  border-color: rgba(255, 255, 255, 0.2);
}
.feature-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}
.feature-accordion summary::-webkit-details-marker {
  display: none;
}
.feature-accordion summary span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.feature-accordion p {
  margin: 16px 0 0;
  color: var(--text-muted);
}
.callback {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 48px);
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.callback__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
}
.callback__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.callback__form input,
.callback__form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1rem;
  transition:
    border 0.2s ease,
    background 0.2s ease;
}
.callback__form input:focus,
.callback__form textarea:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.5);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.callback__privacy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px clamp(18px, 4vw, 48px) 60px;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.site-footer__links {
  display: flex;
  gap: 18px;
}
.api-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
  font-size: 0.85rem;
}
.api-status::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fc0;
}
.api-status--ok {
  border-color: rgba(117, 255, 163, 0.5);
}
.api-status--ok::before {
  background: #4dff88;
  box-shadow: 0 0 12px rgba(77, 255, 136, 0.6);
}
.api-status--down {
  border-color: rgba(255, 120, 120, 0.5);
}
.api-status--down::before {
  background: #ff6b6b;
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.6);
}
.toast {
  position: fixed;
  top: 28px;
  left: 50%;
  width: min(480px, calc(100% - 32px));
  transform: translate3d(-50%, -20px, 0);
  background: rgba(12, 14, 24, 0.92);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  z-index: 1050;
  pointer-events: none;
}
.toast.visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  pointer-events: auto;
}
.toast-success {
  border-left: 3px solid #10b981;
}
.toast-error {
  border-left: 3px solid #ef4444;
}
.toast-info {
  border-left: 3px solid #4f9fff;
}
.toast-close {
  margin-left: auto;
  border: none;
  background: 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
}
.toast-close:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  .hero-header {
    justify-content: center !important;
    padding-left: clamp(12px, 4vw, 20px) !important;
    padding-right: clamp(12px, 4vw, 20px) !important;
  }
  .hero-header__nav {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: inline-flex !important;
  }
  .hero-header__logo {
    margin-left: 0 !important;
    transform: none !important;
  }
  .hero-header__logo img {
    width: 36px;
    height: 36px;
    animation: none !important;
  }
  .mobile-nav {
    top: clamp(58px, 12vw, 78px) !important;
    right: clamp(10px, 6vw, 18px) !important;
  }
}
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__background {
    justify-self: center;
    margin: 0 auto;
  }
  .hero__side {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 14px clamp(12px, 5vw, 20px);
  }
  .site-nav {
    display: none;
  }
  .page {
    padding: clamp(8px, 2vh, 16px) clamp(10px, 4vw, 18px) 48px;
    gap: 28px;
  }
  .hero__side {
    gap: 14px;
  }
  .use-cases__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .hero__callback-row {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 10px;
    padding-top: 0;
    margin-top: -6px;
  }
  .hero__content {
    gap: 12px;
  }
  .hero__cta-stack {
    gap: 6px;
    margin-top: -6px;
  }
  .hero__background {
    margin-top: -12px;
  }
  .page {
    padding-top: 4px;
    gap: 20px;
  }
  .cta-secondary,
  .hero__cta-button,
  .use-card__demo {
    width: 100%;
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.page--narrow {
  max-width: 960px;
  width: min(960px, 100%);
  gap: 72px;
  align-items: center;
  text-align: center;
}
.content-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(10, 10, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(28px, 5vw, 36px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
}
.content-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  text-transform: none;
}
.content-section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 22, 0.68);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.pricing-card--accent {
  border-color: rgba(144, 255, 106, 0.32);
  background: linear-gradient(
    150deg,
    rgba(144, 255, 106, 0.18),
    rgba(92, 231, 255, 0.12)
  );
}
.pricing-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.pricing-card__price {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-soft);
}
.pricing-card__price span {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
}
.pricing-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.pricing-card__cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(140deg, #fff, #d6ffe3);
  color: #020203;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pricing-card__cta--outline {
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text);
}
.pricing-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.billing-status {
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  min-height: 1.25rem;
}
.billing-status[data-state="error"] {
  color: #ff6b6b;
}
.billing-status[data-state="warning"] {
  color: #fec860;
}
.billing-status[data-state="info"] {
  color: #90ff6a;
}
.billing-portal-hint {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.auth-form {
  display: grid;
  gap: 18px;
  text-align: left;
  margin: 0 auto;
  width: min(480px, 100%);
}
.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.auth-form input,
.auth-form select {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.auth-form input:focus,
.auth-form select:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}
.auth-form__submit {
  margin-top: 12px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(140deg, #fff, #d6ffe3);
  color: #020203;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.auth-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.auth-form__hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav-cta--active {
  border-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 720px) {
  .page--narrow {
    gap: 48px;
  }
  .content-section {
    padding: 24px;
  }
}
@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .brand {
    margin-left: 0;
  }
  .site-nav {
    margin-left: 0;
  }
}
.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: clamp(12px, 5vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: 0 0;
  padding: 8px 10px;
  pointer-events: auto;
  cursor: pointer;
  color: #fff;
  z-index: 1520;
  touch-action: manipulation;
}
.mobile-nav-toggle__icon {
  display: block;
  width: 24px;
  height: 16px;
  opacity: 0.9;
}
.mobile-nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}
.mobile-nav {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + clamp(58px, 12vw, 78px));
  right: clamp(10px, 6vw, 18px);
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(10, 10, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  z-index: 1520;
  pointer-events: auto;
}
.mobile-nav:not([hidden]) {
  display: flex;
}
.mobile-nav[hidden] {
  display: none !important;
}
.mobile-nav a {
  color: var(--text);
  display: block;
  padding: 10px 6px;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hero-header {
    justify-content: center;
    pointer-events: auto !important;
  }
  .hero-header__logo {
    animation: none;
  }
  .hero-header__logo img {
    width: 40px;
    height: 40px;
    animation: none;
  }
  .hero-header__nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero__title {
    font-size: clamp(2.2rem, 8.6vw, 3rem);
    letter-spacing: -0.02em;
  }
  .hero__title-word {
    white-space: nowrap;
  }
  .hero__glyph {
    width: 0.9em;
    height: 0.9em;
    margin-left: 0.04em;
  }
  .hero__cta-icon {
    width: clamp(82px, 28vw, 118px);
    max-width: 44%;
  }
  .hero__cta-icon-wrap {
    top: 52%;
  }
  .hero__cta-button {
    min-width: min(260px, 78%);
    padding: 10px 16px;
    border-width: 3px;
    font-size: 0.95rem;
  }
}
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(env(safe-area-inset-top, 0px) + clamp(18px, 4vw, 28px))
    clamp(20px, 5vw, 48px);
  pointer-events: auto;
}
.hero-header__logo {
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  animation:
    heroLogoSpin 24s linear infinite,
    heroLogoDrift 12s ease-in-out infinite;
  transform-origin: center;
}
.hero-header__logo img {
  width: clamp(56px, 8vw, 78px);
  height: clamp(56px, 8vw, 78px);
  animation:
    heroLogoGlitch 6s linear infinite,
    heroLogoPulse 4s ease-in-out infinite;
}
.hero-header__nav {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  right: clamp(20px, 6vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 28px);
  font-size: 1rem;
  font-family: var(--font-body);
  pointer-events: auto;
  z-index: 1210;
}
.hero-header__nav a {
  color: var(--text-muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  position: relative;
  z-index: 1520;
  pointer-events: auto;
}
.hero-header__nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
}
.hero-header__nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--text);
}
.hero-header__home-logo {
  width: 48px;
  height: 48px;
  display: block;
}
.hero-header__home-link {
  display: inline-flex;
  align-items: center;
}
.hero-header__mobile-link {
  display: none;
  position: absolute;
  right: clamp(16px, 6vw, 36px);
  top: clamp(16px, 5vw, 28px);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  z-index: 1250;
}
@media (max-width: 1024px) {
  .hero-header__mobile-link {
    display: inline-flex;
  }
}
@media (min-width: 1025px) {
  .hero-header__mobile-link {
    display: none !important;
  }
}
@keyframes heroLogoSpin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes heroLogoGlitch {
  0%,
  100%,
  12%,
  28%,
  52% {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
  6% {
    opacity: 0.25;
    filter: blur(1.1px) saturate(1.45);
    transform: scale(1.06) translateY(-2px);
  }
  7% {
    opacity: 0.9;
    filter: none;
    transform: scale(1);
  }
  34% {
    opacity: 0.18;
    filter: blur(1.3px) saturate(1.6) hue-rotate(-10deg);
    transform: scale(1.04) translateX(1px);
  }
  35% {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
  58% {
    opacity: 0.3;
    filter: blur(0.9px) saturate(1.35) hue-rotate(12deg);
    transform: scale(0.97) translateY(1px);
  }
  59% {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}
@keyframes heroLogoDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes heroLogoPulse {
  0%,
  100% {
    filter: none;
  }
  40% {
    filter: drop-shadow(0 0 12px rgba(144, 255, 106, 0.4));
  }
  60% {
    filter: drop-shadow(0 0 14px rgba(92, 231, 255, 0.35));
  }
}
.demo-end-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.demo-end-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.demo-end-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.demo-end-modal__content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0, #16213e 100%);
  border: 1px solid rgba(144, 255, 106, 0.3);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 500px;
  width: 100%;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(144, 255, 106, 0.1);
  animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.demo-end-modal__title {
  font-size: 2rem;
  font-weight: 700;
  color: #90ff6a;
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-display, sans-serif);
}
.demo-end-modal__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
  text-align: center;
}
.demo-end-modal__text strong {
  color: #90ff6a;
}
.demo-end-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.demo-end-modal__button {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.demo-end-modal__button--primary {
  background: linear-gradient(135deg, #90ff6a 0, #5ce7ff 100%);
  color: #0f0f1e;
  border: none;
}
.demo-end-modal__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 255, 106, 0.4);
}
.demo-end-modal__button--secondary {
  background: 0 0;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.demo-end-modal__button--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.cta-button.blocked {
  background: rgba(255, 68, 68, 0.15) !important;
  border-color: rgba(255, 68, 68, 0.5) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.cta-button.blocked .cta-button__pulse {
  display: none !important;
}
.cta-button.blocked:hover {
  transform: none !important;
  box-shadow: none !important;
}
@media (max-width: 640px) {
  .demo-end-modal__content {
    padding: 32px 24px;
  }
  .demo-end-modal__title {
    font-size: 1.75rem;
  }
  .demo-end-modal__text {
    font-size: 1rem;
  }
  .demo-end-modal__actions {
    flex-direction: column;
  }
  .demo-end-modal__button {
    width: 100%;
  }
}
.auth-form {
  max-width: 400px;
  margin: 0 auto;
}
.auth-form label {
  display: block;
  margin-bottom: 1.5rem;
}
.auth-form label span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.auth-form input,
.auth-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.auth-form input:focus,
.auth-form select:focus {
  outline: 0;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(138, 97, 255, 0.1);
}
.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.auth-form small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.auth-form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.auth-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(138, 97, 255, 0.3);
}
.auth-form__submit:disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.auth-form__hint {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.auth-form__hint a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.auth-form__hint a:hover {
  color: var(--secondary-color);
}
.site-header--dashboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-logo img {
  height: 40px;
}
.dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.dashboard__header {
  text-align: center;
  margin-bottom: 3rem;
}
.dashboard__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dashboard__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}
.dashboard__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.dashboard__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.usage-stat {
  text-align: center;
}
.usage-stat__value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.usage-stat__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.usage-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0 0.5rem;
}
.usage-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  transition: width 0.5s ease;
}
.usage-stat__limit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.action-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.action-button__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.action-button__text {
  font-size: 0.875rem;
  font-weight: 500;
}
.subscription-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.subscription-info__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-right: 0.5rem;
}
.subscription-info__value {
  font-weight: 600;
  color: var(--text-primary);
}
.subscription-info__value--active {
  color: #4caf50;
}
.subscription-info__value--inactive {
  color: #f44336;
}
.subscription-cta {
  background: rgba(138, 97, 255, 0.1);
  border: 1px solid rgba(138, 97, 255, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.subscription-cta p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}
.empty-state p {
  margin-bottom: 1.5rem;
}
.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.user-menu__name {
  font-weight: 500;
  color: var(--text-primary);
}
.user-menu__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.user-menu__link:hover {
  color: var(--primary-color);
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
.modal__content {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal__close:hover {
  color: var(--text-primary);
}
.modal__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.voice-chat {
  text-align: center;
}
.voice-chat__status {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.voice-chat__status--error {
  color: #f44336;
}
.voice-chat__status--warning {
  color: #ff9800;
}
.voice-chat__controls {
  margin-bottom: 2rem;
}
.voice-chat__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.voice-chat__button--start {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
}
.voice-chat__button--start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}
.voice-chat__button--end {
  background: linear-gradient(135deg, #f44336, #e91e63);
  color: #fff;
}
.voice-chat__button--end:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 67, 54, 0.3);
}
.voice-chat__icon {
  font-size: 1.25rem;
}
.voice-chat__timer {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--primary-color);
}
.auth-toast,
.dashboard-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1001;
}
.auth-toast--visible,
.dashboard-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
.auth-toast--error {
  background: rgba(244, 67, 54, 0.1);
  border-color: rgba(244, 67, 54, 0.3);
  color: #ff6b6b;
}
.auth-toast--success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  color: #66d66d;
}
.auth-toast--info {
  background: rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.3);
  color: #64b5f6;
}
@media (max-width: 768px) {
  .dashboard {
    padding: 1rem;
  }
  .dashboard__title {
    font-size: 2rem;
  }
  .dashboard__card {
    padding: 1.5rem;
  }
  .usage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .action-grid {
    grid-template-columns: 1fr;
  }
  .subscription-info {
    flex-direction: column;
    gap: 1rem;
  }
  .modal__content {
    padding: 1.5rem;
  }
  .auth-toast,
  .dashboard-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.hero__age-verification {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  z-index: 10;
  animation: fadeIn 0.3s ease;
}
.hero__age-verification[hidden] {
  display: none !important;
}
.hero__age-content {
  text-align: center;
  padding: 2rem;
}
.hero__age-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero__age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.hero__age-btn {
  min-width: 100px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero__age-btn--yes {
  background: var(--primary-green);
  color: #000;
  border: none;
}
.hero__age-btn--yes:hover {
  background: #a8ff8a;
  transform: scale(1.05);
}
.hero__age-btn--no {
  background: 0 0;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
}
.hero__age-btn--no:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hero__age-disclaimer {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 1.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.hero__age-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
}
.turnstile-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__companion-selection {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 18, 0.95) 0,
    rgba(5, 5, 12, 0.98) 100%
  );
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  z-index: 10;
  animation: companionSelectFadeIn 0.4s ease;
}
.hero__companion-selection[hidden] {
  display: none !important;
}
@keyframes companionSelectFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero__companion-selection-content {
  text-align: center;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 320px;
}
.hero__companion-selection-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  background: linear-gradient(90deg, #fff 0, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__companion-selection-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.hero__companion-select-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  min-width: 120px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero__companion-select-btn--female {
  background: linear-gradient(135deg, #ff6ac1 0, #ff8efb 50%, #c77dff 100%);
  color: #05050a;
  box-shadow: 0 4px 20px rgba(255, 106, 193, 0.35);
}
.hero__companion-select-btn--female:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 106, 193, 0.5);
}
.hero__companion-select-btn--male {
  background: linear-gradient(135deg, #6ac1ff 0, #8eb5ff 50%, #7d9fff 100%);
  color: #05050a;
  box-shadow: 0 4px 20px rgba(106, 193, 255, 0.35);
}
.hero__companion-select-btn--male:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(106, 193, 255, 0.5);
}
.hero__companion-select-btn:active {
  transform: translateY(0);
}
.hero__companion-select-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero__companion-select-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__companion-selection-terms {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.hero__companion-selection-terms a {
  color: #c77dff;
  text-decoration: underline;
}
.hero__companion-selection-terms a:hover {
  color: #ff8efb;
}
.hero__call-ended {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 20, 0.95) 0,
    rgba(25, 20, 35, 0.95) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  z-index: 10;
  animation: callEndedFadeIn 0.4s ease;
}
.hero__call-ended[hidden] {
  display: none !important;
}
@keyframes callEndedFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero__call-ended-content {
  text-align: center;
  padding: 2rem;
}
.hero__call-ended-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 100, 100, 0.15) 0,
    rgba(255, 150, 100, 0.1) 100%
  );
  border: 1px solid rgba(255, 120, 100, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}
.hero__call-ended-icon svg {
  width: 100%;
  height: 100%;
  color: #ff8a80;
}
@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 120, 100, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(255, 120, 100, 0.15);
  }
}
.hero__call-ended-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: linear-gradient(90deg, #fff 0, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__call-ended-duration {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.hero__call-ended-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-green) 0, #7dff6d 100%);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero__call-ended-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 255, 104, 0.3);
}
.hero__call-ended-btn:active {
  transform: translateY(0);
}
.hero__call-ended-hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 1.25rem;
  opacity: 0.8;
}
.hero__usage-limit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 15, 0.97) 0,
    rgba(5, 5, 10, 0.99) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  z-index: 10;
  animation: usageLimitFadeIn 0.4s ease;
}
.hero__usage-limit[hidden] {
  display: none !important;
}
@keyframes usageLimitFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero__usage-limit-content {
  text-align: center;
  padding: 2rem;
  max-width: 360px;
}
.hero__usage-limit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 180, 80, 0.15) 0,
    rgba(255, 140, 60, 0.1) 100%
  );
  border: 1px solid rgba(255, 160, 80, 0.3);
  animation: limitIconPulse 2s ease-in-out infinite;
}
.hero__usage-limit-icon svg {
  width: 100%;
  height: 100%;
  color: #ffb347;
}
@keyframes limitIconPulse {
  0%,
  100% {
    box-shadow: 0 0 10px 2px rgba(255, 180, 80, 0.1);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(255, 180, 80, 0.15);
  }
}
.hero__usage-limit-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: linear-gradient(90deg, #fff 0, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__usage-limit-message {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero__usage-limit-actions {
  margin-bottom: 1rem;
}
.hero__usage-limit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__usage-limit-cta[hidden] {
  display: none !important;
}
.hero__usage-limit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero__usage-limit-btn--primary {
  background: linear-gradient(135deg, #8dff68 0, #4ade80 100%);
  color: #0a0a0f;
  box-shadow: 0 4px 16px rgba(141, 255, 104, 0.2);
}
.hero__usage-limit-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 255, 104, 0.3);
}
.hero__usage-limit-btn:not(.hero__usage-limit-btn--primary) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__usage-limit-btn:not(.hero__usage-limit-btn--primary):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero__usage-limit-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero__usage-limit-link:hover {
  color: #fff;
  text-decoration: underline;
}
.hero__usage-limit-hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  opacity: 0.8;
  margin: 0;
}
.hero__usage-limit-dismiss {
  background: 0 0;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}
.hero__usage-limit-dismiss:hover {
  color: var(--text);
}
