@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Syne:wght@400;500;600;700;800&display=swap");

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

:root {
  --bg: #060608;
  --bg2: #0c0c10;
  --bg3: #121218;
  --lime: #c8ff00;
  --orange: #ff4d00;
  --w: #f2f2ee;
  --m: rgba(242, 242, 238, 0.42);
  --line: rgba(242, 242, 238, 0.07);
  --scroll: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--w);
  font-family: "DM Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 255, 0, 0.42) rgba(10, 10, 14, 0.95);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 14, 0.98);
  border-left: 1px solid rgba(242, 242, 238, 0.06);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.4), rgba(255, 77, 0, 0.28));
  border-radius: 100px;
  border: 2px solid rgba(10, 10, 14, 0.98);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.6), rgba(255, 77, 0, 0.45));
}

body.has-sticky-cta:not(.waitlist-in-view) {
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

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

button {
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  border: none;
  outline: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

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

@keyframes tickScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 40px 8px rgba(200, 255, 0, 0.12);
  }
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(20px);
  animation: fadeIn 0.6s ease both;
}

.logo {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1px;
}

.logo-dot {
  color: var(--lime);
}

.nav-center {
  display: flex;
  gap: 36px;
  font-size: 13.5px;
  color: var(--m);
  font-weight: 400;
}

.nav-center a {
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--w);
}

.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  color: var(--w);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid rgba(242, 242, 238, 0.14);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(242, 242, 238, 0.3);
  background: rgba(242, 242, 238, 0.04);
}

.btn-lime {
  background: var(--lime);
  color: var(--bg);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-lime:hover {
  background: #d8ff22;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 255, 0, 0.28);
}

a.btn-lime,
a.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero {
  --mx: 0.5;
  --my: 0.5;
  padding: 100px 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(200, 255, 0, 0.05) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255, 77, 0, 0.05) 0%, transparent 50%);
  will-change: transform;
  transform: translate3d(
      calc((var(--mx) - 0.5) * 32px + var(--scroll, 0) * -14px),
      calc((var(--my) - 0.5) * 32px + var(--scroll, 0) * 12px),
      0
    )
    scale(calc(1 + var(--scroll, 0) * 0.05));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  will-change: transform;
  transform: translate3d(
      calc((var(--mx) - 0.5) * -18px),
      calc((var(--my) - 0.5) * -18px + var(--scroll, 0) * 22px),
      0
    )
    rotate(calc((var(--mx) - 0.5) * 2.5deg + var(--scroll, 0) * -1deg))
    scale(calc(1.03 - var(--scroll, 0) * 0.03));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-left {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.1s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  border: 1px solid rgba(200, 255, 0, 0.22);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

h1 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  color: var(--w);
}

h1 .lime {
  color: var(--lime);
}

.hero-europe {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(242, 242, 238, 0.55);
  margin-bottom: 14px;
  max-width: 440px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--m);
  max-width: 440px;
  margin-bottom: 18px;
}

.hero-urgency {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(242, 242, 238, 0.5);
  max-width: 440px;
  margin-bottom: 28px;
  line-height: 1.45;
}

.hero-urgency-line strong {
  color: var(--lime);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary-lg {
  background: var(--lime);
  color: var(--bg);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 34px;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: glowPulse 3s infinite;
}

.btn-primary-lg:hover {
  background: #d8ff22;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200, 255, 0, 0.3);
}

.btn-outline-lg {
  background: transparent;
  color: var(--w);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 8px;
  border: 1px solid rgba(242, 242, 238, 0.18);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-lg:hover {
  border-color: rgba(242, 242, 238, 0.4);
  background: rgba(242, 242, 238, 0.04);
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--m);
  font-weight: 400;
}

.trust-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--lime);
}

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.25s ease both;
}

.card-scene {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 40px 0;
  perspective: 1180px;
  perspective-origin: 50% 45%;
}

.card-wrap {
  animation: floatCard 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Card: flex layout so number/chip/footer never overlap */
.mp-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  --shine-x: 0.5;
  --shine-y: 0.5;
  width: 100%;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #111118 0%, #0a0a10 60%, #131320 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 32px 26px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(200, 255, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  transform: rotateX(var(--card-rx)) rotateY(var(--card-ry)) translateZ(0);
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.2s ease-out, box-shadow 0.25s ease;
}

.mp-card:hover {
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(200, 255, 0, 0.14),
    0 0 60px rgba(200, 255, 0, 0.06);
}

.mp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    calc(102deg + (var(--shine-x) - 0.5) * 38deg + var(--scroll, 0) * 16deg),
    transparent 36%,
    rgba(200, 255, 0, 0.08) 50%,
    transparent 64%
  );
  background-size: 220% 140%;
  background-position: calc(12% + var(--shine-x) * 40%) calc(8% + var(--shine-y) * 35%);
  pointer-events: none;
  transition: background-position 0.12s ease-out, opacity 0.2s ease, background 0.25s ease;
  opacity: calc(0.86 + (var(--shine-y) - 0.5) * 0.14);
}

.card-chip {
  width: 42px;
  height: 32px;
  background: var(--lime);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
  opacity: 0.92;
}

