/* ============================================================
   Vyxra.site — Prism Fusion Design System
   Pure CSS3 · Mobile-first · Production-ready
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #F8FCFF;
  --bg-secondary: #EEF7FF;

  /* Gradients */
  --grad-prism: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F97316 100%);
  --grad-prism-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.12), rgba(249, 115, 22, 0.1));
  --grad-secondary: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #8B5CF6 100%);
  --grad-accent: linear-gradient(135deg, #22C55E 0%, #84CC16 100%);
  --grad-highlight: linear-gradient(135deg, #FACC15 0%, #FB7185 100%);
  --grad-deco: linear-gradient(135deg, #14B8A6 0%, #A855F7 100%);

  /* Solid accents for fallbacks */
  --c-violet: #7C3AED;
  --c-pink: #EC4899;
  --c-orange: #F97316;
  --c-cyan: #06B6D4;
  --c-blue: #3B82F6;
  --c-purple: #8B5CF6;
  --c-emerald: #22C55E;
  --c-lime: #84CC16;
  --c-gold: #FACC15;
  --c-coral: #FB7185;
  --c-teal: #14B8A6;

  /* Text */
  --text: #0F172A;
  --text-secondary: #64748B;

  /* Surfaces */
  --card: rgba(255, 255, 255, 0.90);
  --border: rgba(124, 58, 237, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);

  /* Typography */
  --font-display: "Cabinet Grotesk", "Satoshi", system-ui, sans-serif;
  --font-body: "Satoshi", "Manrope", system-ui, sans-serif;
  --font-ui: "Manrope", "Satoshi", system-ui, sans-serif;

  /* Spacing & radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-nav: 0 8px 32px rgba(124, 58, 237, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 4px 24px rgba(124, 58, 237, 0.06), 0 12px 48px rgba(15, 23, 42, 0.04);
  --shadow-lift: 0 20px 60px rgba(124, 58, 237, 0.14), 0 8px 24px rgba(236, 72, 153, 0.1);
  --shadow-glow: 0 0 40px rgba(236, 72, 153, 0.2);

  /* Layout */
  --container: 1180px;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(124, 58, 237, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(6, 182, 212, 0.07), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(249, 115, 22, 0.05), transparent 40%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-violet);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease, filter 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

.btn--gradient {
  background: var(--grad-prism);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.3), 0 4px 12px rgba(236, 72, 153, 0.2);
}

.btn--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn--gradient:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.4), 0 6px 16px rgba(249, 115, 22, 0.25);
}

.btn--ghost {
  background: var(--glass);
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: var(--shadow-card);
}

.btn--light {
  background: #fff;
  color: var(--c-violet);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.btn--light:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
}

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

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 1.25rem;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 0.7rem 1rem 0.7rem 1.35rem;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-nav);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-prism);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
  position: relative;
  transform: rotate(12deg);
}

.nav__logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: var(--grad-prism);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav__menu a {
  position: relative;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-prism);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

.nav__menu a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
  font-size: 0.875rem;
}

@media (min-width: 900px) {
  .nav__menu {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.25rem 5rem;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Full-bleed mesh gradient plane */
.hero__mesh {
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse 45% 55% at 75% 35%, rgba(236, 72, 153, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(ellipse 35% 40% at 55% 75%, rgba(249, 115, 22, 0.18), transparent 50%),
    radial-gradient(ellipse 30% 35% at 85% 70%, rgba(6, 182, 212, 0.2), transparent 50%),
    radial-gradient(ellipse 25% 30% at 40% 20%, rgba(168, 85, 247, 0.15), transparent 45%);
  animation: meshDrift 18s ease-in-out infinite alternate;
  filter: blur(2px);
}

@keyframes meshDrift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, 3%); }
}

