/* src/styles/base/reset.css */
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul[role="list"], ol[role="list"], ul.sidebar-list, ul.empty-bullets {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  line-height: 1.55;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

input, textarea, select {
  outline: none;
  background: none;
  border: none;
}

/* src/styles/base/tokens.css */
:root {
  --bg-base: #0a0b10;
  --bg-raised: #11131a;
  --bg-elev: #161826;
  --bg-glass: #1416208c;
  --bg-glass-strong: #141620c7;
  --border-subtle: #ffffff14;
  --border-strong: #ffffff24;
  --text-primary: #f5f6fa;
  --text-secondary: #c9ccdb;
  --text-muted: #9aa0b4;
  --text-faint: #6b7188;
  --accent: #7c5cff;
  --accent-2: #46d9ff;
  --accent-grad: linear-gradient(135deg, #7c5cff 0%, #46d9ff 100%);
  --accent-glow: 0 0 32px #7c5cff73;
  --brand-blue: #3b82f6;
  --brand-violet: #8b5cf6;
  --brand-magenta: #d946ef;
  --brand-grad: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #d946ef 100%);
  --brand-grad-soft: linear-gradient(135deg, #3b82f629 0%, #8b5cf629 50%, #d946ef29 100%);
  --brand-grad-faint: linear-gradient(135deg, #3b82f60f 0%, #8b5cf60f 50%, #d946ef0f 100%);
  --brand-glow: 0 0 40px #8b5cf659;
  --brand-glow-strong: 0 0 72px #8b5cf68c;
  --bg-deepest: #0a0a0f;
  --bg-deep: #111118;
  --bg-card: #16161f;
  --danger: #ff5e7a;
  --danger-soft: #ff5e7a24;
  --success: #3ddc97;
  --success-soft: #3ddc9724;
  --warning: #ffba6e;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px -8px #0006;
  --shadow-md: 0 8px 24px -12px #00000080;
  --shadow-glass: 0 10px 40px -10px #00000080, inset 0 1px 0 #ffffff0f;
  --shadow-elev: 0 24px 60px -20px #000000b3, inset 0 1px 0 #ffffff14;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --ease-snappy: cubic-bezier(.2, .7, .2, 1);
  --ease-out-back: cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast: .14s;
  --dur-med: .24s;
  --dur-slow: .32s;
  --focus-ring: 0 0 0 3px #7c5cff59;
}

/* src/styles/base/typography.css */
html {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-base);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
  letter-spacing: -.005em;
}

h1 {
  letter-spacing: -.025em;
  font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  letter-spacing: -.02em;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.01em;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  color: var(--text-secondary);
}

::selection {
  color: var(--text-primary);
  background: #7c5cff66;
}

/* src/styles/base/animations.css */
@keyframes aurora {
  0% {
    transform: translate3d(-8%, -4%, 0)rotate(0)scale(1);
  }

  50% {
    transform: translate3d(8%, 4%, 0)rotate(180deg)scale(1.08);
  }

  100% {
    transform: translate3d(-8%, -4%, 0)rotate(360deg)scale(1);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 #7c5cff8c;
  }

  50% {
    box-shadow: 0 0 0 8px #7c5cff00;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-up-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(.6);
  }

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

@keyframes shake-x {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(2px);
  }
}

@keyframes glow-flash {
  0% {
    box-shadow: 0 0 #3ddc9700;
  }

  40% {
    box-shadow: 0 0 12px 1px #3ddc978c;
  }

  100% {
    box-shadow: 0 0 #3ddc9700;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* src/styles/components/aurora.css */
.aurora-bg {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, #3b82f624 0%, #0a0b1000 60%), radial-gradient(ellipse 70% 50% at 100% 30%, #d946ef1a 0%, #0a0b1000 60%), radial-gradient(ellipse 70% 60% at 50% 100%, #8b5cf61a 0%, #0a0b1000 60%), var(--bg-base);
  inset: 0;
}

.aurora-bg:before, .aurora-bg:after {
  content: "";
  position: absolute;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: screen;
  will-change: transform;
  border-radius: 50%;
  width: 70vmax;
  height: 70vmax;
}

.aurora-bg:before {
  animation: aurora 22s var(--ease-soft) infinite;
  background: radial-gradient(closest-side, #3b82f652, #8b5cf62e 55%, #0000);
  top: -20%;
  left: -10%;
}

.aurora-bg:after {
  animation: aurora 28s var(--ease-soft) infinite reverse;
  background: radial-gradient(closest-side, #d946ef47, #8b5cf629 55%, #0000);
  bottom: -25%;
  right: -15%;
}

/* src/styles/components/glass.css */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glass);
}

/* src/styles/components/button.css */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items:  center;
  gap: var(--space-2);
  border-radius: var(--radius-md);
  letter-spacing: -.005em;
  cursor: pointer;
  user-select: none;
  transition: transform .18s var(--ease-snappy), box-shadow .22s var(--ease-snappy), background .18s, border-color .18s, color .18s, opacity .18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  padding: 10px 18px;
  font-size: .95rem;
  font-weight: 500;
}

.btn:active:not(:disabled) {
  transform: translateY(0)scale(.98);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .55;
  filter: grayscale(25%);
  box-shadow: none !important;
  transform: none !important;
}

.btn-primary {
  color: #fff;
  background: var(--brand-grad);
  transition: transform .22s var(--ease-snappy), box-shadow .26s var(--ease-snappy), background-position .6s ease, opacity .18s;
  background-position: 0%;
  background-size: 200% 200%;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 24px -8px #8b5cf68c, inset 0 1px #ffffff40;
}

.btn-primary:hover:not(:disabled) {
  background-position: 100%;
  transform: translateY(-1px);
  box-shadow: 0 16px 48px -10px #8b5cf6b3, 0 0 36px #d946ef59, inset 0 1px #ffffff59;
}

.btn-ghost {
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  background: #ffffff0a;
}

.btn-ghost:hover:not(:disabled) {
  border-color: var(--border-strong);
  background: #ffffff14;
  transform: translateY(-1px);
}

.btn-sm {
  border-radius: 10px;
  padding: 7px 14px;
  font-size: .875rem;
}

.btn-lg {
  border-radius: 14px;
  padding: 14px 24px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-glyph {
  opacity: .9;
  margin-right: 2px;
  font-size: 1.1em;
  line-height: 1;
}

.oauth-btn {
  display: flex;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: transform .18s var(--ease-snappy), box-shadow .22s, background .18s, border-color .18s;
  background: #ffffff0a;
  justify-content: center;
  align-items:  center;
  gap: 12px;
  padding: 12px 18px;
  font-size: .95rem;
  font-weight: 500;
}

.oauth-btn:hover {
  border-color: var(--border-strong);
  background: #ffffff12;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -12px #00000073;
}

.oauth-btn:active {
  transform: translateY(0)scale(.98);
}

.oauth-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.oauth-icon {
  display: inline-flex;
  transition: transform var(--dur-med) var(--ease-out-back);
  justify-content: center;
  align-items:  center;
  width: 20px;
  height: 20px;
}

.oauth-btn:hover .oauth-icon {
  transform: scale(1.12)rotate(-4deg);
}

.oauth-github .oauth-icon {
  color: var(--text-primary);
}

/* src/styles/components/input.css */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  display: flex;
  color: var(--text-muted);
  letter-spacing: .01em;
  justify-content: space-between;
  align-items: baseline;
  font-size: .8125rem;
  font-weight: 500;
}

.field-link {
  color: var(--text-faint);
  transition: color .16s;
  font-size: .8125rem;
}

.field-link:hover {
  color: var(--accent-2);
}

.input {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  background: #ffffff08;
  width: 100%;
  padding: 12px 14px;
  transition: border-color .16s, background .16s, box-shadow .2s;
  font-size: .95rem;
}

.input::placeholder {
  color: var(--text-faint);
}

.input:hover {
  border-color: var(--border-strong);
}

.input:focus {
  border-color: var(--accent);
  background: #7c5cff0f;
  box-shadow: 0 0 0 4px #7c5cff2e;
}

.input:focus-visible {
  border-color: var(--accent);
  background: #7c5cff0f;
  box-shadow: 0 0 0 4px #7c5cff2e;
}

.form-error {
  border-radius: var(--radius-md);
  background: var(--danger-soft);
  color: #ffd7df;
  animation: fade-up var(--dur-med) var(--ease-soft);
  border: 1px solid #ff5e7a4d;
  padding: 10px 12px;
  font-size: .875rem;
}

.form-notice {
  border-radius: var(--radius-md);
  color: #c4f1ff;
  margin-bottom: var(--space-3);
  background: #46d9ff14;
  border: 1px solid #46d9ff38;
  padding: 10px 12px;
  font-size: .875rem;
}

.field-error {
  color: var(--danger);
  animation: fade-up var(--dur-fast) var(--ease-soft);
  font-size: .78rem;
  line-height: 1.4;
}

.field-hint {
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.4;
}

.field-hint code {
  color: var(--text-secondary);
  background: #ffffff0f;
  border-radius: 5px;
  padding: 1px 5px;
  font-size: .92em;
}

.field-hint-faint {
  color: var(--text-faint);
}

.input[aria-invalid="true"] {
  border-color: #ff5e7a8c;
}

.pw-meter {
  display: flex;
  align-items:  center;
  gap: var(--space-3);
  margin-top: 2px;
}

.pw-meter-bars {
  display: flex;
  flex: 1;
  gap: 4px;
}

.pw-meter-bar {
  border-radius: var(--radius-pill);
  transition: background var(--dur-med) var(--ease-snappy);
  background: #ffffff17;
  flex: 1;
  height: 4px;
}

.pw-meter-bar:nth-child(2) {
  transition-delay: 60ms;
}

.pw-meter-bar:nth-child(3) {
  transition-delay: .12s;
}

.pw-meter-bar:nth-child(4) {
  transition-delay: .18s;
}

.pw-meter-bar--danger {
  background: var(--danger);
}

.pw-meter-bar--warning {
  background: var(--warning);
}

.pw-meter-bar--success {
  background: var(--success);
}

.pw-meter--strong .pw-meter-bar--success {
  animation: glow-flash .7s var(--ease-soft);
}

.pw-meter-label {
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color var(--dur-med) var(--ease-soft);
  font-size: .72rem;
  font-weight: 600;
}

.pw-meter-label--danger {
  color: var(--danger);
}

.pw-meter-label--warning {
  color: var(--warning);
}

.pw-meter-label--success {
  color: var(--success);
}

/* src/styles/components/modal.css */
.modal-overlay {
  position: fixed;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  z-index: 100;
  padding: var(--space-4);
  animation: fade-in var(--dur-med) var(--ease-soft);
  background: #08090ea6;
  justify-content: center;
  align-items:  center;
  inset: 0;
}

@keyframes modal-in {
  0% {
    opacity: 0;
    transform: translateY(10px)scale(.985);
  }

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

.modal {
  position: relative;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  animation: modal-in var(--dur-slow) var(--ease-soft);
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 460px;
  padding: 28px;
  box-shadow: 0 32px 80px -24px #000000bf, 0 0 80px #8b5cf62e, inset 0 1px #ffffff0f;
}

.modal:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: var(--brand-grad-soft);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .85;
  padding: 1px;
  inset: 0;
}

.modal-head {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 6px;
}

.modal-title {
  letter-spacing: -.015em;
  font-size: 1.375rem;
  font-weight: 600;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: .875rem;
}

.modal-body {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 18px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 4px;
}

/* src/styles/components/spinner.css */
.spinner {
  display: inline-block;
  border: 2px solid #ffffff2e;
  border-top-color: var(--accent, #7c5cff);
  animation: spin .8s linear infinite;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.spinner-lg {
  border-width: 3px;
  width: 44px;
  height: 44px;
}

.spinner-sm {
  border-width: 2px;
  border-color: currentColor #ffffff47 #ffffff47;
  width: 14px;
  height: 14px;
}

.loading-dialog {
  text-align: center;
  align-items:  center;
  gap: 18px;
  max-width: 380px;
  padding: 36px 32px;
}

.loading-dialog .modal-title {
  margin-top: 4px;
}

.loading-dialog .modal-subtitle {
  max-width: 28ch;
}

/* src/styles/indexes/Landing.css */
.page-landing {
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

.lp-bg {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 18% -5%, #3b82f629 0%, #0a0b1000 55%), radial-gradient(ellipse 80% 55% at 100% 12%, #d946ef1f 0%, #0a0b1000 55%), radial-gradient(ellipse 80% 60% at 50% 110%, #8b5cf61f 0%, #0a0b1000 55%), var(--bg-base);
  inset: 0;
}

.lp-main {
  display: block;
  position: relative;
}

.lp-section {
  position: relative;
  padding: var(--space-9) var(--space-5);
}

.lp-section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.lp-section-head {
  margin: 0 0 var(--space-8);
  max-width: 760px;
}

.lp-section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lp-eyebrow {
  display: inline-block;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-violet);
  margin-bottom: var(--space-4);
  font-size: .78rem;
  font-weight: 600;
}

.lp-section-head-center .lp-eyebrow {
  background: var(--brand-grad);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.lp-h2 {
  letter-spacing: -.025em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-wrap: balance;
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
}

.lp-h3 {
  letter-spacing: -.015em;
  color: var(--text-primary);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-weight: 650;
  line-height: 1.25;
}

.lp-h4 {
  letter-spacing: -.01em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-size: 1rem;
  font-weight: 650;
}

.lp-lede {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 70ch;
  font-size: clamp(1rem, .96rem + .3vw, 1.15rem);
  line-height: 1.7;
}

.lp-lede-center {
  margin-left: auto;
  margin-right: auto;
}

.lp-lede-strong {
  color: var(--text-primary);
  font-weight: 550;
}

.lp-lede-tight {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.lp-muted {
  color: var(--text-muted);
  margin-top: var(--space-4);
  font-size: .95rem;
}

.lp-grad {
  background: var(--brand-grad);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.lp-grad-2 {
  background: linear-gradient(135deg, #46d9ff 0%, #8b5cf6 55%, #d946ef 100%);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.lp-dot-sep {
  color: var(--text-faint);
  margin: 0 var(--space-1);
}

.lp-bullet {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: var(--space-4) 0;
  flex-direction: column;
}

.lp-bullet li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  line-height: 1.6;
}

.lp-bullet li:before {
  content: "";
  position: absolute;
  background: var(--brand-grad);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: .55em;
  left: 0;
  box-shadow: 0 0 12px #8b5cf699;
}

.lp-bullet strong {
  color: var(--text-primary);
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items:  center;
  gap: var(--space-3);
  letter-spacing: -.02em;
  color: var(--text-primary);
  transition: opacity .18s var(--ease-snappy);
  font-weight: 700;
}

.brand:hover {
  opacity: .85;
}

.brand-mark {
  display: inline-flex;
  border-radius: var(--radius-sm);
  background: var(--brand-grad-soft);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  box-shadow: inset 0 1px #ffffff14;
}

.brand-mark img {
  object-fit: contain;
  width: 28px;
  height: 28px;
}

.brand-word {
  font-size: 1.05rem;
}

.btn-brand {
  color: #fff;
  background: var(--brand-grad);
  transition: transform .22s var(--ease-snappy), box-shadow .26s var(--ease-snappy), background-position .6s ease, opacity .18s;
  background-position: 0%;
  background-size: 200% 200%;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 24px -8px #8b5cf68c, inset 0 1px #ffffff40;
}

.btn-brand:hover:not(:disabled) {
  background-position: 100%;
  transform: translateY(-1px);
  box-shadow: 0 16px 48px -10px #8b5cf6b3, 0 0 36px #d946ef59, inset 0 1px #ffffff59;
}

[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
  will-change: opacity, transform;
  transform: translateY(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transition: none;
    transform: none;
  }
}

.lp-topbar {
  position: sticky;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: var(--space-5);
  padding: var(--space-4) var(--space-6);
  transition: background .28s var(--ease-soft), border-color .28s var(--ease-soft), box-shadow .28s var(--ease-soft), backdrop-filter .28s var(--ease-soft);
  border-bottom: 1px solid #0000;
  max-width: 1280px;
  margin: 0 auto;
  top: 0;
}

.lp-topbar.is-scrolled {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.lp-nav {
  display: flex;
  align-items:  center;
  gap: var(--space-2);
}

.lp-nav-link {
  padding: var(--space-2) var(--space-3);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color .16s var(--ease-snappy), background .16s var(--ease-snappy);
  font-size: .92rem;
  font-weight: 500;
}

.lp-nav-link:hover {
  color: var(--text-primary);
  background: #ffffff0d;
}

.lp-nav-signin {
  padding: var(--space-2) var(--space-3);
  color: var(--text-secondary);
  margin-left: var(--space-2);
  margin-right: var(--space-1);
  transition: color .16s var(--ease-snappy);
  font-size: .92rem;
  font-weight: 550;
}

.lp-nav-signin:hover {
  color: var(--text-primary);
}

.lp-hero {
  position: relative;
  padding: clamp(var(--space-8), 6vw, 120px) var(--space-5) var(--space-9);
  overflow: hidden;
}

.lp-hero-aurora {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, calc(var(--sy, 0) * .12px), 0);
  will-change: transform;
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-aurora {
    transform: none;
  }
}

.orb {
  position: absolute;
  filter: blur(90px);
  opacity: .5;
  mix-blend-mode: screen;
  will-change: transform;
  border-radius: 50%;
}

.orb-1 {
  animation: aurora 26s var(--ease-soft) infinite;
  background: radial-gradient(closest-side, #3b82f666, #0000);
  width: 42vmax;
  height: 42vmax;
  top: -10%;
  left: 4%;
}

.orb-2 {
  animation: aurora 32s var(--ease-soft) infinite reverse;
  background: radial-gradient(closest-side, #d946ef52, #0000);
  width: 38vmax;
  height: 38vmax;
  top: -16%;
  right: -6%;
}

.orb-3 {
  animation: aurora 30s var(--ease-soft) infinite;
  background: radial-gradient(closest-side, #8b5cf64d, #0000);
  width: 46vmax;
  height: 46vmax;
  bottom: -24%;
  left: 30%;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items:  center;
  max-width: 980px;
  margin: 0 auto;
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items:  center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  font-size: .85rem;
  font-weight: 500;
}

.lp-hero-eyebrow .dot {
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse-glow 2.4s ease-in-out infinite;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.lp-hero-title {
  letter-spacing: -.03em;
  margin: 0 auto var(--space-6);
  text-wrap: balance;
  max-width: 16ch;
  font-size: clamp(2.4rem, 1.5rem + 4.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
}

@keyframes word-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(7px);
  }

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

.lp-word {
  display: inline-block;
  opacity: 0;
  animation: word-in .72s var(--ease-soft) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .lp-word {
    opacity: 1;
    filter: none;
    animation: none;
  }
}

.lp-hero-sub {
  margin: 0 auto var(--space-7);
  display: flex;
  gap: var(--space-4);
  flex-direction: column;
  max-width: 680px;
}

.lp-hero-sub p {
  color: var(--text-secondary);
  font-size: clamp(1rem, .95rem + .35vw, 1.18rem);
  line-height: 1.7;
}

.lp-hero-trust {
  color: var(--text-muted);
}

.lp-hero-trust strong {
  color: var(--text-primary);
}

.lp-hero-ctas {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.lp-hero-meta {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: var(--space-2);
  color: var(--text-muted);
  margin-bottom: var(--space-9);
  flex-wrap: wrap;
  font-size: .9rem;
}

.lp-hero-mockup {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.mockup {
  border-radius: var(--radius-xl);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}

.mockup-studio {
  transform: perspective(1600px)rotateX(2deg);
}

.mockup-chrome {
  display: flex;
  align-items:  center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff08;
}

.mockup-dot {
  border-radius: 50%;
  flex: none;
  width: 12px;
  height: 12px;
}

.mockup-dot-r {
  background: #ff5f57;
}

.mockup-dot-y {
  background: #febc2e;
}

.mockup-dot-g {
  background: #28c840;
}

.mockup-url {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: var(--space-2);
  margin: 0 var(--space-5);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: .8rem;
  font-family: var(--font-mono);
  background: #00000059;
  flex: 1;
}

.mockup-lock {
  font-size: .7rem;
}

.mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  min-height: 380px;
}

.mockup-rail, .mockup-inspector {
  padding: var(--space-4);
  background: #0000002e;
}

.mockup-rail {
  border-right: 1px solid var(--border-subtle);
}

.mockup-inspector {
  border-left: 1px solid var(--border-subtle);
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}

.mockup-rail-section {
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}

.mockup-rail-label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-2);
  font-size: .7rem;
  font-weight: 600;
}

.mockup-tree {
  display: flex;
  gap: var(--space-1);
  flex-direction: column;
}

.tree-item {
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-family: var(--font-mono);
  padding: 4px 8px;
}

.tree-folder {
  color: var(--text-secondary);
  font-weight: 550;
}

.tree-folder:before {
  content: "▸ ";
  color: var(--text-faint);
}

.tree-indent {
  padding-left: var(--space-5);
}

.tree-indent-2 {
  padding-left: var(--space-7);
}

.tree-active {
  background: var(--brand-grad-soft);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.mockup-canvas {
  display: flex;
  background: var(--bg-raised);
  flex-direction: column;
}

.mockup-toolbar {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-tabs {
  display: flex;
  gap: var(--space-2);
}

.mockup-tab {
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  background: #ffffff08;
  border: 1px solid #0000;
  padding: 5px 12px;
  font-size: .8rem;
}

.mockup-tab-active {
  color: var(--text-primary);
  background: var(--brand-grad-soft);
  border-color: var(--border-subtle);
}

.mockup-preview-status {
  display: inline-flex;
  align-items:  center;
  gap: var(--space-2);
  color: var(--success);
  font-size: .78rem;
}

.mockup-pulse {
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse-glow 2s ease-in-out infinite;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.mockup-stage {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  flex-direction: column;
  flex: 1;
}

.stage-hero {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--brand-grad-faint);
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: var(--space-3);
  position: relative;
  flex-direction: column;
}

.stage-hero-selected {
  outline: 2px solid var(--brand-violet);
  outline-offset: 2px;
}

.stage-tag, .stage-selected-tag {
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  color: var(--text-faint);
  background: #ffffff0d;
  align-self:  flex-start;
  padding: 3px 8px;
  font-size: .62rem;
  font-weight: 700;
}

.stage-selected-tag {
  color: #fff;
  background: var(--brand-violet);
}

.stage-title-mock {
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--text-secondary), var(--text-faint));
  opacity: .7;
  width: 60%;
  height: 18px;
}

.stage-sub-mock {
  border-radius: var(--radius-pill);
  background: var(--border-strong);
  width: 80%;
  height: 10px;
}

.stage-cta-row {
  display: flex;
  gap: var(--space-3);
}

.stage-cta-mock {
  border-radius: var(--radius-sm);
  background: var(--brand-grad);
  width: 110px;
  height: 30px;
  box-shadow: 0 6px 18px -8px #8b5cf699;
}

.stage-cta-ghost {
  box-shadow: none;
  border: 1px solid var(--border-subtle);
  background: #ffffff0f;
}

.stage-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

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

.stage-col {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #ffffff06;
  flex-direction: column;
}

.stage-line {
  border-radius: var(--radius-pill);
  background: var(--border-strong);
  height: 9px;
}

.stage-line-short {
  width: 60%;
}

.inspector-group {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: .78rem;
}

.inspector-key {
  color: var(--text-muted);
}

.inspector-val {
  color: var(--accent-2);
}

.inspector-swatch {
  background: var(--brand-grad);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  width: 16px;
  height: 16px;
}

.inspector-section {
  display: flex;
  gap: var(--space-2);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
  flex-direction: column;
}

.inspector-section:last-child {
  border-bottom: none;
}

.inspector-section-name {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-violet);
  font-size: .68rem;
  font-weight: 600;
}

.mockup-visual-body {
  display: grid;
  grid-template-columns: 150px 1fr 190px;
  min-height: 360px;
}

.mockup-blocks {
  padding: var(--space-4);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  gap: var(--space-2);
  background: #0000002e;
  flex-direction: column;
}

.mockup-block-chip {
  display: flex;
  align-items:  center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: grab;
  background: #ffffff08;
  font-size: .82rem;
}

.grip {
  color: var(--text-faint);
  letter-spacing: -2px;
  font-size: .7rem;
}

.inspector-visual {
  gap: var(--space-4);
}

.mockup-chat-body {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-raised);
  flex-direction: column;
  min-height: 360px;
}

.chat-context {
  display: inline-flex;
  align-items:  center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: #ffffff0a;
  align-self:  flex-start;
  font-size: .8rem;
}

.chat-context strong {
  color: var(--text-secondary);
}

.chat-msg {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  max-width: 85%;
  font-size: .9rem;
  line-height: 1.55;
}

.chat-msg-user {
  background: var(--brand-grad);
  color: #fff;
  border-bottom-right-radius: var(--radius-sm);
  align-self:  flex-end;
  box-shadow: 0 8px 24px -12px #8b5cf699;
}

.chat-msg-ai {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-bottom-left-radius: var(--radius-sm);
  display: flex;
  align-self:  flex-start;
  gap: var(--space-2);
  flex-direction: column;
}

.chat-msg-meta {
  display: flex;
  align-items:  center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: .78rem;
}

.chat-ai-dot {
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}

.chat-msg-meta code, .chat-msg-text code {
  font-family: var(--font-mono);
  color: var(--accent-2);
  background: #00000059;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .82em;
}

.chat-msg-text {
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

.chat-files {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

.chat-file {
  font-family: var(--font-mono);
  border-radius: var(--radius-sm);
  background: var(--success-soft);
  color: var(--success);
  border: 1px solid #3ddc9740;
  padding: 3px 9px;
  font-size: .76rem;
}

.mockup-code-body {
  display: grid;
  grid-template-columns: 44px 1fr;
  background: var(--bg-deepest);
  min-height: 320px;
}

.code-gutter {
  display: flex;
  padding: var(--space-4) 0;
  text-align: right;
  border-right: 1px solid var(--border-subtle);
  background: #0000004d;
  flex-direction: column;
}

.code-gutter span {
  font-family: var(--font-mono);
  color: var(--text-faint);
  padding-right: var(--space-3);
  font-size: .78rem;
  line-height: 1.7;
}

.code-lines {
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-mono);
  overflow-x: auto;
  color: var(--text-secondary);
  margin: 0;
  font-size: .8rem;
  line-height: 1.7;
}

.code-line {
  display: block;
  white-space: pre;
  opacity: 0;
  animation: fade-up .5s var(--ease-soft) forwards;
  min-height: 1.7em;
}

@media (prefers-reduced-motion: reduce) {
  .code-line {
    opacity: 1;
    animation: none;
  }
}

.tk-key {
  color: #c084fc;
}

.tk-str {
  color: #6ee7b7;
}

.tk-fn {
  color: #60a5fa;
}

.tk-id {
  color: #f5f6fa;
}

.tk-typ {
  color: #fbbf24;
}

.tk-comp {
  color: #f472b6;
}

.mockup-code-status {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--border-subtle);
  font-size: .76rem;
  font-family: var(--font-mono);
  background: #00000040;
  flex-wrap: wrap;
}

.code-status-ok {
  color: var(--success);
}

.code-status-info {
  color: var(--accent-2);
}

.lp-stats {
  padding: var(--space-7) var(--space-5);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding: var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glass);
}

.lp-stat {
  text-align: center;
}

.lp-stat-num {
  letter-spacing: -.03em;
  background: var(--brand-grad);
  -webkit-text-fill-color: transparent;
  color: #0000;
  margin-bottom: var(--space-3);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.lp-stat-label {
  color: var(--text-muted);
  max-width: 22ch;
  margin: 0 auto;
  font-size: .88rem;
  line-height: 1.5;
}

.lp-modality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
  margin-bottom: var(--space-9);
}

.lp-modality {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: transform .28s var(--ease-snappy), box-shadow .28s var(--ease-snappy), border-color .28s var(--ease-snappy);
}

.lp-modality:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md), var(--brand-glow);
  transform: translateY(-4px);
}

.lp-modality-icon {
  display: inline-flex;
  border-radius: var(--radius-md);
  background: var(--brand-grad-soft);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--space-4);
  justify-content: center;
  align-items:  center;
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
}

.lp-modality-title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.2rem;
  font-weight: 650;
}

.lp-modality-body {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.lp-compare-wrap {
  margin-top: var(--space-8);
}

.lp-compare-head {
  text-align: center;
  margin: 0 auto var(--space-6);
  max-width: 680px;
}

.lp-compare-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lp-compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
}

.lp-compare th, .lp-compare td {
  padding: var(--space-4) var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.lp-compare thead th {
  color: var(--text-secondary);
  background: #ffffff05;
  font-size: .95rem;
  font-weight: 650;
}

.cmp-feature-col {
  min-width: 220px;
  text-align: left !important;
}

.cmp-col-us {
  font-weight: 700;
}

.cmp-feature {
  color: var(--text-secondary);
  font-size: .92rem;
  font-weight: 500;
  text-align: left !important;
}

.lp-compare tbody tr:last-child th, .lp-compare tbody tr:last-child td {
  border-bottom: none;
}

.lp-compare tbody tr:hover td, .lp-compare tbody tr:hover th {
  background: #ffffff05;
}

.cmp-cell-us {
  background: var(--brand-grad-faint);
}

.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex;
  flex-direction: column;
  align-items:  center;
  gap: 2px;
  font-size: .85rem;
}

.cmp-yes .cmp-mark {
  color: var(--success);
  font-size: 1.05rem;
  font-weight: 700;
}

.cmp-no .cmp-mark {
  color: var(--text-faint);
  font-size: 1rem;
}

.cmp-partial .cmp-mark {
  color: var(--warning);
  font-size: 1.05rem;
}

.cmp-label {
  color: var(--text-muted);
  font-size: .72rem;
}

.lp-feature-a {
  background: radial-gradient(60% 50% at 100% 0%, #3b82f60f, #0000 60%);
}

.lp-feature-b {
  background: radial-gradient(60% 50% at 0 0, #d946ef0f, #0000 60%);
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-8);
  align-items:  center;
}

.lp-feature-grid-flip {
  grid-template-columns: 1.05fr 1fr;
}

.lp-feature-copy, .lp-feature-visual {
  min-width: 0;
}

.lp-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.lp-block {
  display: flex;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform .2s var(--ease-snappy), border-color .2s var(--ease-snappy);
  background: #ffffff08;
  flex-direction: column;
  gap: 4px;
}

.lp-block:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.lp-block-name {
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 650;
}

.lp-block-desc {
  color: var(--text-faint);
  font-size: .76rem;
  line-height: 1.4;
}

.lp-twocol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-5);
}

.lp-toggle {
  position: relative;
  display: inline-flex;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  margin: 0 auto var(--space-6);
  gap: 4px;
  padding: 5px;
}

.lp-toggle-btn {
  position: relative;
  z-index: 1;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: color .22s var(--ease-snappy);
  background: none;
  font-size: .92rem;
  font-weight: 550;
}

.lp-toggle-btn.is-active {
  color: #fff;
}

.lp-toggle-thumb {
  position: absolute;
  z-index: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-grad);
  transition: transform .32s var(--ease-soft);
  width: calc(50% - 5px);
  top: 5px;
  bottom: 5px;
  box-shadow: 0 6px 18px -8px #8b5cf6b3;
}

.lp-toggle-thumb-devs {
  left: 5px;
  transform: translateX(0);
}

.lp-toggle-thumb-business {
  left: 5px;
  transform: translateX(100%);
}

.lp-audience-h2 {
  animation: fade-up .5s var(--ease-soft);
}

.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.lp-aud-card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  transition: transform .28s var(--ease-snappy), border-color .28s var(--ease-snappy), box-shadow .28s var(--ease-snappy);
}

.lp-aud-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lp-aud-index {
  display: block;
  font-family: var(--font-mono);
  background: var(--brand-grad);
  -webkit-text-fill-color: transparent;
  color: #0000;
  margin-bottom: var(--space-3);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: .85rem;
  font-weight: 700;
}

.lp-aud-title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.3;
}

.lp-aud-body {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.lp-security {
  background: radial-gradient(70% 50% at 50% 0%, #8b5cf612, #0000 60%);
}

.lp-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.lp-sec-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: transform .28s var(--ease-snappy), border-color .28s var(--ease-snappy), box-shadow .28s var(--ease-snappy);
}

.lp-sec-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md), var(--brand-glow);
  transform: translateY(-4px);
}

