/* =============================================
   JONARIX — Pro AI Platform Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Caveat:wght@600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  --bg:            #000000;
  --surface:       #050508;
  --elevated:      #0a0a0f;
  --border:        #15151c;
  --border-light:  #1e1e28;

  --purple:        #7c3aed;
  --purple-hover:  #6d28d9;
  --purple-light:  #a78bfa;
  --purple-mid:    #8b5cf6;
  --purple-dim:    rgba(124, 58, 237, 0.12);
  --purple-glow:   rgba(124, 58, 237, 0.35);

  --cyan:          #06b6d4;
  --cyan-dim:      rgba(6, 182, 212, 0.10);

  --green:         #3fb950;
  --green-dim:     rgba(63, 185, 80, 0.10);

  --text:          #e8eaf2;
  --text-2:        #7e8499;
  --text-3:        #45455c;

  --orange:        #f0883e;
  --red:           #f85149;

  --heading-font:  'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:          'JetBrains Mono', ui-monospace, 'Fira Code', Consolas, monospace;
  --script-font:   'Caveat', 'Segoe Script', cursive;

  --radius:        12px;
  --radius-lg:     16px;
  --radius-sm:     8px;
  --transition:    0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === KEYFRAME ANIMATIONS === */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 30px) scale(1.05); }
  66%       { transform: translate(30px, -40px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-30px); }
}
@keyframes lineIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatVisual {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(124,58,237,0.3), 0 0 0 1px var(--purple); }
  50%       { box-shadow: 0 0 48px rgba(124,58,237,0.55), 0 0 0 1px #a78bfa; }
}
@keyframes scan {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes navShadow {
  to { box-shadow: 0 1px 40px rgba(0,0,0,0.6); }
}
@keyframes clickSparkRing {
  0% {
    transform: translate(-50%, -50%) scale(0.25);
    opacity: 0.92;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.9);
    opacity: 0;
  }
}
@keyframes clickSparkRay {
  0% {
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(-1px) scaleY(1);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--a)) translateY(-17px) scaleY(0.25);
    opacity: 0;
  }
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  scrollbar-gutter: stable;
  overflow-x: clip; /* clip is safer than hidden — doesn't break position:sticky */
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 176, 206, 0.55) rgba(255, 255, 255, 0.04);
}
body {
  font-family: var(--font);
  font-size: 0.9375rem;
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 120% 70% at 50% -35%, rgba(22, 24, 40, 0.55) 0%, transparent 52%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.prompt-modal-open {
  overflow: hidden;
}
/* Modern, subtle scrollbar treatment */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.7), rgba(99, 102, 241, 0.6));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(192, 169, 255, 0.9), rgba(129, 140, 248, 0.85));
  border: 2px solid transparent;
  background-clip: padding-box;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea { font-family: var(--font); }

/* Global click spark effect */
.click-spark {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.click-spark::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.5px solid var(--spark-color, #a78bfa);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.45);
  transform: translate(-50%, -50%);
  animation: clickSparkRing 520ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}
.click-spark .ray {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--spark-color, #a78bfa) 0%, rgba(255,255,255,0.1) 100%);
  transform: translate(-50%, -50%);
  animation: clickSparkRay 520ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}

/* === LAYOUT === */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width:  820px; margin: 0 auto; padding: 0 32px; }
.section      { padding: 76px 0; }

/* Offset for fixed two-row navbar (desktop) */
main {
  padding-top: 108px;
}

/* === TYPOGRAPHY === */
h1 {
  font-family: var(--heading-font);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text);
}
h2 {
  font-family: var(--heading-font);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--text);
}
h3 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text);
}
p { color: var(--text-2); line-height: 1.7; }

/* Shimmer gradient headline */
.grad-text {
  background: linear-gradient(
    90deg,
    #fff 0%,
    var(--purple-light) 25%,
    #c084fc 50%,
    var(--cyan) 75%,
    var(--purple-light) 88%,
    #fff 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 14px;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
  position: relative;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: rgba(124,58,237,0.5);
}
.btn-primary:hover {
  background: var(--purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(124,58,237,0.4), 0 0 0 1px rgba(167,139,250,0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-light);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-1px);
}
.btn-lg  { padding: 13px 28px; font-size: 0.95rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }
.btn-oauth {
  background: var(--elevated);
  color: var(--text);
  border-color: var(--border-light);
}
.btn-oauth:hover { background: var(--border); border-color: var(--border-light); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-2); margin-bottom: 6px; }
.form-input {
  display: block;
  width: 100%;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
  background: var(--surface);
}
.form-input::placeholder { color: var(--text-3); }
.form-hint { font-size: 0.76rem; color: var(--text-3); margin-top: 4px; }

.input-group {
  display: flex;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.input-group:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}