/* Flowing ribbons */
.hero__ribbon {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.hero__ribbon--1 {
  width: 70vmax;
  height: 28vmax;
  top: 15%;
  left: -10%;
  background: var(--grad-prism);
  border-radius: 50% 40% 60% 50%;
  opacity: 0.18;
  animation: ribbonFlow 14s ease-in-out infinite;
  transform: rotate(-18deg);
}

.hero__ribbon--2 {
  width: 55vmax;
  height: 22vmax;
  bottom: 10%;
  right: -15%;
  background: var(--grad-secondary);
  opacity: 0.16;
  animation: ribbonFlow 18s ease-in-out infinite reverse;
  transform: rotate(12deg);
}

.hero__ribbon--3 {
  width: 40vmax;
  height: 16vmax;
  top: 50%;
  left: 30%;
  background: var(--grad-deco);
  opacity: 0.12;
  animation: ribbonFlow 22s ease-in-out infinite;
  transform: rotate(-8deg);
}

@keyframes ribbonFlow {
  0%, 100% { transform: rotate(var(--r, -18deg)) translateX(0) scaleY(1); }
  50% { transform: rotate(calc(var(--r, -18deg) + 6deg)) translateX(3%) scaleY(1.08); }
}

/* Floating crystals */
.hero__crystal {
  position: absolute;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.4),
    0 20px 50px rgba(124, 58, 237, 0.12);
  animation: crystalFloat 8s ease-in-out infinite;
}

.hero__crystal--1 {
  width: 120px;
  height: 120px;
  top: 22%;
  right: 12%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.2), rgba(255, 255, 255, 0.5));
  animation-delay: 0s;
}

.hero__crystal--2 {
  width: 80px;
  height: 80px;
  bottom: 28%;
  left: 10%;
  clip-path: polygon(50% 0%, 90% 30%, 100% 70%, 50% 100%, 0% 70%, 10% 30%);
  background: linear-gradient(200deg, rgba(6, 182, 212, 0.4), rgba(139, 92, 246, 0.25), rgba(255, 255, 255, 0.45));
  animation-delay: -2.5s;
  animation-duration: 10s;
}

.hero__crystal--3 {
  width: 56px;
  height: 56px;
  top: 55%;
  right: 28%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.4), rgba(250, 204, 21, 0.3), rgba(255, 255, 255, 0.5));
  animation-delay: -5s;
  animation-duration: 7s;
}

@keyframes crystalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

/* Soft glowing circles */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 6s ease-in-out infinite;
}

.hero__glow--1 {
  width: 340px;
  height: 340px;
  top: 10%;
  left: 5%;
  background: rgba(124, 58, 237, 0.25);
}

.hero__glow--2 {
  width: 280px;
  height: 280px;
  bottom: 15%;
  right: 8%;
  background: rgba(249, 115, 22, 0.2);
  animation-delay: -2s;
}

.hero__glow--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: rgba(6, 182, 212, 0.22);
  animation-delay: -4s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Rotating abstract rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    var(--grad-prism) border-box;
  opacity: 0.35;
  animation: ringSpin 28s linear infinite;
}

.hero__ring--1 {
  width: 480px;
  height: 480px;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  border-width: 2px;
  background:
    linear-gradient(transparent, transparent) padding-box,
    var(--grad-prism) border-box;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}

.hero__ring--2 {
  width: 320px;
  height: 320px;
  top: 55%;
  right: 2%;
  transform: translateY(-50%);
  opacity: 0.25;
  animation-direction: reverse;
  animation-duration: 20s;
  background:
    linear-gradient(transparent, transparent) padding-box,
    var(--grad-secondary) border-box;
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}

@keyframes ringSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Holographic light reflection */
.hero__reflect {
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 60%,
    transparent 100%
  );
  animation: reflectSweep 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes reflectSweep {
  0% { left: -40%; opacity: 0; }
  20% { opacity: 1; }
  50% { left: 100%; opacity: 0.8; }
  51%, 100% { left: 100%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  animation: fadeUp 1s var(--ease) both;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero__brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  background: var(--grad-prism);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 32px rgba(124, 58, 237, 0.2));
  animation: brandGlow 4s ease-in-out infinite;
}

@keyframes brandGlow {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(124, 58, 237, 0.2)); }
  50% { filter: drop-shadow(0 12px 48px rgba(236, 72, 153, 0.35)); }
}

