:root {
  color-scheme: dark;

  --landing-bg: #07050F;
  --landing-bg-2: #0B0718;
  --landing-bg-3: #120B24;

  --landing-surface: rgba(18, 11, 36, 0.72);
  --landing-surface-2: rgba(26, 17, 50, 0.56);
  --landing-surface-soft: rgba(255, 255, 255, 0.045);

  --landing-border: rgba(147, 112, 219, 0.20);
  --landing-border-strong: rgba(167, 139, 250, 0.50);

  --landing-text: #FFFFFF;
  --landing-text-muted: #D4C4EA;
  --landing-text-soft: rgba(255, 255, 255, 0.58);

  --landing-accent-100: #F0EAF8;
  --landing-accent-200: #D4C4EA;
  --landing-accent-300: #B8A0D8;
  --landing-accent-400: #A78BFA;
  --landing-accent-500: #9370DB;
  --landing-accent-600: #7C5FBF;
  --landing-accent-700: #5A3D8A;
  --landing-accent-900: #1A1132;

  --landing-cyan: #22D3EE;
  --landing-success: #4ADE80;
  --landing-warning: #FBBF24;
  --landing-danger: #FB7185;

  --landing-glow: rgba(147, 112, 219, 0.36);
  --landing-glow-strong: rgba(167, 139, 250, 0.44);
  --landing-glow-cyan: rgba(34, 211, 238, 0.18);
  --landing-glow-pink: rgba(236, 72, 153, 0.14);

  --landing-shell: 1240px;

  --landing-radius-sm: 10px;
  --landing-radius-md: 16px;
  --landing-radius-lg: 24px;
  --landing-radius-xl: 34px;

  --landing-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --landing-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.landing-page {
  min-height: 100vh;
  margin: 0;
  padding-inline: 0;
  display: block;
  place-items: initial;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  color: var(--landing-text);
  background: var(--landing-bg);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

body.landing-page main {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

body.landing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(147, 112, 219, 0.22), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(90, 61, 138, 0.26), transparent 60%),
    radial-gradient(1100px 700px at 50% 110%, rgba(147, 112, 219, 0.16), transparent 60%),
    linear-gradient(180deg, #07050F 0%, #0B0718 48%, #07050F 100%);
}

body.landing-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(184, 160, 216, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 160, 216, 0.10) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-1000px, -1000px, 0) translate(-50%, -50%);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.10), rgba(34, 211, 238, 0.04) 34%, transparent 68%);
  filter: blur(16px);
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
  will-change: transform;
  contain: layout paint size style;
}

html[data-cursor-active="true"] .cursor-glow {
  opacity: 0.55;
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 156, 255, 0.30);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 7, 22, 0.78);
  color: #F7F3FF;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(147, 112, 219, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.scroll-top-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-scroll-top-visible="true"] .scroll-top-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.scroll-top-btn:hover {
  border-color: rgba(185, 156, 255, 0.64);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(147, 112, 219, 0.32),
    0 0 22px rgba(34, 211, 238, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translate3d(0, -2px, 0);
}

.scroll-top-btn:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.82);
  outline-offset: 3px;
}

/* Header */
.landing-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 56px;
  background: linear-gradient(180deg, rgba(7, 5, 15, 0.86), rgba(7, 5, 15, 0.54));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.landing-nav {
  max-width: 1240px;
  height: 56px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.landing-brand-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--landing-accent-400), var(--landing-accent-600));
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #FFF;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 12px var(--landing-glow);
}

.landing-logo {
  font-size: 21px;
  font-weight: 850;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4C4EA 50%, #9370DB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}

.landing-nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.landing-nav-link {
  color: rgba(212, 196, 234, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-nav-link:hover {
  color: var(--landing-text);
}

.landing-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #B794F4, #7C5FBF);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(147, 112, 219, .32);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(147, 112, 219, 0.42);
}

.landing-nav-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #67E8F9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Reusable Section Styles */
.landing-section {
  max-width: var(--landing-shell);
  margin: 0 auto;
  padding: 130px 24px;
  box-sizing: border-box;
  position: relative;
}

.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-accent-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.section-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--landing-accent-400);
  box-shadow: 0 0 6px var(--landing-accent-400);
}

.section-title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin: 0 0 20px;
  color: var(--landing-text);
}

.section-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #D4C4EA 40%, #A78BFA 75%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62;
  color: var(--landing-text-muted);
  margin: 0;
  font-weight: 500;
}