.card-chip::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.card-brand-mini {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  line-height: 1.2;
}

.card-brand-mini .lime {
  color: var(--lime);
}

.card-mid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.card-num-display {
  font-family: "Syne", ui-monospace, monospace;
  font-size: clamp(13px, 2.8vw, 16px);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0 4px;
}

.card-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.card-holder-block {
  min-width: 0;
}

.card-holder-name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.card-holder-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 6px;
}

.card-logo-area {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.card-logo-area .lime,
.card-logo-area em {
  color: var(--lime);
  font-style: normal;
}

.card-glow {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.card-glow2 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.card-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cbadge {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.cbadge.lime {
  background: rgba(200, 255, 0, 0.1);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.2);
}

.cbadge.orange {
  background: rgba(255, 77, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.cbadge.white {
  background: rgba(242, 242, 238, 0.05);
  color: var(--m);
  border: 1px solid rgba(242, 242, 238, 0.1);
}

/* ── Floating perk pills ── */
.card-scene { overflow: visible; }

.cperk {
  position: absolute;
  background: rgba(10, 10, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(242, 242, 238, 0.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  animation: perkFloat 0.7s ease both;
  pointer-events: none;
}

@keyframes perkFloat {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cperk-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }

.cperk-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(242, 242, 238, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.cperk-sub {
  font-size: 10px;
  color: rgba(242, 242, 238, 0.35);
  margin-top: 2px;
  white-space: nowrap;
}

/* Positions — relative to card-scene (380px wide) */
.cperk-1 { top: 30px;  left: -130px; animation-delay: 0.3s; }
.cperk-2 { top: 20px;  right: -130px; animation-delay: 0.45s; }
.cperk-3 { top: 38%;   left: -140px; animation-delay: 0.6s; }
.cperk-4 { top: 32%;   right: -140px; animation-delay: 0.55s; }
.cperk-5 { bottom: 90px; left: -120px; animation-delay: 0.7s; }
.cperk-6 { bottom: 90px; right: -120px; animation-delay: 0.65s; }

/* Subtle idle float animation per pill */
.cperk-1, .cperk-3, .cperk-5 { animation-name: perkFloat, perkBobL; animation-duration: 0.7s, 4.2s; animation-delay: 0.3s, 1s; animation-timing-function: ease, ease-in-out; animation-fill-mode: both, none; animation-iteration-count: 1, infinite; }
.cperk-2, .cperk-4, .cperk-6 { animation-name: perkFloat, perkBobR; animation-duration: 0.7s, 4.5s; animation-delay: 0.45s, 1.2s; animation-timing-function: ease, ease-in-out; animation-fill-mode: both, none; animation-iteration-count: 1, infinite; }

@keyframes perkBobL {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes perkBobR {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(6px); }
}

/* Hide perks on smaller screens where there's no room */
@media (max-width: 1100px) {
  .cperk { display: none; }
}

.hero-scroll-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 28px;
  position: relative;
  z-index: 2;
}

.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.35);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  transition: color 0.2s, transform 0.2s;
}

.hero-scroll-hint:hover {
  color: var(--lime);
  transform: translateY(2px);
}

.hero-scroll-arrow {
  font-size: 16px;
  letter-spacing: 0;
  animation: scrollNudge 2.2s ease-in-out infinite;
}

@keyframes scrollNudge {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  background: var(--bg2);
}

.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickScroll 28s linear infinite;
}

.ticker--short {
  gap: 72px;
  animation-duration: 42s;
}

.tick-i {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.18);
  flex-shrink: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 18px;
}

.tick-i::after {
  content: "◆";
  color: var(--lime);
  opacity: 0.4;
  font-size: 7px;
}

section {
  position: relative;
}

.how-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}

.sec-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.sec-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 60px;
}

.sec-title em {
  color: var(--lime);
  font-style: normal;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--bg2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.step-card:hover {
  background: var(--bg3);
}

.step-card:first-child {
  border-radius: 14px 0 0 14px;
}

.step-card:last-child {
  border-radius: 0 14px 14px 0;
}

.step-n {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-n::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 255, 0, 0.18);
}

.step-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.step-icon-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 255, 0, 0.1);
  animation: spin 12s linear infinite;
}

.step-inner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.step-inner-dot.or {
  background: var(--orange);
}

.step-icon-ring.or {
  border-color: rgba(255, 77, 0, 0.25);
}

.step-t {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.step-d {
  font-size: 14px;
  color: var(--m);
  line-height: 1.65;
  font-weight: 400;
}

.step-bg-n {
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -4px;
  pointer-events: none;
}

.product-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-info .sec-title {
  margin-bottom: 20px;
}

.product-info p {
  font-size: 16px;
  color: var(--m);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 480px;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(242, 242, 238, 0.78);
  font-weight: 400;
}

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--lime);
  stroke-width: 2.5;
  fill: none;
}

.product-visual {
  position: relative;
}