.hero__tagline {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 38ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

/* ---------- Curve Divider ---------- */
.curve-divider {
  color: rgba(238, 247, 255, 0.8);
  line-height: 0;
  margin-top: -2px;
}

.curve-divider svg {
  width: 100%;
  height: 48px;
}

@media (min-width: 768px) {
  .curve-divider svg {
    height: 80px;
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-prism);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.section__lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Features ---------- */
.features {
  background: transparent;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.feature-card {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.15rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-prism);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card:nth-child(2)::before { background: var(--grad-secondary); }
.feature-card:nth-child(3)::before { background: var(--grad-accent); }
.feature-card:nth-child(4)::before { background: var(--grad-highlight); }
.feature-card:nth-child(5)::before { background: var(--grad-deco); }
.feature-card:nth-child(6)::before { background: var(--grad-prism); }

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lift);
  animation-play-state: paused;
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--grad-prism-soft);
}

.feature-card__icon svg {
  width: 36px;
  height: 36px;
}

.feature-card__icon--cyan { background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.12)); }
.feature-card__icon--accent { background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(132, 204, 22, 0.12)); }
.feature-card__icon--highlight { background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(251, 113, 133, 0.12)); }
.feature-card__icon--deco { background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(168, 85, 247, 0.12)); }

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Solutions ---------- */
.solutions {
  overflow: hidden;
}

.solutions__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.solution {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.4s var(--ease);
}

.solution:hover {
  transform: scale(1.015);
}

.solution__decor {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  z-index: 0;
}

.solution__decor--prism { background: var(--grad-prism); }
.solution__decor--cyan { background: var(--grad-secondary); }
.solution__decor--accent { background: var(--grad-accent); }
.solution__decor--highlight { background: var(--grad-highlight); }
.solution__decor--deco { background: var(--grad-deco); }

.solution__decor::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15), transparent 35%);
}

.solution__body {
  position: relative;
  z-index: 1;
  margin: 1rem;
  padding: 2rem 2rem 2.25rem;
  background: var(--card);
  backdrop-filter: blur(20px);
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
}

.solution__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  background: var(--grad-prism);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.solution__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.solution__body p {
  color: var(--text-secondary);
  max-width: 48ch;
}

@media (min-width: 768px) {
  .solution--offset-left {
    margin-right: 12%;
  }

  .solution--offset-right {
    margin-left: 12%;
  }

  .solution__body {
    margin: 1.25rem;
    padding: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .solution--offset-left {
    margin-right: 18%;
  }

  .solution--offset-right {
    margin-left: 18%;
  }
}

/* ---------- Showcase ---------- */
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--grad-prism);
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  animation: borderGlow 3s ease-in-out infinite;
  animation-play-state: paused;
}

.showcase-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

@keyframes borderGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.showcase-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease);
}

.showcase-card:hover .showcase-card__media {
  transform: scale(1.04);
}

