/* RIFT — premium landing */
:root {
  --bg: #06080c;
  --bg2: #0c0f16;
  --surface: #111520;
  --neon: #00ffb2;
  --acid: #00ffb2;
  --acid-dim: rgba(0, 255, 178, 0.14);
  --neon-border: rgba(0, 255, 178, 0.28);
  --cyan: #00e5ff;
  --purple: #9b5cff;
  --text: #f0f4ff;
  --text-muted: rgba(240, 244, 255, 0.62);
  --text-faint: rgba(240, 244, 255, 0.38);
  --glass: rgba(12, 15, 22, 0.72);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-offset: clamp(96px, 12vmin, 140px);
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .brand-mark { transition: none; }
  .brand:hover .brand-mark,
  .brand:active .brand-mark { transform: none; }
  .feature-card,
  .feature-card::before,
  .feature-card::after,
  .feature-icon,
  .feature-icon svg,
  .feature-card h3 {
    transition: none;
  }
  .feature-card:hover {
    transform: none;
  }
  .feature-card:hover .feature-icon,
  .feature-card:hover .feature-icon svg {
    transform: none;
  }
  .feature-card:hover::after {
    opacity: 0;
  }
  .visual-frame,
  .visual-frame img {
    transition: none;
  }
  .visual-frame,
  .visual-frame--wide,
  .visual-frame--tall {
    transform: none;
  }
  .visual-frame--wide:hover,
  .visual-frame--tall:hover {
    transform: none;
  }
  .visual-frame--wide:hover img,
  .visual-frame--tall:hover img {
    transform: none;
  }
}

body.rift-site {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

.mono { font-family: var(--font-mono); }

/* Background layers */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 15% -10%, rgba(0, 255, 178, 0.11), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 20%, rgba(0, 229, 255, 0.07), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 110%, rgba(155, 92, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #06080c 0%, #030508 100%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(12deg) brightness(1.06); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 75% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.42) 100%);
}

.page, .footer { position: relative; z-index: 3; }

/* Nav — always on top while scrolling */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  max-width: var(--content);
  margin: 0 auto;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.78) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px 10px;
  margin: -6px -10px;
  border-radius: 8px;
  border: none;
  background: none;
  transition: background 0.2s ease;
}

.brand-mark {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--neon), var(--cyan));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 18px rgba(0, 255, 178, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.28em;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.14);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.brand:hover {
  background: rgba(0, 255, 178, 0.06);
}

.brand:hover .brand-text {
  color: var(--neon);
  text-shadow: 0 0 28px rgba(0, 255, 178, 0.35);
}

.brand:hover .brand-mark {
  transform: scale(1.14);
  box-shadow: 0 0 26px rgba(0, 255, 178, 0.7);
}

.brand:active {
  background: rgba(0, 229, 255, 0.1);
}

.brand:active .brand-text {
  color: var(--cyan);
  text-shadow: 0 0 32px rgba(0, 229, 255, 0.45);
}

.brand:active .brand-mark {
  transform: scale(1.06);
  filter: brightness(1.15);
}