.earn-section {
  padding: 72px 56px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.earn-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.earn-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.earn-title em {
  color: var(--lime);
  font-style: normal;
}

.earn-lead {
  font-size: 16px;
  color: var(--m);
  line-height: 1.7;
  font-weight: 400;
}

.fiat-soon-section {
  padding: 80px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.fiat-soon-inner {
  max-width: 720px;
  margin: 0 auto;
}

.fiat-soon-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.fiat-soon-title em {
  color: var(--orange);
  font-style: normal;
}

.fiat-soon-lead {
  font-size: 16px;
  color: var(--m);
  line-height: 1.72;
  margin-bottom: 24px;
}

.fiat-soon-lead strong {
  color: rgba(242, 242, 238, 0.78);
  font-weight: 600;
}

.fiat-soon-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.fiat-soon-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: rgba(242, 242, 238, 0.78);
  line-height: 1.5;
}

.fiat-soon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(200, 255, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.08);
}

.phone-frame {
  width: 260px;
  margin: 0 auto;
  background: var(--bg3);
  border-radius: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 20px 16px 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--bg);
  border-radius: 100px;
  margin: 0 auto 20px;
}

.phone-screen-head {
  text-align: center;
  margin-bottom: 20px;
}

.phone-balance-label {
  font-size: 11px;
  color: var(--m);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.phone-balance {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1.5px;
  color: var(--w);
}

.phone-change {
  font-size: 12px;
  color: var(--lime);
  margin-top: 6px;
  font-weight: 500;
}

.phone-card-mini {
  background: linear-gradient(135deg, #111118, #0a0a10);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.phone-card-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pcm-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Syne", ui-monospace, monospace;
  font-weight: 600;
}

.pcm-logo {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
}

.pcm-logo em {
  color: var(--lime);
  font-style: normal;
}

.phone-txs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ptx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  background: var(--bg2);
  border-radius: 10px;
}

.ptx-l {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ptx-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  font-family: "Syne", system-ui, sans-serif;
}

.ptx-icon.l {
  background: rgba(200, 255, 0, 0.12);
  color: var(--lime);
}

.ptx-icon.o {
  background: rgba(255, 77, 0, 0.12);
  color: var(--orange);
}

.ptx-icon.g {
  background: rgba(242, 242, 238, 0.06);
  color: rgba(242, 242, 238, 0.5);
}

.ptx-name {
  font-size: 12px;
  font-weight: 500;
}

.ptx-sub {
  font-size: 10px;
  color: var(--m);
}

.ptx-amt {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.ptx-amt.pos {
  color: var(--lime);
}

.ptx-amt.neg {
  color: var(--m);
}

.why-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg2);
  padding: 36px 28px;
  transition: background 0.25s;
}

.why-card:hover {
  background: var(--bg3);
}

.why-card:first-child {
  border-radius: 14px 0 0 14px;
}

.why-card:last-child {
  border-radius: 0 14px 14px 0;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(200, 255, 0, 0.2);
  background: rgba(200, 255, 0, 0.06);
}

.why-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lime);
  stroke-width: 1.5;
  fill: none;
}

.why-icon.or {
  border-color: rgba(255, 77, 0, 0.2);
  background: rgba(255, 77, 0, 0.06);
}

.why-icon.or svg {
  stroke: var(--orange);
}

.why-t {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.why-d {
  font-size: 14px;
  color: var(--m);
  line-height: 1.65;
  font-weight: 400;
}

.security-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}

.sec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sec-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.sec-point {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.sec-point:first-child {
  padding-top: 0;
}

.sec-point:last-child {
  border-bottom: none;
}

.sec-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(200, 255, 0, 0.07);
  border: 1px solid rgba(200, 255, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sec-point-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--lime);
  stroke-width: 1.5;
  fill: none;
}

.sec-point-t {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.sec-point-d {
  font-size: 14px;
  color: var(--m);
  line-height: 1.65;
  font-weight: 400;
}

.compliance-card {
  background: var(--bg3);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--line);
  margin-top: 20px;
}

.comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.comp-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comp-label {
  font-size: 13px;
  color: var(--m);
}

.comp-val {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.comp-val.lime {
  color: var(--lime);
}

.comp-val.or {
  color: var(--orange);
}

.comp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--lime);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.comp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 1.8s infinite;
}

.comp-divider {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.transparency-inline {
  padding: 56px 56px 0;
  background: var(--bg);
}

.transparency-box {
  border-top: 2px solid var(--orange);
  padding-top: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.transparency-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.transparency-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--w);
}

.transparency-text {
  font-size: 14px;
  color: var(--m);
  line-height: 1.75;
  font-weight: 400;
  max-width: 680px;
}

.waitlist-section {
  padding: 120px 56px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wl-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 255, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.waitlist-section .sec-label {
  text-align: center;
  margin-bottom: 14px;
}

.waitlist-section h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 16px;
}

.waitlist-section h2 em {
  color: var(--lime);
  font-style: normal;
}

.wl-sub {
  font-size: 17px;
  color: var(--m);
  font-weight: 400;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 48px;
}

.wl-sub-strong {
  display: block;
  color: rgba(242, 242, 238, 0.88);
  font-weight: 600;
  margin-bottom: 6px;
}

.wl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.wl-input {
  flex: 1;
  background: rgba(242, 242, 238, 0.05);
  color: var(--w);
  border: 1px solid rgba(242, 242, 238, 0.14);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: "DM Sans", system-ui, sans-serif;
  transition: border-color 0.2s, background 0.2s;
}

