/* ==========================================================================
   veil.wtf — styles
   Futuristic dark theme: aurora glows, tech grid, glass surfaces
   ========================================================================== */

:root {
  --bg: #06060a;
  --bg-raised: #0a0a12;

  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.08);

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text: #f4f4f8;
  --text-muted: #a0a0ae;
  --text-faint: #6b6b7c;

  --accent: #ff5c9d;
  --accent-deep: #ff2d95;
  --violet: #8b5cf6;
  --gradient: linear-gradient(120deg, #ff5c9d, #d946ef);
  --glow: rgba(255, 45, 149, 0.4);
  --glow-soft: rgba(255, 92, 157, 0.16);

  --font-heading: 'Space Grotesk', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.22s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  font-size: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  position: relative;
  isolation: isolate;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---------------------------------------------------------------
   Ambient background: tech grid + noise
   --------------------------------------------------------------- */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, #000 15%, transparent 75%);
  mask-image: radial-gradient(ellipse 95% 65% at 50% 0%, #000 15%, transparent 75%);
}

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

/* Aurora glow blobs */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}

.blob-1 {
  width: 640px;
  height: 640px;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 45, 149, 0.55), transparent 62%);
  opacity: 0.5;
  animation: drift1 16s ease-in-out infinite alternate;
}

.blob-2 {
  width: 560px;
  height: 560px;
  bottom: -280px;
  right: -160px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 62%);
  opacity: 0.42;
  animation: drift2 22s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translateX(-50%) translate(0, 0) scale(1); }
  to   { transform: translateX(-50%) translate(90px, 60px) scale(1.18); }
}

@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-110px, -70px) scale(1.22); }
}

/* ---------------------------------------------------------------
   Typography & shared
   --------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.14;
  font-weight: 600;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection {
  background: rgba(255, 92, 157, 0.4);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Animated gradient text with a moving shine sweep */
.gradient-text {
  background-image:
    linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.4) 50%, transparent 72%),
    linear-gradient(120deg, #ff5c9d 0%, #d946ef 50%, #ff5c9d 100%);
  background-size: 300% 100%, 300% 100%;
  background-repeat: repeat-x;
  background-position: 0 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientFlow 6s linear infinite;
}

/* Shifts each 300%-wide tile by exactly one tile width → seamless loop */
@keyframes gradientFlow {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 150% 0, 150% 0; }
}

/* Scroll reveal */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------
   Buttons
   --------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), border-color var(--transition),
    color var(--transition);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, #ff7ac4 0%, #f43f9e 42%, #2b0716 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 12px 32px -12px rgba(255, 45, 149, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 18px 44px -14px rgba(255, 45, 149, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-discord {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: #fff;
  box-shadow: 0 10px 30px -12px rgba(88, 101, 242, 0.55);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -12px rgba(88, 101, 242, 0.7);
}

.btn-lg {
  padding: 0.86rem 1.8rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn .arrow {
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------------------------------------------------------------
   Navbar
   --------------------------------------------------------------- */

.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.05rem 0;
  transition: background-color var(--transition), border-color var(--transition),
    padding var(--transition), backdrop-filter var(--transition);
}

.navbar-container.scrolled {
  padding: 0.7rem 0;
  background: rgba(7, 7, 12, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 45, 149, 0.35));
  transition: filter var(--transition);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(255, 45, 149, 0.6));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text .accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 80%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

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

/* Parallax targets */
[data-parallax] {
  will-change: transform;
}

.blob-wrap {
  position: absolute;
  inset: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */

.hero-section {
  position: relative;
  padding: 12.5rem 0 5.5rem;
  text-align: center;
  overflow: hidden;
}

/* horizon glow line */
.hero-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 157, 0.5), transparent);
}

.hero-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Emblem with rotating glow */
.emblem {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 2.4rem;
}

.emblem-glow {
  position: absolute;
  inset: -24px;
  border-radius: 36px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 45, 149, 0.6) 55deg,
    transparent 130deg,
    transparent 210deg,
    rgba(139, 92, 246, 0.45) 265deg,
    transparent 340deg
  );
  filter: blur(20px);
  animation: emblemSpin 8s linear infinite;
}

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

.emblem-img {
  position: relative;
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 40px -8px rgba(255, 45, 149, 0.35), 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Floating particle canvas */
#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.9rem, 7vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 1.6rem 0 1.2rem;
}

.hero-subtitle {
  font-size: 1.13rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.6rem;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.4rem;
}

