/* ========================================
   TonCraft Landing Page
   Design System: Dark Mode (OLED) + Purple/Gold
   ======================================== */

:root {
  /* Colors - Vibrant Cyberpunk Tech Theme */
  --primary: #06B6D4;        /* Bright cyan */
  --primary-light: #67E8F9;  /* Electric cyan */
  --primary-dark: #0891B2;   /* Deep cyan */
  
  --secondary: #A855F7;      /* Bright purple */
  --secondary-light: #C084FC;/* Light purple */
  --secondary-dark: #7C3AED; /* Deep purple */
  
  --accent: #10B981;         /* Neon green */
  --accent-alt: #F59E0B;     /* Electric amber */
  --accent-pink: #EC4899;    /* Hot pink */
  
  --bg-primary: #0A0F1E;     /* Deep navy */
  --bg-secondary: #111827;   /* Slate dark */
  --bg-card: #1F2937;        /* Card gray */
  --bg-card-hover: #374151;  /* Card hover */
  
  --text-primary: #F9FAFB;
  --text-secondary: #E5E7EB;
  --text-muted: #9CA3AF;
  
  --border: #374151;
  --border-bright: #4B5563;
  
  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Effects */
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.4);
  --glow-purple: 0 0 30px rgba(168, 85, 247, 0.4);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  
  /* Transitions */
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #0A0F1E 0%, #111827 50%, #1F2937 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

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

/* ========================================
   Navigation
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.brand-logo {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
  animation: float 3s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}

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

/* ========================================
   Hero
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--spacing-3xl) + 60px) var(--spacing-lg) var(--spacing-3xl);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid var(--primary);
  border-radius: 100px;
  color: var(--primary-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 0 rgba(6, 182, 212, 0.4);
  }
  50% {
    box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 12px rgba(6, 182, 212, 0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 50%, var(--secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.3));
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 12px;
  box-shadow: var(--glow-cyan), var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.6), 0 0 60px rgba(168, 85, 247, 0.4), var(--shadow-lg);
  animation: none;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), var(--shadow-lg);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), var(--shadow-lg);
  }
}

.cta-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.hero-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: pulse-slow 4s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes pulse-slow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.15));
  animation: float 20s ease-in-out infinite;
  filter: blur(20px);
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: -7s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
}

/* ========================================
   Tools Section
   ======================================== */

.tools {
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: var(--bg-secondary);
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.3));
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.tool-card {
  position: relative;
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-cyan), 0 8px 30px rgba(6, 182, 212, 0.3);
}

.tool-card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.05));
  box-shadow: var(--glow-cyan), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tool-card--featured:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(168, 85, 247, 0.08));
  box-shadow: var(--glow-cyan), var(--glow-purple), 0 12px 40px rgba(6, 182, 212, 0.4);
}

.tool-card--soon {
  opacity: 0.7;
  cursor: default;
}

.tool-card--soon:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.tool-icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.1));
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  transition: all var(--transition);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.tool-card:hover .tool-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(168, 85, 247, 0.2));
  box-shadow: var(--glow-cyan);
  border-color: var(--primary);
}

.tool-icon--primary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.15));
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.tool-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.tool-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.tool-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.tool-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.tool-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.feature-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  stroke-width: 2.5;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

.tool-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.tool-status {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.tool-status--soon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(6, 182, 212, 0.1));
  border-color: var(--secondary);
  color: var(--secondary-light);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.tool-link {
  color: var(--primary-light);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* ========================================
   About Section
   ======================================== */

.about {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: var(--spacing-2xl);
}

.about-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-md);
  line-height: 1.75;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.principle {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.principle--1 { animation-delay: 0.1s; }
.principle--2 { animation-delay: 0.2s; }
.principle--3 { animation-delay: 0.3s; }

.principle:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-cyan), 0 8px 30px rgba(6, 182, 212, 0.2);
}

.principle-icon-wrapper {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.1));
  border-radius: 12px;
  flex-shrink: 0;
  transition: all var(--transition);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.principle:hover .principle-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(168, 85, 247, 0.2));
  box-shadow: var(--glow-cyan);
  border-color: var(--primary);
}

.principle-icon {
  width: 100%;
  height: 100%;
  stroke: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.principle-title {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
  font-weight: 600;
}

.principle-text {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 -4px 24px rgba(6, 182, 212, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
}

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

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition);
  cursor: pointer;
}

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

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ========================================
   Legal Pages
   ======================================== */

.legal-page {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.legal-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: pulse-slow 4s ease-in-out infinite;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.legal-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 0.8s ease-out;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content {
  background: var(--bg-secondary);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: var(--spacing-3xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.legal-content ul {
  margin-left: 24px;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.legal-content a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.legal-content strong {
  color: #fff;
  font-weight: 600;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .nav-container {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .nav-links {
    gap: var(--spacing-md);
  }
  
  .hero {
    min-height: 90vh;
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .tools, .about {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .about-principles {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
  }
  
  .tool-card {
    padding: var(--spacing-lg);
  }
}

/* ========================================
   Accessibility
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