.wl-input::placeholder {
  color: rgba(242, 242, 238, 0.32);
}

.wl-input:focus {
  outline: none;
  border-color: rgba(200, 255, 0, 0.4);
  background: rgba(242, 242, 238, 0.07);
}

.wl-btn {
  background: var(--lime);
  color: var(--bg);
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 16px 24px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.wl-btn:hover {
  background: #d8ff22;
  transform: translateY(-1px);
}

.wl-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wl-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--m);
}

.wl-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  background: rgba(200, 255, 0, 0.3);
}

footer {
  padding: 40px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.5px;
}

.footer-logo em {
  color: var(--lime);
  font-style: normal;
}

.footer-meta {
  font-size: 11px;
  color: rgba(242, 242, 238, 0.22);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.footer-note {
  font-size: 11px;
  color: rgba(242, 242, 238, 0.2);
  max-width: 400px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: rgba(242, 242, 238, 0.32);
}

.footer-links a:hover {
  color: var(--w);
}

.sec-title--narrow {
  max-width: 420px;
}

.sec-title--security {
  max-width: 360px;
}

.wl-form.is-success .wl-input,
.wl-form.is-success .wl-btn {
  pointer-events: none;
  opacity: 0.85;
}

.wl-msg {
  display: none;
  margin: -20px auto 0;
  font-size: 14px;
  color: var(--lime);
  max-width: 420px;
}

.wl-form.is-success + .wl-msg {
  display: block;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 8, 0.92) 28%, rgba(6, 6, 8, 0.98) 100%);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta-copy {
  font-size: 13px;
  color: var(--m);
  line-height: 1.4;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.sticky-cta-copy strong {
  color: var(--w);
  font-weight: 600;
}

.btn-sticky {
  padding: 12px 22px;
  font-size: 12.5px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .steps,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:first-child {
    border-radius: 14px 0 0 0;
  }

  .step-card:nth-child(2) {
    border-radius: 0 14px 0 0;
  }

  .step-card:nth-child(3) {
    border-radius: 0 0 0 14px;
  }

  .step-card:last-child {
    border-radius: 0 0 14px 0;
  }

  .why-card:first-child {
    border-radius: 14px 0 0 0;
  }

  .why-card:nth-child(2) {
    border-radius: 0 14px 0 0;
  }

  .why-card:nth-child(3) {
    border-radius: 0 0 0 14px;
  }

  .why-card:last-child {
    border-radius: 0 0 14px 0;
  }
}

@media (max-width: 900px) {
  nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 14px;
    padding: max(14px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
      max(14px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-right {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-center {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    mask-image: linear-gradient(90deg, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
  }

  .nav-center::-webkit-scrollbar {
    display: none;
  }

  .nav-center a {
    flex-shrink: 0;
    padding: 10px 8px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: max(56px, env(safe-area-inset-top, 0px) + 40px) max(20px, env(safe-area-inset-right, 0px) + 16px)
      48px max(20px, env(safe-area-inset-left, 0px) + 16px);
    min-height: unset;
  }

  .product-section,
  .sec-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: max(20px, env(safe-area-inset-left, 0px) + 8px);
    padding-right: max(20px, env(safe-area-inset-right, 0px) + 8px);
  }

  .how-section,
  .why-section,
  .security-section,
  .waitlist-section,
  .transparency-inline,
  .earn-section,
  .fiat-soon-section {
    padding-left: max(20px, env(safe-area-inset-left, 0px) + 8px);
    padding-right: max(20px, env(safe-area-inset-right, 0px) + 8px);
  }

  .earn-section,
  .fiat-soon-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .transparency-box {
    flex-direction: column;
    gap: 20px;
  }

  .transparency-icon-wrap {
    align-self: flex-start;
  }

  footer {
    padding: 28px max(20px, env(safe-area-inset-left, 0px) + 8px) max(28px, env(safe-area-inset-bottom, 0px) + 8px)
      max(20px, env(safe-area-inset-right, 0px) + 8px);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}

@media (max-width: 600px) {
  body.has-sticky-cta:not(.waitlist-in-view) {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .sticky-cta-copy {
    text-align: center;
    min-width: 0;
    font-size: 12px;
  }

  .btn-sticky {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .nav-right .btn-ghost {
    padding: 10px 14px;
    min-height: 44px;
  }

  .nav-right .btn-lime {
    padding: 10px 16px;
    min-height: 44px;
    font-size: 11.5px;
  }

  .hero {
    text-align: center;
    padding-bottom: 36px;
  }

  .hero-right {
    order: -1;
    margin-bottom: 8px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: clamp(30px, 9.2vw, 46px);
    letter-spacing: -1.8px;
  }

  .hero-europe,
  .hero-sub,
  .hero-urgency {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
  }

  .hero-ctas {
    justify-content: center;
    width: 100%;
    margin-bottom: 36px;
  }

  .btn-primary-lg,
  .btn-outline-lg {
    min-height: 48px;
    padding: 14px 22px;
    font-size: 13px;
  }

  .trust-row {
    justify-content: center;
    width: 100%;
  }

  .hero-scroll-wrap {
    padding-top: 8px;
  }

  .card-scene {
    padding: 24px 0 8px;
    max-width: 100%;
  }

  .how-section,
  .why-section,
  .security-section,
  .product-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .waitlist-section {
    padding-top: 80px;
    padding-bottom: max(72px, env(safe-area-inset-bottom, 0px) + 48px);
  }

  .sec-title {
    margin-bottom: 40px;
  }

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

  .step-card,
  .why-card {
    border-radius: 14px !important;
    padding: 28px 20px;
  }

  .phone-frame {
    width: min(100%, 280px);
  }

  .compliance-card {
    padding: 28px 20px;
  }

  .wl-form {
    flex-direction: column;
    max-width: 100%;
  }

  .wl-input,
  .wl-btn {
    min-height: 48px;
    width: 100%;
  }

  .wl-btn {
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .card-num-display {
    letter-spacing: 0.14em;
    font-size: 12px;
  }

  .mpv-audience__strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px 16px;
  }

  .mpv-audience__strip-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  a.mpv-audience__badge {
    justify-content: center;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  a.mpv-tier__cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .nav-center {
    gap: 0 14px;
  }

  .nav-center a {
    font-size: 12px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-right .btn-ghost {
    display: none;
  }

  .nav-right {
    gap: 6px;
  }
}

html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html.reduce-motion .hero-scroll-arrow {
  animation: none;
  opacity: 0.7;
}

html.reduce-motion .hero-noise,
html.reduce-motion .hero-grid {
  transform: none;
  transition: none;
}

html.reduce-motion .mp-card {
  transform: none;
  transition: box-shadow 0.2s ease;
}

html.reduce-motion .card-shine {
  background: linear-gradient(105deg, transparent 40%, rgba(200, 255, 0, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 0 0;
  opacity: 1;
}

/* Audience tiers (from mindpay_visuals_v4) — scoped, no clash with main site */

.mpv-audience {
  --mpv-pu: #7b5dff;
  --mpv-pu-soft: #9b7dff;
  --mpv-or: #ff4d00;
  --mpv-line: rgba(242, 242, 238, 0.06);
  --mpv-m: rgba(242, 242, 238, 0.4);
  padding: 96px 56px 88px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.mpv-audience__inner {
  max-width: 1180px;
  margin: 0 auto;
}

@keyframes mpv-code-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes mpv-globe-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mpv-label-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.mpv-audience__head {
  text-align: center;
  margin-bottom: 48px;
}

.mpv-audience__kicker {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.mpv-audience__title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -2.5px;
  line-height: 0.93;
  margin-bottom: 12px;
  color: var(--w);
}

.mpv-audience__title em {
  color: var(--lime);
  font-style: normal;
}

.mpv-audience__lead {
  font-size: 15px;
  color: var(--mpv-m);
  font-weight: 400;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
}

.mpv-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.mpv-tier {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mpv-tier:first-child {
  border-radius: 18px 0 0 18px;
}

.mpv-tier:last-child {
  border-radius: 0 18px 18px 0;
}

.mpv-tier:hover {
  transform: translateY(-8px);
  z-index: 3;
}

.mpv-tier__bg {
  position: absolute;
  inset: 0;
}

.mpv-tier--b .mpv-tier__bg {
  background: #070d06;
}

.mpv-tier--o .mpv-tier__bg {
  background: #0e0906;
}

.mpv-tier--p .mpv-tier__bg {
  background: #06060f;
}

.mpv-tier__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0.5;
}

.mpv-tier--b .mpv-tier__glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.09) 0%, transparent 65%);
  top: -80px;
  right: -60px;
}

.mpv-tier--o .mpv-tier__glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.08) 0%, transparent 65%);
  top: -60px;
  right: -40px;
}

.mpv-tier--p .mpv-tier__glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(123, 93, 255, 0.09) 0%, transparent 65%);
  top: -80px;
  left: -60px;
}

.mpv-tier:hover .mpv-tier__glow {
  opacity: 1;
  transform: scale(1.2);
}

.mpv-tier__frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--mpv-line);
  pointer-events: none;
  transition: border-color 0.4s;
}

.mpv-tier:first-child .mpv-tier__frame {
  border-radius: 18px 0 0 18px;
}

.mpv-tier:last-child .mpv-tier__frame {
  border-radius: 0 18px 18px 0;
}

.mpv-tier--b:hover .mpv-tier__frame {
  border-color: rgba(200, 255, 0, 0.2);
}

.mpv-tier--o:hover .mpv-tier__frame {
  border-color: rgba(255, 77, 0, 0.18);
}

.mpv-tier--p:hover .mpv-tier__frame {
  border-color: rgba(123, 93, 255, 0.2);
}

.mpv-tier__body {
  position: relative;
  z-index: 1;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mpv-tier__vis {
  height: 106px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.4s;
  position: relative;
}

.mpv-tier--b .mpv-tier__vis {
  background: rgba(200, 255, 0, 0.025);
  border: 1px solid rgba(200, 255, 0, 0.07);
}

.mpv-tier--o .mpv-tier__vis {
  background: rgba(255, 77, 0, 0.025);
  border: 1px solid rgba(255, 77, 0, 0.06);
}

.mpv-tier--p .mpv-tier__vis {
  background: rgba(123, 93, 255, 0.03);
  border: 1px solid rgba(123, 93, 255, 0.07);
}

.mpv-tier--b:hover .mpv-tier__vis {
  border-color: rgba(200, 255, 0, 0.22);
}

.mpv-tier--o:hover .mpv-tier__vis {
  border-color: rgba(255, 77, 0, 0.2);
}

.mpv-tier--p:hover .mpv-tier__vis {
  border-color: rgba(123, 93, 255, 0.22);
}

.mpv-code {
  width: 100%;
  padding: 10px 14px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.7;
}

.mpv-code__line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 16px;
}

.mpv-code__num {
  color: rgba(200, 255, 0, 0.2);
  font-size: 9px;
  width: 12px;
  flex-shrink: 0;
  user-select: none;
}

.mpv-code__t {
  color: rgba(200, 255, 0, 0.55);
}

.mpv-code__t--kw {
  color: rgba(200, 255, 0, 0.85);
}

.mpv-code__t--str {
  color: rgba(200, 255, 0, 0.38);
  font-style: italic;
}

.mpv-code__t--dim {
  color: rgba(200, 255, 0, 0.22);
}

.mpv-code__cursor {
  display: inline-block;
  width: 5px;
  height: 11px;
  background: var(--lime);
  border-radius: 1px;
  animation: mpv-code-blink 0.9s infinite;
  vertical-align: middle;
  margin-left: 1px;
}

.mpv-rev {
  width: 100%;
  padding: 10px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mpv-rev__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mpv-rev__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 77, 0, 0.45);
}

.mpv-rev__right {
  text-align: right;
}

.mpv-rev__val {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -1px;
  color: var(--mpv-or);
  line-height: 1;
}

.mpv-rev__growth {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  color: rgba(255, 200, 0, 0.7);
  margin-top: 2px;
}

.mpv-rev__chart {
  position: relative;
  height: 52px;
  width: 100%;
  margin-top: 2px;
}

.mpv-rev__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mpv-globe {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpv-globe__svg-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  animation: mpv-globe-float 5s ease-in-out infinite;
  flex-shrink: 0;
}

.mpv-globe__svg {
  width: 100%;
  height: 100%;
}

.mpv-globe__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin-left: 10px;
}