.nav:has(.brand:hover) {
  border-color: rgba(0, 255, 178, 0.38);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(0, 255, 178, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 8px 6px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a:active {
  color: var(--neon);
  background: rgba(0, 255, 178, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-download {
  min-width: 7.25rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-download .lang {
  display: none;
}

.nav-download .lang.active {
  display: inline;
}

.lang-toggle {
  border: 1px solid rgba(240, 244, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 6px 12px;
  min-width: 2.75rem;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-toggle:hover {
  border-color: var(--neon-border);
  color: var(--neon);
  background: rgba(0, 255, 178, 0.08);
}

.lang-toggle:active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--neon), #00d9a0);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 255, 178, 0.28);
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 244, 255, 0.12);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  content: "";
}

.nav-burger::before { margin-bottom: 5px; }
.nav-burger::after { margin-top: 5px; }

/* Language */
.lang { display: none; }
.lang.active { display: inline; }
h1 .lang.active, h2 .lang.active, h3 .lang.active, p.lang.active { display: block; }
.nav-links .lang.active { display: inline-block; }
.price-list .lang.active { display: list-item; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  color: #04140f;
  background: linear-gradient(135deg, var(--neon), #00d9a0);
  box-shadow: 0 0 28px rgba(0, 255, 178, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 0 36px rgba(0, 255, 178, 0.4);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.28);
}

.btn--secondary:hover {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(240, 244, 255, 0.14);
}

.btn--ghost:hover {
  color: var(--neon);
  border-color: rgba(0, 255, 178, 0.35);
  background: rgba(0, 255, 178, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 178, 0.12);
}

.btn--ghost:active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--neon), #00d9a0);
  border-color: transparent;
}

.btn--sm { padding: 8px 14px; font-size: 0.82rem; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.btn--primary .btn-icon {
  color: #04140f;
  filter: drop-shadow(0 0 6px rgba(0, 255, 178, 0.25));
}

.btn--secondary .btn-icon {
  color: var(--neon);
  filter: drop-shadow(0 0 8px rgba(0, 255, 178, 0.35));
}

.btn--secondary:hover .btn-icon {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 255, 178, 0.5));
}

.btn--primary:active .btn-icon {
  color: #020a08;
}

/* Layout */
.page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 28px 20px 72px;
}

.section { margin-top: clamp(72px, 10vw, 110px); }
.section-head { margin-bottom: 32px; }

.section-eyebrow {
  color: var(--neon);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.section-head h2,
.showcase-copy h2,
.pricing-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding-top: clamp(24px, 5vw, 48px);
}

.eyebrow {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 0.95;
  color: var(--neon);
  text-shadow: 0 0 40px rgba(0, 255, 178, 0.22);
  margin-bottom: 16px;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-slogan-line {
  display: inline-block;
}

.hero-slogan-line--accent {
  color: var(--cyan);
  text-shadow: 0 0 36px rgba(0, 229, 255, 0.32);
}

.hero-slogan-line--light {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.1);
}

.hero-lead {
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-cta--center { justify-content: center; }

.hero-note {
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* Visual frames — horizontal PC / vertical Android */
.hero-visual,
.showcase--pc,
.showcase--mobile {
  perspective: 1400px;
}

.visual-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 178, 0.14);
  background: rgba(0, 0, 0, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s ease,
    border-color 0.35s ease;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-frame--wide {
  aspect-ratio: 16 / 9;
  transform: rotateY(-2.5deg) rotateX(1.5deg);
}

.visual-frame--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-frame--tall {
  width: min(100%, 320px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  transform: rotateY(2deg) rotateX(1deg);
}

.visual-frame--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.visual-glow {
  position: absolute;
  inset: auto 8% -18% 8%;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 178, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
  opacity: 0.82;
  transition: filter 0.48s ease, opacity 0.48s ease;
}

.visual-glow--mobile {
  inset: auto 15% -12% 15%;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.22), transparent 70%);
}

.visual-frame img { position: relative; z-index: 1; }

.visual-frame--wide:hover {
  transform: rotateY(-1deg) rotateX(0.5deg) scale(1.028) translateY(-8px);
  border-color: rgba(0, 255, 178, 0.36);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.52),
    0 0 52px rgba(0, 255, 178, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visual-frame--wide:hover img {
  transform: scale(1.04);
}

.visual-frame--wide:hover .visual-glow {
  opacity: 1;
  filter: blur(26px);
}

.visual-frame--tall:hover {
  transform: rotateY(1deg) rotateX(0.5deg) scale(1.032) translateY(-8px);
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.52),
    0 0 56px rgba(0, 229, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visual-frame--tall:hover img {
  transform: scale(1.045);
}

.visual-frame--tall:hover .visual-glow {
  opacity: 1;
  filter: blur(26px);
}

/* Trust bar — Nexus-style dividers + hover */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  overflow: visible;
  background: rgba(255, 255, 255, 0.1);
}

.trust-bar-cell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px 20px;
  text-align: center;
  background: rgba(6, 10, 14, 0.94);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    background 0.35s ease,
    z-index 0s linear 0.42s;
}

.trust-bar-cell::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 255, 178, 0.22), transparent 72%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.trust-bar-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 60%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: opacity 0.35s ease, background-position 0.65s ease;
  pointer-events: none;
  z-index: 0;
}

.trust-bar-cell:hover {
  z-index: 3;
  transition-delay: 0s;
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(0, 255, 178, 0.45),
    0 0 48px rgba(0, 255, 178, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.45);
  background: rgba(5, 20, 16, 0.98);
}

