/* ============================================================
   Digital Launchpad — showcase page
   Liquid-glass + neon aesthetic for Second-Life Technology
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  /* Launchpad neon identity — "Aurora Sapphire" */
  --neon-1: #38bdf8; /* sky / sapphire */
  --neon-2: #818cf8; /* indigo         */
  --neon-3: #c084fc; /* amethyst       */
  --neon-4: #7dd3fc; /* light sky      */
  /* Subtle, single-hue accent gradient — used for all text/icons/elements
     except the large hero "launchpad" wordmark, which keeps its own
     multi-colour gradient defined inline in the SVG. */
  --lp-grad: linear-gradient(110deg, var(--neon-1), var(--neon-4));
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.14);
}

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

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 75px 0 0 0;
  background-color: #000000;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* ============================================================
   ANIMATED ABSTRACT COLOUR FIELD (background)
   ============================================================ */
.lp-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 600px at 50% -10%,
      rgba(129, 140, 248, 0.18),
      transparent 60%
    ),
    #000;
}

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

.blob-1 {
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle at 30% 30%, #38bdf8, transparent 70%);
  top: -8vw;
  left: -6vw;
  animation: drift-1 22s ease-in-out infinite;
}
.blob-2 {
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle at 70% 40%, #c084fc, transparent 70%);
  top: 10vh;
  right: -10vw;
  animation: drift-2 26s ease-in-out infinite;
}
.blob-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle at 50% 50%, #818cf8, transparent 70%);
  bottom: -12vw;
  left: 18vw;
  animation: drift-3 30s ease-in-out infinite;
}
.blob-4 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle at 50% 50%, #7dd3fc, transparent 70%);
  top: 40vh;
  left: 38vw;
  animation: drift-1 28s ease-in-out infinite reverse;
}

@keyframes drift-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8vw, 6vh) scale(1.15);
  }
}
@keyframes drift-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1.05);
  }
  50% {
    transform: translate(-7vw, 8vh) scale(0.9);
  }
}
@keyframes drift-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6vw, -7vh) scale(1.2);
  }
}

/* faint moving grid for depth */
.lp-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 30%,
    #000 0%,
    transparent 75%
  );
  animation: grid-pan 40s linear infinite;
}
@keyframes grid-pan {
  to {
    background-position: 60px 60px;
  }
}

/* ============================================================
   NAVBAR (matches site standard, neon identity)
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  font-family: "Josefin Sans", sans-serif;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.55);
  background-blend-mode: darken;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-text {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  flex: 1;
  text-align: left;
  margin-left: 2%;
  margin-top: 10px;
  transition: color 0.35s ease-in-out;
  background-image: var(--lp-grad);
  background-clip: text;
  -webkit-background-clip: text;
}
.logo-text:hover,
.logo-text:focus-visible {
  color: transparent;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.75rem;
  margin-right: 1rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a,
.navlink {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  display: inline-block;
}

.navlink {
  color: white;
  font-size: 1.5rem;
  text-align: right;
  text-decoration: none;
  padding-right: 3%;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--lp-grad);
}
.navlink:hover {
  color: transparent;
}

.donate {
  text-decoration: none;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.9);
  background-color: #fff;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 3%;
  padding: 0.5%;
  transition: all 0.4s ease-in-out;
  border: transparent 2px solid;
  line-height: 1;
}
.donate:hover {
  background-color: transparent;
  color: white;
  border: white 2px solid;
}

/* ============================================================
   HERO + CURSIVE HANDWRITING ANIMATION
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
}

.lp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.55em;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.5rem 0.55em;
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 0.9s ease forwards 0.2s;
}

.lp-cursive-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}

/* SVG cursive — strokes are drawn like real handwriting (stroke-dashoffset) */
.lp-cursive-svg {
  display: block;
  width: min(90vw, 880px);
  height: auto;
  overflow: visible;
  /* neon glow on the ink */
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.55))
    drop-shadow(0 0 22px rgba(129, 140, 248, 0.45))
    drop-shadow(0 0 46px rgba(192, 132, 252, 0.35));
  animation: neon-flicker 3.5s ease-in-out infinite 4s;
}