.glass-panel {
  border-radius: var(--landing-radius-xl);
  border: 1px solid var(--landing-border);
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow-soft);
  position: relative;
  z-index: 2;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.glass-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.44);
  background: rgba(20, 12, 42, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 42px rgba(147, 112, 219, 0.14);
}

/* Ambient glow blobs */
.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--landing-glow), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.65;
}

.glow-left { left: -10%; top: 20%; }
.glow-right { right: -10%; bottom: 20%; background: radial-gradient(circle, var(--landing-glow-pink), transparent 70%); }
.glow-center { left: 50%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, var(--landing-glow-strong), transparent 70%); }


.hero-stage {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(920px 640px at 52% 35%, rgba(147, 112, 219, 0.18), transparent 62%),
    radial-gradient(780px 540px at 82% 48%, rgba(34, 211, 238, 0.08), transparent 68%),
    radial-gradient(620px 460px at 18% 18%, rgba(124, 95, 191, 0.12), transparent 72%),
    linear-gradient(180deg, #05040A 0%, #080512 48%, #0B0718 100%);
}

.hero-stage::before,
.hero-stage::after {
  content: none;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 4% -8% -8%;
  z-index: 1;
  opacity: 0.44;
  background:
    radial-gradient(540px 380px at 28% 24%, rgba(167, 139, 250, 0.20), transparent 72%),
    radial-gradient(560px 400px at 72% 54%, rgba(34, 211, 238, 0.10), transparent 70%),
    linear-gradient(100deg, transparent 12%, rgba(185, 156, 255, 0.11) 48%, transparent 66%);
  filter: blur(44px);
  mix-blend-mode: screen;
  animation: hero-light-drift 24s ease-in-out infinite;
  will-change: transform;
}

.hero-aurora {
  position: absolute;
  inset: -28%;
  z-index: 0;
  opacity: 0.54;
  background:
    conic-gradient(from 8deg at 34% 34%,
      transparent 0deg,
      rgba(147, 112, 219, 0.24) 58deg,
      transparent 126deg,
      rgba(34, 211, 238, 0.10) 188deg,
      rgba(236, 72, 153, 0.12) 248deg,
      transparent 316deg);
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: hero-aurora-spin 42s linear infinite;
  will-change: transform;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse at 50% 45%, black 20%, rgba(0, 0, 0, 0.5) 60%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 20%, rgba(0, 0, 0, 0.5) 60%, transparent 95%);
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: -64px;
  background-image:
    /* Glow dots at major intersections (256px spacing) */
    radial-gradient(circle at 0px 0px, rgba(34, 211, 238, 0.5) 2px, transparent 2px),
    /* Glow dots at minor intersections (64px spacing) */
    radial-gradient(circle at 0px 0px, rgba(167, 139, 250, 0.35) 1.5px, transparent 1.5px),
    /* Major grid lines (cyan, 256px spacing) */
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    /* Minor grid lines (violet, 64px spacing) */
    linear-gradient(rgba(210, 190, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 190, 255, 0.14) 1px, transparent 1px);
  background-size:
    256px 256px,
    64px 64px,
    256px 256px,
    256px 256px,
    64px 64px,
    64px 64px;
  transform: translate3d(0, 0, 0);
  animation: hero-grid-drift 32s linear infinite;
  will-change: transform;
}

.hero-rays {
  position: absolute;
  top: -12%;
  left: 50%;
  z-index: 2;
  width: min(1120px, 112vw);
  height: 126%;
  transform: translateX(-50%);
  opacity: 0.42;
}

.hero-ray {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(185, 156, 255, 0.20), transparent 78%);
  filter: blur(0.2px);
}

.hero-ray:nth-child(1) { left: 38%; width: 118px; opacity: 0.14; transform: rotate(-8deg); }
.hero-ray:nth-child(2) { left: 45%; width: 74px; opacity: 0.11; transform: rotate(-3deg); }
.hero-ray:nth-child(3) { left: 51%; width: 142px; opacity: 0.17; transform: rotate(1deg); }
.hero-ray:nth-child(4) { left: 58%; width: 86px; opacity: 0.12; transform: rotate(5deg); }
.hero-ray:nth-child(5) { left: 64%; width: 112px; opacity: 0.10; transform: rotate(10deg); }

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: min(1000px, 95vw);
  height: min(800px, 80vh);
  background: 
    radial-gradient(circle at 40% 50%, rgba(147, 112, 219, 0.48) 0%, transparent 62%),
    radial-gradient(circle at 60% 45%, rgba(34, 211, 238, 0.35) 0%, transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.14) 0%, transparent 68%);
  filter: blur(82px);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}

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

