/* =========================================================================
   PowerPump landing — brand system
   ========================================================================= */

:root {
  --bg: #050d1a;
  --bg-2: #0a1628;
  --bg-3: #0f1d34;
  --line: rgba(0, 184, 255, 0.14);
  --line-strong: rgba(0, 184, 255, 0.35);
  --neon: #00b8ff;
  --neon-dim: #0d8fc4;
  --neon-glow: 0 0 24px rgba(0, 184, 255, 0.45);
  --neon-glow-soft: 0 0 12px rgba(0, 184, 255, 0.25);
  --text: #ffffff;
  --text-2: #b8c5d6;
  --text-3: #7d8ba1;
  --text-4: #4f5d75;
  --danger: #ff6b6b;
  --ok: #2ee06d;

  --ff-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  --ff-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --radius: 6px;
  --radius-lg: 12px;
  --container: 1200px;
  --nav-h: 64px;
}

/* =========================================================================
   Reset
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 12px;
  background: var(--neon);
  color: #001022;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* =========================================================================
   Background layers (grid + scanlines + glow)
   ========================================================================= */
.bg-grid,
.bg-scanlines,
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(0, 184, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 184, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
}
.bg-scanlines {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.55;
}
.bg-glow {
  background:
    radial-gradient(40rem 30rem at 20% -10%, rgba(0, 184, 255, 0.10), transparent 60%),
    radial-gradient(35rem 25rem at 90% 30%, rgba(0, 184, 255, 0.06), transparent 60%),
    radial-gradient(50rem 40rem at 50% 110%, rgba(0, 184, 255, 0.08), transparent 60%);
}

/* Make every section sit above bg layers */
.navbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   Container + section rhythm
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  position: relative;
  padding: clamp(64px, 10vw, 128px) 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type {
  border-top: 0;
}

/* =========================================================================
   Type
   ========================================================================= */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--neon);
  text-transform: lowercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-2);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  max-width: 64ch;
}
.accent {
  color: var(--neon);
  text-shadow: 0 0 18px rgba(0, 184, 255, 0.55);
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-family: var(--ff-mono);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--neon);
  color: #001022;
  border-color: var(--neon);
  box-shadow: var(--neon-glow-soft);
  animation: ppPulse 3s ease-in-out infinite;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--neon-glow), 0 0 36px rgba(0, 184, 255, 0.35);
  transform: translateY(-1px);
  outline: none;
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow-soft);
  outline: none;
}
.btn-lg {
  height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

@keyframes ppPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 184, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 24px rgba(0, 184, 255, 0.55), 0 0 48px rgba(0, 184, 255, 0.18);
  }
}

/* =========================================================================
   Navbar
   ========================================================================= */
.navbar {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  z-index: 50;
  background: rgba(5, 13, 26, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.nav-logo-text {
  font-family: var(--ff-display);
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  color: var(--text);
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--text-2);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--neon);
  outline: none;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--text-3);
}
.lang-btn {
  padding: 4px 6px;
  letter-spacing: 0.05em;
  transition: color 0.15s ease;
}
.lang-btn.is-active {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 184, 255, 0.45);
}
.lang-btn:hover {
  color: var(--text);
}
.lang-sep {
  opacity: 0.5;
}
.nav-cta {
  height: 38px;
  padding: 0 16px;
  font-size: 0.8rem;
}

/* Discovery pill — appears before the main nav links */
.nav-links .nav-discovery,
.nav-links .nav-auth {
  padding: 5px 14px;
  background: rgba(0, 184, 255, 0.1);
  border: 1px solid rgba(0, 184, 255, 0.45);
  border-radius: 999px;
  color: var(--neon);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-links .nav-discovery::after,
.nav-links .nav-auth::after {
  display: none;
}
.nav-links .nav-discovery:hover,
.nav-links .nav-discovery:focus-visible,
.nav-links .nav-discovery.is-active,
.nav-links .nav-auth:hover,
.nav-links .nav-auth:focus-visible,
.nav-links .nav-auth.is-active {
  background: rgba(0, 184, 255, 0.2);
  border-color: var(--neon);
  box-shadow: var(--neon-glow-soft);
  color: var(--neon);
  outline: none;
}
.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-burger span:nth-child(1) {
  top: 11px;
}
.nav-burger span:nth-child(2) {
  top: 17px;
}
.nav-burger span:nth-child(3) {
  top: 23px;
}
.nav-burger[aria-expanded='true'] span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.nav-burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded='true'] span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