.lp-ink {
  fill: url(#lpInk);
  fill-opacity: 1; /* visible by default (no-JS / JS-fails fallback) */
  stroke: url(#lpInk);
  stroke-opacity: 0;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke; /* consistent pen width at any size */
}

/* When JS is running we hide the fill and pre-arm the strokes so the
   handwriting can be drawn; JS then inks the fill in at the end. */
.js .lp-ink {
  fill-opacity: 0;
  stroke-opacity: 1;
  stroke-dasharray: 12000;
  stroke-dashoffset: 12000;
}

/* glowing pen tip that rides the stroke as it's written */
.lp-pen-tip {
  fill: #ffffff;
  opacity: 0;
  filter: drop-shadow(0 0 6px #38bdf8) drop-shadow(0 0 12px #818cf8);
}

/* subtle neon flicker, like a sign warming up */
@keyframes neon-flicker {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.55))
      drop-shadow(0 0 22px rgba(129, 140, 248, 0.45))
      drop-shadow(0 0 46px rgba(192, 132, 252, 0.35));
  }
  48% {
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.7))
      drop-shadow(0 0 26px rgba(129, 140, 248, 0.55))
      drop-shadow(0 0 60px rgba(192, 132, 252, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.4))
      drop-shadow(0 0 14px rgba(129, 140, 248, 0.3))
      drop-shadow(0 0 30px rgba(192, 132, 252, 0.25));
  }
  52% {
    filter: drop-shadow(0 0 11px rgba(56, 189, 248, 0.75))
      drop-shadow(0 0 28px rgba(129, 140, 248, 0.6))
      drop-shadow(0 0 64px rgba(192, 132, 252, 0.5));
  }
}

.lp-hero-sub {
  max-width: 760px;
  margin: 2rem auto 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: fade-up 1s ease forwards 3.9s;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.25rem;
  opacity: 0;
  animation: fade-up 1s ease forwards 4.2s;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
}
.lp-btn .material-symbols-outlined {
  font-size: 1.3rem;
}

.lp-btn-primary {
  color: #04121a;
  background-image: var(--lp-grad);
  background-size: 200% auto;
  background-repeat: no-repeat; /* prevent angled-gradient edge bleed (pink sliver) */
  font-weight: 700;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
}
.lp-btn-primary:hover {
  background-position: right center;
  box-shadow: 0 0 36px rgba(192, 132, 252, 0.5);
  transform: translateY(-2px);
}

.lp-btn-ghost {
  color: #fff;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(129, 140, 248, 0.3);
}

.lp-scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation:
    fade-up 1s ease forwards 4.6s,
    bob 1.8s ease-in-out infinite 4.6s;
}
.lp-scroll-cue .material-symbols-outlined {
  font-size: 2.5rem;
}
@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SECTIONS + SHARED GLASS
   ============================================================ */
.lp-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.lp-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  filter: drop-shadow(0px 0px 80px rgba(0, 0, 0, 0.8));
}