.lp-sec-icon {
  display: inline-flex;
  border-radius: var(--radius-md);
  background: var(--brand-grad-soft);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--space-4);
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lp-sec-title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
  font-weight: 650;
}

.lp-sec-body {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
}

.lp-security-foot {
  text-align: center;
  margin: var(--space-7) auto 0;
  color: var(--text-muted);
  max-width: 640px;
  font-size: .98rem;
  line-height: 1.65;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items:  start;
}

.lp-tier {
  position: relative;
  display: flex;
  gap: var(--space-5);
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glass);
  transition: transform .28s var(--ease-snappy), box-shadow .28s var(--ease-snappy);
  flex-direction: column;
}

.lp-tier:hover {
  transform: translateY(-4px);
}

.lp-tier-highlight {
  box-shadow: var(--shadow-elev), var(--brand-glow);
  border-color: #8b5cf680;
}

.lp-tier-highlight:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: var(--brand-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
  padding: 1px;
  inset: -1px;
}

.lp-tier-badge {
  position: absolute;
  border-radius: var(--radius-pill);
  background: var(--brand-grad);
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 24px -10px #8b5cf6b3;
}

.lp-tier-head {
  display: flex;
  gap: var(--space-2);
  flex-direction: column;
}

.lp-tier-name {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.lp-tier-tagline {
  color: var(--text-muted);
  min-height: 2.6em;
  font-size: .88rem;
  line-height: 1.5;
}

.lp-tier-price {
  display: flex;
  margin-top: var(--space-3);
  letter-spacing: -.03em;
  color: var(--text-primary);
  align-items: baseline;
  gap: 4px;
  font-size: clamp(2.2rem, 1.8rem + 1.4vw, 2.8rem);
  font-weight: 700;
}

.lp-tier-period {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.lp-tier-features {
  list-style: none;
  display: flex;
  gap: var(--space-1);
  flex-direction: column;
}

.lp-tier-features li {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .9rem;
}

.lp-tier-features li:last-child {
  border-bottom: none;
}

.lp-tier-feat-label {
  color: var(--text-muted);
}

.lp-tier-feat-val {
  color: var(--text-primary);
  text-align: right;
  font-weight: 600;
}

.lp-tier-yes {
  color: var(--success);
  font-weight: 700;
}

.lp-tier-no {
  color: var(--text-faint);
}

.lp-pricing-foot {
  text-align: center;
  margin: var(--space-7) auto 0;
  color: var(--text-muted);
  max-width: 640px;
  font-size: .92rem;
  line-height: 1.6;
}

.lp-roadmap-list {
  list-style: none;
  display: flex;
  gap: var(--space-4);
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}

.lp-roadmap-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  transition: transform .24s var(--ease-snappy), border-color .24s var(--ease-snappy);
}

.lp-roadmap-item:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}

