/* ========================================
   NOVAULT — Premium Design System
   Dark mode first, #ccfe00 accent, Web3 premium
   Complex interactive, animated
   ======================================== */

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

/* ========== COLOR TOKENS ========== */
:root {
  /* Light theme (fallback) */
  --color-ground: #fafafa;
  --color-surface: #f0f0f0;
  --color-surface-alt: #e8e8e8;
  --color-surface-deep: #dcdcdc;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-border: #d8d8d8;
  --color-border-light: #e8e8e8;
  --color-accent: #ccfe00;
  --color-accent-dark: #b0d600;
  --color-accent-light: #e6ff80;

  /* Layout & spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;
}

/* Dark theme (system pref) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-ground: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-alt: #242424;
    --color-surface-deep: #2a2a2a;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #707070;
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    --color-accent: #ccfe00;
    --color-accent-dark: #a8cc00;
    --color-accent-light: #e6ff80;
  }
}

/* Dark theme (explicit toggle) */
:root[data-theme="dark"] {
  --color-ground: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-surface-alt: #242424;
  --color-surface-deep: #2a2a2a;
  --color-text-primary: #f5f5f5;
  --color-text-secondary: #a0a0a0;
  --color-text-muted: #707070;
  --color-border: #2a2a2a;
  --color-border-light: #333333;
  --color-accent: #ccfe00;
  --color-accent-dark: #a8cc00;
  --color-accent-light: #e6ff80;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--color-ground);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-dark);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-accent);
  color: #000000;
  box-shadow: 0 8px 24px rgba(204, 254, 0, 0.2);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 16px 48px rgba(204, 254, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-surface);
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  font-weight: 500;
}

.btn-ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ========== NAVBAR ========== */
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) var(--space-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.3s ease;
}

nav.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: var(--space-md) var(--space-2xl);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.navbar-logo img,
.navbar-logo svg {
  width: 36px;
  height: 36px;
}

.navbar-links {
  display: flex;
  gap: var(--space-2xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--color-accent);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  gap: var(--space-md);
}

/* Mobile navbar */
@media (max-width: 768px) {
  nav.navbar {
    padding: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .navbar-links {
    display: none;
  }

  .navbar-cta {
    margin-left: auto;
  }
}

/* ========== SECTIONS ========== */
section {
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========== BACKGROUND ELEMENTS ========== */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(204, 254, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 254, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.bg-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 254, 0, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

section > * {
  position: relative;
  z-index: 1;
}

/* ========== HERO ========== */
.hero {
  margin-top: 100px;
  padding-top: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  animation: slideInLeft 0.8s ease;
}

.hero-content h1 .accent {
  color: var(--color-accent);
  display: inline-block;
  position: relative;
}

.hero-content h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin-bottom: var(--space-2xl);
  animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-visual {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease;
}

.hero-icon {
  width: 250px;
  height: 250px;
  opacity: 1;
  filter: drop-shadow(0 0 80px rgba(204, 254, 0, 0.25));
  animation: float 6s ease-in-out infinite;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 254, 0, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: var(--space-lg);
    margin-top: 60px;
    gap: var(--space-2xl);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .hero-icon {
    width: 150px;
    height: 150px;
  }
}

/* ========== FEATURES ========== */
.features {
  background: var(--color-surface);
  position: relative;
}

.section-label {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(204, 254, 0, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.feature-card {
  padding: var(--space-2xl);
  background: var(--color-ground);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(204, 254, 0, 0.1) 0%, transparent 70%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(204, 254, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  top: -20%;
  right: -10%;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  position: relative;
  z-index: 2;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ========== PROJECTS SECTION ========== */
.projects {
  background: var(--color-ground);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.project-card {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  group: 'project';
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.project-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.project-card:hover .project-card-bg {
  transform: scale(1.05);
}

.project-card-content {
  position: absolute;
  inset: 0;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(204, 254, 0, 0.2);
  border-color: var(--color-accent);
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(204, 254, 0, 0.15);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  width: fit-content;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: var(--space-lg) 0;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: auto;
  line-height: 1.5;
}

.project-stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

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

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

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

  .project-card {
    height: 300px;
  }
}

/* ========== STATS SECTION ========== */
.stats {
  background: var(--color-surface);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: 12px;
  background: var(--color-ground);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-ground) 100%);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.stat-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
  position: relative;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.cta-content p {
  margin: 0 auto var(--space-2xl);
  max-width: 60ch;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== SOCIAL PROOF ========== */
.social-proof {
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
  background: var(--color-ground);
}

.social-proof h2 {
  margin-bottom: var(--space-xl);
}

.twitter-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.twitter-link:hover {
  background: var(--color-surface-alt);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 254, 0, 0.15);
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  margin-top: var(--space-4xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  color: var(--color-text-primary);
}

.footer-brand img,
.footer-brand svg {
  width: 28px;
  height: 28px;
  display: inline;
  margin-right: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-section h4 {
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

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

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ========== DOCS SECTION ========== */
.docs-preview {
  background: var(--color-surface);
  position: relative;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.doc-card {
  padding: var(--space-2xl);
  background: var(--color-ground);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(204, 254, 0, 0.15);
}

.doc-card:hover::before {
  opacity: 1;
}

.doc-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.doc-card p {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

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

/* ========== APP SECTION ========== */
.app-preview {
  background: var(--color-ground);
  position: relative;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.app-feature {
  padding: var(--space-2xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(204, 254, 0, 0.1);
  border-radius: 12px;
}

.app-feature h3 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.app-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.app-feature:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
  box-shadow: 0 12px 32px rgba(204, 254, 0, 0.15);
}

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

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

/* ========== LEGAL PAGES ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  margin-top: 100px;
  color: var(--color-text-primary);
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-text-primary);
}

.legal-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.legal-content strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

.legal-content li {
  margin-bottom: var(--space-sm);
}

/* ========== UTILITIES ========== */
.text-accent {
  color: var(--color-accent);
}

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

.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-2xl) 0;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .navbar-links {
    gap: var(--space-lg);
  }

  section {
    padding: var(--space-xl) var(--space-md);
  }
}