@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* ═══════════════════════════════════════
   CSS Custom Properties (Design Tokens)
   ═══════════════════════════════════════ */
:root {
  --background: 240 15% 5%;
  --foreground: 0 0% 98%;
  --card: 240 15% 8%;
  --card-foreground: 0 0% 98%;
  --popover: 240 15% 8%;
  --popover-foreground: 0 0% 98%;
  --primary: 265 90% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 240 15% 12%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 10% 15%;
  --muted-foreground: 240 5% 55%;
  --accent: 185 100% 50%;
  --accent-foreground: 240 15% 5%;
  --destructive: 0 84.2% 60.2%;
  --border: 240 10% 18%;
  --input: 240 10% 18%;
  --ring: 265 90% 60%;
  --radius: 0.75rem;
  --neon-purple: 265 90% 60%;
  --neon-cyan: 185 100% 50%;
  --neon-pink: 330 100% 60%;
  --neon-blue: 220 100% 60%;
  --glow-purple: 0 0 40px hsl(265 90% 60% / 0.4);
  --glow-cyan: 0 0 40px hsl(185 100% 50% / 0.4);
  --glow-pink: 0 0 40px hsl(330 100% 60% / 0.4);
  --gradient-hero: linear-gradient(
    135deg,
    hsl(265 90% 60% / 0.2) 0%,
    hsl(185 100% 50% / 0.1) 50%,
    hsl(330 100% 60% / 0.15) 100%
  );
  --gradient-card: linear-gradient(180deg, hsl(240 15% 10%) 0%, hsl(240 15% 6%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(265 90% 55%) 0%, hsl(330 100% 55%) 100%);
}

/* ═══════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
code {
  font-family: monospace;
}
input,
button {
  font-family: inherit;
}

/* ═══════════════════════════════════════
   Utility Classes
   ═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}
.hidden {
  display: none;
}

/* ═══════════════════════════════════════
   Colors
   ═══════════════════════════════════════ */
.text-foreground {
  color: hsl(var(--foreground));
}
.text-muted {
  color: hsl(var(--muted-foreground));
}
.text-primary {
  color: hsl(var(--primary));
}
.text-accent {
  color: hsl(var(--accent));
}
.text-blue {
  color: hsl(217 91% 60%);
}
.text-orange {
  color: hsl(25 95% 53%);
}
.text-cyan {
  color: hsl(185 100% 50%);
}
.text-green {
  color: hsl(142 71% 45%);
}
.text-yellow {
  color: hsl(48 96% 53%);
}
.text-purple {
  color: hsl(265 90% 60%);
}

/* ═══════════════════════════════════════
   Glow Effects
   ═══════════════════════════════════════ */
.glow-purple {
  box-shadow: var(--glow-purple);
}
.glow-cyan {
  box-shadow: var(--glow-cyan);
}
.text-glow-purple {
  text-shadow:
    0 0 20px hsl(265 90% 60% / 0.6),
    0 0 40px hsl(265 90% 60% / 0.3);
}
.text-glow-cyan {
  text-shadow:
    0 0 20px hsl(185 100% 50% / 0.6),
    0 0 40px hsl(185 100% 50% / 0.3);
}

/* ═══════════════════════════════════════
   Navbar
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: hsl(var(--accent) / 0.2);
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--accent));
  animation: spin 8s linear infinite;
}
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: hsl(var(--accent));
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-link:hover {
  color: hsl(var(--foreground));
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-trigger svg.chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  display: none;
  z-index: 60;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu-inner {
  width: 14rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--popover));
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--secondary) / 0.5);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
}
.btn-md {
  height: 2.5rem;
  padding: 0 1rem;
}
.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}
.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
}
.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-outline-accent {
  border: 1px solid hsl(var(--accent) / 0.5);
  background: transparent;
  color: hsl(var(--accent));
}
.btn-outline-accent:hover {
  background: hsl(var(--accent) / 0.1);
  border-color: hsl(var(--accent));
}
.btn-hero {
  background: linear-gradient(to right, hsl(265 90% 55%), hsl(330 100% 55%));
  color: white;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 40px hsl(265 90% 60% / 0.5);
}
.btn-hero:hover {
  opacity: 0.9;
  box-shadow: 0 0 60px hsl(265 90% 60% / 0.7);
}
.btn-glass {
  background: hsl(var(--secondary) / 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  color: hsl(var(--foreground));
}
.btn-glass:hover {
  background: hsl(var(--secondary) / 0.7);
  border-color: hsl(var(--primary) / 0.3);
}

/* ═══════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.5;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-orb-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--neon-purple) / 0.2);
}
.hero-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsl(var(--neon-cyan) / 0.15);
  animation-delay: 1.5s;
}
.hero-orb-3 {
  top: 50%;
  right: 33%;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--neon-pink) / 0.1);
  filter: blur(80px);
  animation-delay: 3s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: hsl(var(--secondary) / 0.5);
  backdrop-filter: blur(4px);
  animation: fade-in 0.6s ease-out forwards;
  visibility: hidden;
}
.hero-badge .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(var(--accent));
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(to right, hsl(var(--neon-purple)), hsl(var(--neon-pink)), hsl(var(--neon-cyan)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  animation: fade-in 0.6s ease-out 0.2s both;
}
.hero-subtitle .highlight {
  color: hsl(var(--accent));
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  animation: fade-in 0.6s ease-out 0.3s both;
}
.hero-flow {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fade-in 0.6s ease-out 0.4s both;
}
.hero-flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  backdrop-filter: blur(4px);
  animation: float 6s ease-in-out infinite;
}
.hero-flow-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-flow-card-icon.upload {
  background: hsl(var(--secondary));
}
.hero-flow-card-icon.upload svg {
  color: hsl(var(--neon-purple));
}
.hero-flow-card-icon.download {
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
}
.hero-flow-card-icon.download svg {
  color: hsl(var(--accent));
}
.hero-flow-card span.label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.hero-flow-card span.label.accent-label {
  color: hsl(var(--accent));
}
.hero-flow-card span.sub {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground) / 0.7);
}
.hero-flow-card.output {
  border-color: hsl(var(--accent) / 0.3);
  box-shadow: var(--glow-cyan);
}
.hero-flow-connector {
  display: none;
  align-items: center;
}
.hero-flow-connector .line {
  width: 4rem;
  height: 2px;
}
.hero-flow-connector .line-l {
  background: linear-gradient(to right, hsl(var(--neon-purple)), hsl(var(--neon-cyan)));
}
.hero-flow-connector .line-r {
  background: linear-gradient(to right, hsl(var(--neon-cyan)), hsl(var(--neon-pink)));
}
.hero-flow-connector svg {
  color: hsl(var(--accent));
  animation: pulse 2s infinite;
}
.hero-flow-arrow-mobile svg {
  color: hsl(var(--accent));
  animation: bounce 1s infinite;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}
.hero-scroll svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-cta {
    flex-direction: row;
  }
  .hero-flow {
    flex-direction: row;
    gap: 2rem;
  }
  .hero-flow-connector {
    display: flex;
  }
  .hero-flow-arrow-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* ═══════════════════════════════════════
   Conversion Options Section
   ═══════════════════════════════════════ */
.conversions {
  padding: 5rem 1rem;
  position: relative;
}
.conversions-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, hsl(var(--primary) / 0.05), transparent);
}
.conversions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
.conversion-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--primary) / 0.5);
  background: hsl(var(--card) / 0.3);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  transition: all 0.3s;
}
.conversion-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  background: hsl(var(--card) / 0.5);
  box-shadow: 0 0 30px hsl(var(--primary) / 0.15);
}
.conversion-card .card-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.conversion-card:hover .card-gradient {
  opacity: 0.05;
}
.conversion-card .card-content {
  position: relative;
  z-index: 1;
}
.conversion-card .platforms {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.conversion-card .platforms span {
  font-weight: 600;
  font-size: 1.125rem;
}
.conversion-card .platforms svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.conversion-card:hover .platforms svg {
  color: hsl(var(--primary));
}
.conversion-card .card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.conversion-card .card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, hsl(var(--primary) / 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.conversion-card:hover .card-line {
  opacity: 1;
}

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

/* ═══════════════════════════════════════
   Section Headers
   ═══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p {
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
}
.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: "Orbitron", sans-serif;
}
.section-badge-purple {
  background: hsl(var(--neon-pink) / 0.1);
  border: 1px solid hsl(var(--neon-pink) / 0.2);
  color: hsl(var(--neon-pink));
}
.section-badge-cyan {
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
}
.section-badge-primary {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════
   Platforms Section
   ═══════════════════════════════════════ */
.platforms-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.platforms-section .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary) / 0.2), hsl(var(--background)));
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.platform-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
  cursor: default;
  text-align: center;
}
.platform-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}
.platform-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.3s;
}
.platform-card:hover h4 {
  color: hsl(var(--primary));
}
.platform-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hardware-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--secondary) / 0.3);
  border: 1px solid hsl(var(--border) / 0.3);
  transition: all 0.3s;
  text-align: center;
}
.hardware-card:hover {
  border-color: hsl(var(--accent) / 0.3);
  background: hsl(var(--secondary) / 0.5);
}
.hardware-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s;
}
.hardware-card:hover h4 {
  color: hsl(var(--accent));
}
.hardware-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}
.section-subtitle {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hardware-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ═══════════════════════════════════════
   How It Works Section
   ═══════════════════════════════════════ */
.how-it-works {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.how-it-works .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--muted) / 0.05), hsl(var(--background)));
}
.steps-container {
  position: relative;
}
.steps-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.steps-line-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, hsl(var(--neon-purple)), hsl(var(--neon-cyan)), hsl(var(--neon-pink)));
  opacity: 0.3;
}
.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}
.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  transition: all 0.5s;
}
.step-card:hover {
  transform: scale(1.02);
}
.step-card.purple {
  border: 1px solid hsl(var(--neon-purple) / 0.3);
  box-shadow: 0 0 30px hsl(265 90% 60% / 0.3);
}
.step-card.cyan {
  border: 1px solid hsl(var(--neon-cyan) / 0.3);
  box-shadow: 0 0 30px hsl(185 100% 50% / 0.3);
}
.step-card.pink {
  border: 1px solid hsl(var(--neon-pink) / 0.3);
  box-shadow: 0 0 30px hsl(330 100% 60% / 0.3);
}
.step-number {
  position: absolute;
  right: 2rem;
  top: 1rem;
  left: unset;
  font-family: "Orbitron", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.2;
}
.step-number.purple {
  color: hsl(var(--neon-purple));
}
.step-number.cyan {
  color: hsl(var(--neon-cyan));
}
.step-number.pink {
  color: hsl(var(--neon-pink));
}
.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.step-icon.purple {
  background: hsl(var(--neon-purple) / 0.1);
  border: 1px solid hsl(var(--neon-purple) / 0.3);
}
.step-icon.cyan {
  background: hsl(var(--neon-cyan) / 0.1);
  border: 1px solid hsl(var(--neon-cyan) / 0.3);
}
.step-icon.pink {
  background: hsl(var(--neon-pink) / 0.1);
  border: 1px solid hsl(var(--neon-pink) / 0.3);
}
.step-icon svg {
  width: 2rem;
  height: 2rem;
}
.step-icon.purple svg {
  color: hsl(var(--neon-purple));
}
.step-icon.cyan svg {
  color: hsl(var(--neon-cyan));
}
.step-icon.pink svg {
  color: hsl(var(--neon-pink));
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.step-arrow-mobile {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.step-arrow-mobile svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--muted-foreground));
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .step-arrow-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .steps-line {
    display: block;
  }
}

