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

:root {
  --bg-primary: #07080d;
  --bg-secondary: #0e111d;
  --bg-card: rgba(17, 20, 34, 0.55);
  --bg-input: rgba(10, 12, 22, 0.8);

  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(99, 102, 241, 0.3);

  --accent-primary: #6366f1;
  --accent-secondary: #a855f7;
  --accent-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --accent-gradient-hover: linear-gradient(135deg, #4f46e5, #9333ea);
  --accent-glow: 0 0 25px rgba(99, 102, 241, 0.35);
  --text-glow: 0 0 15px rgba(168, 85, 247, 0.4);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

.ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.ambient-light-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  animation: pulse-ambient 12s infinite alternate;
}

.ambient-light-2 {
  position: absolute;
  top: 40%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  animation: pulse-ambient 15s infinite alternate-reverse;
}

@keyframes pulse-ambient {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(40px, 30px);
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border-color);
  background: rgba(7, 8, 13, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.nav-brand:hover {
  opacity: 0.9;
}

.nav-brand svg {
  color: var(--accent-primary);
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--text-primary);
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-gradient);
  transition: var(--transition-fast);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gradient-hover);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-discord {
  background: #5865f2;
  color: white;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.45);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.showcase-container {
  position: relative;
}

.showcase-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  filter: blur(60px);
  opacity: 0.18;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.extension-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.mockup-header {
  background: rgba(7, 8, 13, 0.5);
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.mockup-dots {
  display: flex;
  gap: 0.35rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-dot.active {
  background: var(--accent-primary);
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mockup-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.mockup-overlay-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.face-landmark-mesh {
  width: 80%;
  height: 80%;
  color: rgba(99, 102, 241, 0.5);
  opacity: 0.85;
}

.mockup-status-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-family: monospace;
  font-size: 0.8rem;
  border: 1px solid var(--accent-secondary);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.mockup-controls {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
}

.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.control-row:last-child {
  margin-bottom: 0;
}

.control-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.control-value {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.features-preview {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

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

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
}

.pricing-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background: radial-gradient(50% 50% at 50% 50%, rgba(99, 102, 241, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

.pricing-card-wrapper {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.pricing-card-glow {
  position: absolute;
  inset: -1px;
  background: var(--accent-gradient);
  border-radius: 24px;
  z-index: -1;
  filter: blur(2px);
  transition: var(--transition-normal);
}

.pricing-card-wrapper:hover .pricing-card-glow {
  filter: blur(8px);
}

.pricing-card {
  background: #0a0b12;
  border-radius: 23px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.pricing-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  background: var(--accent-gradient);
  border-radius: 9999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  align-self: flex-start;
  margin-right: 0.2rem;
}

.price {
  font-size: 5rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.duration {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
  font-weight: 500;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.features-list {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.features-list li svg {
  color: #34d399;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

.pricing-cta .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

.payment-logos {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  opacity: 0.5;
  font-size: 0.8rem;
  align-items: center;
  color: var(--text-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.profile-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--accent-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-normal);
}

.profile-card:hover::after {
  opacity: 0.5;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.profile-avatar-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.profile-avatar-glow {
  position: absolute;
  inset: -6px;
  background: var(--accent-gradient);
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: var(--transition-normal);
}

.profile-card:hover .profile-avatar-glow {
  opacity: 0.7;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #1e293b;
  object-fit: cover;
  background: var(--bg-primary);
}

.profile-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profile-name {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.profile-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(88, 101, 242, 0.1);
  color: #a5b4fc;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(88, 101, 242, 0.2);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.03) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner-text {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  background: #040509;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

.footer-logo svg {
  color: var(--accent-primary);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.features-hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.features-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 2rem;
}

.feature-detail-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
}

.feature-detail-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-detail-row.reverse .feature-detail-content {
  grid-column: 2;
}

.feature-detail-row.reverse .feature-detail-visual {
  grid-column: 1;
  grid-row: 1;
}

.feature-detail-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.feature-detail-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-detail-visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.score-spoof-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-badge-demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.01);
}

.tier-badge-demo:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.03);
}

.tier-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tier-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.tier-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.tier-score {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
}

.tier-slayer {
  border-color: rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.tier-slayer .tier-icon-circle {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.tier-slayer .tier-score {
  color: #ef4444;
}

.tier-chad {
  border-color: rgba(244, 114, 182, 0.3) !important;
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.15);
}

.tier-chad .tier-icon-circle {
  background: rgba(244, 114, 182, 0.2);
  color: #f472b6;
  border: 1px solid #f472b6;
  box-shadow: 0 0 8px rgba(244, 114, 182, 0.5);
}

.tier-chad .tier-score {
  color: #f472b6;
}

.tier-chadlite {
  border-color: rgba(251, 146, 60, 0.3) !important;
  box-shadow: 0 0 15px rgba(251, 146, 60, 0.15);
}

.tier-chadlite .tier-icon-circle {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  border: 1px solid #fb923c;
  box-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
}

.tier-chadlite .tier-score {
  color: #fb923c;
}

.controls-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.shortcut-key-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.kbd-key {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: monospace;
  font-weight: 700;
  background: #1e293b;
  border-radius: 6px;
  border-bottom: 3px solid #0f172a;
  color: var(--text-primary);
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.key-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

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

  .feature-detail-row,
  .feature-detail-row.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-detail-row.reverse .feature-detail-content {
    grid-column: 1;
  }

  .feature-detail-row.reverse .feature-detail-visual {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}