.mpv-globe__name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.5px;
  color: var(--mpv-pu-soft);
  transition: opacity 0.3s, transform 0.3s;
  margin: 0;
}

.mpv-globe__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(123, 93, 255, 0.4);
  margin: 0;
}

.mpv-globe__coords {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  color: rgba(123, 93, 255, 0.3);
  margin: 0;
}

.mpv-tier__label {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
}

.mpv-tier--b .mpv-tier__label {
  color: var(--lime);
}

.mpv-tier--o .mpv-tier__label {
  color: var(--mpv-or);
}

.mpv-tier--p .mpv-tier__label {
  color: var(--mpv-pu-soft);
}

.mpv-tier__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: mpv-label-pulse 2s infinite;
}

.mpv-tier__name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1.5px;
  margin: 0 0 4px;
  color: var(--w);
}

.mpv-tier__role {
  font-size: 12.5px;
  color: var(--mpv-m);
  margin: 0 0 6px;
}

.mpv-tier__hook {
  font-size: 13.5px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242, 242, 238, 0.3);
  margin: 0 0 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--mpv-line);
}

.mpv-tier__bens {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mpv-tier__ben {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(242, 242, 238, 0.62);
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: all 0.22s;
}

.mpv-tier__bic {
  font-size: 13px;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.mpv-tier--b .mpv-tier__ben:hover {
  background: rgba(200, 255, 0, 0.05);
  border-color: rgba(200, 255, 0, 0.13);
  color: var(--w);
}

.mpv-tier--o .mpv-tier__ben:hover {
  background: rgba(255, 77, 0, 0.05);
  border-color: rgba(255, 77, 0, 0.11);
  color: var(--w);
}

.mpv-tier--p .mpv-tier__ben:hover {
  background: rgba(123, 93, 255, 0.05);
  border-color: rgba(123, 93, 255, 0.13);
  color: var(--w);
}

.mpv-tier__eco {
  border-radius: 9px;
  background: rgba(242, 242, 238, 0.02);
  border: 1px solid rgba(242, 242, 238, 0.05);
  padding: 12px 12px 10px;
  margin-bottom: auto;
  transition: border-color 0.35s;
}

.mpv-tier--b:hover .mpv-tier__eco {
  border-color: rgba(200, 255, 0, 0.1);
}

.mpv-tier--o:hover .mpv-tier__eco {
  border-color: rgba(255, 77, 0, 0.09);
}

.mpv-tier--p:hover .mpv-tier__eco {
  border-color: rgba(123, 93, 255, 0.1);
}

.mpv-tier__eco-lbl {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242, 242, 238, 0.2);
  margin: 0 0 9px;
}

.mpv-tier__eco-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(242, 242, 238, 0.32);
  margin: 0 0 5px;
}