.input-prefix {
  padding: 0 12px;
  font-size: 0.82rem;
  color: var(--text-3);
  border-right: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.input-group input {
  flex: 1; background: transparent; border: none;
  padding: 10px 14px; color: var(--text); font-size: 0.9rem;
  outline: none; min-width: 0;
}
.input-group input::placeholder { color: var(--text-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.form-divider::before,
.form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 0.76rem; color: var(--text-3); white-space: nowrap; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] { accent-color: var(--purple); flex-shrink: 0; margin-top: 3px; }
.form-check label { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--purple-light); }
.form-check a:hover { text-decoration: underline; }
.form-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.form-link { font-size: 0.82rem; color: var(--purple-light); }
.form-link:hover { text-decoration: underline; }

/* =============================================
   CODE BLOCKS
   ============================================= */
.code-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.82;
  position: relative;
}
.code-block:hover .code-scan { animation-play-state: running; }
.code-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--purple-light) 30%, var(--cyan) 70%, transparent 100%);
  animation: scan 4s ease-in-out infinite;
  animation-play-state: paused;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.cb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
}
.cb-dots { display: flex; gap: 6px; }
.cb-dots span { width: 11px; height: 11px; border-radius: 50%; }
.cb-dots span:nth-child(1) { background: #ff5f57; }
.cb-dots span:nth-child(2) { background: #febc2e; }
.cb-dots span:nth-child(3) { background: #28c840; }
.cb-title { color: var(--text-3); font-size: 0.74rem; margin-left: 4px; }
.cb-body { padding: 16px 20px; overflow-x: auto; }
.cb-body pre { white-space: pre; }

/* Syntax tokens */
.t-prompt  { color: var(--purple-light); user-select: none; }
.t-cmd     { color: #cdd9e5; }
.t-arg     { color: #7ee787; }
.t-str     { color: #a5d6ff; }
.t-flag    { color: #79c0ff; }
.t-comment { color: var(--text-3); font-style: italic; }
.t-output  { color: var(--text-2); }
.t-success { color: var(--green); }
.t-key     { color: #d2a8ff; }
.t-num     { color: #f0883e; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
}
.nav-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 1;
  background: rgba(10, 12, 22, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}
.navbar.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-meta {
  border-top: 1px solid rgba(106, 114, 0, 0.45);
  border-bottom: 1px solid rgba(106, 114, 0, 0.45);
  background: #e9ff3b;
}
.nav-meta-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-meta-item {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f3200;
  font-weight: 600;
}
.nav-meta-dot {
  color: #545a00;
  font-size: 0.74rem;
  line-height: 1;
}
@media (min-width: 1101px) {
  .navbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
  }
  .navbar .nav-brand {
    justify-self: start;
  }
  .navbar .nav-links {
    justify-self: center;
  }
  .navbar .nav-actions {
    justify-self: end;
  }

  /* Desktop-only split/merge motion for scroll direction */
  .navbar .nav-brand,
  .navbar .nav-links,
  .navbar .nav-actions {
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.32s ease;
    will-change: transform;
  }

  .navbar .nav-meta {
    transition:
      opacity 0.28s ease,
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.22s ease;
    max-height: 44px;
    transform-origin: top center;
  }

  .navbar .nav-links {
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.32s ease,
      opacity 0.22s ease,
      visibility 0.22s ease;
  }

  .navbar .nav-auth-guest,
  .navbar .nav-auth-user,
  .navbar .nav-signin,
  .navbar .nav-actions .btn {
    transition:
      background 0.26s ease,
      border-color 0.26s ease,
      box-shadow 0.26s ease,
      color 0.22s ease,
      transform 0.26s ease;
  }

  .navbar.scrolling-down .nav-brand {
    transform: translateX(-42px);
  }

  .navbar.scrolling-down .nav-actions {
    transform: translateX(42px);
  }

  .navbar.scrolling-down .nav-links {
    transform: scale(0.986);
    filter: saturate(0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .navbar.scrolling-down {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom-color: transparent;
  }

  .navbar.scrolling-down .nav-meta {
    opacity: 0;
    transform: translateY(-12px);
    max-height: 0;
    overflow: hidden;
    border-top-color: transparent;
    border-bottom-color: transparent;
  }

  .navbar.scrolling-down .nav-brand,
  .navbar.scrolling-down .nav-auth-guest,
  .navbar.scrolling-down .nav-auth-user {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
      0 10px 30px rgba(8, 12, 26, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    border-radius: 999px;
  }

  .navbar.scrolling-down .nav-brand {
    padding: 8px 14px;
    color: #eef2ff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
  }

  .navbar.scrolling-down .nav-auth-guest,
  .navbar.scrolling-down .nav-auth-user {
    padding: 4px 5px;
    gap: 3px;
  }

  .navbar.scrolling-down .nav-signin,
  .navbar.scrolling-down .nav-actions .btn {
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-family: var(--script-font);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 9px 15px;
  }

  .navbar.scrolling-down .nav-signin {
    color: rgba(245, 248, 255, 0.92);
    background: transparent;
  }

  .navbar.scrolling-down .nav-auth-guest .btn-primary,
  .navbar.scrolling-down .nav-auth-user .btn-primary {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.58), rgba(124, 58, 237, 0.52));
    color: #ffffff;
  }

  .navbar.scrolling-down .nav-auth-guest .btn-primary:hover,
  .navbar.scrolling-down .nav-auth-user .btn-primary:hover {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.3);
  }

  /* Scroll up snaps the two sides back inward */
  .navbar.scrolling-up .nav-brand,
  .navbar.scrolling-up .nav-links,
  .navbar.scrolling-up .nav-actions {
    transform: translateX(0) scale(1);
    filter: none;
  }

  .navbar.scrolling-up .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar.scrolling-up .nav-meta {
    opacity: 1;
    transform: translateY(0);
    max-height: 44px;
    border-top-color: rgba(146, 110, 0, 0.34);
    border-bottom-color: rgba(146, 110, 0, 0.34);
  }
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.navbar .nav-brand {
  color: #0a0a0f;
  font-size: 1.02rem;
}
.navbar .nav-brand .brand-logo {
  width: 32px;
  height: 32px;
}
.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}
.split-brand-row .kicker {
  margin-bottom: 0;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}
.navbar .nav-links a {
  position: relative;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #4b5063;
  border-radius: 10px;
  transition:
    color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.22s ease;
}
.navbar .nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-mid) 100%);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}
.navbar .nav-links a:hover {
  color: #0a0a0f;
  background: rgba(124, 58, 237, 0.07);
  box-shadow: 0 1px 0 rgba(124, 58, 237, 0.12);
}
.navbar .nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.navbar .nav-links .nav-mobile-cta {
  display: none;
}
@media (min-width: 1101px) {
  .navbar .nav-links a:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
  }
}
.navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar .nav-auth-guest,
.navbar .nav-auth-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar .nav-auth-guest[hidden],
.navbar .nav-auth-user[hidden] {
  display: none !important;
}
@media (min-width: 1101px) {
  .navbar .nav-actions {
    margin-left: 0;
  }
}
.navbar .nav-signin {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4b5063;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.navbar .nav-actions .btn {
  padding: 8px 14px;
  font-size: 0.84rem;
  border-radius: 9px;
}
.navbar .nav-signin:hover {
  color: #0a0a0f;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.navbar .nav-signin:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.12);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #1a1a28;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}
.navbar.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.nav-no-scroll {
  overflow: hidden;
}
@media (max-width: 1100px) {
  main {
    padding-top: 72px;
  }
  .nav-meta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .navbar .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.28s ease,
      visibility 0.36s ease;
    z-index: 3;
  }
  .navbar.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navbar .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .navbar .nav-links a::after {
    display: none;
  }
  .navbar .nav-links a:hover {
    box-shadow: none;
  }

  .navbar .nav-auth-guest .nav-signin,
  .navbar .nav-auth-guest .btn-primary {
    display: none;
  }

  .navbar .nav-links .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    border-radius: 11px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.28);
  }

  /* Mobile split-on-scroll behavior (tuned lighter than desktop) */
  .navbar .nav-brand,
  .navbar .nav-actions {
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.22s ease, border-color 0.22s ease;
  }

  .navbar.scrolling-down {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom-color: transparent;
  }

  .navbar.scrolling-down .nav-brand {
    transform: translateX(-16px);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 7px 12px;
    color: #eef2ff;
    box-shadow: 0 10px 24px rgba(8, 12, 26, 0.28);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
  }

  .navbar.scrolling-down .nav-actions {
    transform: translateX(16px);
  }

  .navbar.scrolling-up .nav-brand,
  .navbar.scrolling-up .nav-actions {
    transform: translateX(0);
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
  text-align: left;
  isolation: isolate;
  min-height: 0;
  background: #04050a;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
  filter: brightness(0.72) saturate(0.96) contrast(1.02);
  pointer-events: none;
}
.hero-splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.9;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  z-index: 1;
  background:
    radial-gradient(120% 98% at 50% 52%, rgba(6, 10, 18, 0) 28%, rgba(5, 8, 16, 0.5) 62%, rgba(2, 3, 8, 0.88) 100%),
    radial-gradient(86% 62% at 50% 4%, rgba(18, 20, 34, 0.12) 0%, rgba(5, 6, 12, 0.4) 58%, rgba(4, 5, 10, 0.62) 100%),
    linear-gradient(180deg, rgba(4, 6, 10, 0.34) 0%, rgba(4, 6, 10, 0.5) 66%, rgba(4, 6, 10, 0.74) 100%);
  opacity: 1;
  animation: none;
}
.hero::after {
  z-index: 1;
  background-image:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(62deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
  opacity: 0.035;
  mix-blend-mode: screen;
  transform: none;
  animation: none;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-bottom: 48px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  padding: 0;
}

.hero-art {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-art-img {
  display: block;
  width: 100%;
  max-width: min(520px, 100%);
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hero h1.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
  font-size: clamp(1.65rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 100%;
  margin: 0 0 24px;
  color: #f2f3f7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  animation: fadeUp 0.6s ease both;
  position: relative;
  z-index: 2;
}
.hero-headline-line {
  display: block;
  white-space: nowrap;
  color: inherit;
}
.hero-headline-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.hero-headline-fx {
  position: absolute;
  inset: -18% -8% -12% -8%;
  width: 116%;
  height: 130%;
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  background: rgba(124,58,237,0.1);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.3);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulseRing 1.8s ease-out infinite;
}

.hero-models {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 16px;
  margin: 0 0 24px;
  animation: fadeUp 0.6s 0.12s ease both;
}

.model-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: rgba(240, 242, 248, 0.92);
  font-weight: 500;
}
.model-pill svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero-signup {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 0 14px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-email {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hero-email:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.hero-email::placeholder { color: var(--text-3); }

.hero-link {
  font-size: 0.875rem;
  color: var(--text-2);
  display: block;
  margin-bottom: 28px;
  transition: var(--transition);
  animation: fadeUp 0.6s 0.35s ease both;
}
.hero-link:hover { color: #eef0f6; }
.hero-link svg { display: inline-block; vertical-align: middle; margin-left: 4px; transition: transform var(--transition); }
.hero-link:hover svg { transform: translateX(3px); }

.hero-chips {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  animation: fadeUp 0.6s 0.45s ease both;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: rgba(180, 186, 204, 0.85);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color var(--transition), border-color var(--transition);
}
.hero-chip svg { flex-shrink: 0; opacity: 0.65; }
.hero-chip:hover { color: rgba(220, 224, 236, 0.95); border-color: rgba(255, 255, 255, 0.16); }

/* Hero stats */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: left;
}
.hero-stat:last-child { border: none; }
.hero-stat-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  animation: floatVisual 7s ease-in-out infinite, fadeUp 0.8s 0.5s ease both;
}
.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(28px);
}
.hero-visual::before {
  width: clamp(180px, 28vw, 320px);
  height: clamp(130px, 20vw, 220px);
  left: clamp(-20px, 2vw, 26px);
  top: clamp(-46px, -2vw, -20px);
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.34) 0%, rgba(124, 58, 237, 0.08) 56%, transparent 86%);
}
.hero-visual::after {
  width: clamp(150px, 24vw, 290px);
  height: clamp(120px, 18vw, 210px);
  right: clamp(-12px, 2vw, 28px);
  bottom: clamp(-42px, -2vw, -16px);
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.28) 0%, rgba(6, 182, 212, 0.07) 54%, transparent 84%);
}
.hero-visual-wrap {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    0 -1px 0 0 rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero-visual-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--elevated);
  border-bottom: 1px solid var(--border);
}
.hero-visual-dots { display: flex; gap: 6px; }
.hero-visual-dots span { width: 11px; height: 11px; border-radius: 50%; }
.hero-visual-dots span:nth-child(1) { background: #ff5f57; }
.hero-visual-dots span:nth-child(2) { background: #febc2e; }
.hero-visual-dots span:nth-child(3) { background: #28c840; }
.hero-visual-tabs { display: flex; gap: 2px; margin-left: 14px; }
.hero-visual-tab {
  padding: 5px 13px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-3);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.hero-visual-tab.active {
  color: var(--text);
  background: var(--bg);
  border-color: var(--border);
}
.hero-code-body {
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.85;
  overflow-x: auto;
}
.hero-code-body .hl {
  opacity: 0;
  display: block;
}
.hero-code-body .hl.visible {
  animation: lineIn 0.3s ease both;
}

/* =============================================
   FEATURE TABS — restrained / pro layout
   ============================================= */
.feat-tabs-section {
  position: relative;
  padding: clamp(72px, 10vw, 112px) 0 clamp(80px, 11vw, 120px);
  overflow: hidden;
}
.feat-tabs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 30%, rgba(34, 211, 238, 0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.feat-tabs-section .container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.feat-tabs-nav-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.feat-tabs-nav-glow {
  position: absolute;
  inset: -12% -4% -20%;
  background: radial-gradient(ellipse 70% 45% at 50% 40%, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  filter: blur(24px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.feat-tabs-nav.feat-tabs-nav--glass {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.feat-tabs-nav--glass .feat-tab-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(200, 206, 220, 0.88);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.feat-tabs-nav--glass .feat-tab-pill:hover {
  color: rgba(242, 243, 247, 0.95);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}
.feat-tabs-nav--glass .feat-tab-pill.active {
  color: #f6f7f9;
  background: rgba(124, 58, 237, 0.16);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: none;
}
.feat-tabs-nav--glass .feat-tab-pill.active svg {
  color: #c4b5fd;
  filter: none;
}
.feat-tabs-nav--glass .feat-tab-pill svg {
  opacity: 0.55;
  transition: opacity 0.18s ease, color 0.18s ease;
}
.feat-tabs-nav--glass .feat-tab-pill:hover svg,
.feat-tabs-nav--glass .feat-tab-pill.active svg {
  opacity: 0.95;
}

.feat-tab-desc--glass {
  max-width: 52rem;
  margin: 0 auto 48px;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(168, 174, 191, 0.95);
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.feat-tab-panel { display: none; }
.feat-tab-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  animation: fadeUp 0.4s ease both;
}
.feat-tab-panel .code-block {
  align-self: stretch;
}

.feat-tab-copy {
  position: relative;
  max-width: 36rem;
  padding: 36px 32px 40px 32px;
  margin-right: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}
.feat-tab-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 2px;
  border-radius: 2px;
  background: rgba(124, 58, 237, 0.55);
  opacity: 0.85;
  box-shadow: none;
}
.feat-tab-copy > .kicker {
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(167, 139, 250, 0.85);
}

.feat-tab-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.feat-ribbon {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: rgba(200, 206, 220, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feat-tab-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #f0f1f5;
}
.feat-hl-gradient {
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.feat-lead {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: rgba(184, 190, 206, 0.96);
}
.feat-sub {
  margin: 0 0 28px;
  font-size: 0.8125rem;
  line-height: 1.68;
  letter-spacing: 0.015em;
  color: rgba(154, 162, 180, 0.95);
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.feat-em {
  color: rgba(228, 231, 240, 0.98);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.feat-key {
  color: rgba(210, 205, 235, 0.98);
  font-weight: 600;
}
.feat-inline-code {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: rgba(220, 215, 245, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feat-tab-copy ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feat-tab-copy li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(196, 202, 216, 0.96);
  padding: 0;
  margin: 0;
  border-radius: 0;
  transition: none;
}
.feat-tab-copy li:hover {
  background: none;
  box-shadow: none;
}
.feat-tab-copy li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 3px;
  background: rgba(63, 185, 80, 0.12);
  border: 1px solid rgba(63, 185, 80, 0.28);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3.5L4.5 9 2 6.5' stroke='%2346c35f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .feat-tab-panel.active {
    animation: none;
  }
}

/* =============================================
   LOGO STRIP
   ============================================= */
.logo-strip {
  padding: 28px 0 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%),
    var(--surface);
}
.logo-strip-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #8a91a6;
  margin-bottom: 14px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  display: grid;
  gap: 14px;
}
.logo-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 34px;
  width: max-content;
  will-change: transform;
  animation: logoTicker 26s linear infinite;
}
.logo-track--line2 {
  animation-duration: 32s;
  animation-direction: reverse;
}
.logo-track--line3 {
  animation-duration: 38s;
}
.logo-track .logo-item[aria-hidden="true"]:not(.logo-loop-clone) {
  display: none;
}
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0.86;
  cursor: default;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.logo-item img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
.logo-item:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}
@keyframes logoTicker {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 17px)); }
}
@media (max-width: 900px) {
  .logo-track {
    gap: 20px;
    animation-duration: 20s;
  }
  .logo-item img {
    width: 40px;
    height: 40px;
  }
  .logo-track--line2 { animation-duration: 24s; }
  .logo-track--line3 { animation-duration: 30s; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

/* =============================================
   WHY US / COMPARE
   ============================================= */
.why-us-section {
  padding: 78px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(90% 70% at 14% 10%, rgba(124, 58, 237, 0.09) 0%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%),
    var(--surface);
}
.why-us-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.why-us-copy h2 {
  margin-bottom: 14px;
  max-width: 620px;
}
.why-us-copy p {
  margin-bottom: 22px;
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 620px;
}
.why-us-copy .why-us-proof {
  color: #e8eaf2;
  font-weight: 500;
  margin-bottom: 10px;
  max-width: 660px;
}
.why-us-compare {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(8, 8, 14, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.why-us-compare-head,
.why-us-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  min-width: 980px;
}
.why-us-compare-head {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}
.why-us-compare-head span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.why-us-compare-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.why-us-compare-row:last-child {
  border-bottom: 0;
}
.why-us-compare-row span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-2);
}
.why-us-compare-row code {
  font-family: var(--mono);
  font-size: 0.77rem;
  color: #d0d7f6;
}
.why-us-compare-row span:first-child {
  color: var(--text);
  font-weight: 500;
}
.why-us-good {
  color: #91f2b8 !important;
}
.why-us-bad {
  color: #f2b3b1 !important;
}
.why-us-code {
  margin: 0;
}

/* =============================================
   SPLIT SECTIONS
   ============================================= */
.split-section { padding: 64px 0; }
.split-section + .split-section { border-top: 1px solid var(--border); }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-copy .kicker { margin-bottom: 12px; }
.split-copy h2 { margin-bottom: 14px; }
.split-copy p  { font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.split-copy a  { color: var(--purple-light); font-size: 0.875rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; transition: var(--transition); }
.split-copy a:hover { color: #c084fc; }
.split-copy ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.split-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
}
.split-copy li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(63,185,80,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10 3L5 8.5 2 5.5' stroke='%233fb950' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   CREATOR REWARDS
   ============================================= */
.creator-rewards-section {
  padding: 74px 0;
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(72% 58% at 86% 10%, rgba(6, 182, 212, 0.08) 0%, transparent 68%),
    radial-gradient(64% 52% at 12% 88%, rgba(124, 58, 237, 0.08) 0%, transparent 72%),
    var(--surface);
}
.creator-rewards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.creator-rewards-copy h2 {
  margin-bottom: 14px;
  color: var(--text);
}
.creator-rewards-copy p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
  color: var(--text-2);
}
.creator-rewards-copy ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.creator-rewards-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
}
.creator-rewards-copy li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 1l1.4 2.84L10.5 4.3l-2.24 2.18.53 3.08L6 8.04 3.2 9.56l.53-3.08L1.5 4.3l3.1-.46z' stroke='%2306b6d4' stroke-width='1' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.creator-rewards-copy > a {
  color: var(--purple-light);
  font-weight: 600;
}
.creator-rewards-copy > a:hover {
  color: #c084fc;
}

/* =============================================
   PROMPT RESULTS SHOWCASE
   ============================================= */
.prompt-showcase-section {
  padding: 82px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(74% 62% at 86% 10%, rgba(124, 58, 237, 0.12) 0%, transparent 68%),
    radial-gradient(68% 58% at 12% 90%, rgba(6, 182, 212, 0.12) 0%, transparent 74%),
    var(--surface);
}
.prompt-showcase-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}
.prompt-showcase-head h2 {
  margin-bottom: 14px;
  font-family: var(--script-font);
  font-size: clamp(2.1rem, 5.4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.04;
}
.prompt-showcase-head p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.prompt-showcase-layout {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
@media (min-width: 1100px) {
  .prompt-showcase-layout {
    grid-template-columns: 168px minmax(0, 1.12fr);
  }
}
.prompt-showcase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 80px;
}
.prompt-category-tabs {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.prompt-login-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(140, 100, 255, 0.18) 0%, rgba(15, 12, 28, 0.0) 70%),
    linear-gradient(180deg, rgba(20, 16, 36, 0.85) 0%, rgba(10, 8, 22, 0.92) 100%);
  border: 1px solid rgba(140, 110, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.prompt-login-cta__sparkle {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 140, 255, 0.6) 0%, rgba(180, 140, 255, 0) 70%);
  filter: blur(2px);
  pointer-events: none;
}
.prompt-login-cta__title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #f4f1ff;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.prompt-login-cta__sub {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(220, 215, 245, 0.72);
  line-height: 1.35;
}
.prompt-login-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #8a5cff 0%, #5c34d8 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 6px 18px rgba(92, 52, 216, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.prompt-login-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 10px 24px rgba(92, 52, 216, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.prompt-category-btn {
  border: 0;
  background: rgba(10, 12, 22, 0.45);
  color: #a7afd1;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.prompt-category-btn:hover {
  color: #e8ecff;
  background: rgba(124, 58, 237, 0.2);
  transform: translateX(2px);
}
.prompt-category-btn.active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.56), rgba(76, 29, 149, 0.3));
  box-shadow: none;
}
.prompt-showcase-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.prompt-carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: rgba(12, 12, 20, 0.5);
  color: #ebe8ff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.prompt-carousel-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17, 10, 40, 0.28);
}
.prompt-carousel-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  box-shadow: none;
}
.prompt-showcase-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  max-width: min(1020px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
.prompt-showcase-viewport::-webkit-scrollbar {
  display: none;
}
.prompt-showcase-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
}
.prompt-media-card {
  flex: 0 0 100%;
  border: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(13, 14, 24, 0.9), rgba(7, 8, 15, 0.88));
  overflow: hidden;
  min-height: 100%;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(2, 4, 10, 0.42);
}
.prompt-media-card:has(.prompt-media-frame--glass-ref) {
  overflow: visible;
}
.prompt-media-card:has(.prompt-media-frame--glass-ref) .prompt-media-caption {
  position: relative;
  z-index: 1;
}
.prompt-media-card:has(.prompt-media-frame--neumorphic-ref) {
  overflow: visible;
}
.prompt-media-card:has(.prompt-media-frame--neumorphic-ref) .prompt-media-caption {
  position: relative;
  z-index: 1;
}
.prompt-media-card--jonarix-anim {
  background:
    linear-gradient(155deg, rgba(124, 58, 237, 0.16), rgba(9, 11, 20, 0.9) 34%),
    radial-gradient(120% 110% at 90% 100%, rgba(34, 211, 238, 0.09), transparent 62%),
    rgba(7, 8, 15, 0.92);
}
.prompt-media-card--jonarix-anim .prompt-media-head {
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.02) 58%),
    rgba(255, 255, 255, 0.015);
}
.prompt-media-card--jonarix-anim .prompt-media-meta {
  color: #8f95b1;
}
.prompt-media-card[hidden],
.prompt-media-card.prompt-card-hidden {
  display: none !important;
}
.prompt-media-card--splash {
  position: relative;
  isolation: isolate;
}
.prompt-media-card--splash .prompt-media-head,
.prompt-media-card--splash .prompt-media-frame,
.prompt-media-card--splash .prompt-media-caption {
  position: relative;
  z-index: 2;
}
.prompt-media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}
.prompt-media-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a3adcc;
}
.prompt-media-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--text-3);
}
.prompt-media-frame {
  aspect-ratio: 16 / 9;
  background: #06070d;
  position: relative;
}
.prompt-media-frame video,
.prompt-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.prompt-media-frame--splash {
  background: radial-gradient(circle at 52% 45%, rgba(92, 72, 238, 0.22) 0%, rgba(10, 10, 18, 0.95) 70%);
}
.prompt-media-frame--metaballs {
  background:
    radial-gradient(90% 80% at 50% 40%, rgba(36, 33, 66, 0.45) 0%, rgba(9, 10, 18, 0.92) 75%),
    #070913;
}
.prompt-media-frame--blob {
  background:
    radial-gradient(90% 80% at 50% 42%, rgba(32, 28, 74, 0.42) 0%, rgba(9, 10, 18, 0.94) 74%),
    #070913;
}
.prompt-media-frame--spark {
  background:
    radial-gradient(90% 80% at 52% 44%, rgba(41, 34, 78, 0.46) 0%, rgba(7, 9, 16, 0.95) 72%),
    #070913;
}
.prompt-media-frame--star {
  background:
    radial-gradient(90% 80% at 52% 44%, rgba(52, 45, 88, 0.4) 0%, rgba(8, 10, 18, 0.95) 72%),
    #070913;
}
.prompt-media-frame--liquid {
  background:
    radial-gradient(95% 86% at 52% 44%, rgba(47, 57, 110, 0.36) 0%, rgba(8, 10, 18, 0.96) 74%),
    #070913;
}
.prompt-media-frame--light-rays {
  background:
    radial-gradient(95% 86% at 52% 44%, rgba(66, 76, 128, 0.34) 0%, rgba(8, 10, 18, 0.96) 74%),
    #070913;
}
.prompt-media-frame--dither {
  background: #020202;
  position: relative;
  overflow: hidden;
}