.trust-bar-cell:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.trust-bar-cell:hover::after {
  opacity: 1;
  background-position: 0% 0;
}

.trust-bar-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--neon);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    filter 0.4s ease;
}

.trust-bar-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-bar-cell:hover .trust-bar-icon {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 12px rgba(0, 255, 178, 0.75));
}

.trust-bar-cell:hover .trust-bar-icon svg {
  transform: scale(1.1);
}

.trust-bar-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  line-height: 1.25;
  max-width: 11em;
  transition: color 0.3s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.trust-bar-label .lang { display: none; }
.trust-bar-label .lang.active { display: block; }

.trust-bar-cell:hover .trust-bar-label {
  color: #eafff5;
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(0, 255, 178, 0.35);
}

.trust-bar-cell:nth-child(2):hover {
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.4),
    0 0 44px rgba(0, 229, 255, 0.16),
    0 22px 48px rgba(0, 0, 0, 0.45);
}

.trust-bar-cell:nth-child(2):hover::before {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 229, 255, 0.2), transparent 72%);
}

.trust-bar-cell:nth-child(2):hover .trust-bar-icon {
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.65));
}

.trust-bar-cell:nth-child(3):hover {
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.45),
    0 0 48px rgba(155, 92, 255, 0.2),
    0 22px 48px rgba(0, 0, 0, 0.45);
}

.trust-bar-cell:nth-child(3):hover::before {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(155, 92, 255, 0.22), transparent 72%);
}

.trust-bar-cell:nth-child(3):hover .trust-bar-icon {
  color: #d4c4ff;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.65));
}

.trust-bar-cell:nth-child(4):hover {
  box-shadow:
    0 0 0 1px rgba(0, 255, 178, 0.38),
    0 0 40px rgba(0, 255, 178, 0.14),
    0 22px 48px rgba(0, 0, 0, 0.45);
}

.trust-bar-cell:nth-child(4):hover::before {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(0, 255, 178, 0.18), transparent 72%);
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar-cell,
  .trust-bar-cell::before,
  .trust-bar-cell::after,
  .trust-bar-icon,
  .trust-bar-icon svg,
  .trust-bar-label {
    transition: none;
  }

  .trust-bar-cell:hover {
    transform: none;
  }

  .trust-bar-cell:hover .trust-bar-icon,
  .trust-bar-cell:hover .trust-bar-icon svg,
  .trust-bar-cell:hover .trust-bar-label {
    transform: none;
  }

  .trust-bar-cell:hover::after {
    opacity: 0;
  }
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: visible;
}

.feature-card {
  position: relative;
  isolation: isolate;
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 14, 0.9);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.35s ease,
    z-index 0s linear 0.42s;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -45% -25%;
  background: radial-gradient(circle at 30% 18%, rgba(0, 255, 178, 0.14), transparent 52%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 38%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 62%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: opacity 0.35s ease, background-position 0.65s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card--neon {
  border-color: rgba(0, 255, 178, 0.14);
}

.feature-card--cyan {
  border-color: rgba(0, 229, 255, 0.16);
}

.feature-card--purple {
  border-color: rgba(155, 92, 255, 0.18);
}

.feature-card--cyan::before {
  background: radial-gradient(circle at 30% 18%, rgba(0, 229, 255, 0.16), transparent 52%);
}

.feature-card--purple::before {
  background: radial-gradient(circle at 30% 18%, rgba(155, 92, 255, 0.18), transparent 52%);
}

.feature-card:hover {
  z-index: 3;
  transform: translateY(-10px) scale(1.045);
}

.feature-card:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.feature-card:hover::after {
  opacity: 1;
  background-position: 0% 0;
}

.feature-card--neon:hover {
  border-color: rgba(0, 255, 178, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 255, 178, 0.22),
    0 24px 56px rgba(0, 0, 0, 0.48),
    0 0 56px rgba(0, 255, 178, 0.18);
}

.feature-card--cyan:hover {
  border-color: rgba(0, 229, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.48),
    0 0 56px rgba(0, 229, 255, 0.16);
}

.feature-card--purple:hover {
  border-color: rgba(155, 92, 255, 0.48);
  box-shadow:
    0 0 0 1px rgba(155, 92, 255, 0.24),
    0 24px 56px rgba(0, 0, 0, 0.48),
    0 0 60px rgba(155, 92, 255, 0.2);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--neon);
  background: rgba(0, 255, 178, 0.1);
  border: 1px solid rgba(0, 255, 178, 0.28);
  box-shadow:
    0 0 26px rgba(0, 255, 178, 0.18),
    inset 0 0 22px rgba(0, 255, 178, 0.04);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(0 0 6px currentColor);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card--cyan .feature-icon {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.38);
  background: rgba(0, 229, 255, 0.09);
  box-shadow:
    0 0 26px rgba(0, 229, 255, 0.2),
    inset 0 0 22px rgba(0, 229, 255, 0.05);
}

