:root {
  --bg-color: #050505;
  --accent-color: #FFD700;
  --accent-rgb: 255, 215, 0;
  --text-white: #ffffff;
  --text-dim: #a0a0a0;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

::selection {
  background: var(--accent-color);
  color: #000;
}

body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
}

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

/* Navigation & Logo */
.logo-icon {
    display: flex;
    gap: 3px;
    align-items: center;
}

.logo-bar {
    width: 4px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 2px;
}

.logo-bar:nth-child(2) { height: 18px; }

.header-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-account {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-join {
    background: var(--accent-color);
    color: #000;
}

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

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active-link {
  color: var(--accent-color);
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.mobile-nav-close:hover {
  color: var(--accent-color);
}

.menu-toggle {
  cursor: pointer;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 2.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
}

.glass-nav {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Nav Link Animation */
.nav-link {
  position: relative;
}

.nav-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: black;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Tailwind-like utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
.gap-32 { gap: 8rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mb-16 { margin-bottom: 4rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.inset-0 { top: 0; left: 0; bottom: 0; right: 0; }
.z-50 { z-index: 50; }
.z-10 { z-index: 10; }
.z-0 { z-index: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-64 { height: 16rem; }
.w-48 { width: 12rem; }
.h-48 { height: 12rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.min-h-screen { min-height: 100vh; }
.h-screen { height: 100vh; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-20 { padding: 5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.pt-40 { padding-top: 10rem; }
.pt-48 { padding-top: 12rem; }
.pb-32 { padding-bottom: 8rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-3xl { border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; }
.border-dashed { border-style: dashed; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-32 { margin-bottom: 8rem; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.ml-1 { margin-left: 0.25rem; }

/* Backgrounds */
.bg-black { background-color: #000; }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-accent { background-color: var(--accent-color); }
.bg-accent\/10 { background-color: rgba(var(--accent-rgb), 0.1); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-accent\/20 { border-color: rgba(var(--accent-rgb), 0.2); }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* Backdrop / Blur */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Spacing */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.gap-4 { gap: 1rem; }

/* Text Colors (opacity variants) */
.text-white { color: #fff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-black { color: #000; }
.text-accent { color: var(--accent-color); }
.text-accent\/5 { color: rgba(var(--accent-rgb), 0.05); }
.text-accent\/10 { color: rgba(var(--accent-rgb), 0.1); }

/* Display / Positioning */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.top-6 { top: 1.5rem; }
.left-6 { left: 1.5rem; }
.-right-10 { right: -2.5rem; }
.-top-10 { top: -2.5rem; }
.z-20 { z-index: 20; }

/* Sizing */
.h-auto { height: auto; }
.text-4xl { font-size: 2.25rem; }
.text-xl { font-size: 1.25rem; }

/* Interactions */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-all { transition: all 0.3s ease; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.hover\:text-accent:hover { color: var(--accent-color); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-accent\/10:hover { background-color: rgba(var(--accent-rgb), 0.1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-accent\/10 { color: rgba(var(--accent-rgb), 0.1); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* Object / Overflow */
.object-cover { object-fit: cover; }
.overflow-x-hidden { overflow-x: hidden; }

/* Typography extras */
.leading-relaxed { line-height: 1.625; }
.font-medium { font-weight: 500; }
.border-none { border: none; }
.w-full { width: 100%; }

/* Focus styles */
.focus\:outline-none:focus { outline: none; }
.focus\:border-accent:focus { border-color: var(--accent-color); }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-9xl { font-size: 8rem; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tighter { letter-spacing: -0.05em; }

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-8xl { font-size: 6rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Scrollers */
.scroller {
  max-width: 100%;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  gap: 1rem;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] { --_animation-direction: reverse; }
.scroller[data-direction="left"] { --_animation-direction: forwards; }

.scroller__item {
  width: auto;
  height: 350px;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.scroller__item:hover {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.scroller__item img {
  width: auto;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(0);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroller__item:hover img {
  filter: brightness(1.2);
}

@keyframes scroll {
  to { transform: translate(calc(-50% - 0.5rem)); }
}

/* Founder Sections */
.founder-section { padding: 10rem 0; }
.founder-row {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 10rem;
}

@media (min-width: 768px) {
  .founder-row { flex-direction: row; align-items: center; }
  .founder-row--reverse { flex-direction: row-reverse; }
}

.founder__image {
  flex: 1;
  position: relative;
}

.founder__image img {
  width: 100%;
  border-radius: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  filter: grayscale(1) contrast(1.1);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder__image:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.02);
}

.founder__content { flex: 1.2; }
.founder__role {
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.founder__bio {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-dim);
  font-weight: 300;
}

.founder__bio p { margin-bottom: 1.5rem; }

/* Responsive Grid Fixes */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 768px) {
  .grid-cols-2 { grid-template-columns: 1fr; }
}

/* Legacy Reversions for Hero & Footer */
.text-outline {
    -webkit-text-stroke: 2px var(--accent-color);
    color: transparent;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero__content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.hero__verse {
    font-size: 1.1rem;
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

.hero__btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.2);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-dim);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer Reversion */
.footer {
    background: #050505;
    padding: 6rem 0 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 20;
}

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

.footer__col {
    display: flex;
    flex-direction: column;
}

.logo--sm {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer__text {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__contact p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer__contact i {
    width: 24px;
    color: var(--accent-color);
}

.footer__heading {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__links a {
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Song Cards - High Fidelity */
.song-card {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-media {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-artist {
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-yt {
    color: #666;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer__bottom {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

@media (max-width: 768px) {
    /* Hero */
    .hero__title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    
    .hero__verse {
        font-size: 0.9rem;
    }
    
    .hero__btns {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Page heroes */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }
    
    /* Hide custom cursor on touch devices */
    #custom-cursor,
    #cursor-follower {
        display: none !important;
    }
    
    /* Feature sections - stack on mobile */
    .grid.grid-cols-1.md\:grid-cols-2.gap-20 {
        gap: 2rem !important;
    }
    
    .grid.grid-cols-1.gap-32 {
        gap: 4rem !important;
    }
    
    /* Song cards - stack */
    .song-card .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    /* Section padding */
    .py-32 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .pt-40 {
        padding-top: 7rem;
    }
    
    .mb-20 {
        margin-bottom: 3rem;
    }
    
    .mb-32 {
        margin-bottom: 4rem;
    }
    
    /* Feature text sizing */
    .text-5xl {
        font-size: 2rem;
    }

    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    /* Gap & spacing mobile overrides */
    .gap-20 {
        gap: 2rem;
    }
    
    .gap-32 {
        gap: 4rem;
    }
    
    /* Header mobile */
    .header {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .logo {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer__text {
        margin-inline: auto;
    }
    
    /* Hero */
    .hero__title {
        font-size: clamp(1.75rem, 12vw, 2.5rem);
    }
    
    .hero__content {
        padding: 0 1rem;
    }
    
    /* Page titles */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle,
    .hero__verse {
        font-size: 0.85rem;
    }
    
    /* Feature section text */
    .text-5xl {
        font-size: 1.75rem;
    }
    
    .text-lg {
        font-size: 0.95rem;
    }
    
    /* Main padding */
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .pt-40 {
        padding-top: 6rem;
    }
    
    .pb-32 {
        padding-bottom: 4rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 3rem;
    }
    
    .grid-footer {
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .footer__heading {
        margin-bottom: 1rem;
    }
    
    .footer__contact p {
        font-size: 0.75rem;
    }
    
    /* Section title */
    .section-title {
        font-size: 2rem !important;
    }
    
    /* Bento cards spacing */
    .bento-card {
        border-radius: 1.25rem;
    }
}
/* Community Reviews */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bg-gradient-to-br {
    background: linear-gradient(135deg, var(--tw-gradient-stops));
}

.from-accent\/20 {
    --tw-gradient-from: rgba(var(--accent-rgb), 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(var(--accent-rgb), 0));
}

.to-accent\/5 {
    --tw-gradient-to: rgba(var(--accent-rgb), 0.05);
}

.blur-\[120px\] {
    filter: blur(120px);
}

.-z-10 {
    z-index: -10;
}

/* Base fade-up animation for GSAP */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .review-card {
        padding: 2.5rem !important;
        border-radius: 2rem !important;
    }
}