.lp-roadmap-icon {
  display: inline-flex;
  border-radius: var(--radius-md);
  background: var(--brand-grad-soft);
  border: 1px solid var(--border-subtle);
  flex: none;
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.lp-roadmap-body {
  flex: 1;
  min-width: 0;
}

.lp-roadmap-head {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.lp-roadmap-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 650;
}

.lp-roadmap-status {
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  color: var(--brand-violet);
  background: var(--brand-grad-soft);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
}

.lp-roadmap-desc {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.lp-cta-final {
  position: relative;
  padding: var(--space-9) var(--space-5);
  overflow: hidden;
}

.lp-cta-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  inset: 0;
}

.orb-c1 {
  animation: aurora 28s var(--ease-soft) infinite;
  background: radial-gradient(closest-side, #3b82f64d, #0000);
  width: 40vmax;
  height: 40vmax;
  top: -30%;
  left: 10%;
}

.orb-c2 {
  animation: aurora 34s var(--ease-soft) infinite reverse;
  background: radial-gradient(closest-side, #d946ef47, #0000);
  width: 38vmax;
  height: 38vmax;
  bottom: -34%;
  right: 8%;
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-9) var(--space-7);
  border-radius: var(--radius-xl);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-elev);
  max-width: 760px;
  margin: 0 auto;
}

.lp-cta-title {
  letter-spacing: -.03em;
  margin-bottom: var(--space-5);
  text-wrap: balance;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
}

.lp-cta-sub {
  color: var(--text-secondary);
  margin: 0 auto var(--space-7);
  max-width: 56ch;
  font-size: clamp(1rem, .95rem + .35vw, 1.18rem);
  line-height: 1.65;
}

.lp-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.lp-cta-meta {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: var(--space-2);
  color: var(--text-muted);
  flex-wrap: wrap;
  font-size: .9rem;
}

.lp-cta-link {
  color: var(--accent-2);
  transition: color .16s var(--ease-snappy);
  font-weight: 550;
}

.lp-cta-link:hover {
  color: var(--text-primary);
}

.lp-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
  padding: var(--space-8) var(--space-5) var(--space-6);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border-subtle);
}

