:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;

  --card: 240 5% 8%;
  --card-foreground: 0 0% 100%;

  --popover: 240 5% 8%;
  --popover-foreground: 0 0% 100%;

  --primary: 195 100% 50%;
  --primary-foreground: 0 0% 0%;

  --secondary: 330 100% 60%;
  --secondary-foreground: 0 0% 100%;

  --muted: 240 5% 15%;
  --muted-foreground: 0 0% 65%;

  --accent: 280 100% 70%;
  --accent-foreground: 0 0% 0%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 240 5% 20%;
  --input: 220 20% 12%;
  --ring: 195 100% 50%;

  --radius: 0.75rem;

  /* XGALAX Custom Tokens */
  --cyber-blue: 195 100% 50%;
  --neon-pink: 330 100% 60%;
  --electric-purple: 280 100% 70%;
  --deep-space: 240 10% 5%;
  --star-glow: 60 100% 80%;

  /* Gradients */
  --gradient-cyber: linear-gradient(135deg, hsl(195 100% 50%), hsl(280 100% 70%));
  --gradient-neon: linear-gradient(90deg, hsl(330 100% 60%), hsl(280 100% 70%));
  --gradient-space: linear-gradient(180deg, hsl(240 10% 5%), hsl(240 5% 8%));

  /* Effects */
  --glow-cyber: 0 0 20px hsl(195 100% 50% / 0.5), 0 0 40px hsl(195 100% 50% / 0.3);
  --glow-neon: 0 0 20px hsl(330 100% 60% / 0.5), 0 0 40px hsl(330 100% 60% / 0.3);
  --shadow-elevated: 0 8px 32px hsl(0 0% 0% / 0.6);

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Fonts */
  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  color: hsl(var(--muted-foreground));
}

/* Gradient text — left-to-right reversed (matching shop) */
.gradient-text {
  background: linear-gradient(to left, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-reverse {
  background: linear-gradient(to left, hsl(var(--secondary)), hsl(var(--accent)), hsl(var(--primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: hsl(var(--primary));
}

.text-muted-plus {
  color: hsl(var(--muted));
}

/* ===== Layout ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-center {
  text-align: center;
}

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: hsl(var(--card) / 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
  transform: rotate(12deg);
}

.logo {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: filter;
  transition: filter 300ms;
}

.logo:hover {
  filter: drop-shadow(0 0 2em hsl(195 100% 50% / 0.7));
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: hsl(var(--foreground) / 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: hsl(var(--primary));
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background) / 0.85), hsl(var(--background) / 0.5), transparent);
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.8), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-cyan {
  color: hsl(var(--primary));
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid hsl(var(--primary) / 0.1);
  border-bottom: 1px solid hsl(var(--primary) / 0.1);
  background: hsl(var(--card) / 0.5);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust-icon {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* ===== Sections ===== */
section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.dark-accent {
  background-color: hsl(var(--deep-space));
}

.section-lead {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ===== Ecosystem Grid ===== */
.ecosystem-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.glass-card {
  background: hsl(var(--card) / 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 2.5rem;
  border-radius: var(--radius);
  flex: 1;
  max-width: 500px;
  text-align: left;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: hsl(var(--secondary) / 0.5);
  transform: translateY(-5px);
  box-shadow: var(--glow-neon);
}

.glass-connector {
  font-size: 2rem;
  color: hsl(var(--accent));
}

/* ===== Comparison ===== */
.transformation {
  background: hsl(var(--background));
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.comparison-list {
  list-style: none;
  margin-top: 2rem;
}

.comparison-list li {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.list-fail li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: hsl(var(--destructive));
  font-weight: 700;
}

.list-pass li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
  font-weight: 700;
}

/* ===== Journey Tracks ===== */
.dual-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.journey-track-explorer {
  background: hsl(var(--card) / 0.5);
  border-left: 4px solid hsl(var(--primary));
}

.journey-track-organizer {
  background: hsl(var(--deep-space) / 0.8);
  border-left: 4px solid hsl(var(--accent));
}

.journey-track {
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.5);
}

.steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.step-item span {
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--primary));
  opacity: 0.2;
  font-size: 2rem;
}

/* ===== Features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border) / 0.3);
  transition: var(--transition-bounce);
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--glow-cyber);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.feature-card p {
  color: hsl(var(--muted-foreground));
}

/* ===== Use Cases ===== */
.use-case-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.use-case-row.reverse {
  flex-direction: row-reverse;
}

.use-case-image {
  flex: 1.2;
}

.use-case-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.3);
}

.use-case-text {
  flex: 1;
}

.use-case-text h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.use-case-text p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

/* ===== Dashboard Mockup ===== */
.dashboard-mockup {
  margin-top: 3rem;
}

.dashboard-mockup img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border) / 0.3);
  box-shadow: var(--shadow-elevated);
}