.mpv-tier__eco-ic {
  font-size: 11px;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}

.mpv-tier__eco-note {
  font-size: 10px;
  color: rgba(242, 242, 238, 0.18);
  font-style: italic;
  margin: 8px 0 0;
  padding-top: 7px;
  border-top: 1px solid rgba(242, 242, 238, 0.04);
}

a.mpv-tier__cta {
  margin-top: 20px;
  width: 100%;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  padding: 13px 18px;
  border-radius: 9px;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  box-sizing: border-box;
}

.mpv-tier--b .mpv-tier__cta {
  background: rgba(200, 255, 0, 0.08);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.18);
}

.mpv-tier--b:hover .mpv-tier__cta {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.25);
}

.mpv-tier--o .mpv-tier__cta {
  background: rgba(255, 77, 0, 0.08);
  color: var(--mpv-or);
  border: 1px solid rgba(255, 77, 0, 0.16);
}

.mpv-tier--o:hover .mpv-tier__cta {
  background: var(--mpv-or);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.2);
}

.mpv-tier--p .mpv-tier__cta {
  background: rgba(123, 93, 255, 0.08);
  color: var(--mpv-pu-soft);
  border: 1px solid rgba(123, 93, 255, 0.16);
}

.mpv-tier--p:hover .mpv-tier__cta {
  background: var(--mpv-pu);
  color: #fff;
  box-shadow: 0 8px 30px rgba(123, 93, 255, 0.22);
}

