@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #0066ff;
  --dark-blue: #0052cc;
  --light-blue: #3385ff;
  --accent-blue: #0088ff;
  --cyan-blue: #00d4ff;
  --dark-bg: #0a0e27;
  --darker-bg: #050811;
  --card-bg: rgba(0, 102, 255, 0.05);
  --border-color: rgba(0, 102, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --glass-bg: rgba(0, 102, 255, 0.08);
  --shadow-primary: 0 8px 32px rgba(0, 102, 255, 0.25);
  --shadow-intense: 0 24px 64px rgba(0, 102, 255, 0.35);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--dark-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cursor {
  display: none;
}

.cursor-follower {
  display: none;
}

@media (max-width: 968px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

.nav {
  background: rgba(5, 8, 17, 0.98);
  backdrop-filter: blur(30px) saturate(180%);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: var(--transition-smooth);
}

.nav.scrolled {
  padding: 15px 0;
  background: rgba(5, 8, 17, 0.99);
  box-shadow: var(--shadow-primary);
  border-bottom-color: rgba(0, 102, 255, 0.3);
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.logo:hover::after { width: 100%; }
.logo:hover { transform: scale(1.05); }

.logo img {
  height: 42px;
  filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
  transition: filter 0.3s;
}

.logo:hover img { filter: drop-shadow(0 0 25px rgba(0, 102, 255, 0.6)); }

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
  font-size: 15px;
}

.nav-link:hover { color: var(--primary-blue); transform: translateY(-2px); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
  font-size: 15px;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 102, 255, 0.3); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid rgba(0, 102, 255, 0.5);
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 15px;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before { width: 300px; height: 300px; }
.btn-secondary:hover { border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2); }

.announcement {
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--primary-blue));
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 88px;
  position: relative;
  overflow: hidden;
}

.announcement::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine { to { left: 100%; } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.announcement a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s;
}

.announcement a:hover { border-bottom-color: var(--text-primary); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050811 0%, #0a1540 50%, #050811 100%);
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.4;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 102, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s infinite;
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.8);
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.shape1 {
  width: 400px;
  height: 400px;
  top: 15%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}

.shape2 {
  width: 500px;
  height: 500px;
  bottom: 15%;
  right: 10%;
  animation: float 12s ease-in-out infinite reverse;
}

.shape3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(20px, -20px) rotate(60deg) scale(1.05); }
  66% { transform: translate(-20px, 20px) rotate(120deg) scale(0.95); }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 120px 0;
}

.hero-text {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fff 0%, var(--light-blue) 50%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -3px;
}

.subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent);
  filter: blur(100px);
  z-index: -1;
  animation: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.hero-visual img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
}

.section {
  padding: 140px 0;
  position: relative;
}

.section-grey {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  color: #333;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
}

.section-grey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

.showcase-section {
  background: radial-gradient(ellipse at top, rgba(0, 102, 255, 0.05), transparent),
              linear-gradient(135deg, #050811 0%, #0a1540 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent);
  top: -300px;
  right: -300px;
  animation: none;
  filter: blur(120px);
}

.section-title {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-title.animate { opacity: 1; transform: translateY(0); }

.section-light .section-title,
.section-grey .section-title { color: #1a1a1a; }

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.feature-card.animate { opacity: 1; transform: translateY(0); }

.section-light .feature-card,
.section-grey .feature-card {
  background: #fff;
  border: 1px solid rgba(230, 57, 70, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
}

.feature-card:hover::after { width: 400px; height: 400px; }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.3);
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon { transform: scale(1.08); }

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 102, 255, 0.4));
  transition: filter 0.3s;
}

.feature-card:hover .feature-icon img { filter: drop-shadow(0 8px 16px rgba(0, 102, 255, 0.6)); }

.feature-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.section-light .feature-card h3,
.section-grey .feature-card h3 { color: #1a1a1a; }

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.section-light .feature-card p,
.section-grey .feature-card p { color: #666; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 100px;
}

.showcase-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 72px;
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  position: relative;
  overflow: hidden;
}

.showcase-card.animate { opacity: 1; transform: translateY(0) scale(1); }

.showcase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.showcase-card:hover::before { opacity: 1; }

.showcase-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.2);
}

.showcase-card img {
  width: 280px;
  height: auto;
  margin-bottom: 36px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 102, 255, 0.15));
}

.showcase-card:hover img { transform: scale(1.05); }

.showcase-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.showcase-card p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  border-radius: 32px;
  padding: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.25);
}

.cta-card.animate { opacity: 1; transform: translateY(0); }

.cta-card::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -150px;
  animation: none;
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #000000;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-primary {
  background: var(--primary-blue);
  color: #000000;
  font-size: 17px;
  padding: 16px 40px;
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.3);
  font-weight: 600;
}

.cta-content .btn-primary:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.4);
}

.cta-image {
  position: relative;
  z-index: 2;
}

.cta-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.cta-image img:hover { transform: scale(1.02); }

.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 100px 0 48px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
  transition: filter 0.3s;
}

.footer-brand img:hover { filter: drop-shadow(0 0 25px rgba(0, 102, 255, 0.6)); }

.footer-brand p {
  color: var(--text-muted);
  font-size: 16px;
}

.footer-column h4 {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 14px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--light-blue);
  transform: translateX(8px);
}

.footer-bottom {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(230, 57, 70, 0.1);
  color: var(--text-muted);
  font-size: 14px;
}

.mobile-menu { display: none; }

@media (max-width: 968px) {
  .nav-menu { display: none; }
  .mobile-menu {
    display: block;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 8px;
    z-index: 1001;
  }
  .mobile-menu:hover { transform: scale(1.1); }
  .mobile-menu.active { color: var(--primary-blue); }
  .nav-menu.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
  }
  .nav-menu.active li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  }
  .nav-menu.active li:last-child {
    border-bottom: none;
    padding-top: 20px;
  }
  .nav-menu.active .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-content { grid-template-columns: 1fr; gap: 60px; text-align: center; padding: 80px 0; }
  .hero-text h1 { font-size: 52px; }
  .hero-text p { font-size: 18px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .section-title { font-size: 42px; }
  .section { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-card { padding: 36px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { padding: 48px; }
  .cta-card { grid-template-columns: 1fr; padding: 60px 40px; text-align: center; }
  .cta-content h2 { font-size: 38px; }
  .footer-content { grid-template-columns: 1fr; gap: 48px; }
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .hero-visual img { max-width: 100%; width: 100%; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 38px; }
  .subtitle { font-size: 18px; }
  .hero-text p { font-size: 16px; }
  .section-title { font-size: 32px; margin-bottom: 60px; }
  .btn-primary { padding: 12px 24px; font-size: 14px; }
  .btn-secondary { padding: 10px 24px; font-size: 14px; }
  .feature-card { padding: 24px; }
  .showcase-card { padding: 24px; }
  .cta-card { padding: 40px 24px; }
  .cta-content h2 { font-size: 28px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons a { width: 100%; }
  .footer-brand img { width: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}