/* =========================================================================
   HUD primitives: corners, modules, tags
   ========================================================================= */
.hud-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--neon);
  opacity: 0.55;
}
.hud-tl {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}
.hud-tr {
  top: 16px;
  right: 16px;
  border-left: 0;
  border-bottom: 0;
}
.hud-bl {
  bottom: 16px;
  left: 16px;
  border-right: 0;
  border-top: 0;
}
.hud-br {
  bottom: 16px;
  right: 16px;
  border-left: 0;
  border-top: 0;
}

.hud-module {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 29, 52, 0.6), rgba(10, 22, 40, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.hud-module:hover {
  border-color: var(--line-strong);
  box-shadow: var(--neon-glow-soft);
}
.hud-module::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    600px 80px at 50% -10%,
    rgba(0, 184, 255, 0.08),
    transparent 60%
  );
}
.hud-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--neon);
  margin-bottom: 14px;
  opacity: 0.85;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 0 clamp(64px, 10vw, 96px);
  border-top: 0;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-status {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-status-tl {
  top: 24px;
  left: 24px;
}
.hero-status-tr {
  top: 24px;
  right: 24px;
}
.hero-status-bl {
  bottom: 24px;
  left: 24px;
}
.hero-status-br {
  bottom: 24px;
  right: 24px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.dot-online {
  background: var(--ok);
  box-shadow: 0 0 8px rgba(46, 224, 109, 0.7);
  animation: ppBlink 1.6s ease-in-out infinite;
}
.dot-ready {
  background: var(--neon);
  box-shadow: 0 0 8px rgba(0, 184, 255, 0.7);
  animation: ppBlink 2.2s ease-in-out infinite;
}
@keyframes ppBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: 0.02em;
}
.hero-title .display {
  display: block;
}
.hero-terminal {
  margin-top: 18px;
  font-family: var(--ff-mono);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--text-2);
}
.term-prefix {
  color: var(--text-3);
  margin-right: 8px;
}
.term-typed {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0, 184, 255, 0.4);
}
.term-caret {
  display: inline-block;
  color: var(--neon);
  font-weight: 700;
  margin-left: 2px;
  animation: ppCaret 1s steps(2) infinite;
}
@keyframes ppCaret {
  50% { opacity: 0; }
}

.hero-sub {
  margin-top: 24px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--text-2);
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--neon);
  text-shadow: 0 0 14px rgba(0, 184, 255, 0.35);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

/* =========================================================================
   Method
   ========================================================================= */
.method-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.method-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 4px 0 10px;
}
.method-card p {
  color: var(--text-2);
}

.lifts-head {
  margin: 72px 0 24px;
}
.lifts-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.lift-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 29, 52, 0.7), rgba(10, 22, 40, 0.5));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.lift-card:hover {
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow-soft);
}
.lift-num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--neon);
  letter-spacing: 0.06em;
}
.lift-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.lift-meta {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--text-3);
}

/* =========================================================================
   How it works
   ========================================================================= */
.section-how {
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.4), transparent);
}
.how-steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}
.how-step h3 {
  font-size: 1.2rem;
  margin: 6px 0 8px;
  font-weight: 600;
}
.how-step p {
  color: var(--text-2);
  font-size: 0.95rem;
}
.step-label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--neon);
  letter-spacing: 0.04em;
}
.how-tag {
  margin-top: 32px;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--text-3);
  text-align: center;
}

/* =========================================================================
   Features
   ========================================================================= */
.features-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 14px 0 8px;
}
.feature-card p {
  color: var(--text-2);
  font-size: 0.92rem;
}
.feature-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--neon);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 184, 255, 0.06);
  box-shadow: var(--neon-glow-soft);
}
.feature-ico svg {
  width: 22px;
  height: 22px;
}

/* =========================================================================
   Steph — AI Coach
   ========================================================================= */