/* HUD stats bar */
.hud-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 60px -30px rgba(0, 0, 0, 0.8);
  padding: 1.2rem 1rem;
  gap: 0.5rem;
}

.hud-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  padding: 0 1rem;
}

.hud-item + .hud-item {
  border-left: 1px solid var(--border);
}

.hud-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hud-value .accent {
  color: var(--accent);
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------------------------------------------------------------
   Sections
   --------------------------------------------------------------- */

.section {
  position: relative;
  padding: 7rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, var(--bg-raised) 12%, var(--bg-raised) 88%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.sub-heading .sub-index {
  color: var(--text-faint);
}

.sub-heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.85rem 0 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------
   Glass card + spotlight base
   --------------------------------------------------------------- */

.glass-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 50px -30px rgba(0, 0, 0, 0.7);
  transition: border-color var(--transition), transform var(--transition),
    box-shadow var(--transition), background-color var(--transition);
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    440px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 92, 157, 0.13),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.spotlight:hover::before {
  opacity: 1;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------
   Features
   --------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  padding: 1.9rem 1.7rem;
}

.feature-card:hover {
  border-color: rgba(255, 92, 157, 0.35);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 60px -28px rgba(255, 45, 149, 0.35),
    0 0 30px -14px rgba(255, 92, 157, 0.4);
}

.feature-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 92, 157, 0.18), rgba(255, 92, 157, 0.05));
  border: 1px solid rgba(255, 92, 157, 0.3);
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 20px -6px rgba(255, 45, 149, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.feature-title {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------
   Pricing
   --------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem 1.9rem;
}

.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

/* Featured card: gradient border + inner glow */
.pricing-card.featured {
  border: 1px solid rgba(255, 92, 157, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 45, 149, 0.09), rgba(255, 255, 255, 0.02) 45%),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 30px 80px -30px rgba(255, 45, 149, 0.45),
    0 0 50px -18px rgba(255, 92, 157, 0.45);
}

.pricing-card.featured:hover {
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 34px 90px -30px rgba(255, 45, 149, 0.6),
    0 0 70px -18px rgba(255, 92, 157, 0.6);
}

.card-glow {
  position: absolute;
  z-index: 0;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 280px;
  background: radial-gradient(closest-side, rgba(255, 45, 149, 0.3), transparent);
  filter: blur(34px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #ff5c9d, #ff2d95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 24px -6px var(--glow);
}

.card-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}

.plan-type {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.55rem 0 0.35rem;
}

.price-amount .currency {
  font-size: 1.7rem;
  vertical-align: 0.35em;
  font-weight: 600;
}

.price-amount .period {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-amount .robux {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  font-size: 0.93rem;
  color: #d6d6e0;
}

.feature-list li strong {
  font-weight: 600;
  color: var(--text);
}

.check-icon {
  color: var(--accent);
  font-size: 0.82rem;
  margin-top: 0.22em;
  text-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
}

.card-footer {
  margin-top: auto;
}

/* ---------------------------------------------------------------
   FAQ
   --------------------------------------------------------------- */

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(255, 92, 157, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 40px -24px rgba(255, 45, 149, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  color: var(--text-faint);
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, color var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.active .faq-answer {
  max-height: 340px;
}

.faq-answer p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-answer code {
  font-family: var(--font-mono);
  font-size: 0.86em;
  color: var(--accent);
}

/* ---------------------------------------------------------------
   CTA panel
   --------------------------------------------------------------- */

.cta-panel {
  padding: 7rem 0;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(560px 300px at 50% -40px, rgba(255, 45, 149, 0.16), transparent 65%),
    linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4.2rem 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 40px 100px -40px rgba(255, 45, 149, 0.35);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 157, 0.7), transparent);
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 0.9rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2.4rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */

.footer {
  background: #050509;
  border-top: 1px solid var(--border);
  padding: 3.4rem 0 2.2rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-brand .logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.35));
}

.footer-brand .logo-text {
  font-size: 1.15rem;
}

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

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.footer-copy .disclaimer {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  max-width: 340px;
  text-align: right;
}

/* ---------------------------------------------------------------
   Responsive
   --------------------------------------------------------------- */

@media (max-width: 992px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy,
  .footer-copy .disclaimer {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .status-pill {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 6, 10, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: -1;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 10rem 0 4.5rem;
  }

  .hud-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.1rem 0.5rem;
  }

  .hud-item {
    min-width: 42%;
    padding: 0 0.6rem;
  }

  .hud-item + .hud-item {
    border-left: none;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .footer-grid {
    gap: 2rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