.dither-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.dither-preview--catalog .dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--galaxy {
  background: #05060c;
  position: relative;
  overflow: hidden;
}

.galaxy-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.galaxy-preview--catalog .galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--cosmic-vortex {
  background: #03000a;
  position: relative;
  overflow: hidden;
}

.cosmic-vortex-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}

.cosmic-vortex-preview--catalog:active {
  cursor: grabbing;
}

.cosmic-vortex-preview--catalog .cosmic-vortex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--ripple-grid {
  background: #050508;
  position: relative;
  overflow: hidden;
}

.ripple-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.ripple-preview--catalog .ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--prismatic-burst {
  background: #030208;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.prismatic-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.prismatic-preview--catalog .prismatic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--hyperspeed {
  background: #000;
  position: relative;
  overflow: hidden;
}

.hyperspeed-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.hyperspeed-preview--catalog .hyperspeed-preview-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--iridescence {
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
}

.iridescence-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.iridescence-preview--catalog .iridescence-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.prompt-media-frame--waves {
  background: #000;
  position: relative;
  overflow: hidden;
}

.waves-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}

.waves-preview--catalog .waves {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.waves-preview--catalog .waves-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.prompt-media-frame--truefocus {
  background: #121218;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truefocus-preview--catalog {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

.truefocus-preview--catalog .focus-container {
  position: relative;
  display: flex;
  gap: 0.65em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  outline: none;
  user-select: none;
  max-width: 100%;
}

.truefocus-preview--catalog .focus-word {
  position: relative;
  font-size: clamp(1.05rem, 3.4vw, 1.72rem);
  font-weight: 900;
  cursor: default;
  color: rgba(255, 255, 255, 0.96);
  transition:
    filter 0.3s ease,
    color 0.3s ease;
  outline: none;
  user-select: none;
}

.truefocus-preview--catalog .focus-word.active {
  filter: blur(0);
}

.truefocus-preview--catalog .focus-frame {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  box-sizing: content-box;
  border: none;
  will-change: transform, width, height;
}

.truefocus-preview--catalog .corner {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--border-color, #5227ff);
  filter: drop-shadow(0px 0px 4px var(--border-color, #5227ff));
  border-radius: 3px;
  transition: none;
}

.truefocus-preview--catalog .top-left {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.truefocus-preview--catalog .top-right {
  top: -6px;
  right: -6px;
  border-left: none;
  border-bottom: none;
}

.truefocus-preview--catalog .bottom-left {
  bottom: -6px;
  left: -6px;
  border-right: none;
  border-top: none;
}

.truefocus-preview--catalog .bottom-right {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}
.prompt-media-frame--ascii-text {
  background: #0a0a0e;
  position: relative;
  overflow: hidden;
}

.ascii-text-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.prompt-media-frame--scroll-velocity {
  background: #0c0c0f;
  position: relative;
  overflow: hidden;
}

.scroll-velocity-preview--catalog {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.scroll-velocity-preview--catalog .scroll-velocity-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
}

.scroll-velocity-preview--catalog .scroll-velocity-parallax {
  position: relative;
  overflow: hidden;
}

.scroll-velocity-preview--catalog .scroll-velocity-scroller {
  display: flex;
  white-space: nowrap;
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: clamp(1.1rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(248, 250, 255, 0.94);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.scroll-velocity-preview--catalog .scroll-velocity-scroller span {
  flex-shrink: 0;
}
.prompt-media-frame--electric-border {
  background:
    radial-gradient(85% 72% at 50% 38%, rgba(55, 95, 120, 0.35) 0%, rgba(6, 8, 14, 0.96) 72%),
    #060a10;
  position: relative;
  overflow: visible;
}

.electric-border-preview--catalog.electric-border {
  --electric-light-color: oklch(from var(--electric-border-color) l c h);
  position: relative;
  border-radius: inherit;
  overflow: visible;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.electric-border-preview--catalog .eb-canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.electric-border-preview--catalog .eb-canvas {
  display: block;
}

.electric-border-preview--catalog .eb-content {
  position: relative;
  border-radius: inherit;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.electric-border-preview--catalog .eb-layers {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.electric-border-preview--catalog .eb-glow-1,
.electric-border-preview--catalog .eb-glow-2,
.electric-border-preview--catalog .eb-background-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
}

.electric-border-preview--catalog .eb-glow-1 {
  border: 2px solid oklch(from var(--electric-border-color) l c h / 0.6);
  filter: blur(1px);
}

.electric-border-preview--catalog .eb-glow-2 {
  border: 2px solid var(--electric-light-color);
  filter: blur(4px);
}

.electric-border-preview--catalog .eb-background-glow {
  z-index: -1;
  transform: scale(1.1);
  filter: blur(32px);
  opacity: 0.3;
  background: linear-gradient(-30deg, var(--electric-light-color), transparent, var(--electric-border-color));
}

.prompt-media-frame--orbit-images {
  background:
    radial-gradient(92% 88% at 50% 28%, rgba(120, 110, 180, 0.42) 0%, rgba(14, 16, 28, 0.92) 58%, rgba(8, 9, 14, 0.98) 100%),
    #12141f;
  position: relative;
  overflow: hidden;
}

.orbit-images-preview--catalog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit-images-preview--catalog .orbit-container,
.orbit-images-preview--catalog .orbit-container.orbit-container--catalog-preview {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.orbit-images-preview--catalog .orbit-scaling-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.orbit-images-preview--catalog .orbit-scaling-container--responsive {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

.orbit-images-preview--catalog .orbit-rotation-wrapper {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  position: relative;
}

.orbit-images-preview--catalog .orbit-path-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-images-preview--catalog .orbit-item {
  position: absolute;
  will-change: transform;
  user-select: none;
}

.orbit-images-preview--catalog .orbit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  outline: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(255, 255, 255, 0.12);
}

.prompt-media-frame--antigravity {
  background: radial-gradient(90% 88% at 50% 45%, rgba(82, 39, 255, 0.22) 0%, rgba(5, 5, 10, 0.98) 72%), #050508;
  position: relative;
  overflow: hidden;
}

.antigravity-preview--catalog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.antigravity-preview--catalog .antigravity-preview-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.prompt-media-frame--pixel-blast {
  background:
    radial-gradient(95% 86% at 52% 44%, rgba(90, 72, 124, 0.3) 0%, rgba(8, 10, 18, 0.96) 74%),
    #070913;
}
.prompt-media-frame--line-waves {
  background:
    radial-gradient(95% 86% at 52% 44%, rgba(124, 124, 136, 0.24) 0%, rgba(8, 10, 18, 0.96) 74%),
    #070913;
}
.prompt-media-frame--grainient {
  background:
    radial-gradient(95% 86% at 52% 44%, rgba(138, 95, 255, 0.28) 0%, rgba(8, 10, 18, 0.96) 74%),
    #070913;
}
.prompt-media-frame--evil-eye {
  background: #000;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--soft-aurora {
  background: #08060f;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--letter-glitch {
  background: #000;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--liquid-chrome {
  background: #050505;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--balatro {
  background: #11070b;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--orb {
  background: #050610;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--dot-grid {
  background: #060509;
  position: relative;
  overflow: hidden;
}
.dot-grid-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(82, 39, 255, 0.10) 0%, rgba(6, 5, 9, 0.98) 70%),
    #060509;
  overflow: hidden;
  cursor: crosshair;
}
.dot-grid-preview canvas.dot-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: none;
}
.dot-grid-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 2.2vw, 22px);
  pointer-events: none;
  color: #f4f3ff;
  z-index: 2;
}
.dot-grid-ui > * { pointer-events: auto; }
.dot-grid-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 8, 24, 0.55);
  border: 1px solid rgba(140, 110, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-self: flex-start;
}
.dot-grid-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.dot-grid-brand::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #5227FF 0%, #2a13a0 100%);
  box-shadow: 0 0 12px rgba(82, 39, 255, 0.6);
}
.dot-grid-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dot-grid-content-shell {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dot-grid-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #160a40;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dot-grid-content-shell h4 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.orb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(120% 80% at 50% 50%, rgba(120, 80, 230, 0.18) 0%, rgba(5, 6, 16, 0.98) 70%),
    #050610;
  overflow: hidden;
}
.orb-preview canvas.orb-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.orb-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(14px, 2.2vw, 22px);
  pointer-events: none;
  color: #f7f7ff;
  z-index: 2;
}
.orb-ui > * { pointer-events: auto; }
.orb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 10, 30, 0.55);
  border: 1px solid rgba(180, 170, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.orb-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.orb-brand::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #c6b3ff 0%, #6c4bff 45%, #1a1252 100%);
  box-shadow: 0 0 12px rgba(140, 110, 255, 0.7);
}
.orb-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(220, 215, 255, 0.78);
}
.orb-links button {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0d0a24;
  font-weight: 600;
  font-size: 13px;
}
.orb-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.orb-content-shell {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.orb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d0a24;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.orb-pill em {
  font-style: normal;
  font-weight: 500;
  color: rgba(13, 10, 36, 0.7);
  text-transform: none;
  letter-spacing: 0;
}
.orb-content-shell h4 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.orb-subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(220, 215, 255, 0.78);
  max-width: 420px;
}
.orb-actions {
  display: inline-flex;
  gap: 10px;
  margin-top: 6px;
}
.orb-actions button {
  appearance: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 13px;
  background: #fff;
  color: #0d0a24;
}
.orb-actions button.ghost {
  background: rgba(20, 18, 40, 0.7);
  color: #efeaff;
  border: 1px solid rgba(180, 170, 255, 0.25);
}
.balatro-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #11070b;
  overflow: hidden;
}
.balatro-preview canvas.balatro-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.liquid-chrome-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  overflow: hidden;
}
.liquid-chrome-preview canvas.liquid-chrome-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.letter-glitch-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.letter-glitch-preview canvas.letter-glitch-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.letter-glitch-preview .letter-glitch-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.letter-glitch-preview .letter-glitch-vignette--outer {
  background: radial-gradient(circle, rgba(0,0,0,0) 60%, rgba(0,0,0,1) 100%);
}
.letter-glitch-preview .letter-glitch-vignette--center {
  background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
.prompt-media-frame--glass-ref {
  /* Off-white field behind transparent glass art (public/90-removebg-preview.png) */
  background:
    radial-gradient(120% 85% at 50% 45%, #fafaf9 0%, #f2f0ee 52%, #ebe9e6 100%);
  position: relative;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 44px rgba(15, 23, 42, 0.1),
    0 6px 14px rgba(15, 23, 42, 0.06);
}
.glass-ref-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.6vw, 14px) clamp(8px, 2.2vw, 20px);
  box-sizing: border-box;
}
.prompt-media-frame--glass-ref img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.18),
    0 12px 28px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  filter: contrast(1.09) saturate(1.06) brightness(1.02);
}
.prompt-media-frame--ui-login {
  background: #efb3d3;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--ui-login img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.prompt-media-frame--ui-login-geo {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--ui-login-geo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.prompt-media-frame--ui-landing {
  background: #07060a;
  position: relative;
  overflow: hidden;
}
.prompt-media-frame--ui-landing img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.prompt-media-frame--neumorphic-ref {
  background:
    radial-gradient(115% 95% at 48% 38%, #f0f0f4 0%, #e2e3ea 52%, #d4d6df 100%);
  position: relative;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 16px 40px rgba(15, 23, 42, 0.11),
    0 5px 14px rgba(15, 23, 42, 0.07);
}
.neumorphic-ref-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.6vw, 14px) clamp(8px, 2.2vw, 20px);
  box-sizing: border-box;
}
.prompt-media-frame--neumorphic-ref img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.11),
    0 2px 8px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  filter: contrast(1.14) brightness(1.045) saturate(1.05);
}
.prompt-media-frame--dash-prototype {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(124, 58, 237, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, rgba(14, 16, 26, 0.55) 0%, rgba(6, 8, 14, 0.96) 100%);
  position: relative;
  overflow: hidden;
  /* Taller than 16:9 so wide dashboard PNGs scale up and stay readable */
  aspect-ratio: 16 / 10;
  min-height: clamp(300px, 52vmin, 680px);
}
.dash-prototype-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.4vw, 14px);
  box-sizing: border-box;
}
.prompt-media-frame--dash-prototype .dash-prototype-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.soft-aurora-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #08060f;
  overflow: hidden;
}
.soft-aurora-preview canvas.soft-aurora-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.evil-eye-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: crosshair;
  overflow: hidden;
}
.evil-eye-preview canvas.evil-eye-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.evil-eye-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 200, 160, 0.88);
  background: rgba(20, 8, 4, 0.6);
  border: 1px solid rgba(255, 120, 60, 0.32);
  padding: 6px 14px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(255, 100, 40, 0.18);
}
.evil-eye-hint::before { content: '[ '; color: rgba(255, 170, 110, 0.78); }
.evil-eye-hint::after { content: ' ]'; color: rgba(255, 170, 110, 0.78); }
.prompt-splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  filter: brightness(1.22) saturate(1.28);
}
.prompt-metaballs-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.blob-preview {
  position: relative;
  width: 100%;
  height: 100%;
}
.prompt-spark-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: crosshair;
}
.star-border-preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.star-border-container {
  display: inline-block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.border-gradient-bottom {
  position: absolute;
  width: 300%;
  height: 50%;
  opacity: 0.7;
  bottom: -12px;
  right: -250%;
  border-radius: 50%;
  animation: star-movement-bottom linear infinite alternate;
  z-index: 0;
}

.border-gradient-top {
  position: absolute;
  opacity: 0.7;
  width: 300%;
  height: 50%;
  top: -12px;
  left: -250%;
  border-radius: 50%;
  animation: star-movement-top linear infinite alternate;
  z-index: 0;
}

.star-border-container .inner-content {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(8, 10, 18, 0.46);
  backdrop-filter: blur(14px) saturate(165%);
  -webkit-backdrop-filter: blur(14px) saturate(165%);
  color: white;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 18px 34px;
  border-radius: 20px;
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(3, 6, 12, 0.42);
}

.liquid-ether-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.liquid-ether-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.liquid-ether-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}
.liquid-ether-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(8, 10, 18, 0.46);
  backdrop-filter: blur(10px) saturate(140%);
}
.liquid-ether-brand {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
}
.liquid-ether-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(225, 232, 250, 0.72);
}
.liquid-ether-links button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d1020;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
}
.liquid-ether-content {
  width: min(72%, 420px);
  margin: 0 auto 8px;
  text-align: center;
}
.liquid-ether-pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 18, 0.46);
  color: rgba(238, 242, 255, 0.9);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.liquid-ether-content h4 {
  margin: 10px 0 12px;
  color: #f7f9ff;
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}
.liquid-ether-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.liquid-ether-actions button {
  pointer-events: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  background: rgba(252, 254, 255, 0.9);
  color: #0d1122;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}
.liquid-ether-actions button.ghost {
  background: rgba(11, 15, 30, 0.45);
  color: rgba(235, 240, 255, 0.94);
}
.liquid-ether-hint {
  align-self: flex-end;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 9, 18, 0.6);
  color: rgba(232, 239, 255, 0.8);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.light-rays-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.light-rays-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.light-rays-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 14px;
  pointer-events: none;
}
.light-rays-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(8, 10, 18, 0.46);
  backdrop-filter: blur(10px) saturate(140%);
}
.light-rays-brand {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
}
.light-rays-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(225, 232, 250, 0.72);
}
.light-rays-links button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d1020;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
}
.light-rays-content {
  width: min(78%, 520px);
  margin: clamp(86px, 17vh, 140px) auto 10px;
  text-align: center;
}
.light-rays-content-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(6, 9, 18, 0.38);
  backdrop-filter: blur(10px) saturate(145%);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
  padding: 12px 14px 10px;
}
.light-rays-pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 18, 0.46);
  color: rgba(238, 242, 255, 0.9);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.light-rays-content h4 {
  margin: 10px 0 12px;
  color: #f7f9ff;
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}
.light-rays-subtitle {
  margin: 0 auto 12px;
  max-width: 42ch;
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(224, 232, 250, 0.78);
}
.light-rays-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.light-rays-actions button {
  pointer-events: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  background: rgba(252, 254, 255, 0.9);
  color: #0d1122;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}
.light-rays-actions button.ghost {
  background: rgba(11, 15, 30, 0.45);
  color: rgba(235, 240, 255, 0.94);
}
.light-rays-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.light-rays-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 20, 0.52);
  color: rgba(231, 238, 255, 0.82);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 9px;
}
.light-rays-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8d0ff;
  box-shadow: 0 0 10px rgba(184, 208, 255, 0.9);
}