.lp-footer-brand {
  display: flex;
  gap: var(--space-4);
  flex-direction: column;
  max-width: 280px;
}

.lp-footer-tag {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.lp-footer-col {
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
}

.lp-footer-h {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-1);
  font-size: .78rem;
  font-weight: 600;
}

.lp-footer-col a {
  color: var(--text-muted);
  transition: color .16s var(--ease-snappy);
  font-size: .92rem;
}

.lp-footer-col a:hover {
  color: var(--text-primary);
}

.lp-footer-bottom {
  padding-top: var(--space-5);
  color: var(--text-faint);
  text-align: center;
  font-size: .85rem;
}

.lp-frameworks {
  padding: var(--space-5) var(--space-5) var(--space-4);
}

.lp-frameworks-inner {
  display: flex;
  align-items:  center;
  gap: var(--space-5);
  text-align: center;
  flex-direction: column;
}

.lp-frameworks-inner[data-reveal] {
  opacity: 1;
  transition: none;
  transform: none;
}

.lp-frameworks-cap {
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-soft), transform var(--dur-slow) var(--ease-soft);
  max-width: 46ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  transform: translateY(10px);
}

.lp-frameworks-inner.is-visible .lp-frameworks-cap {
  opacity: 1;
  transform: none;
}

.lp-fw-chips {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.lp-fw-chip {
  display: inline-flex;
  align-items:  center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out-back), transform var(--dur-med) var(--ease-out-back), border-color var(--dur-med) var(--ease-snappy), box-shadow var(--dur-med) var(--ease-snappy), color var(--dur-med) var(--ease-snappy);
  background: #ffffff08;
  font-size: .9rem;
  font-weight: 600;
  transform: translateY(14px)scale(.96);
}