@keyframes hero-grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(64px, 64px, 0); }
}

@keyframes hero-light-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-42px, 24px, 0) scale(1.04);
  }
}

.landing-hero {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 100svh;
  padding: 104px 24px 108px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 54px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-sizing: border-box;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(78px);
  opacity: 0.34;
}

.landing-hero::before {
  width: 420px;
  height: 420px;
  left: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(124, 95, 191, 0.28), transparent 70%);
  animation: hero-blob-soft-a 18s ease-in-out infinite;
}

.landing-hero::after {
  width: 460px;
  height: 460px;
  right: -10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  animation: hero-blob-soft-b 22s ease-in-out infinite;
}

@keyframes hero-blob-soft-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(64px, 42px, 0) scale(1.08);
  }
}

@keyframes hero-blob-soft-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-58px, -38px, 0) scale(1.1);
  }
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.landing-hero .hero-title {
  margin: 16px 0 14px;
  max-width: none;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--landing-text);
}

.hero-lead {
  color: var(--landing-text-muted);
  font-size: 16.5px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--landing-accent-500), var(--landing-cyan));
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.18), 0 18px 42px rgba(147, 112, 219, 0.22);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(34, 211, 238, 0.28), 0 24px 48px rgba(147, 112, 219, 0.32);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--landing-border-strong);
  background: rgba(26, 17, 50, 0.58);
  color: var(--landing-text);
  font-weight: 750;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(26, 17, 50, 0.8);
  border-color: rgba(255, 255, 255, 0.28);
}

.desktop-only {
  display: inline;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 520px);
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 16px;
  min-width: 0;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease;
}

.hero-stat-item:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.hero-stat-item + .hero-stat-item {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-stat-val {
  font-size: 20px;
  font-weight: 850;
  color: var(--landing-accent-300);
  background: linear-gradient(135deg, #FFFFFF, var(--landing-accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--landing-text-soft);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .hero-stats {
    margin-inline: auto;
  }

  .hero-preview {
    transform: none;
  }

  .landing-hero .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
    width: 100%;
    padding-top: 16px;
  }

  .hero-stat-item {
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .hero-stat-item + .hero-stat-item {
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }
}

/* App Mockup Preview */
.hero-preview {
  position: relative;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  transform: translateX(24px);
}

.preview-glow {
  position: absolute;
  inset: -15% -6%;
  border-radius: var(--landing-radius-xl);
  background: radial-gradient(ellipse at center, rgba(147, 112, 219, 0.38), rgba(34, 211, 238, 0.20) 48%, transparent 70%);
  filter: blur(52px);
  opacity: 0.80;
  pointer-events: none;
  z-index: 1;
  animation: preview-glow-pulse 5s ease-in-out infinite;
}

@keyframes preview-glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.80;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.58;
  }
}

.preview-window {
  position: relative;
  z-index: 2;
  width: min(690px, 51vw);
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--landing-border-strong);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(15, 10, 30, 0.82);
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.56),
    0 0 86px rgba(147, 112, 219, 0.20);
  transform: rotateX(3deg) rotateY(-7deg) translateY(8px);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.preview-window:hover {
  transform: rotateX(2deg) rotateY(-3deg) translateY(2px);
}

#demo-preview-window {
  transform: none !important;
  border-color: var(--demo-accent-border, var(--landing-border-strong));
  box-shadow: 0 20px 50px rgba(18, 11, 36, 0.4), 0 0 40px var(--demo-accent-soft, transparent);
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#demo-preview-window:hover {
  transform: none !important;
}

.preview-titlebar {
  height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid var(--landing-border);
  background: rgba(15, 10, 30, 0.72);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.traffic span:nth-child(1) { background: var(--landing-danger); }
.traffic span:nth-child(2) { background: var(--landing-warning); }
.traffic span:nth-child(3) { background: var(--landing-success); }

.preview-address {
  background: rgba(7, 5, 15, 0.5);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--landing-text-soft);
  justify-self: center;
  width: 190px;
  text-align: center;
  font-family: monospace;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--landing-success);
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.preview-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-success);
  box-shadow: 0 0 6px var(--landing-success);
}

.preview-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 430px;
  background: rgba(7, 5, 15, 0.2);
}