/* ═══════════════════════════════════════
   Features Section
   ═══════════════════════════════════════ */
.features-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.features-section .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary) / 0.1));
}
.features-grid {
  display: grid;
  gap: 1.5rem;
}
.feature-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.5s;
  overflow: hidden;
}
.feature-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--card) / 0.8);
}
.feature-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-card-icon {
  background: hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.4);
  transform: scale(1.1);
}
.feature-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.feature-card:hover h3 {
  color: hsl(var(--primary));
}
.feature-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.feature-card .hover-gradient {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.feature-card:hover .hover-gradient {
  opacity: 1;
}

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

/* ═══════════════════════════════════════
   Pricing Section
   ═══════════════════════════════════════ */
.pricing-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.pricing-section .bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}
.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card.default {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
}
.pricing-card.default:hover {
  border-color: hsl(var(--primary) / 0.2);
}
.pricing-card.highlighted {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--primary) / 0.4);
  box-shadow: var(--glow-purple);
  transform: scale(1.02);
}
.pricing-card .popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(to right, hsl(var(--neon-purple)), hsl(var(--neon-pink)));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Orbitron", sans-serif;
}
.pricing-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
}
.pricing-card .price .period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.pricing-card .desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}
.pricing-card .features-list {
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-card .features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}
.pricing-card .features-list li svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════
   Footer
   ═══════════════════════════════════════ */