.lp-frameworks-inner.is-visible .lp-fw-chip {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.lp-frameworks-inner.is-visible .lp-fw-chip:nth-child(2) {
  transition-delay: 60ms;
}

.lp-frameworks-inner.is-visible .lp-fw-chip:nth-child(3) {
  transition-delay: .12s;
}

.lp-frameworks-inner.is-visible .lp-fw-chip:nth-child(4) {
  transition-delay: .18s;
}

.lp-frameworks-inner.is-visible .lp-fw-chip:nth-child(5) {
  transition-delay: .24s;
}

.lp-frameworks-inner.is-visible .lp-fw-chip:nth-child(6) {
  transition-delay: .3s;
}

.lp-frameworks-inner.is-visible .lp-fw-chip:hover {
  color: var(--text-primary);
  border-color: color-mix(in srgb, var(--fw, var(--accent)) 55%, transparent);
  box-shadow: 0 10px 26px -14px var(--fw, var(--accent)), 0 0 20px -4px color-mix(in srgb, var(--fw, var(--accent)) 45%, transparent);
  transform: translateY(-3px)scale(1);
}

.lp-fw-dot {
  background: var(--fw, var(--accent));
  box-shadow: 0 0 10px var(--fw, var(--accent));
  border-radius: 50%;
  flex: none;
  width: 9px;
  height: 9px;
}

.lp-modality-grid[data-reveal], .lp-security-grid[data-reveal], .lp-pricing-grid[data-reveal], .lp-compare-wrap[data-reveal], .lp-roadmap-list[data-reveal], .lp-audience-grid[data-reveal] {
  opacity: 1;
  transition: none;
  transform: none;
}

.lp-modality-grid > .lp-modality, .lp-security-grid > .lp-sec-card, .lp-pricing-grid > .lp-tier, .lp-roadmap-list > .lp-roadmap-item {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-soft), transform var(--dur-slow) var(--ease-soft), border-color var(--dur-med) var(--ease-snappy), box-shadow var(--dur-med) var(--ease-snappy);
  will-change: opacity, transform;
  transform: translateY(18px);
}