.preview-sidebar {
  padding: 18px 10px;
  border-right: 1px solid var(--landing-border);
  background: rgba(7, 5, 15, 0.42);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-group {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--landing-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.sidebar-group.active {
  background: var(--demo-accent-soft, rgba(147, 112, 219, 0.15));
  border: 1px solid var(--demo-accent-border, var(--landing-border));
  color: var(--landing-text);
}

.preview-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-browser-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--landing-border);
  background: rgba(7, 5, 15, 0.5);
  font-size: 11px;
  color: var(--landing-text-soft);
}

@media (max-width: 520px) {
  .demo-browser-footer {
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
}

.preview-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--landing-border);
  background: rgba(7, 5, 15, 0.5);
  color: var(--landing-text-soft);
  font-size: 13px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--landing-border);
  background: rgba(26, 17, 50, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.46);
  background: rgba(33, 22, 61, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26), 0 0 22px rgba(147, 112, 219, 0.12);
}

.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: #FFFFFF;
}

.preview-card-star {
  color: var(--landing-warning);
  font-size: 12px;
}

.preview-card-title {
  font-size: 13px;
  font-weight: 750;
  color: var(--landing-text);
  margin-top: 8px;
}

.preview-card-meta {
  font-size: 11px;
  color: var(--landing-text-soft);
  margin-top: 2px;
}

.preview-card-note {
  margin-top: 6px;
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  color: var(--landing-warning);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-tag {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--landing-border-strong);
  background: rgba(15, 10, 30, 0.9);
  color: var(--landing-accent-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10.5px;
  font-weight: 800;
  pointer-events: none;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.float-tag-1 {
  top: 12%;
  left: -7%;
  animation: float-tag-updown-1 5s ease-in-out infinite;
}

.float-tag-2 {
  right: -4%;
  bottom: 18%;
  animation: float-tag-updown-2 6s ease-in-out infinite;
}

.float-tag-3 {
  left: 14%;
  bottom: -5%;
  color: var(--landing-cyan);
  animation: float-tag-updown-1 5.5s ease-in-out infinite;
}

/* Icon / dot styling inside float tags */
.ft-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--landing-success);
  box-shadow: 0 0 10px var(--landing-success), 0 0 18px var(--landing-success);
  flex-shrink: 0;
}

.ft-check {
  color: var(--landing-success) !important;
  filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.7));
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes float-tag-updown-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-tag-updown-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 1280px) {
  .float-tag-1 {
    left: 2%;
  }

  .float-tag-2 {
    right: 2%;
  }
}

/* Ticker Strip */
.ticker-container {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(19, 11, 39, 0.78), rgba(8, 5, 18, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 0;
  padding: 19px 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.24);
}

.ticker-wrap {
  display: flex;
  width: 100%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(223, 211, 245, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0 28px;
}

.ticker-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-accent-400);
  box-shadow: 0 0 8px var(--landing-accent-400);
}

/* Static fallback ticker that aligns spacing */
.ticker-strip-static {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

/* Comparison Table */
.comparison-container {
  padding: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--landing-border);
  font-size: 15px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table th {
  font-weight: 850;
  color: var(--landing-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  padding: 24px 20px;
}

.comparison-table th span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.comparison-table th:nth-child(2) span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--landing-text-soft);
}

.comparison-table th:nth-child(3) span {
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid var(--landing-border-strong);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
}

.comparison-feature-name {
  font-weight: 750;
  color: var(--landing-text);
}

.comparison-table td.center-align,
.comparison-table th.center-align {
  text-align: center;
}

.badge-pill-limited {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.2);
  color: var(--landing-danger);
}

.badge-pill-tabsly {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--landing-success);
}

.comparison-icon-cross {
  color: var(--landing-danger);
  font-size: 18px;
  font-weight: bold;
}

/* Visual Organization Section */
.visual-org-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.visual-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.visual-option-card {
  padding: 20px;
  border-radius: var(--landing-radius-md);
  border: 1px solid var(--landing-border);
  background: rgba(26, 17, 50, 0.44);
  cursor: default;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.visual-option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.42);
  background: rgba(32, 21, 60, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), 0 0 28px rgba(147, 112, 219, 0.12);
}

.visual-option-card.active {
  border-color: var(--landing-accent-400);
  background: rgba(147, 112, 219, 0.08);
  box-shadow: 0 0 18px rgba(147, 112, 219, 0.18);
}

.visual-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--landing-text);
  margin-bottom: 6px;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.visual-option-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--landing-text-muted);
}

/* Themes Section */
.themes-section {
  padding-top: 92px;
  padding-bottom: 98px;
}

.themes-section .section-head-center {
  margin-bottom: 46px;
}

.themes-section .section-title {
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.04;
  max-width: 820px;
}

