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

:root {
  --bg-color: #030303;
  --text-color: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --accent: #ff007a;
  --accent-soft: rgba(255, 0, 122, 0.15);
  --secondary: #7000ff;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --container-max: 1200px;
  --header-height: clamp(70px, 8vw, 90px);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  z-index: 2000;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus States */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.btn-primary:focus-visible,
.btn-cta:focus-visible,
.btn-secondary:focus-visible {
  outline-offset: 6px;
}


html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
  border: 3px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Outfit', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Background Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Header & Nav */
.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 30px;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--accent) 100%);
  background-size: 200% auto;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(255, 0, 122, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 15px 30px rgba(255, 0, 122, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  filter: brightness(1.1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 11rem);
  line-height: 0.85;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: lowercase;
  color: #fff;
}

.glow {
  background: linear-gradient(90deg, #fff, var(--accent), var(--secondary), var(--accent), #fff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 10s linear infinite;
  display: inline-block;
  padding-right: 0.1em;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 0 3.5rem 0;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.btn-cta {
  background: var(--text-color);
  color: var(--bg-color);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--text-muted);
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-phone-container {
  position: relative;
}

.hero-phone-container .phone-mockup {
  z-index: 5;
}



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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  animation: blobRotate 30s linear infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  bottom: 5%;
  right: -5%;
  animation-duration: 40s;
  animation-direction: reverse;
}

@keyframes blobRotate {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }

  33% {
    transform: rotate(120deg) translate(80px, 40px) scale(1.1);
  }

  66% {
    transform: rotate(240deg) translate(-40px, 80px) scale(0.9);
  }

  100% {
    transform: rotate(360deg) translate(0, 0) scale(1);
  }
}

/* Scroll indicator removed as per user request */

@keyframes float {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(100px, 50px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 60px 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}



.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 0, 122, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.feature-step {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: #fff;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 0, 122, 0.2);
  box-shadow: 0 10px 20px rgba(255, 0, 122, 0.1);
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Feed Section */
.feed {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.05), transparent);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}

.event-card {
  background: var(--surface);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 122, 0.2);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.event-image-container {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover .event-image {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.badge-hot {
  background: var(--accent);
  color: #fff;
}

.badge-cat {
  background: var(--secondary);
  color: #fff;
}

.event-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-header h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.event-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-color);
  font-weight: 500;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.more-info {
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.event-card:hover .more-info {
  color: var(--accent);
  transform: translateX(4px);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  overflow: hidden;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.1;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
}



.cta-text {
  flex: 1.2;
  position: relative;
  z-index: 2;
}

.cta-text .section-title {
  text-align: left;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 500px;
}

.store-buttons {
  display: flex;
  gap: 16px;
}

.store-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.15);
}

.store-btn i {
  font-size: 1.5rem;
  margin: 0;
}

.cta-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-logo-img {
  width: 180px;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(255, 0, 122, 0.3));
  transform: rotate(-10deg);
  animation: floatLogo 6s ease-in-out infinite;
  border-radius: 90px;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }

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

.phone-mockup {
  width: 300px;
  height: 610px;
  background: #000;
  border-radius: 54px;
  position: relative;
  box-shadow:
    0 0 0 2px #222,
    0 0 80px rgba(255, 0, 122, 0.15),
    0 40px 100px -20px rgba(0, 0, 0, 0.8);
  animation: phoneFloat 8s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Hardware buttons */
.phone-mockup::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 100px;
  width: 3px;
  height: 40px;
  background: #333;
  border-radius: 2px 0 0 2px;
}

.phone-mockup::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 140px;
  width: 3px;
  height: 60px;
  background: #333;
  border-radius: 0 2px 2px 0;
}

.phone-screen {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #050505;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Notch */
.phone-screen::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 20;
}

.app-interface-mock {
  height: 100%;
  padding: 50px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: radial-gradient(circle at top, rgba(255, 0, 122, 0.08) 0%, transparent 70%);
  position: relative;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-profile {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-logo {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-categories {
  display: flex;
  gap: 10px;
}

.mock-pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.mock-pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.4);
}

.mock-event-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.mock-event-img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.mock-event-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: shimmer 3s infinite;
}

.mock-event-title,
.mock-event-loc {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

.mock-event-title {
  width: 60%;
}

.mock-event-loc {
  width: 40%;
  opacity: 0.5;
}

.mock-map-btn {
  margin-top: auto;
  padding: 16px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

@keyframes shimmer {
  to {
    left: 200%;
  }
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-30px) rotate(1deg) scale(1.02);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-subtitle,
.hero-actions {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-actions {
  animation-delay: 0.4s;
  opacity: 0;
}

.event-card:nth-child(1) {
  transition-delay: 0.1s;
}

.event-card:nth-child(2) {
  transition-delay: 0.2s;
}

.event-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

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

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

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons i {
  font-size: 1.5rem;
}

.store-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.tag i {
  margin-right: 4px;
}

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

/* Responsive */

/* Ultra Wide Support (2560px+) */
@media (min-width: 1440px) {
  :root {
    --container-max: 1400px;
  }
}

@media (min-width: 1025px) {
  .nav {
    gap: clamp(3rem, 10vw, 20rem);
  }
}

@media (min-width: 2000px) {
  :root {
    --container-max: 1800px;
  }

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

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }

  .hero-phone-container .phone-mockup {
    width: 260px;
    height: 520px;
  }
}

/* Mobile & Tablet Portrait */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1rem;
  }

  .hero-phone-container .phone-mockup {
    width: clamp(220px, 40vw, 280px);
    height: auto;
    aspect-ratio: 1 / 2.03;
    margin: 0 auto;
  }

  .feed-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    margin: 1rem auto;
  }

  .social-icons {
    justify-content: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 100px 30px;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    align-items: flex-start;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  /* Overlay support via CSS if needed, but here we focus on the drawer */

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
    border-bottom: none;
    margin-top: 10px;
    padding: 12px 24px;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }
}

/* Small Mobile Devices (375px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .store-buttons {
    flex-direction: column;
    width: 100%;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 40px 24px;
  }
}