.lp-compare-wrap tbody tr {
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-soft), transform var(--dur-med) var(--ease-soft);
  transform: translateY(10px);
}

.lp-modality-grid.is-visible > .lp-modality, .lp-security-grid.is-visible > .lp-sec-card, .lp-pricing-grid.is-visible > .lp-tier, .lp-roadmap-list.is-visible > .lp-roadmap-item, .lp-compare-wrap.is-visible tbody tr {
  opacity: 1;
  transform: none;
}

.lp-modality-grid.is-visible > .lp-modality:hover, .lp-security-grid.is-visible > .lp-sec-card:hover, .lp-pricing-grid.is-visible > .lp-tier:hover {
  transform: translateY(-4px);
}

.lp-roadmap-list.is-visible > .lp-roadmap-item:hover {
  transform: translateX(4px);
}

.lp-modality-grid.is-visible > .lp-modality:nth-child(2), .lp-security-grid.is-visible > .lp-sec-card:nth-child(2), .lp-pricing-grid.is-visible > .lp-tier:nth-child(2), .lp-roadmap-list.is-visible > .lp-roadmap-item:nth-child(2) {
  transition-delay: 70ms;
}

.lp-modality-grid.is-visible > .lp-modality:nth-child(3), .lp-security-grid.is-visible > .lp-sec-card:nth-child(3), .lp-pricing-grid.is-visible > .lp-tier:nth-child(3), .lp-roadmap-list.is-visible > .lp-roadmap-item:nth-child(3) {
  transition-delay: .14s;
}

