:root {
  /* Colors - Light Airy Water Theme */
  --bg-color: #f0f8ff;
  --bg-gradient-start: #e0f2fe;
  --bg-gradient-end: #f8fafc;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  
  --brand-primary: #0284c7;
  --brand-secondary: #0ea5e9;
  --brand-accent: #38bdf8;
  --brand-glow: rgba(14, 165, 233, 0.4);
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Layout */
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Ambient Background Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(to right, #7dd3fc, #38bdf8);
  top: -10%;
  left: -10%;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(to right, #bae6fd, #e0f2fe);
  bottom: 0%;
  right: -5%;
}

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

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Glassmorphism Utilities */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--glass-shadow);
}

/* Navigation */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  position: sticky;
  top: 1.5rem;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-normal);
}

.topbar:hover::before {
  background: rgba(255, 255, 255, 0.7);
}

.topbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  padding-left: max(1.5rem, calc((100% - 1200px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - 1200px) / 2 + 1.5rem));
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  z-index: 2000;
}


.topbar.scrolled::before {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.dark-theme .topbar.scrolled::before {
  background: rgba(15, 23, 42, 0.85);
}

/* Compensate for fixed header height when it's scrolled */
.topbar.scrolled + main {
  padding-top: 100px;
}



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

.brand-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 12px var(--brand-glow);
  background: #fff;
  padding: 4px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-copy small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.close-menu-btn {
  display: none;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-cta {
  background: var(--brand-primary);
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px var(--brand-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--brand-glow);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
  margin-top: 2rem;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--text-main), var(--brand-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

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

.button {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  box-shadow: 0 8px 20px var(--brand-glow);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px var(--brand-glow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--text-main);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.hero-stats li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(4px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.hero-stats span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-wrapper:hover .hero-bg-img {
  transform: scale(1.05);
}

.glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.water-branding {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.water-title {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 15px rgba(2, 132, 199, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.card-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.05em;
}

.mini-chips {
  display: flex;
  gap: 0.8rem;
}

.mini-chip {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
}

/* Feature Ribbon */
.feature-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-ribbon article {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.feature-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.feature-ribbon h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.feature-ribbon p {
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

/* About Section */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.section-panel {
  padding: 3rem;
}

.section-panel p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.section-panel p:last-child {
  margin-bottom: 0;
}

.section-panel p.about-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.company-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.2rem;
  background: rgba(14, 165, 233, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
}

.detail-text strong, .detail-text a {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
}

.detail-text a:hover {
  color: var(--brand-primary);
}

/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.hover-lift:hover .card-glow {
  opacity: 1;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.split-panel {
  padding: 3rem;
}

.no-padding {
  padding: 0;
  overflow: hidden;
}

.highlight-panel {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.8), rgba(255, 255, 255, 0.4));
}

.split-panel h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.split-panel p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
}

.checklist span {
  font-weight: 600;
  font-size: 1.05rem;
}

/* Media Section */
.media-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1.5rem auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  padding: 0;
  display: block;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.contact-copy {
  padding: 3rem;
}

.contact-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-copy p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  gap: 1rem;
}

.button-outline {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}

.button-outline:hover {
  background: var(--brand-primary);
  color: #fff;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-gradient strong {
  font-size: 2rem;
  line-height: 1.2;
  margin: 1rem 0;
}

.bg-gradient .contact-tag {
  color: #e0f2fe;
}

.bg-gradient span {
  color: #bae6fd;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive code moved to the bottom of the file */

/* Dark Theme Overrides */
body.dark-theme {
  --bg-color: #020617;
  --bg-gradient-start: #061529;
  --bg-gradient-end: #0f172a;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --brand-primary: #38bdf8;
  --brand-secondary: #0ea5e9;
  --brand-accent: #e0f2fe;
  --brand-glow: rgba(56, 189, 248, 0.2);
  
  --glass-bg: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

body.dark-theme .highlight-panel {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(15, 23, 42, 0.8));
}

body.dark-theme .topbar::before {
  background: rgba(15, 23, 42, 0.6);
}

body.dark-theme .nav.is-open {
  background: rgba(15, 23, 42, 0.95);
}

/* Theme Toggle Button */
.theme-toggle {
  background: rgba(15, 23, 42, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  color: var(--text-main);
}

body.dark-theme .theme-toggle {
  background: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--brand-glow);
}

/* Extended Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  line-height: 0;
  background: var(--glass-bg);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Site Footer */
.site-footer {
  margin-top: 5rem;
  padding: 4rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.footer-links a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.footer-contact p, .footer-contact a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.creator-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  padding-bottom: 2rem;
  margin-top: -0.5rem;
}

.heart-icon {
  color: #ef4444;
  display: inline-flex;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(0.95); }
  45% { transform: scale(1.15); }
}

.creator-link {
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-decoration: none;
  padding: 0 0.1rem;
  transition: all var(--transition-normal);
}

.creator-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.creator-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.creator-link:hover {
  filter: drop-shadow(0 0 8px var(--brand-glow));
}

/* Responsive Styles */
@media (max-width: 968px) {
  .hero, .section-grid, .split-section, .contact-section {
    grid-template-columns: 1fr;
  }
  
  .feature-ribbon {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .hero {
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem;
    padding-top: calc(2rem + env(safe-area-inset-top));
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
  }
  
  .nav.is-open {
    transform: translateX(0);
  }
  
  .nav a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
  }
  
  .nav .nav-cta {
    font-size: 1.25rem;
    padding: 0.8rem 2rem;
    margin-top: 0.5rem;
  }
  
  body.dark-theme .nav {
    background: rgba(15, 23, 42, 0.98);
  }
  
  .theme-toggle {
    margin-top: 0.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }

  .close-menu-btn {
    display: block;
    position: absolute;
    top: calc(1.5rem + env(safe-area-inset-top));
    right: 1.5rem;
    z-index: 2001;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1rem 1.25rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .creator-credit {
    font-size: 0.85rem;
  }
}