.pixel-blast-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.pixel-blast-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.pixel-blast-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}
.pixel-blast-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(10, 8, 18, 0.5);
  backdrop-filter: blur(10px) saturate(140%);
}
.pixel-blast-brand {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
}
.pixel-blast-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(225, 232, 250, 0.72);
}
.pixel-blast-links button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d1020;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
}
.pixel-blast-content {
  width: min(72%, 420px);
  margin: 0 auto 10px;
  text-align: center;
}
.pixel-blast-pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 8, 18, 0.56);
  color: rgba(238, 242, 255, 0.92);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.pixel-blast-content h4 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}
.pixel-blast-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pixel-blast-actions button {
  pointer-events: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  background: rgba(252, 254, 255, 0.9);
  color: #0d1122;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}
.pixel-blast-actions button.ghost {
  background: rgba(11, 15, 30, 0.45);
  color: rgba(235, 240, 255, 0.94);
}
.pixel-blast-toggle {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.58);
  padding: 6px 10px;
  color: rgba(232, 239, 255, 0.82);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pixel-blast-switch {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}
.pixel-blast-switch i {
  position: absolute;
  top: 1px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(240, 245, 255, 0.96);
}
.line-waves-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.line-waves-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.line-waves-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}
.line-waves-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(10, 8, 18, 0.5);
  backdrop-filter: blur(10px) saturate(140%);
}
.line-waves-brand {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
}
.line-waves-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(225, 232, 250, 0.72);
}
.line-waves-links button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d1020;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
}
.line-waves-content {
  width: min(72%, 420px);
  margin: 0 auto 10px;
  text-align: center;
}
.line-waves-pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 8, 18, 0.56);
  color: rgba(238, 242, 255, 0.92);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.line-waves-content h4 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}