.lp-modality-grid.is-visible > .lp-modality:nth-child(4), .lp-security-grid.is-visible > .lp-sec-card:nth-child(4), .lp-roadmap-list.is-visible > .lp-roadmap-item:nth-child(4) {
  transition-delay: .21s;
}

.lp-security-grid.is-visible > .lp-sec-card:nth-child(5), .lp-roadmap-list.is-visible > .lp-roadmap-item:nth-child(5) {
  transition-delay: .28s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(2) {
  transition-delay: 45ms;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(3) {
  transition-delay: 90ms;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(4) {
  transition-delay: .135s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(5) {
  transition-delay: .18s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(6) {
  transition-delay: .225s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(7) {
  transition-delay: .27s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(8) {
  transition-delay: .315s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(9) {
  transition-delay: .36s;
}

.lp-compare-wrap.is-visible tbody tr:nth-child(n+10) {
  transition-delay: .405s;
}

.lp-aud-card {
  animation: fade-up var(--dur-slow) var(--ease-soft) backwards;
}

.lp-aud-card:nth-child(2) {
  animation-delay: 80ms;
}

.lp-aud-card:nth-child(3) {
  animation-delay: .16s;
}

.lp-aud-card:nth-child(4) {
  animation-delay: .24s;
}

.lp-aud-card:nth-child(5) {
  animation-delay: .32s;
}

@keyframes count-pop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.08);
  }

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

.lp-stat-num.is-counted {
  animation: count-pop .6s var(--ease-out-back);
}

@media (prefers-reduced-motion: reduce) {
  .lp-frameworks-cap, .lp-fw-chip, .lp-modality-grid > .lp-modality, .lp-security-grid > .lp-sec-card, .lp-pricing-grid > .lp-tier, .lp-roadmap-list > .lp-roadmap-item, .lp-compare-wrap tbody tr, .lp-aud-card {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }

  .lp-stat-num.is-counted {
    animation: none;
  }
}

@media (max-width: 960px) {
  .lp-section {
    padding: var(--space-8) var(--space-5);
  }

  .lp-feature-grid, .lp-feature-grid-flip {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .lp-feature-grid-flip .lp-feature-visual {
    order: -1;
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

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

  .lp-audience-grid, .lp-security-grid, .lp-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-tier-highlight {
    transform: none;
  }

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

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .lp-footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-rail, .mockup-inspector, .mockup-blocks {
    display: none;
  }

  .mockup-visual-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-topbar {
    padding: var(--space-3) var(--space-4);
  }

  .lp-nav {
    gap: 2px;
  }

  .lp-nav-link, .lp-nav-signin {
    display: none;
  }

  .lp-hero {
    padding-top: var(--space-7);
  }

  .lp-hero-ctas, .lp-cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .lp-hero-ctas .btn, .lp-cta-actions .btn {
    width: 100%;
  }

  .lp-stats-grid, .lp-modality-grid, .lp-audience-grid, .lp-security-grid, .lp-pricing-grid, .lp-twocol, .lp-block-grid {
    grid-template-columns: 1fr;
  }

  .lp-section, .lp-stats, .lp-cta-final {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .lp-stats-grid, .lp-cta-inner {
    padding: var(--space-6);
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-roadmap-item {
    gap: var(--space-3);
    flex-direction: column;
  }

  .chat-msg {
    max-width: 95%;
  }
}