/* ===== Mission Redesign ===== */
.mission-redesign {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 18px 36px -18px rgba(0, 0, 0, 0.5);
}

.mission-img-optimized {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mission-image-wrapper:hover .mission-img-optimized {
  transform: scale(1.05);
}

.mission-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, hsl(var(--background)) 100%),
              linear-gradient(to top, hsl(var(--background)) 0%, transparent 40%);
  pointer-events: none;
}

.mission-lead {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  font-weight: 500;
}

.mission-text p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.8;
}

.mission-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .mission-img-optimized {
    height: 400px;
  }
}

/* ===== Footer Enhancements ===== */
.logo-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.footer-desc {
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 50%;
  color: hsl(var(--primary));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-socials a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--background));
  transform: translateY(-3px);
  box-shadow: 0 0 15px hsl(var(--primary) / 0.4);
  border-color: hsl(var(--primary));
}

.bottom-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

@media (min-width: 768px) {
  .bottom-flex {
    flex-direction: row;
  }
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: hsl(var(--muted-foreground));
}

.payment-icon {
  width: 28px;
  height: 28px;
  opacity: 0.4;
  transition: all 0.3s ease;
  stroke-width: 1.2;
}

.payment-icon:hover {
  opacity: 0.9;
  color: hsl(var(--primary));
  transform: scale(1.1);
}

.group:hover .logo-icon {
  transform: rotate(12deg);
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* ===== Newsletter ===== */
.newsletter {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--card)));
}

.newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .subscribe-form {
    flex-direction: row;
  }
}

.subscribe-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--primary) / 0.2);
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-smooth);
}

.subscribe-input:focus {
  border-color: hsl(var(--primary));
}

.subscribe-input::placeholder {
  color: hsl(var(--muted-foreground));
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
}

.btn-hero:hover {
  opacity: 0.9;
  transform: scale(1.05);
  box-shadow: var(--glow-cyber);
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 20px hsl(330 100% 60% / 0.4);
}

.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: 0 6px 30px hsl(330 100% 60% / 0.5);
}

.btn-secondary {
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--foreground));
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
}

.btn-secondary:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}

.btn-outline {
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--secondary));
  border-color: hsl(var(--primary) / 0.5);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  border-radius: 0.5rem;
}

.btn-nav:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

/* ===== Glass ===== */
.glass {
  background: hsl(var(--card) / 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
}

.glow-cyber {
  box-shadow: var(--glow-cyber);
}

.glow-neon {
  box-shadow: var(--glow-neon);
}

/* ===== Footer ===== */
footer {
  padding: 4rem 0 2rem;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
}

.hero-content-centered {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

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

.hero-visual img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 30px hsl(var(--primary) / 0.3));
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-container-interactive {
  position: relative;
  perspective: 1000px;
}

.hero-glow-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.15), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  transition: transform 0.1s linear;
}

.hero-title-interactive {
  transition: transform 0.1s linear;
}

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

.footer-brand p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 24rem;
}

footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

footer a {
  display: block;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

footer a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px hsl(195 100% 50% / 0.3);
  }

  50% {
    box-shadow: 0 0 40px hsl(195 100% 50% / 0.6);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px hsl(195 100% 50% / 0.3);
  }

  50% {
    box-shadow: 0 0 40px hsl(195 100% 50% / 0.6);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.card {
  padding: 2em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

  .comparison-grid,
  .dual-journey,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .use-case-row,
  .use-case-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-grid {
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}