.feature-card--purple .feature-icon {
  color: #c4b5fd;
  border-color: rgba(155, 92, 255, 0.42);
  background: rgba(155, 92, 255, 0.12);
  box-shadow:
    0 0 28px rgba(155, 92, 255, 0.22),
    inset 0 0 22px rgba(155, 92, 255, 0.06);
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.1);
}

.feature-card--neon:hover .feature-icon {
  filter: drop-shadow(0 0 14px rgba(0, 255, 178, 0.75));
  box-shadow:
    0 0 36px rgba(0, 255, 178, 0.35),
    inset 0 0 24px rgba(0, 255, 178, 0.08);
}

.feature-card--cyan:hover .feature-icon {
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.7));
  box-shadow:
    0 0 36px rgba(0, 229, 255, 0.32),
    inset 0 0 24px rgba(0, 229, 255, 0.08);
}

.feature-card--purple:hover .feature-icon {
  filter: drop-shadow(0 0 14px rgba(167, 139, 250, 0.75));
  box-shadow:
    0 0 40px rgba(155, 92, 255, 0.34),
    inset 0 0 24px rgba(155, 92, 255, 0.1);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.08);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 10px;
  transition: color 0.3s ease, text-shadow 0.35s ease;
}

.feature-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.feature-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 22px rgba(0, 255, 178, 0.12);
}

.feature-card--cyan:hover h3 {
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.12);
}

.feature-card--purple:hover h3 {
  text-shadow: 0 0 22px rgba(155, 92, 255, 0.14);
}

/* Showcase sections */
.showcase {
  display: grid;
  gap: 32px;
  align-items: center;
}

.showcase--pc {
  grid-template-columns: 0.9fr 1.1fr;
}

.showcase--mobile {
  grid-template-columns: 1fr 0.72fr;
}

.showcase-copy p:not(.section-eyebrow) {
  color: var(--text-muted);
  max-width: 28rem;
  margin: 14px 0 22px;
}

.section--mobile {
  position: relative;
}

.section--mobile::before {
  content: "";
  position: absolute;
  inset: -40px 10% auto;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(155, 92, 255, 0.08), transparent 70%);
  pointer-events: none;
}

/* Pricing */
.section--pricing {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: min(100%, 560px);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--neon-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 255, 178, 0.08), transparent 60%),
    rgba(12, 15, 22, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 18px;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.2rem);
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
}

.price-unit {
  color: var(--text-muted);
  font-size: 1rem;
}

.price-list {
  list-style: none;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.price-list li { padding: 6px 0; }

/* Outro */
.section--outro {
  text-align: center;
  padding: 20px 0 10px;
}

.outro-line {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--text-muted);
}

.section--outro .outro-line.lang.active {
  display: block;
  max-width: 20ch;
  margin-inline: auto;
}

/* Footer */
.footer {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 20px 48px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 8px;
}

.footer-copy {
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero,
  .showcase--pc,
  .showcase--mobile {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; }

  .showcase--mobile .showcase-copy { order: 1; }
  .showcase--mobile .showcase-media { order: 2; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }

  .visual-frame--wide,
  .visual-frame--tall {
    transform: none;
  }

  .visual-frame--wide:hover,
  .visual-frame--tall:hover {
    transform: scale(1.02) translateY(-5px);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--glass);
    border: 1px solid var(--neon-border);
    border-radius: var(--radius-sm);
  }

  .nav-links.is-open { display: flex; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-download { display: none !important; }

  .features-grid { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: 0.12em; }
  .visual-frame--tall { width: min(100%, 280px); }
}

@media (max-width: 420px) {
  .hero-cta .btn { width: 100%; }
  .trust-bar { grid-template-columns: 1fr; }
}