.section-steph {
  background:
    radial-gradient(60rem 30rem at 50% -20%, rgba(0, 184, 255, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.steph-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.steph-caps {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.steph-caps li {
  display: flex;
  gap: 12px;
  color: var(--text-2);
}
.cap-bullet {
  color: var(--neon);
  font-weight: 700;
}
.steph-medical {
  margin-top: 24px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--text-3);
  border-left: 2px solid var(--neon-dim);
  padding-left: 12px;
}

.steph-chat {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 29, 52, 0.85), rgba(10, 22, 40, 0.85));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--neon-glow), 0 30px 70px rgba(0, 0, 0, 0.55);
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid var(--line);
}
.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neon);
  color: #001022;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  box-shadow: var(--neon-glow-soft);
}
.chat-name {
  font-family: var(--ff-display);
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.chat-tag {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--text-3);
}
.chat-body {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}
.msg {
  display: grid;
  gap: 4px;
  max-width: 88%;
}
.msg-meta {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--text-3);
}
.msg p {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.msg-user {
  justify-self: end;
  text-align: right;
}
.msg-user p {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
}
.msg-steph {
  justify-self: start;
}
.msg-steph p {
  background: rgba(0, 184, 255, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

/* =========================================================================
   Pricing
   ========================================================================= */
.price-toggle {
  margin: 32px 0 40px;
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.6);
  font-family: var(--ff-mono);
  font-size: 0.85rem;
}
.price-toggle-btn {
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.price-toggle-btn.is-active {
  background: var(--neon);
  color: #001022;
  box-shadow: var(--neon-glow-soft);
}
.price-save {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}
.price-toggle-btn:not(.is-active) .price-save {
  background: rgba(0, 184, 255, 0.15);
  color: var(--neon);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card header h3 {
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.price-desc {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-top: 8px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.price-value {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--text);
}
.price-period {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--text-3);
}
.price-feats {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.price-feats li {
  position: relative;
  padding-left: 22px;
}
.price-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 8px;
  border-left: 1.5px solid var(--neon);
  border-bottom: 1.5px solid var(--neon);
  transform: rotate(-45deg);
}
.price-cta {
  margin-top: auto;
  align-self: stretch;
}

.price-card-pro {
  border-color: var(--neon);
  box-shadow: var(--neon-glow), inset 0 0 30px rgba(0, 184, 255, 0.06);
}
.price-card-pro::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.6), transparent 40%, transparent 60%, rgba(0, 184, 255, 0.6));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.5;
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  background: var(--neon);
  color: #001022;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--neon-glow-soft);
}

.price-foot {
  margin-top: 28px;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--text-3);
}

/* =========================================================================
   Creator
   ========================================================================= */
.section-creator {
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.4), transparent);
}
.creator-inner {
  max-width: 760px;
  text-align: center;
}
.creator-inner .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}
.creator-title {
  text-transform: none;
}
.creator-body {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.creator-tag {
  margin-top: 22px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--neon);
  opacity: 0.8;
}

/* =========================================================================
   Final CTA
   ========================================================================= */
.section-final {
  position: relative;
  text-align: center;
  background:
    radial-gradient(60rem 30rem at 50% 50%, rgba(0, 184, 255, 0.12), transparent 60%),
    linear-gradient(180deg, transparent, rgba(0, 184, 255, 0.04), transparent);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.final-inner {
  max-width: 880px;
  display: grid;
  justify-items: center;
  gap: 20px;
}
.final-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
  max-width: 18ch;
}
.final-tag {
  margin-top: 8px;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: var(--text-3);
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 22, 0.7));
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 360px;
}
.footer-tagline {
  color: var(--text-2);
  font-size: 0.92rem;
}
.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--neon);
  margin-bottom: 14px;
}
.footer-col ul {
  display: grid;
  gap: 8px;
}
.footer-col a {
  color: var(--text-2);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--neon);
  outline: none;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--text-4);
}

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Responsive — 1024 ↓
   ========================================================================= */
@media (max-width: 1024px) {
  .method-grid,
  .how-steps,
  .features-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lifts-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .steph-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

/* =========================================================================
   Responsive — 768 ↓ (tablet)
   ========================================================================= */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 13, 26, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-burger {
    display: inline-flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links .nav-discovery,
  .nav-links .nav-auth {
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    color: var(--neon);
    width: 100%;
  }
  .hero-status-tl,
  .hero-status-tr,
  .hero-status-bl,
  .hero-status-br {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
}

/* =========================================================================
   Responsive — 560 ↓ (phone)
   ========================================================================= */
@media (max-width: 560px) {
  .method-grid,
  .how-steps,
  .features-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .lifts-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hud-corner {
    width: 18px;
    height: 18px;
  }
  .section {
    padding: 64px 0;
  }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .term-caret {
    animation: none;
    opacity: 1;
  }
}

/* =========================================================================
   Focus
   ========================================================================= */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
  border-radius: 4px;
}