.themes-section .section-subtitle {
  font-size: 17px;
  max-width: 760px;
}

.theme-showcase {
  --theme-bg: #0a1019;
  --theme-bg-2: #11192a;
  --theme-surface: rgba(17, 24, 39, 0.92);
  --theme-panel: rgba(24, 34, 52, 0.76);
  --theme-card: rgba(255, 255, 255, 0.055);
  --theme-border: rgba(144, 168, 206, 0.24);
  --theme-text: #eef4ff;
  --theme-muted: #9daccc;
  --theme-accent: #59a6ff;
  --theme-accent-2: #7bf0c8;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.theme-showcase:has(.theme-porcelain:hover) {
  --theme-bg: #f6f8fc;
  --theme-bg-2: #eef3fa;
  --theme-surface: rgba(255, 255, 255, 0.96);
  --theme-panel: rgba(243, 247, 253, 0.94);
  --theme-card: rgba(74, 125, 255, 0.08);
  --theme-border: rgba(97, 121, 165, 0.28);
  --theme-text: #1d2b3d;
  --theme-muted: #70829b;
  --theme-accent: #4a7dff;
  --theme-accent-2: #8e7cff;
}

.theme-showcase:has(.theme-dracula:hover) {
  --theme-bg: #171521;
  --theme-bg-2: #221d2e;
  --theme-surface: rgba(36, 31, 48, 0.92);
  --theme-panel: rgba(43, 36, 56, 0.82);
  --theme-card: rgba(255, 121, 198, 0.08);
  --theme-border: rgba(255, 121, 198, 0.28);
  --theme-text: #f8f8f2;
  --theme-muted: #b8b2cc;
  --theme-accent: #bd93f9;
  --theme-accent-2: #ff79c6;
}

.theme-showcase:has(.theme-cocoa:hover) {
  --theme-bg: #17110d;
  --theme-bg-2: #241a14;
  --theme-surface: rgba(43, 31, 24, 0.92);
  --theme-panel: rgba(48, 34, 25, 0.82);
  --theme-card: rgba(221, 157, 96, 0.09);
  --theme-border: rgba(221, 157, 96, 0.30);
  --theme-text: #fff1df;
  --theme-muted: #c8ae94;
  --theme-accent: #dd9d60;
  --theme-accent-2: #f0c98f;
}

.theme-showcase:has(.theme-rose:hover) {
  --theme-bg: #1b121b;
  --theme-bg-2: #281926;
  --theme-surface: rgba(45, 29, 43, 0.92);
  --theme-panel: rgba(51, 32, 49, 0.82);
  --theme-card: rgba(244, 114, 182, 0.09);
  --theme-border: rgba(244, 114, 182, 0.30);
  --theme-text: #fff0f7;
  --theme-muted: #c9a9ba;
  --theme-accent: #f472b6;
  --theme-accent-2: #fba7cd;
}

.theme-showcase:has(.theme-forest:hover) {
  --theme-bg: #0d1712;
  --theme-bg-2: #13231a;
  --theme-surface: rgba(20, 39, 29, 0.92);
  --theme-panel: rgba(25, 50, 34, 0.82);
  --theme-card: rgba(74, 222, 128, 0.08);
  --theme-border: rgba(74, 222, 128, 0.28);
  --theme-text: #ecfff2;
  --theme-muted: #a9c8b1;
  --theme-accent: #4ade80;
  --theme-accent-2: #a3e635;
}

.theme-showcase:has(.theme-ocean:hover) {
  --theme-bg: #081923;
  --theme-bg-2: #0f2634;
  --theme-surface: rgba(17, 43, 58, 0.92);
  --theme-panel: rgba(21, 52, 71, 0.82);
  --theme-card: rgba(56, 189, 248, 0.08);
  --theme-border: rgba(56, 189, 248, 0.28);
  --theme-text: #e8faff;
  --theme-muted: #9cc3cf;
  --theme-accent: #38bdf8;
  --theme-accent-2: #22d3ee;
}

.theme-showcase:has(.theme-sand:hover) {
  --theme-bg: #f7f1e8;
  --theme-bg-2: #f1e7d8;
  --theme-surface: rgba(255, 253, 249, 0.96);
  --theme-panel: rgba(246, 239, 229, 0.94);
  --theme-card: rgba(185, 130, 67, 0.09);
  --theme-border: rgba(185, 130, 67, 0.28);
  --theme-text: #352719;
  --theme-muted: #806a51;
  --theme-accent: #b98243;
  --theme-accent-2: #56a3a6;
}