.lp-grad-text {
  background-image: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.lp-h3 {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 1 0 1rem;
}

.lp-lead {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.lp-section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.lp-section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

/* ----- intro + stats ----- */
.lp-intro-panel {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  text-align: center;
}
.lp-intro-panel .lp-lead {
  max-width: 880px;
  margin: 0 auto;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.lp-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.lp-stat-num {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  background-image: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lp-card {
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 0%),
    rgba(129, 140, 248, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.lp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 50px rgba(129, 140, 248, 0.25);
}
.lp-card:hover::before {
  opacity: 1;
}

.lp-card-icon {
  font-size: 2.75rem;
  background-image: var(--lp-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.4));
}
.lp-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0.6rem;
}
.lp-card p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================================
   SPOTLIGHT (two-column alternating)
   ============================================================ */
.lp-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-spotlight-rev .lp-spot-text {
  order: 2;
}

.lp-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--neon-1);
  margin-bottom: 1rem;
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}
.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}
.lp-checklist .material-symbols-outlined {
  font-size: 1.4rem;
  background-image: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----- mock UI shared chrome ----- */
.lp-mock {
  padding: 0;
  overflow: hidden;
}
.lp-mock-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--glass-border);
}
.lp-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.lp-dot:nth-child(1) {
  background: #ff5f57;
}
.lp-dot:nth-child(2) {
  background: #febc2e;
}
.lp-dot:nth-child(3) {
  background: #28c840;
}
.lp-mock-title {
  margin-left: 0.6rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.lp-mock-body {
  padding: 1.4rem;
}

/* ----- email mock ----- */
.lp-mail-field {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
}
.lp-mail-field > span {
  color: rgba(255, 255, 255, 0.5);
  min-width: 58px;
  font-weight: 300;
}
.lp-mail-field p {
  margin: 0;
  color: #fff;
  font-weight: 300;
}
.lp-mail-body {
  flex-direction: column;
  gap: 0.5rem;
}
.lp-mail-body p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.lp-score {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
}
.lp-score-ring {
  --score: 92;
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: conic-gradient(
    from -90deg,
    #17f16b 0%,
    #2bcc89 calc(var(--score) * 0.5%),
    #00fd61 calc(var(--score) * 1%),
    rgba(255, 255, 255, 0.08) calc(var(--score) * 1%)
  );
  transition: background 1.2s ease;
}
.lp-score-ring-inner {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #05060a;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
}
.lp-score-num {
  font-size: 1.9rem;
  font-weight: 700;
  background-image: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-score-ring-inner small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.lp-score-bars {
  flex: 1;
  display: grid;
  gap: 0.65rem;
}
.lp-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}
.lp-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.lp-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background-image: var(--lp-grad);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.in-view .lp-bar i {
  width: var(--w);
}

.lp-feedback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
}
.lp-chip {
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
}
.lp-chip-good {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.08);
}
.lp-chip-tip {
  color: #febc2e;
  border-color: rgba(254, 188, 46, 0.4);
  background: rgba(254, 188, 46, 0.08);
}