.line-waves-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.line-waves-actions button {
  pointer-events: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  background: rgba(252, 254, 255, 0.9);
  color: #0d1122;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}
.line-waves-actions button.ghost {
  background: rgba(11, 15, 30, 0.45);
  color: rgba(235, 240, 255, 0.94);
}
.line-waves-toggle {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.58);
  padding: 6px 10px;
  color: rgba(232, 239, 255, 0.82);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.line-waves-switch {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}
.line-waves-switch i {
  position: absolute;
  top: 1px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(240, 245, 255, 0.96);
}
.grainient-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
}
.grainient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.grainient-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 14px;
  pointer-events: none;
}
.grainient-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(10, 8, 18, 0.5);
  backdrop-filter: blur(10px) saturate(140%);
}
.grainient-brand {
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(244, 247, 255, 0.92);
}
.grainient-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: rgba(225, 232, 250, 0.72);
}
.grainient-links button {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d1020;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
}
.grainient-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(72%, 420px);
  margin: 0 auto;
  text-align: center;
}
.grainient-pill {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 8, 18, 0.56);
  color: rgba(238, 242, 255, 0.92);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.grainient-content h4 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.9vw, 1.9rem);
  line-height: 1.08;
}
.grainient-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.grainient-actions button {
  pointer-events: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 12px;
  background: rgba(252, 254, 255, 0.9);
  color: #0d1122;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
}
.grainient-actions button.ghost {
  background: rgba(11, 15, 30, 0.45);
  color: rgba(235, 240, 255, 0.94);
}
@media (max-width: 640px) {
  .liquid-ether-ui {
    padding: 10px;
  }
  .liquid-ether-links span {
    display: none;
  }
  .liquid-ether-content {
    width: min(90%, 420px);
  }
  .liquid-ether-content h4 {
    font-size: clamp(0.96rem, 3.8vw, 1.2rem);
  }
  .light-rays-ui {
    padding: 10px;
  }
  .light-rays-links span {
    display: none;
  }
  .light-rays-content {
    width: min(94%, 420px);
    margin-top: clamp(66px, 15vh, 104px);
  }
  .light-rays-content h4 {
    font-size: clamp(0.96rem, 3.8vw, 1.2rem);
  }
  .light-rays-content-shell {
    padding: 10px 10px 8px;
    border-radius: 14px;
  }
  .light-rays-subtitle {
    font-size: 0.6rem;
    line-height: 1.5;
  }
  .pixel-blast-ui {
    padding: 10px;
  }
  .pixel-blast-links span {
    display: none;
  }
  .pixel-blast-content {
    width: min(90%, 420px);
  }
  .pixel-blast-content h4 {
    font-size: clamp(0.96rem, 3.8vw, 1.2rem);
  }
  .pixel-blast-toggle {
    font-size: 0.52rem;
    gap: 8px;
  }
  .line-waves-ui {
    padding: 10px;
  }
  .line-waves-links span {
    display: none;
  }
  .line-waves-content {
    width: min(90%, 420px);
  }
  .line-waves-content h4 {
    font-size: clamp(0.96rem, 3.8vw, 1.2rem);
  }
  .line-waves-toggle {
    font-size: 0.52rem;
    gap: 8px;
  }
  .grainient-ui {
    padding: 10px;
  }
  .grainient-links span {
    display: none;
  }
  .grainient-content {
    width: min(90%, 420px);
  }
  .grainient-content h4 {
    font-size: clamp(0.96rem, 3.8vw, 1.2rem);
  }
}

@keyframes star-movement-bottom {
  0% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-100%, 0%);
    opacity: 0;
  }
}