.footer {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════
   Modal / Dialog
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 48rem;
  border-radius: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--primary) / 0.2);
  box-shadow: var(--glow-purple);
  overflow: hidden;
}
.modal-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  border-left: 2px solid hsl(var(--primary) / 0.4);
  border-top: 2px solid hsl(var(--primary) / 0.4);
  border-radius: 1.5rem 0 0 0;
}
.modal-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  border-right: 2px solid hsl(var(--accent) / 0.4);
  border-bottom: 2px solid hsl(var(--accent) / 0.4);
  border-radius: 0 0 1.5rem 0;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}
.modal-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  text-align: center;
}
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: hsl(var(--secondary) / 0.5);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}
.modal-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}
.modal-badge span {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}
.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.modal .modal-desc {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto 1rem;
}
.modal-form input[type="email"] {
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
  color: hsl(var(--foreground));
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form input[type="email"]:focus {
  border-color: hsl(var(--primary) / 0.5);
}
.modal-form input[type="email"]::placeholder {
  color: hsl(var(--muted-foreground));
}
.modal-fine-print {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.modal-divider {
  margin: 1.5rem 0;
  border-top: 1px solid hsl(var(--border) / 0.3);
}
.modal-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.modal-stats .stat {
  text-align: center;
}
.modal-stats .stat-value {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.modal-stats .stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.modal-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  border-top-color: hsl(var(--primary-foreground));
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@media (min-width: 640px) {
  .modal-form {
    flex-direction: row;
  }
  .modal h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .modal-body {
    padding: 3rem;
  }
  .modal-stats {
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════
   Converter Pages
   ═══════════════════════════════════════ */
.converter-page {
  min-height: 100vh;
}
.converter-page main {
  padding-bottom: 4rem;
}
.converter-page main:not(:has(.hero)) {
  padding-top: 6rem;
}
.converter-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.converter-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.drop-zone {
  position: relative;
  border-radius: 1rem;
  border: 2px dashed hsl(var(--border));
  transition: all 0.3s;
  cursor: pointer;
}
.drop-zone:hover {
  border-color: hsl(var(--primary) / 0.5);
}
.drop-zone.dragging {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  transform: scale(1.02);
}
.drop-zone.dragging-blue {
  border-color: hsl(217 91% 60%);
  background: hsl(217 91% 60% / 0.1);
  transform: scale(1.02);
}
.drop-zone.dragging-orange {
  border-color: hsl(25 95% 53%);
  background: hsl(25 95% 53% / 0.1);
  transform: scale(1.02);
}
.drop-zone-gradient {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  pointer-events: none;
}
.drop-zone-content {
  position: relative;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.drop-zone-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}
.drop-zone-icon.purple {
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
}
.drop-zone-icon.blue {
  background: hsl(217 91% 60% / 0.2);
  border: 1px solid hsl(217 91% 60% / 0.3);
}
.drop-zone-icon.orange {
  background: hsl(25 95% 53% / 0.2);
  border: 1px solid hsl(25 95% 53% / 0.3);
}
.drop-zone-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.drop-zone-icon.purple svg {
  color: hsl(var(--primary));
}
.drop-zone-icon.blue svg {
  color: hsl(217 91% 60%);
}
.drop-zone-icon.orange svg {
  color: hsl(25 95% 53%);
}
.drop-zone h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.drop-zone p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.drop-zone code {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
.drop-zone code.blue {
  color: hsl(217 91% 60%);
  background: hsl(217 91% 60% / 0.1);
}
.drop-zone code.orange {
  color: hsl(25 95% 53%);
  background: hsl(25 95% 53% / 0.1);
}
.drop-zone .file-info {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}
.drop-zone input[type="file"] {
  display: none;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.quick-info-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
}

@media (min-width: 768px) {
  .converter-title {
    font-size: 3rem;
  }
  .drop-zone-content {
    padding: 4rem;
  }
  .drop-zone h2 {
    font-size: 1.5rem;
  }
}

/* Converter Features Grid */
.converter-features {
  display: grid;
  gap: 1.5rem;
}
.converter-feature-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.converter-feature-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}
.converter-feature-card.blue:hover {
  border-color: hsl(217 91% 60% / 0.3);
}
.converter-feature-card.orange:hover {
  border-color: hsl(25 95% 53% / 0.3);
}
.converter-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.converter-feature-card:hover .converter-feature-icon {
  transform: scale(1.1);
}
.converter-feature-icon.purple {
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
}
.converter-feature-icon.blue {
  background: hsl(217 91% 60% / 0.2);
  border: 1px solid hsl(217 91% 60% / 0.3);
}
.converter-feature-icon.orange {
  background: hsl(25 95% 53% / 0.2);
  border: 1px solid hsl(25 95% 53% / 0.3);
}
.converter-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.converter-feature-icon.purple svg {
  color: hsl(var(--primary));
}
.converter-feature-icon.blue svg {
  color: hsl(217 91% 60%);
}
.converter-feature-icon.orange svg {
  color: hsl(25 95% 53%);
}
.converter-feature-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.converter-feature-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

/* Converter Steps */
.converter-steps {
  display: grid;
  gap: 2rem;
}
.converter-step {
  position: relative;
}
.converter-step .step-num {
  font-family: "Orbitron", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.25;
  margin-bottom: 1rem;
}
.converter-step .step-num.purple {
  color: hsl(var(--primary));
}
.converter-step .step-num.blue {
  color: hsl(217 91% 60%);
}
.converter-step .step-num.orange {
  color: hsl(25 95% 53%);
}
.converter-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.converter-step p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.converter-step .step-arrow {
  display: none;
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.3;
}
.converter-step .step-arrow.purple {
  color: hsl(var(--primary) / 0.3);
}
.converter-step .step-arrow.blue {
  color: hsl(217 91% 60% / 0.3);
}
.converter-step .step-arrow.orange {
  color: hsl(25 95% 53% / 0.3);
}

@media (min-width: 768px) {
  .converter-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .converter-step .step-arrow {
    display: block;
  }
}

/* Cue Type Mapping (Traktor converter) */
.cue-mapping {
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
}
.cue-mapping h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cue-mapping p {
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.cue-columns {
  display: grid;
  gap: 1rem;
}
.cue-column {
  padding: 1rem;
  border-radius: 0.5rem;
  background: hsl(var(--secondary) / 0.5);
}
.cue-column h4 {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.cue-column h4.primary {
  color: hsl(var(--primary));
}
.cue-column h4.accent {
  color: hsl(var(--accent));
}
.cue-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cue-column li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.cue-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.cue-dot.green {
  background: hsl(142 71% 45%);
}
.cue-dot.orange {
  background: hsl(25 95% 53%);
}
.cue-dot.yellow {
  background: hsl(48 96% 53%);
}
.cue-dot.purple {
  background: hsl(265 90% 60%);
}
.cue-dot.cyan {
  background: hsl(185 100% 50%);
}

@media (min-width: 768px) {
  .cue-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .cue-mapping h2 {
    font-size: 1.5rem;
  }
}

/* Technical Note */
.tech-note {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.2);
  display: flex;
  gap: 1rem;
}
.tech-note svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.tech-note h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.tech-note p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ Section */
.faq-section details {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(4px);
  margin-bottom: 1rem;
}
.faq-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
  list-style: none;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section summary:hover {
  color: hsl(var(--primary));
}
.faq-section.faq-blue summary:hover {
  color: hsl(217 91% 60%);
}
.faq-section.faq-orange summary:hover {
  color: rgb(249, 116, 21);
}
.faq-section.faq-purple summary:hover {
  color: hsl(271 91% 65%);
}
.faq-section summary .toggle {
  margin-left: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.25rem;
  transition: transform 0.2s;
}
.faq-section details[open] summary .toggle {
  transform: rotate(45deg);
}
.faq-section .faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
}
.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Converter page section headings – match homepage .section-header h2 */
.converter-page .text-center > h2 {
  font-size: 1.875rem;
  font-weight: 700;
}
.cta-section p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-section .cta-buttons {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
  .converter-page .text-center > h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .cta-section h2 {
    font-size: 3rem;
  }
  .converter-page .text-center > h2 {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════
   Thank You Page
   ═══════════════════════════════════════ */
.thank-you-card {
  position: relative;
  border-radius: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--primary) / 0.2);
  box-shadow: var(--glow-purple);
  overflow: hidden;
  padding: 2rem;
  margin-bottom: 4rem;
}
.thank-you-card .modal-corner-tl,
.thank-you-card .modal-corner-br {
  pointer-events: none;
}
.thank-you-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--accent) / 0.2);
  border: 1px solid hsl(var(--accent) / 0.4);
  margin-bottom: 1rem;
  animation: pulse-glow 3s ease-in-out infinite;
}
.thank-you-check svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent));
}
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.benefit-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: hsl(var(--primary) / 0.2);
}
.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}
.benefit-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.benefit-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .thank-you-card {
    padding: 3rem;
  }
}

/* ═══════════════════════════════════════
   Spacing helpers
   ═══════════════════════════════════════ */
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
   Animations
   ═══════════════════════════════════════ */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════
   Gradient text utility
   ═══════════════════════════════════════ */
.gradient-text-purple-pink {
  background: linear-gradient(to right, hsl(var(--neon-purple)), hsl(var(--neon-pink)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-blue-purple {
  background: linear-gradient(to right, hsl(217 91% 60%), hsl(var(--primary)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-orange-purple {
  background: linear-gradient(to right, hsl(25 95% 53%), hsl(var(--primary)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-primary-accent {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Full-width button */
.btn-full {
  width: 100%;
}

/* Decorative orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