.showcase-card__media--1 { background: linear-gradient(145deg, #7C3AED, #EC4899 60%, #F97316); }
.showcase-card__media--2 { background: linear-gradient(160deg, #06B6D4, #3B82F6 55%, #8B5CF6); }
.showcase-card__media--3 { background: linear-gradient(135deg, #F97316, #FACC15 50%, #FB7185); }
.showcase-card__media--4 { background: linear-gradient(150deg, #14B8A6, #3B82F6 45%, #A855F7); }
.showcase-card__media--5 { background: linear-gradient(160deg, #22C55E, #06B6D4 50%, #7C3AED); }
.showcase-card__media--6 { background: linear-gradient(140deg, #EC4899, #A855F7 40%, #3B82F6); }

/* Abstract pattern overlays as image placeholders */
.showcase-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    );
  transition: transform 0.7s var(--ease);
}

.showcase-card:hover .showcase-card__media::before {
  transform: scale(1.15);
}

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, transparent 55%);
  opacity: 0.85;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.showcase-card:hover .showcase-card__overlay {
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(124, 58, 237, 0.55) 0%,
    rgba(236, 72, 153, 0.25) 40%,
    transparent 70%
  );
}

.showcase-card__category {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.showcase-card__title {
  position: absolute;
  bottom: 1.35rem;
  left: 1.35rem;
  right: 1.35rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
  text-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.showcase-card:hover .showcase-card__title {
  transform: translateY(0);
}

/* ---------- Process Timeline ---------- */
.process__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .process__timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
}

@media (min-width: 1100px) {
  .process__timeline {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
  }
}

.process__step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}

.process__node {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  padding: 3px;
  background: var(--grad-prism);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.25);
  animation: nodePulse 3s ease-in-out infinite;
}

.process__step:nth-child(2) .process__node { background: linear-gradient(135deg, #EC4899, #F97316); animation-delay: 0.3s; }
.process__step:nth-child(3) .process__node { background: linear-gradient(135deg, #F97316, #FACC15); animation-delay: 0.6s; }
.process__step:nth-child(4) .process__node { background: linear-gradient(135deg, #06B6D4, #3B82F6); animation-delay: 0.9s; }
.process__step:nth-child(5) .process__node { background: linear-gradient(135deg, #3B82F6, #8B5CF6); animation-delay: 1.2s; }
.process__step:nth-child(6) .process__node { background: linear-gradient(135deg, #8B5CF6, #EC4899); animation-delay: 1.5s; }

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(124, 58, 237, 0.25); }
  50% { box-shadow: 0 8px 36px rgba(236, 72, 153, 0.4); }
}

.process__node-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.process__step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.process__step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process__curve {
  display: none;
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 40px;
  overflow: visible;
  pointer-events: none;
}

@media (min-width: 1100px) {
  .process__curve {
    display: block;
  }

  .process__step:last-child .process__curve {
    display: none;
  }
}

/* ---------- Statistics ---------- */
.stats {
  padding-top: 2rem;
  padding-bottom: 5.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  position: relative;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transition: transform 0.4s var(--ease);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12), transparent 35%);
  pointer-events: none;
}

.stat-card--prism { background: var(--grad-prism); }
.stat-card--cyan { background: var(--grad-secondary); }
.stat-card--accent { background: var(--grad-accent); }
.stat-card--highlight { background: var(--grad-highlight); }

.stat-card__value {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  position: relative;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.92;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.testimonial {
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: floatCard 6s ease-in-out infinite;
}

.testimonial:nth-child(2) { animation-delay: 1s; }
.testimonial:nth-child(3) { animation-delay: 2s; }

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift), var(--shadow-glow);
  animation-play-state: paused;
}

.testimonial__stars {
  color: #FACC15;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 6px rgba(250, 204, 21, 0.4));
}

.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.testimonial__avatar--1 { background: var(--grad-prism); }
.testimonial__avatar--2 { background: var(--grad-secondary); }
.testimonial__avatar--3 { background: var(--grad-highlight); }

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  display: block;
}

.testimonial__company {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---------- Pricing ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.price-card {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.price-card--popular {
  z-index: 2;
  border: none;
  padding: 2.5rem 2rem;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad-prism) border-box;
  border: 2.5px solid transparent;
  box-shadow: var(--shadow-lift), 0 0 60px rgba(124, 58, 237, 0.12);
  overflow: hidden;
}

@media (min-width: 900px) {
  .price-card--popular {
    transform: scale(1.07);
  }

  .price-card--popular:hover {
    transform: scale(1.07) translateY(-8px);
  }
}

.price-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

.price-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-prism);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

.price-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.price-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
  background: var(--grad-prism);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-card__currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-card__period {
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-secondary);
  background: none;
}

.price-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
}

.price-card__features li {
  font-size: 0.925rem;
  padding-left: 1.6rem;
  position: relative;
  color: var(--text);
}

.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.price-card__features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55rem;
  width: 6px;
  height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(124, 58, 237, 0.22);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-violet);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.35rem 4.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeUp 0.35s var(--ease) both;
}

.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
}

.faq-item__icon--prism { background: var(--grad-prism); }
.faq-item__icon--cyan { background: var(--grad-secondary); }
.faq-item__icon--accent { background: var(--grad-accent); }
.faq-item__icon--highlight { background: var(--grad-highlight); }
.faq-item__icon--deco { background: var(--grad-deco); }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  margin: 2rem 1.25rem 0;
  padding: 6rem 1.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  max-width: 1180px;
  margin-inline: auto;
}

.final-cta__atmosphere {
  position: absolute;
  inset: 0;
  background: var(--grad-prism);
  z-index: 0;
}

.final-cta__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(6, 182, 212, 0.4), transparent 50%),
    radial-gradient(ellipse 40% 50% at 80% 40%, rgba(250, 204, 21, 0.25), transparent 45%),
    radial-gradient(ellipse 30% 40% at 50% 80%, rgba(168, 85, 247, 0.35), transparent 40%);
  animation: meshDrift 12s ease-in-out infinite alternate;
}

.final-cta__ribbon {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(2px);
}

.final-cta__ribbon--1 {
  width: 80%;
  height: 60%;
  top: -20%;
  left: -10%;
  background: linear-gradient(90deg, #06B6D4, transparent);
  animation: ribbonFlow 16s ease-in-out infinite;
}

.final-cta__ribbon--2 {
  width: 70%;
  height: 50%;
  bottom: -15%;
  right: -10%;
  background: linear-gradient(270deg, #FACC15, transparent);
  animation: ribbonFlow 20s ease-in-out infinite reverse;
}

.final-cta__particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  animation: particleFloat 8s ease-in-out infinite;
}

.final-cta__particle--1 { top: 20%; left: 15%; animation-delay: 0s; width: 6px; height: 6px; }
.final-cta__particle--2 { top: 60%; left: 25%; animation-delay: -1.5s; width: 10px; height: 10px; }
.final-cta__particle--3 { top: 30%; right: 20%; animation-delay: -3s; }
.final-cta__particle--4 { bottom: 25%; right: 30%; animation-delay: -4.5s; width: 5px; height: 5px; }
.final-cta__particle--5 { top: 45%; left: 50%; animation-delay: -2s; width: 7px; height: 7px; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(12px, -28px); opacity: 1; }
}

.final-cta__hologram {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(15, 23, 42, 0.25);
  max-width: 14ch;
  margin-inline: auto;
  line-height: 1.15;
}

/* ---------- Footer ---------- */
.footer {
  padding: 5rem 0 2rem;
  margin-top: 4rem;
  background:
    linear-gradient(180deg, transparent, rgba(238, 247, 255, 0.8) 20%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
  }
}

.footer__tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  max-width: 28ch;
}

.footer__newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__newsletter input {
  flex: 1 1 180px;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer__newsletter input::placeholder {
  color: var(--text-secondary);
}

.footer__newsletter input:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.social-icon span {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 3px;
  opacity: 0.9;
}

.social-icon--1 { background: var(--grad-prism); }
.social-icon--2 { background: var(--grad-secondary); }
.social-icon--3 { background: var(--grad-highlight); }
.social-icon--4 { background: var(--grad-deco); }

.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer__cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a,
.footer__col span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.footer__col a:hover {
  color: var(--c-violet);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}

.footer__legal a:hover {
  color: var(--c-violet);
}

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

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

/* ---------- Mobile Nav Adjustments ---------- */
@media (max-width: 480px) {
  .nav {
    padding: 0.55rem 0.65rem 0.55rem 1rem;
  }

  .nav__logo-text {
    font-size: 1.15rem;
  }

  .nav__cta {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .hero__crystal--1 {
    width: 70px;
    height: 70px;
    right: 5%;
  }

  .hero__crystal--2 {
    width: 50px;
    height: 50px;
  }

  .hero__ring--1,
  .hero__ring--2 {
    opacity: 0.15;
  }

  .final-cta {
    margin-inline: 0.75rem;
    padding: 4rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .faq-item p {
    padding-left: 1.5rem;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .hero__atmosphere,
  .final-cta__atmosphere {
    display: none;
  }

  body {
    background: #fff;
  }
}