@keyframes star-movement-top {
  0% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(100%, 0%);
    opacity: 0;
  }
}
.preview-spark-burst {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.preview-spark-burst::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1.8px solid var(--spark-color, #a78bfa);
  box-shadow: 0 0 26px rgba(167, 139, 250, 0.5);
  transform: translate(-50%, -50%);
  animation: clickSparkRing 520ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}
.preview-spark-burst .ray {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4px;
  height: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--spark-color, #a78bfa) 0%, rgba(255,255,255,0.1) 100%);
  transform: translate(-50%, -50%);
  animation: clickSparkRay 520ms cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}
.prompt-click-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 11px 17px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(227, 217, 255, 0.78);
  background: rgba(6, 8, 16, 0.56);
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 8px 22px rgba(7, 10, 20, 0.3);
  pointer-events: none;
}
.blob-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blob-main {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  user-select: none;
  cursor: default;
}
.blob {
  position: absolute;
  will-change: transform;
  transform: translate(-50%, -50%);
}
.inner-dot {
  position: absolute;
}
.prompt-preview-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0.02) 58%),
    repeating-linear-gradient(90deg, rgba(167, 139, 250, 0.16) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(0deg, rgba(167, 139, 250, 0.12) 0 1px, transparent 1px 14px),
    rgba(4, 6, 12, 0.54);
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow:
    0 8px 22px rgba(7, 10, 20, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: rgba(227, 217, 255, 0.8);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.18);
  opacity: 0.72;
  filter: saturate(0.88);
  pointer-events: none;
}
.prompt-preview-hint::before {
  content: '[ ';
  color: rgba(152, 168, 255, 0.78);
}
.prompt-preview-hint::after {
  content: ' ]';
  color: rgba(152, 168, 255, 0.78);
}
.prompt-media-frame--placeholder {
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
    #070913;
}
.prompt-media-frame--placeholder span {
  font-family: var(--mono);
  font-size: 0.67rem;
  text-align: center;
  letter-spacing: 0.03em;
  color: #9ca7ce;
}
.prompt-media-caption {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.6;
}
.prompt-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: none;
}
.prompt-detail-modal[aria-hidden="false"] {
  display: block;
}
.prompt-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.prompt-detail-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, calc(100% - 28px));
  transform: translate(-50%, -50%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167, 139, 250, 0.28);
  background:
    linear-gradient(160deg, rgba(124, 58, 237, 0.14), rgba(9, 11, 20, 0.96) 44%),
    rgba(8, 10, 18, 0.98);
  box-shadow: 0 24px 62px rgba(4, 6, 12, 0.62);
  padding: 22px;
}
.prompt-detail-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #eff2ff;
  font-size: 1.15rem;
  line-height: 1;
}
.prompt-detail-kicker {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c6b4ff;
}
.prompt-detail-dialog h3 {
  margin: 0 0 9px;
  font-size: 1.22rem;
}
.prompt-detail-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.prompt-detail-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.prompt-media-caption code {
  color: #cfd6f5;
  font-family: var(--mono);
  font-size: 0.75rem;
}
.prompt-access-gate {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(124, 58, 237, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(124, 58, 237, 0.12) 0%, rgba(4, 7, 16, 0.9) 42%),
    rgba(7, 9, 16, 0.96);
  text-align: center;
}
.prompt-access-label {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c3b1ff;
}
.prompt-access-gate h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.prompt-access-gate > p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.86rem;
}
.prompt-access-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* =============================================
   ACCELERATE SECTION
   ============================================= */
.accelerate-section {
  padding: 76px 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.accelerate-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.accelerate-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.accelerate-section h2 { position: relative; z-index: 1; margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.accelerate-section > .container-sm > p { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; font-size: 0.95rem; line-height: 1.75; }

/* =============================================
   PRICING
   ============================================= */
.pricing-header { text-align: center; margin-bottom: 40px; }
.pricing-header h2 { margin-bottom: 12px; }
.pricing-header p { font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(60,10,120,0.2) 0%, var(--surface) 60%);
  animation: borderGlow 3s ease-in-out infinite;
  position: relative;
}
.pricing-featured-label {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
  color: #fff;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(124,58,237,0.4);
}
.plan-name {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.plan-price strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.plan-price span { font-size: 0.8rem; color: var(--text-3); }
.plan-desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.6; }
.plan-features { flex: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.plan-features li:last-child { border: none; }
.plan-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}

.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;
}

/* =============================================
   PRICING PAGE — dark "Service Pricing" layout
   ============================================= */
.pp-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #050a14;
}
.pp-page.about-page {
  background: #bfebd8;
}
.pp-page main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.pricing-dark-surface {
  position: relative;
  flex: 1 1 auto;
  background: #050a14;
  color: #f8fafc;
  overflow: hidden;
}


.svc-pricing-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.svc-streak {
  position: absolute;
  width: 120%;
  height: 55%;
  left: -10%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(56, 120, 200, 0.07) 38%,
    rgba(100, 160, 255, 0.05) 50%,
    transparent 72%
  );
}
.svc-streak--1 {
  top: -18%;
  transform: rotate(-10deg);
}
.svc-streak--2 {
  top: 28%;
  transform: rotate(6deg);
  opacity: 0.85;
}
.svc-streak--3 {
  bottom: -25%;
  transform: rotate(-5deg);
  opacity: 0.7;
}

.svc-pricing {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vw, 88px) 0 clamp(64px, 12vw, 112px);
}
.svc-pricing-title {
  font-family: var(--heading-font);
  text-align: center;
  font-size: clamp(1.85rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}
.svc-pricing-lede {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.72);
}
.svc-pricing-foot {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.55);
}
.svc-pricing-foot a {
  color: rgba(248, 250, 252, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.svc-pricing-foot a:hover {
  color: #ffffff;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 28px 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 10, 20, 0.35);
  backdrop-filter: blur(8px);
}
.svc-card--featured {
  min-height: 500px;
  padding: 32px 26px 28px;
  border: none;
  background: #004070;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.svc-card-name {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
}
.svc-card-price {
  margin: 0 0 22px;
  line-height: 1.1;
  color: #ffffff;
}
.svc-card-price-num {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 4vw + 1rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.svc-card-price-unit {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.88;
  margin-left: 4px;
}
.svc-card-price--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.svc-card-price--stack .svc-card-price-unit {
  margin-left: 0;
  line-height: 1.4;
}
.svc-card-price-num--lg {
  font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.35rem);
}
.svc-card-note {
  opacity: 0.85;
  font-weight: 500;
}
.svc-card-feat-head {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}
.svc-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}
.svc-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-card-list li:last-child {
  border-bottom: none;
}
.svc-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
  opacity: 0.95;
}
.svc-check svg {
  display: block;
}

.svc-card-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.svc-card-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}
.svc-card-btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.svc-card-btn--solid {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #004070;
}
.svc-card-btn--solid:hover {
  opacity: 0.94;
}

@media (max-width: 1180px) {
  .svc-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .svc-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .svc-card,
  .svc-card--featured {
    min-height: 0;
  }
}


/* =============================================
   ABOUT / CONTACT — mint grid + pink ribbons
   (About: story + cards; Contact: form layout)
   ============================================= */
.about-play {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  padding: clamp(72px, 12vw, 120px) 0 clamp(64px, 10vw, 96px);
  background-color: #bfebd8;
  background-image:
    linear-gradient(rgba(15, 60, 45, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 60, 45, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center top;
}
.about-play-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.about-play-ribbon {
  position: absolute;
  border-radius: 999px;
  filter: drop-shadow(12px 18px 0 rgba(0, 0, 0, 0.08));
  opacity: 0.92;
}
.about-play-ribbon--1 {
  width: min(140%, 900px);
  height: 120px;
  left: -25%;
  top: 8%;
  transform: rotate(-18deg);
  background: linear-gradient(180deg, #ff7eb3 0%, #ff4d8d 45%, #e91e8c 100%);
  box-shadow: inset 0 -18px 36px rgba(255, 255, 255, 0.25), inset 0 8px 24px rgba(255, 255, 255, 0.35);
}
.about-play-ribbon--2 {
  width: min(120%, 720px);
  height: 100px;
  right: -30%;
  bottom: 5%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, #ff9ec4 0%, #ff5ca8 50%, #e0117a 100%);
  box-shadow: inset 0 -14px 28px rgba(255, 255, 255, 0.2), inset 0 6px 20px rgba(255, 255, 255, 0.3);
}
.about-play-ribbon--3 {
  width: 55%;
  height: 72px;
  right: 5%;
  top: 38%;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, #ff85b3, #ff3d9a);
  opacity: 0.55;
}

.about-play-inner {
  position: relative;
  z-index: 1;
}

.about-play-form {
  margin: 0;
  width: 100%;
}

.about-play-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.about-play-col {
  min-width: 0;
}

.about-play-title {
  font-family: var(--heading-font);
  font-size: clamp(2.1rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #0f172a;
}
.about-play-lead {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1e293b;
  max-width: 42ch;
}

.about-story-body {
  margin: 0 0 28px;
}
.about-story-body p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
  max-width: 52ch;
}
.about-story-body p:last-child {
  margin-bottom: 0;
}
.about-story-body strong {
  color: #0f172a;
  font-weight: 700;
}

.about-cta-wrap {
  margin: 0;
  padding-top: 4px;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.about-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
}
.about-cta-btn:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 3px;
}

.about-facts-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-fact-card {
  padding: 20px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04);
}
.about-fact-card p.about-fact-kicker {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}
.about-fact-card p:not(.about-fact-kicker) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}
.about-fact-card a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-fact-card a:hover {
  color: #1e293b;
}

  font-size: clamp(1.75rem, 3.2vw + 0.45rem, 2.75rem);
  line-height: 1.06;
}

.about-stat-mint {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04);
}
.about-stat-mint-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.16), rgba(124, 58, 237, 0.07));
  color: #6d28d9;
}
.about-stat-mint-title {
  margin: 0 0 4px;
  font-family: var(--heading-font);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}
.about-stat-mint-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

.about-mission-mint {
  margin: 4px 0 0;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.11), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(109, 40, 217, 0.22);
}
.about-mission-mint-mark {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  font-size: 2.45rem;
  line-height: 1;
  color: #7c3aed;
  opacity: 0.42;
}
.about-mission-mint p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #1e293b;
  font-style: italic;
}
.about-mission-mint cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #6d28d9;
}

.about-beliefs-title {
  margin: 32px 0 18px;
  font-family: var(--heading-font);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.about-values-mint {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 4px;
}
.about-value-mint {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-mint-num {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 4px 8px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #6d28d9;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.22);
}
.about-value-mint strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
}
.about-value-mint p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
}

.about-play-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 8px;
}
.about-play-field {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-family: var(--font);
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 18px;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.about-play-field::placeholder {
  color: #94a3b8;
}
.about-play-field:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}
.about-play-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.about-play-row .about-play-stack .about-play-field {
  margin-bottom: 0;
}
.about-play-stack {
  margin-bottom: 0;
}

.about-play-message {
  flex: 1 1 auto;
  min-height: clamp(200px, 28vh, 320px);
  resize: vertical;
  margin-bottom: 18px;
}

.about-play-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  width: 100%;
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.about-play-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}
.about-play-submit svg {
  flex-shrink: 0;
}

.about-play-aside {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: min(420px, 55vh);
}

.contact-play-form .about-play-field:not(.about-play-message) {
  border-radius: 999px;
}
.contact-play-form .about-play-message {
  border-radius: 22px;
}
.contact-play-form .about-play-submit {
  border-radius: 18px;
}

@media (max-width: 900px) {
  .about-play-grid {
    grid-template-columns: 1fr;
  }
  .about-play-row {
    grid-template-columns: 1fr;
  }
  .about-play-ribbon--3 {
    display: none;
  }
}