/* ----- spreadsheet mock ----- */
.lp-formula-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--glass-border);
}
.lp-fx {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.lp-formula-bar code {
  color: var(--neon-1);
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
}
.lp-sheet {
  padding: 0.5rem 1rem 1rem;
}
.lp-sheet-row {
  display: grid;
  grid-template-columns: 44px 1fr 1fr;
  font-size: 0.95rem;
  font-weight: 300;
}
.lp-sheet-row > span {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-sheet-head > span,
.lp-sheet-row > span:first-child {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.lp-sheet-total {
  font-weight: 600;
}
.lp-cell-active {
  position: relative;
  color: #05060a !important;
  background-image: var(--lp-grad) !important;
  font-weight: 700;
  border-radius: 4px;
}
.lp-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 90px;
  padding: 0 1.25rem 1.25rem;
}
.lp-chart-bar {
  flex: 1;
  height: 0;
  border-radius: 6px 6px 0 0;
  background-image: linear-gradient(to top, var(--neon-1), var(--neon-4));
  transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.3);
}
.in-view .lp-chart-bar {
  height: var(--h);
}

/* ----- sandbox desktop mock ----- */
.lp-desk {
  position: relative;
  height: 320px;
  background:
    radial-gradient(
      120% 120% at 80% 10%,
      rgba(129, 140, 248, 0.35),
      transparent 55%
    ),
    radial-gradient(
      120% 120% at 10% 90%,
      rgba(56, 189, 248, 0.3),
      transparent 55%
    ),
    #0a0b14;
  overflow: hidden;
}
.lp-window {
  position: absolute;
  border-radius: 12px;
  background: rgba(12, 14, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: float-win 7s ease-in-out infinite;
}
.lp-window-a {
  width: 56%;
  top: 26px;
  left: 24px;
}
.lp-window-b {
  width: 40%;
  top: 96px;
  right: 22px;
  animation-delay: 1.5s;
}
@keyframes float-win {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.lp-window-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}
.lp-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon-3);
}
.lp-window-body {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  min-height: 70px;
}
.lp-caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--neon-1);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.lp-calc {
  display: grid;
  gap: 0.5rem;
}
.lp-calc-screen {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--neon-1);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}
.lp-calc-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lp-calc-keys i {
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.lp-taskbar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}
.lp-taskbar .material-symbols-outlined {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}
.lp-taskbar .material-symbols-outlined:hover {
  color: var(--neon-1);
  transform: translateY(-4px);
}

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.lp-step {
  padding: 2.25rem 1.75rem;
  position: relative;
}
.lp-step-no {
  font-size: 3rem;
  font-weight: 700;
  background-image: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.lp-step h3 {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.6rem;
}
.lp-step p {
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================================
   CTA
   ============================================================ */
.lp-cta-section {
  padding-bottom: 7rem;
}
.lp-cta {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.lp-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at 50% 120%,
    rgba(192, 132, 252, 0.25),
    transparent 60%
  );
  pointer-events: none;
}
.lp-cta .lp-lead {
  max-width: 640px;
  margin: 0 auto;
}
.lp-cta .lp-hero-cta {
  position: relative;
  animation: none;
  opacity: 1;
  margin-top: 2.25rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FOOTER (matches site standard)
   ============================================================ */
hr {
  margin-top: 4rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer {
  display: flex;
  justify-content: space-around;
  width: 100%;
  backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.02);
}
.footer-logo {
  color: white;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  padding-bottom: 1%;
  margin-top: 2%;
}
.footer-links {
  color: white;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  text-align: right;
  margin-top: 3%;
}
.footer-link {
  font-family: "Josefin Sans", sans-serif;
  color: white;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.footer-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}
.footer-link:hover::after {
  transform: scaleX(1);
}
.footer-link-donate {
  background-image: var(--lp-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: #fff;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.footer-link-donate:hover {
  color: transparent;
}
.social-media {
  text-align: right;
  margin-top: 3%;
  margin-bottom: 10px;
}

/* ============================================================
   RESPONSIVE — matches site breakpoints (900px, 520px)
   ============================================================ */
@media (max-width: 900px) {
  .nav {
    height: auto;
    padding: 0.75rem 1rem 0;
    align-items: center;
    gap: 0.5rem;
    position: fixed;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 0.75rem;
    order: 2;
    font-size: 2.25rem;
  }
  .logo-text {
    position: absolute;
    left: 50%;
    transform: translateX(-56%);
    margin-left: 0;
    top: 0.75rem;
    margin-top: 0;
    text-align: center;
    width: auto;
    flex: none;
    z-index: 1202;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0.1rem 0.5rem 0.5rem;
    width: 100%;
  }
  .menu-open .nav-links {
    display: flex;
  }
  .nav-links a,
  .nav-links .donate {
    display: block;
    width: fit-content;
    max-width: 100%;
    text-align: right;
    padding: 0.75rem 1rem;
    margin: 0.125rem 0;
    font-size: 1.25rem;
  }
  .nav-links .donate {
    margin-bottom: 0.25rem;
    align-self: flex-end;
    display: inline-flex;
  }
  .navlink,
  .donate {
    font-size: 1.1rem;
    padding: 0.4rem 0.6rem;
  }

  .lp-section {
    padding: 4rem 1.25rem;
  }
  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-spotlight {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* keep natural reading order when stacked */
  .lp-spotlight-rev .lp-spot-text {
    order: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem 0.75rem;
  }
  .logo-text {
    top: 0.6rem;
    transform: translateX(-54%);
    font-size: 1.125rem;
  }
  .navlink,
  .donate {
    font-size: 1rem;
    padding: 0.5rem 0.6rem;
  }

  .lp-hero {
    min-height: calc(100vh - 60px);
  }
  .lp-eyebrow {
    letter-spacing: 0.4em;
    font-size: 0.8rem;
  }
  .lp-stats {
    grid-template-columns: 1fr;
  }
  .lp-score {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-btn {
    font-size: 1.05rem;
  }

  footer {
    display: block;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
  }
  .footer-logo {
    text-align: center;
    display: block;
    margin: 0 auto 0.75rem;
  }
  .footer-links {
    text-align: center;
    display: block;
  }
  .social-media {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .lp-ink,
  .js .lp-ink {
    fill-opacity: 1 !important;
    stroke-opacity: 0 !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  .lp-pen-tip {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .lp-bar i {
    width: var(--w);
  }
  .lp-chart-bar {
    height: var(--h);
  }
}