.theme-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.theme-card {
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(147, 112, 219, 0.18);
  background: rgba(15, 10, 30, 0.46);
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.theme-card:hover,
.theme-card.active {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.56);
  background: rgba(28, 18, 52, 0.66);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25), 0 0 28px rgba(147, 112, 219, 0.16);
}

.theme-swatch {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24), 0 0 20px var(--theme-glow, rgba(147, 112, 219, 0.18));
}

.theme-name {
  align-self: end;
  color: var(--landing-text);
  font-size: 15px;
  font-weight: 850;
}

.theme-meta {
  align-self: start;
  color: var(--landing-text-soft);
  font-size: 11px;
  font-weight: 700;
}

.theme-graphite .theme-swatch { --theme-glow: rgba(89, 166, 255, 0.30); background: linear-gradient(135deg, #0a1019, #59a6ff); }
.theme-porcelain .theme-swatch { --theme-glow: rgba(74, 125, 255, 0.28); background: linear-gradient(135deg, #ffffff, #4a7dff); }
.theme-dracula .theme-swatch { --theme-glow: rgba(255, 121, 198, 0.28); background: linear-gradient(135deg, #171521, #bd93f9 48%, #ff79c6); }
.theme-cocoa .theme-swatch { --theme-glow: rgba(221, 157, 96, 0.30); background: linear-gradient(135deg, #17110d, #dd9d60); }
.theme-rose .theme-swatch { --theme-glow: rgba(244, 114, 182, 0.30); background: linear-gradient(135deg, #1b121b, #f472b6); }
.theme-forest .theme-swatch { --theme-glow: rgba(74, 222, 128, 0.30); background: linear-gradient(135deg, #0d1712, #4ade80); }
.theme-ocean .theme-swatch { --theme-glow: rgba(56, 189, 248, 0.30); background: linear-gradient(135deg, #081923, #38bdf8); }
.theme-sand .theme-swatch { --theme-glow: rgba(185, 130, 67, 0.28); background: linear-gradient(135deg, #fffdf9, #b98243); }

.theme-preview-demo {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 42%, transparent);
  background:
    radial-gradient(520px 260px at 50% 25%, color-mix(in srgb, var(--theme-accent) 20%, transparent), transparent 68%),
    linear-gradient(180deg, var(--theme-bg), var(--theme-bg-2));
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.36), 0 0 52px color-mix(in srgb, var(--theme-accent) 14%, transparent);
  color: var(--theme-text);
  transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.theme-preview-topbar {
  height: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  background: color-mix(in srgb, var(--theme-surface) 84%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border) 80%, transparent);
}

.theme-preview-title {
  justify-self: center;
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 850;
}

.theme-preview-body {
  display: grid;
  grid-template-columns: 138px 1fr;
  min-height: 330px;
}

.theme-preview-sidebar {
  padding: 18px 12px;
  border-right: 1px solid color-mix(in srgb, var(--theme-border) 78%, transparent);
  background: color-mix(in srgb, var(--theme-surface) 64%, transparent);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-preview-tab {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 800;
}

.theme-preview-tab.active {
  color: var(--theme-text);
  background: color-mix(in srgb, var(--theme-accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 32%, transparent);
}

.theme-preview-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.theme-preview-search {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--theme-muted);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--theme-border) 80%, transparent);
  background: color-mix(in srgb, var(--theme-surface) 58%, transparent);
}

.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.theme-preview-card {
  min-height: 124px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--theme-border) 86%, transparent);
  background: var(--theme-card);
}

.theme-preview-icon {
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-2));
  font-size: 13px;
  font-weight: 900;
}

.theme-preview-icon.alt {
  background: linear-gradient(135deg, var(--theme-accent-2), var(--theme-accent));
}

.theme-preview-card strong {
  font-size: 14px;
  color: var(--theme-text);
}

.theme-preview-card small,
.theme-preview-note {
  color: var(--theme-muted);
  font-size: 11px;
  font-weight: 700;
}

.theme-preview-note {
  align-self: flex-end;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--theme-text);
  background: color-mix(in srgb, var(--theme-accent) 24%, transparent);
  border: 1px solid color-mix(in srgb, var(--theme-accent) 34%, transparent);
}

/* Step Cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  position: relative;
  padding: 40px 32px 32px;
  border-radius: var(--landing-radius-lg);
  border: 1px solid var(--landing-border);
  background: rgba(26, 17, 50, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(147, 112, 219, 0.08), transparent 70%);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.42);
  background: rgba(31, 20, 58, 0.54);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 34px rgba(147, 112, 219, 0.13);
}

.step-card:hover::before {
  opacity: 1;
  transform: scale(1.18);
}

.step-number {
  position: absolute;
  top: 14px;
  left: 24px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(147, 112, 219, 0.09);
  pointer-events: none;
  font-family: monospace;
}

.step-content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.step-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--landing-text);
  margin: 0;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-text-muted);
  margin: 0;
}

.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  z-index: 2;
}

.step-chip {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--landing-accent-300);
  background: rgba(147, 112, 219, 0.1);
  border: 1px solid rgba(147, 112, 219, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Local-First Section */
.local-first-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.local-first-info {
  max-width: 580px;
}

.local-first-lead {
  font-size: 18px;
  line-height: 1.62;
  color: var(--landing-text-muted);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: var(--landing-radius-md);
  border: 1px solid var(--landing-border);
  background: rgba(26, 17, 50, 0.44);
}

.trust-row h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--landing-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row h4::before {
  content: "✦";
  color: var(--landing-accent-400);
  font-size: 12px;
}

.trust-row p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--landing-text-soft);
  margin: 0;
}

/* Backup Segment */
.backup-section {
  padding-top: 112px;
  padding-bottom: 128px;
}

.backup-section-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 420px at 50% 33%, rgba(147, 112, 219, 0.13), transparent 70%),
    linear-gradient(180deg, rgba(10, 6, 22, 0.58), rgba(7, 5, 15, 0.24));
  border-radius: var(--landing-radius-xl);
  border: 1px solid var(--landing-border);
  padding: clamp(72px, 7vw, 108px) 40px clamp(64px, 6vw, 92px);
  min-height: min(760px, calc(100vh - 112px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.backup-section-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(197, 176, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 176, 232, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 46%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 46%, black 0%, transparent 72%);
}

.backup-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.backup-detail-card {
  position: relative;
  padding: 32px;
  border-radius: var(--landing-radius-lg);
  border: 1px solid var(--landing-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(15, 10, 30, 0.50);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 284px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.backup-detail-card:hover {
  transform: translateY(-9px);
  border-color: rgba(185, 156, 255, 0.66);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(27, 17, 52, 0.62);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 52px rgba(147, 112, 219, 0.25);
}

.backup-detail-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--landing-text);
  margin: 0;
}

.backup-detail-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-text-muted);
  margin: 0;
  min-height: 90px;
}

.backup-visual-item {
  margin-top: auto;
  min-height: 68px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(7, 5, 15, 0.5);
  border: 1px solid var(--landing-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.backup-visual-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.backup-visual-name {
  color: var(--landing-text);
  font-size: 12px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.backup-visual-meta {
  color: var(--landing-text-soft);
  font-size: 10px;
}

.backup-visual-btn {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(147, 112, 219, 0.12);
  border: 1px solid rgba(147, 112, 219, 0.2);
  color: var(--landing-accent-300);
}

/* Accordion FAQ using details/summary */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 5;
}

.faq-row {
  border-radius: var(--landing-radius-md);
  border: 1px solid var(--landing-border);
  background: rgba(26, 17, 50, 0.44);
  transition: border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
  margin: 0;
}

.faq-row[open] {
  border-color: var(--landing-accent-400);
  background: rgba(147, 112, 219, 0.05);
}

.faq-row summary {
  padding: 24px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 17px;
  color: var(--landing-text);
  outline: none;
  user-select: none;
}

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

.faq-icon {
  color: var(--landing-accent-300);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.faq-row[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-row-body {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-text-muted);
}

/* Final CTA Glow Panel */
.final-cta-panel {
  position: relative;
  text-align: center;
  padding: 84px 24px;
  border-radius: var(--landing-radius-xl);
  border: 1px solid rgba(147, 112, 219, 0.28);
  background:
    radial-gradient(circle at center, rgba(147, 112, 219, 0.16), transparent 70%),
    rgba(26, 17, 50, 0.44);
  overflow: hidden;
  max-width: 1040px;
  margin: 40px auto 0;
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(184, 160, 216, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 160, 216, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
}

.final-cta-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--landing-accent-300);
  margin-bottom: 20px;
}

.final-cta-panel h2 {
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--landing-text);
}

.final-cta-panel p {
  font-size: 16px;
  color: var(--landing-text-muted);
  line-height: 1.62;
  margin: 0 0 32px;
}

/* Footer structured columns */
.landing-footer {
  border-top: 1px solid var(--landing-border);
  background: rgba(7, 5, 15, 0.88);
  padding: 64px 24px;
  color: var(--landing-text-soft);
  font-size: 13px;
  margin-top: 112px;
}

.footer-grid {
  max-width: var(--landing-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--landing-accent-400), var(--landing-accent-600));
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #FFF;
  font-weight: 900;
  font-size: 12px;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 850;
  color: var(--landing-text);
  letter-spacing: -0.03em;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--landing-text-soft);
  margin: 0;
}

.footer-email {
  color: var(--landing-accent-200);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--landing-text);
  margin: 0 0 4px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-link {
  color: var(--landing-text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}

.footer-col-link:hover {
  color: var(--landing-text-muted);
}

.footer-trust-item {
  color: var(--landing-text-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-trust-item::before {
  content: "✦";
  color: var(--landing-accent-400);
  font-size: 10px;
}

.footer-bottom {
  max-width: var(--landing-shell);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Animations */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap {
  animation: slide 30s linear infinite;
  display: inline-flex;
  width: max-content;
}

@media (max-width: 1280px) {
  .nav-link-hide-tablet {
    display: none;
  }
}

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 24px 42px;
    gap: 48px;
  }

  .ticker-container {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: calc(100% + 48px);
    margin-inline: -24px;
    margin-top: 24px;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-preview {
    transform: none;
  }

  .hero-badge,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .preview-window {
    width: min(100%, 720px);
    transform: none !important;
  }

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

  .preview-sidebar {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--landing-border);
    padding: 10px 14px;
  }

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

  .visual-org-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .theme-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .local-first-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .backup-detail-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-md);
  }

  .comparison-table {
    min-width: 600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora,
  .hero-grid::before,
  .hero-bg::after,
  .landing-hero::before,
  .landing-hero::after,
  .preview-glow,
  .float-tag-1,
  .float-tag-2,
  .float-tag-3 {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }

  .landing-section {
    padding: 72px 16px;
  }

  .hero-grid {
    opacity: 0.65;
    mask-image: radial-gradient(circle at 50% 35%, black 15%, rgba(0, 0, 0, 0.35) 55%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, black 15%, rgba(0, 0, 0, 0.35) 55%, transparent 90%);
  }
}

@media (max-width: 520px) {
  .scroll-top-btn {
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .scroll-top-btn svg {
    width: 19px;
    height: 19px;
  }

  .landing-nav {
    padding-inline: 14px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .landing-nav-tag {
    display: none;
  }

  .landing-hero {
    padding: 88px 14px 30px;
    gap: 30px;
  }

  .ticker-container {
    width: 100%;
    margin-inline: 0;
  }

  .landing-hero .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-preview .preview-body {
    min-height: auto;
  }

  #demo-preview-window .preview-body {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-preview .preview-main {
    padding: 12px;
    gap: 10px;
  }

  .hero-preview .preview-sidebar {
    padding: 8px 10px;
  }

  #demo-preview-window .preview-sidebar {
    flex-direction: row !important;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--landing-border);
    padding: 8px 10px !important;
  }

  .hero-preview .preview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  #demo-preview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-preview .preview-card {
    min-height: 92px;
    padding: 10px;
  }

  #demo-preview-window .preview-card {
    min-width: 0;
  }

  .hero-preview .preview-card:nth-child(3) {
    display: none;
  }

  #demo-preview-window .preview-card:nth-child(3) {
    display: none;
  }

  .preview-window {
    width: 100%;
  }

  #demo-preview-window,
  .hero-preview .preview-window {
    width: 100%;
    max-width: 100%;
  }

  .preview-titlebar {
    grid-template-columns: auto 1fr;
  }

  .preview-address {
    width: auto;
    min-width: 0;
  }

  .preview-status {
    display: none;
  }

  .float-tag {
    position: static !important;
    margin-top: 8px;
    width: fit-content;
    animation: none !important;
  }

  .hero-preview {
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: none;
  }

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

  .themes-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .theme-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .theme-card {
    min-height: 64px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .theme-swatch {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .theme-name {
    font-size: 13px;
  }

  .theme-meta {
    font-size: 9.5px;
  }

  .theme-preview-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .theme-preview-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--theme-border) 78%, transparent);
    padding: 10px 12px;
  }

  .theme-preview-content {
    padding: 14px;
  }

  .theme-preview-grid {
    gap: 10px;
  }

  .theme-preview-card {
    min-height: 104px;
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}

.landing-inline-link {
  color: var(--landing-accent-300);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-inline-link:hover {
  color: var(--landing-accent-200);
}