/* --- Legal / help long-form on mint surface --- */
.about-play--doc {
  padding-bottom: clamp(88px, 14vw, 140px);
}
.about-doc-inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-doc-meta {
  margin: -6px 0 28px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
}
.about-doc-lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: #1e293b;
  max-width: 65ch;
}
.about-doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 32px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.03);
}
.about-doc-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.about-doc-nav a:hover {
  border-bottom-color: rgba(15, 23, 42, 0.35);
}
.about-doc-body h2 {
  margin: 2.4rem 0 12px;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f172a;
}
.about-doc-body h2:first-child {
  margin-top: 0;
}
.about-doc-body h3 {
  margin: 1.5rem 0 8px;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
.about-doc-body p {
  margin: 0 0 14px;
  font-size: 0.93rem;
  line-height: 1.72;
  color: #334155;
}
.about-doc-body ul,
.about-doc-body ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}
.about-doc-body li {
  margin-bottom: 8px;
  font-size: 0.93rem;
  line-height: 1.65;
  color: #334155;
}
.about-doc-body a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about-doc-body a:hover {
  color: #1e293b;
}
.about-doc-body strong {
  color: #0f172a;
}
.about-doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 0.86rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.about-doc-table th,
.about-doc-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: top;
}
.about-doc-table th {
  font-weight: 700;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.75);
}
.about-doc-table tr:last-child td {
  border-bottom: none;
}
.about-doc-table code {
  font-size: 0.82em;
  background: rgba(15, 23, 42, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}
.about-doc-note {
  margin: 20px 0 28px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
  line-height: 1.65;
  color: #475569;
}

.about-faq {
  margin-top: 8px;
}
.about-faq-group {
  margin-bottom: 32px;
}
.about-faq-group-title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}
.about-faq details {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.03);
}
.about-faq summary {
  padding: 14px 18px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}
.about-faq summary::-webkit-details-marker {
  display: none;
}
.about-faq details[open] summary {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.about-faq .about-faq-answer {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  line-height: 1.68;
  color: #475569;
}
.about-faq .about-faq-answer p {
  margin: 0 0 10px;
  color: inherit;
  font-size: inherit;
}
.about-faq .about-faq-answer p:last-child {
  margin-bottom: 0;
}
.about-faq-answer code {
  font-size: 0.88em;
  background: rgba(15, 23, 42, 0.07);
  padding: 2px 6px;
  border-radius: 6px;
}

/* =============================================
   QUALITY SECTION
   ============================================= */
.quality-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
}
.quality-header { text-align: center; margin-bottom: 40px; max-width: 740px; margin-left: auto; margin-right: auto; }
.quality-header h2 { margin-bottom: 16px; }
.quality-subtitle { font-size: 0.92rem; line-height: 1.75; color: var(--text-2); }

.quality-visual {
  margin: 0 auto 52px;
  max-width: min(920px, 100%);
  padding: 0;
}
.quality-visual-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  margin: 0 auto;
  object-fit: contain;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quality-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quality-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.quality-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--purple-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
}
.quality-card h3 { font-size: 0.98rem; letter-spacing: -0.01em; }
.quality-card > p { font-size: 0.82rem; line-height: 1.7; color: var(--text-2); }

.quality-example {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: auto;
}
.quality-example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.quality-example-name {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--purple-light);
  font-weight: 500;
}
.quality-example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.quality-meta-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
}
.quality-example-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-2);
}
.quality-example-desc code {
  font-family: var(--mono);
  font-size: 0.78em;
  color: var(--cyan);
  background: rgba(6,182,212,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

.quality-output-lines { display: flex; flex-direction: column; gap: 6px; }
.quality-output-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-2);
}
.quality-output-line::before {
  content: '▸';
  color: var(--purple-light);
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.quality-badges-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.stability-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.badge-stable  { background: rgba(63,185,80,0.12);  color: #3fb950; border: 1px solid rgba(63,185,80,0.25); }
.badge-reviewed{ background: rgba(124,58,237,0.12); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.25); }
.badge-draft   { background: rgba(240,136,62,0.10); color: var(--orange); border: 1px solid rgba(240,136,62,0.22); }

.quality-trust-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.quality-trust-stat { display: flex; flex-direction: column; }
.quality-trust-num {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.quality-trust-label { font-size: 0.72rem; color: var(--text-3); margin-top: 3px; }
.quality-trust-note { font-family: var(--mono); font-size: 0.68rem; color: var(--text-3); }

@media (max-width: 900px) {
  .quality-cards { grid-template-columns: 1fr; }
  .quality-visual { margin-bottom: 40px; }
  .quality-visual-img { max-height: min(360px, 48vh); }
}

@media (max-width: 640px) {
  .quality-section { padding: 72px 0; }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  animation: orbFloat1 12s ease-in-out infinite;
}
.cta-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 65%);
  filter: blur(60px);
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  animation: orbFloat2 16s ease-in-out infinite;
}
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section > .cta-inner > p {
  margin-bottom: 28px;
  font-size: 0.95rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-family: var(--mono); font-size: 0.72rem; color: var(--text-3); }

/* =============================================
   FOOTER — blueprint grid (cream + hairline borders)
   ============================================= */
.footer {
  --footer-line: #d1d1d1;
  --footer-bg: #f9f9f7;
  --footer-muted: #555555;
  --footer-heading: #0a0a0f;
  background: var(--footer-bg);
  color: var(--footer-heading);
  padding: clamp(40px, 5vw, 56px) 0 clamp(32px, 4vw, 44px);
  border-top: 1px solid rgba(209, 209, 209, 0.85);
}

.footer-board {
  border: 1px solid var(--footer-line);
  background: var(--footer-bg);
}

.footer-grid-main {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--footer-line);
}

.footer-cell {
  padding: clamp(20px, 3vw, 30px) clamp(16px, 2.5vw, 22px);
}
.footer-grid-main > .footer-cell:not(:last-child) {
  border-right: 1px solid var(--footer-line);
}

.footer-cell--brand .nav-brand {
  margin-bottom: 14px;
  color: var(--footer-heading);
  text-decoration: none;
  width: fit-content;
}
.footer-desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--footer-muted);
  max-width: 280px;
  margin: 0;
}

.footer-contact {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-block dt {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777;
  margin-bottom: 4px;
}
.footer-contact-block dd {
  margin: 0;
}
.footer-contact-block a {
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.footer-contact-block a:hover {
  color: #0a0a0f;
  text-decoration: underline;
}

.footer-micro {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(209, 209, 209, 0.65);
}
.footer-micro-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 6px;
}
.footer-micro-text {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #777;
  margin: 0;
  max-width: 260px;
}

.footer-col-head {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--footer-heading);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links a {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--footer-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--footer-heading);
}

/* Promoted brands (dashboard partners, landing footer) */
.footer-row--sponsors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: clamp(16px, 2.5vw, 22px) clamp(16px, 2.5vw, 22px);
  border-bottom: 1px solid var(--footer-line);
  background: #fff;
}
.footer-sponsors-label {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
.footer-sponsors-logos {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  min-width: 0;
}
.footer-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-heading);
}
.footer-sponsor-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid var(--footer-line);
  background: #fff;
  flex-shrink: 0;
}
.footer-sponsor-name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-sponsors-cta {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--footer-heading);
  text-decoration: none;
  white-space: nowrap;
}
.footer-sponsors-cta:hover {
  text-decoration: underline;
  color: #111;
}
.footer-sponsors-cta:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Social row (trust copy + badges removed site-wide) */
.footer-row--trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  padding: clamp(18px, 3vw, 26px) clamp(16px, 2.5vw, 22px);
  border-bottom: 1px solid var(--footer-line);
}

.footer-social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--footer-line);
  border-radius: 999px;
  background: #fff;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.footer-social-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.footer-social-btn:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Copyright + watermark */