.mpv-audience__strip {
  background: #06060a;
  border-radius: 0 0 18px 18px;
  border: 1px solid var(--mpv-line);
  border-top: none;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color 0.3s;
}

.mpv-audience__strip:hover {
  border-color: rgba(200, 255, 0, 0.1);
}

.mpv-audience__strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mpv-audience__dots {
  display: flex;
}

.mpv-audience__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #06060a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-left: -7px;
}

.mpv-audience__dot:first-child {
  margin-left: 0;
}

.mpv-audience__dot--b {
  background: rgba(200, 255, 0, 0.12);
}

.mpv-audience__dot--o {
  background: rgba(255, 77, 0, 0.1);
}

.mpv-audience__dot--p {
  background: rgba(123, 93, 255, 0.1);
}

.mpv-audience__strip-title {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
  margin: 0 0 2px;
  color: var(--w);
}

.mpv-audience__strip-sub {
  font-size: 12.5px;
  color: var(--mpv-m);
  font-weight: 300;
  margin: 0;
}

a.mpv-audience__badge {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  background: rgba(200, 255, 0, 0.05);
  transition: all 0.25s;
  text-decoration: none;
}

a.mpv-audience__badge:hover {
  background: rgba(200, 255, 0, 0.1);
  border-color: rgba(200, 255, 0, 0.35);
}

.mpv-audience__fineprint {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(242, 242, 238, 0.18);
  line-height: 1.65;
  text-align: center;
  font-style: italic;
}

@media (max-width: 1024px) {
  .mpv-audience__grid {
    grid-template-columns: 1fr;
  }

  .mpv-tier:first-child,
  .mpv-tier:last-child {
    border-radius: 18px;
  }

  .mpv-tier:first-child .mpv-tier__frame,
  .mpv-tier:last-child .mpv-tier__frame {
    border-radius: 18px;
  }

  .mpv-audience__strip {
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 900px) {
  .mpv-audience {
    padding: 72px 24px 64px;
  }
}

html.reduce-motion .mpv-code__cursor,
html.reduce-motion .mpv-globe__svg-wrap,
html.reduce-motion .mpv-tier__dot {
  animation: none;
}


/* ======================================================
   CARD ENHANCEMENTS
   ====================================================== */

/* Holographic rainbow overlay */
.card-holo {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    calc(115deg + var(--holo-x, .5) * 80deg),
    transparent 0%,
    rgba(255,220,50,.09) 18%,
    rgba(80,255,180,.09) 36%,
    rgba(50,140,255,.08) 54%,
    rgba(200,50,255,.07) 72%,
    rgba(255,100,0,.07) 90%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
  z-index: 2;
}
.mp-card:hover .card-holo { opacity: 1; }

/* Circuit-board grid texture */
.mp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-image:
    linear-gradient(rgba(200,255,0,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,.028) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 15%, transparent 75%);
}

/* Diagonal glint sweep — like light reflecting off a physical card */
.mp-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -60%;
  width: 55%;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.03) 30%,
    rgba(255,255,255,.11) 50%,
    rgba(255,255,255,.03) 70%,
    transparent 100%
  );
  transform: skewX(-18deg) translateX(-30%);
  pointer-events: none;
  z-index: 5;
  animation: cardGlint 7s ease-in-out infinite;
}
@keyframes cardGlint {
  0%, 28%  { transform: skewX(-18deg) translateX(-30%);  opacity: 0; }
  34%      { opacity: 1; }
  62%      { opacity: 1; }
  68%, 100% { transform: skewX(-18deg) translateX(370%); opacity: 0; }
}