.footer-row--copyright {
  position: relative;
  padding: clamp(18px, 3vw, 24px) clamp(16px, 2.5vw, 22px);
  min-height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.footer-copy {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}
.footer-copy a {
  color: #555;
}
.footer-copy a:hover {
  color: #111;
}
.footer-watermark {
  position: absolute;
  right: min(6%, 48px);
  bottom: -18%;
  font-family: var(--heading-font);
  font-size: clamp(3.25rem, 14vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .footer-grid-main {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .footer-grid-main > .footer-cell:not(:last-child) {
    border-right: none;
  }
  .footer-grid-main > .footer-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--footer-line);
  }
  .footer-row--sponsors {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-sponsors-logos {
    justify-content: center;
  }
  .footer-row--trust {
    flex-direction: column;
    align-items: center;
  }
  .footer-social-pill {
    width: 100%;
    justify-content: center;
  }
  .footer-watermark {
    right: 50%;
    transform: translateX(50%);
    bottom: -28%;
  }
}

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  position: relative;
  background: var(--bg);
}
.auth-bg-glow {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.auth-bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.auth-wrap { position: relative; z-index: 1; width: 100%; max-width: 400px; display: flex; flex-direction: column; align-items: center; }
.auth-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.auth-logo .brand-logo {
  width: 34px;
  height: 34px;
}
.auth-card {
  width: 100%;
  background: rgba(10, 10, 15, 0.88);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.auth-card-header { margin-bottom: 26px; }
.auth-card-header h1 { font-size: 1.45rem; letter-spacing: -0.025em; margin-bottom: 5px; }
.auth-card-header p { font-size: 0.875rem; }
.oauth-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.auth-footer { text-align: center; margin-top: 22px; font-size: 0.84rem; color: var(--text-2); }
.auth-footer a { color: var(--purple-light); }
.auth-footer a:hover { text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  h1 { font-size: 3.35rem; }
  h2 { font-size: 1.85rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-tab-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 38rem;
  }
  .feat-tab-panel .code-block {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
@media (max-width: 960px) {
  .hero::before {
    opacity: 0.88;
  }
  .hero::after {
    opacity: 0.11;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-bottom: 36px;
  }
  .hero-content {
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }
  .hero h1.hero-headline {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-headline-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-models {
    justify-content: center;
  }
  .hero-signup {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-chips {
    justify-content: center;
  }
  .hero-art-img {
    max-width: min(440px, 100%);
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 30px; }
  .why-us-section { padding: 64px 0; }
  .why-us-code { max-width: 100%; }
  .why-us-copy p { max-width: none; }
  .why-us-compare {
    overflow: hidden;
  }
  .why-us-compare-head {
    display: none;
  }
  .why-us-compare-head,
  .why-us-compare-row {
    min-width: 0;
    padding: 14px;
  }
  .why-us-compare-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .why-us-compare-row span {
    display: block;
  }
  .why-us-compare-row span:first-child {
    font-size: 0.92rem;
    padding-bottom: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .why-us-compare-row span:not(:first-child) {
    position: relative;
    padding-left: 124px;
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .why-us-compare-row span:nth-child(2)::before,
  .why-us-compare-row span:nth-child(3)::before,
  .why-us-compare-row span:nth-child(4)::before,
  .why-us-compare-row span:nth-child(5)::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 114px;
    font-family: var(--mono);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-3);
  }
  .why-us-compare-row span:nth-child(2)::before { content: 'Jonarix'; }
  .why-us-compare-row span:nth-child(3)::before { content: 'PromptBase'; }
  .why-us-compare-row span:nth-child(4)::before { content: 'FlowGPT'; }
  .why-us-compare-row span:nth-child(5)::before { content: 'LangChain Hub'; }
  .why-us-code .cb-body {
    padding: 14px 14px;
  }
  .split-inner { grid-template-columns: 1fr; }
  .split-inner.reverse { direction: ltr; }
  .creator-rewards-inner { grid-template-columns: 1fr; gap: 32px; }
  .creator-rewards-section { padding: 62px 0; }
  .prompt-showcase-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .prompt-showcase-sidebar {
    position: static;
    top: auto;
    gap: 10px;
  }
  .prompt-category-tabs {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 6px;
  }
  .prompt-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .prompt-login-cta {
    display: none;
  }
  .prompt-category-btn {
    white-space: nowrap;
    text-align: center;
  }
  .prompt-showcase-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .prompt-carousel-arrow {
    display: none;
  }
  .prompt-media-card {
    flex-basis: 100%;
  }
}
@media (max-width: 640px) {
  .why-us-compare-row {
    padding: 12px;
    gap: 7px;
  }
  .why-us-compare-row span:first-child {
    font-size: 0.86rem;
  }
  .why-us-compare-row span:not(:first-child) {
    padding-left: 102px;
    font-size: 0.76rem;
  }
  .why-us-compare-row span:nth-child(2)::before,
  .why-us-compare-row span:nth-child(3)::before,
  .why-us-compare-row span:nth-child(4)::before,
  .why-us-compare-row span:nth-child(5)::before {
    width: 94px;
    font-size: 0.6rem;
  }
  .why-us-code .cb-header {
    padding: 10px 12px;
  }
  .why-us-code .cb-title {
    font-size: 0.7rem;
  }
  .why-us-code .cb-body {
    padding: 12px;
  }
  .hero::before {
    opacity: 0.82;
  }
  .hero::after {
    opacity: 0.09;
  }
  h1 { font-size: 2.4rem; line-height: 1.08; }
  h2 { font-size: 1.55rem; }
  .hero-headline-line { white-space: normal; }
  .section { padding: 52px 0; }
  .container { padding: 0 20px; }
  .container-sm { padding: 0 20px; }
  .split-section { padding: 60px 0; }
  .hero { padding: 16px 0 32px; min-height: auto; }
  .hero-signup { flex-direction: column; }
  .hero-email { width: 100%; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: 0.68rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feat-tabs-nav-wrap {
    margin-bottom: 16px;
    justify-content: center;
    overflow: visible;
    padding: 0;
  }
  .feat-tabs-nav-glow { display: none; }
  .feat-tabs-nav.feat-tabs-nav--glass {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .feat-tabs-nav--glass .feat-tab-pill {
    flex: 0 0 auto;
    gap: 5px;
    padding: 6px 10px;
    font-size: 0.74rem;
    border-radius: 7px;
  }
  .feat-tabs-nav--glass .feat-tab-pill svg {
    width: 12px;
    height: 12px;
  }
  .feat-tab-desc--glass {
    margin-bottom: 22px;
    font-size: 0.8rem;
    padding: 0 8px;
  }
  .feat-tab-copy { padding: 28px 22px 32px; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 0; }
  .auth-card { padding: 28px 20px; }
  .prompt-showcase-section { padding: 68px 0; }
  .prompt-showcase-grid { gap: 14px; }
  .prompt-showcase-head { margin-bottom: 24px; }
  .prompt-showcase-head p { font-size: 0.88rem; }
  .prompt-category-tabs {
    margin-bottom: 6px;
    gap: 6px;
  }
  .prompt-category-btn {
    font-size: 0.62rem;
    padding: 6px 9px;
    border-radius: 7px;
  }
  .prompt-media-head { padding: 10px 12px; }
  .prompt-media-caption { padding: 10px 12px 12px; }
  .prompt-media-card { flex-basis: 100%; }
  .prompt-access-gate {
    margin-top: 16px;
    padding: 16px;
  }
  .prompt-access-gate h3 {
    font-size: 1.02rem;
  }
  .prompt-access-gate > p {
    font-size: 0.8rem;
  }
  .prompt-access-actions {
    flex-direction: column;
  }
  .prompt-access-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .prompt-detail-dialog {
    padding: 16px;
  }
  .prompt-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .prompt-media-card { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

.prompt-media-frame--logo-loop {
  background: #0a0b10;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.logo-loop-preview--catalog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-loop-preview--catalog > .logoloop {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  align-self: center;
}

.logoloop {
  position: relative;

  --logoloop-gap: 32px;
  --logoloop-logoHeight: 28px;
  --logoloop-fadeColorAuto: #ffffff;
}

.logoloop--vertical {
  height: 100%;
  display: inline-block;
}

.logoloop--scale-hover {
  padding-top: calc(var(--logoloop-logoHeight) * 0.1);
  padding-bottom: calc(var(--logoloop-logoHeight) * 0.1);
}

@media (prefers-color-scheme: dark) {
  .logoloop {
    --logoloop-fadeColorAuto: #0b0b0b;
  }
}

.logoloop__track {
  display: flex;
  width: max-content;
  will-change: transform;
  user-select: none;
  position: relative;
  z-index: 0;
}

.logoloop--vertical .logoloop__track {
  flex-direction: column;
  height: max-content;
  width: 100%;
}

.logoloop__list {
  display: flex;
  align-items: center;
}

.logoloop--vertical .logoloop__list {
  flex-direction: column;
}

.logoloop__item {
  flex: 0 0 auto;
  margin-right: var(--logoloop-gap);
  font-size: var(--logoloop-logoHeight);
  line-height: 1;
}

.logoloop--vertical .logoloop__item {
  margin-right: 0;
  margin-bottom: var(--logoloop-gap);
}

.logoloop__item:last-child {
  margin-right: var(--logoloop-gap);
}

.logoloop--vertical .logoloop__item:last-child {
  margin-right: 0;
  margin-bottom: var(--logoloop-gap);
}

.logoloop__node {
  display: inline-flex;
  align-items: center;
}

.logoloop__item img {
  height: var(--logoloop-logoHeight);
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  -webkit-user-drag: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logoloop--scale-hover .logoloop__item {
  overflow: visible;
}

.logoloop--scale-hover .logoloop__item:hover img,
.logoloop--scale-hover .logoloop__item:hover .logoloop__node {
  transform: scale(1.2);
  transform-origin: center center;
}

.logoloop--scale-hover .logoloop__node {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logoloop__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.logoloop__link:hover {
  opacity: 0.8;
}

.logoloop__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.logoloop--fade::before,
.logoloop--fade::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 8%, 120px);
  pointer-events: none;
  z-index: 10;
}

.logoloop--fade::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.logoloop--fade::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.logoloop--vertical.logoloop--fade::before,
.logoloop--vertical.logoloop--fade::after {
  left: 0;
  right: 0;
  width: 100%;
  height: clamp(24px, 8%, 120px);
}

.logoloop--vertical.logoloop--fade::before {
  top: 0;
  bottom: auto;
  background: linear-gradient(
    to bottom,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.logoloop--vertical.logoloop--fade::after {
  bottom: 0;
  top: auto;
  background: linear-gradient(
    to top,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .logoloop__track {
    transform: translate3d(0, 0, 0) !important;
  }

  .logoloop__item img,
  .logoloop__node {
    transition: none !important;
  }
}

/* ── TargetCursor (React Bits–style) + catalog preview ───────────────── */
.target-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.target-cursor-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.target-cursor-corner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  will-change: transform;
}

.corner-tl {
  transform: translate(-150%, -150%);
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  transform: translate(50%, -150%);
  border-left: none;
  border-bottom: none;
}

.corner-br {
  transform: translate(50%, 50%);
  border-left: none;
  border-top: none;
}

.corner-bl {
  transform: translate(-150%, 50%);
  border-right: none;
  border-top: none;
}

.prompt-media-frame--target-cursor {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(100% 100% at 50% 40%, rgba(88, 60, 160, 0.35) 0%, #0a0614 78%);
}

.target-cursor-preview--catalog {
  position: absolute;
  inset: 0;
  min-height: 200px;
}

.target-cursor-preview--catalog .target-cursor-wrapper {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 4;
}

.target-cursor-catalog-ui {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 16px 14px 20px;
  pointer-events: auto;
}

.target-cursor-catalog-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(196, 181, 253, 0.95);
  text-align: center;
}

.target-cursor-catalog-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;
}

.target-cursor-catalog-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.target-cursor-preview--catalog .cursor-target {
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: rgba(224, 213, 255, 0.95);
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  cursor: default;
}

.target-cursor-preview--catalog .cursor-target.tc-wide {
  width: 100%;
  max-width: 220px;
}

/* ── Magic Rings (Three.js shader) + catalog preview ─────────────────── */
.magic-rings-container {
  width: 100%;
  height: 100%;
}

.prompt-media-frame--magic-rings {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: radial-gradient(100% 100% at 50% 50%, rgba(30, 22, 48, 0.95) 0%, #050508 88%);
}

.magic-rings-preview--catalog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.magic-rings-preview--catalog canvas {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.magic-rings-preview__reset {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 8, 18, 0.72);
  color: rgba(226, 220, 255, 0.9);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.magic-rings-preview__reset:hover {
  background: rgba(30, 24, 50, 0.9);
  border-color: rgba(168, 85, 247, 0.45);
}

.magic-rings-preview__reset:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.7);
  outline-offset: 2px;
}

/* ── Launch promo — nav bar & hero card ──────────────────────── */
.nav-meta--promo {
  background: linear-gradient(90deg, #0a1a0a 0%, #0d0d20 50%, #0a1a0a 100%) !important;
  border-top-color: rgba(63,185,80,0.35) !important;
  border-bottom-color: rgba(63,185,80,0.35) !important;
}
.nav-meta--promo .nav-meta-inner {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-meta-promo-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.5875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #a78bfa 0%, #3fb950 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-meta-item--promo {
  color: rgba(220, 255, 220, 0.85) !important;
  font-size: 0.69rem !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
}
.nav-meta-promo-cta {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #3fb950;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  border: 1px solid rgba(63,185,80,0.4);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}
.nav-meta-promo-cta:hover { background: rgba(63,185,80,0.12); color: #6ee77a; }

/* Hero promo card */
.hero-promo-card {
  margin-top: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.38);
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(63,185,80,0.06) 100%);
  overflow: hidden;
  position: relative;
}
.hero-promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 0% 50%, rgba(124,58,237,0.12), transparent 70%);
  pointer-events: none;
}
.hero-promo-card-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}
.hero-promo-left { flex: 1; min-width: 180px; }
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 0.4rem;
}
.hero-promo-headline {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.2rem;
  letter-spacing: -0.01em;
}
.hero-promo-sub {
  font-size: 0.78rem;
  color: rgba(220,220,255,0.55);
  margin: 0;
  line-height: 1.45;
}
.hero-promo-cta {
  white-space: nowrap;
  font-size: 0.8125rem !important;
  padding: 0.55rem 1.1rem !important;
  flex-shrink: 0;
}