/* Metallic gradient chip */
.card-chip {
  background: linear-gradient(145deg,
    #e0f870 0%, #b8e000 22%, #ceff00 46%, #aad000 68%, #e0f870 100%
  ) !important;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.55),
    inset 0 -1px 1px rgba(0,0,0,.2),
    0 3px 10px rgba(0,0,0,.55) !important;
}
.card-chip::before {
  content: '';
  position: absolute;
  inset: 5px;
  background-image:
    linear-gradient(rgba(0,0,0,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.1) 1px, transparent 1px);
  background-size: 7px 6px;
  border-radius: 2px;
}

/* Top-right column: contactless + brand */
.card-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.card-contactless {
  opacity: 0.6;
  transition: opacity 0.25s;
}
.mp-card:hover .card-contactless { opacity: 1; }

/* Network logo (lime + orange overlapping circles) */
.card-network {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.card-network span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.card-network span:first-child {
  background: rgba(200,255,0,.82);
  margin-right: -11px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(200,255,0,.3);
}
.card-network span:last-child {
  background: rgba(255,77,0,.82);
  box-shadow: 0 2px 10px rgba(255,77,0,.3);
}

/* Enhanced glows on hover */
.card-glow, .card-glow2 { transition: background 0.45s, width 0.45s, height 0.45s; }
.mp-card:hover .card-glow {
  background: radial-gradient(circle, rgba(200,255,0,.26) 0%, transparent 65%);
}
.mp-card:hover .card-glow2 {
  background: radial-gradient(circle, rgba(255,77,0,.18) 0%, transparent 65%);
}

/* Outer scene ambient glow */
.card-scene::before {
  content: '';
  position: absolute;
  inset: -32px;
  border-radius: 40px;
  background: radial-gradient(ellipse at 50% 56%,
    rgba(200,255,0,.08) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.card-scene:hover::before { opacity: 1; }

/* Card number glow on hover */
.card-num-display { transition: text-shadow 0.35s; }
.mp-card:hover .card-num-display {
  text-shadow: 0 0 28px rgba(200,255,0,.28), 0 0 56px rgba(200,255,0,.1);
}

/* Step icon ring enhancement on hover */
.step-icon-ring { transition: border-color 0.3s, box-shadow 0.3s; }
.step-card:hover .step-icon-ring {
  border-color: rgba(200,255,0,.65);
  box-shadow: 0 0 18px rgba(200,255,0,.2);
}
.step-card:hover .step-icon-ring.or {
  border-color: rgba(255,77,0,.65);
  box-shadow: 0 0 18px rgba(255,77,0,.2);
}

/* Why-icon bounce on hover */
.why-icon { transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.25s, border-color 0.25s; }
.why-card:hover .why-icon { transform: scale(1.15) rotate(-6deg); }

/* ======================================================
   HERO PARTICLES
   ====================================================== */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleRise linear infinite;
  will-change: transform, opacity;
}
@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.9; }
  100% { transform: translateY(-110vh) translateX(var(--p-drift, 0px)); opacity: 0; }
}

/* ======================================================
   SCROLL REVEAL
   ====================================================== */
.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.25s, border-color 0.4s;
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   CARD PREMIUM REDESIGN — replaces previous blobs
   ====================================================== */

/* Rich dark background with subtle top-light */
.mp-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,.055) 0%, transparent 28%),
    linear-gradient(135deg, #1e1e2e 0%, #0c0c18 50%, #12121f 100%) !important;
  box-shadow:
    0 48px 110px rgba(0,0,0,.8),
    0 0 0 1px rgba(255,255,255,.09),
    inset 0 1px 0 rgba(255,255,255,.15) !important;
}

/* Kill the green blobs on card face — push them far off-edge */
.card-glow {
  width: 160px !important;
  height: 160px !important;
  bottom: -100px !important;
  left: -100px !important;
  background: radial-gradient(circle, rgba(200,255,0,.07) 0%, transparent 60%) !important;
}
.card-glow2 {
  width: 120px !important;
  height: 120px !important;
  top: -80px !important;
  right: -80px !important;
  background: radial-gradient(circle, rgba(255,77,0,.05) 0%, transparent 60%) !important;
}

/* Override hover glows — still subtle, no blob */
.mp-card:hover .card-glow {
  background: radial-gradient(circle, rgba(200,255,0,.1) 0%, transparent 60%) !important;
}
.mp-card:hover .card-glow2 {
  background: radial-gradient(circle, rgba(255,77,0,.07) 0%, transparent 60%) !important;
}

/* Replace rainbow blob with clean silver specular shimmer */
.card-holo {
  background: linear-gradient(
    calc(132deg + var(--holo-x, .5) * 52deg),
    transparent 25%,
    rgba(255,255,255,.02) 38%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.02) 62%,
    transparent 75%
  ) !important;
  mix-blend-mode: normal !important;
  opacity: 0 !important;
  transition: opacity 0.4s !important;
}
.mp-card:hover .card-holo { opacity: 1 !important; }

/* Subtle lime accent border glow (edge only) on hover */
.mp-card:hover {
  box-shadow:
    0 56px 120px rgba(0,0,0,.85),
    0 0 0 1px rgba(200,255,0,.18),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}
