/* ========================================
   GottLr Design System - CSS Custom Properties
   ======================================== */
:root {
  /* Colors - Primary */
  --primary-50: #fff9f9;
  --primary-100: #fff4f4;
  --primary-200: #ffe6e6;
  --primary-300: #fdcece;
  --primary-400: #ffc5bf;
  --primary-500: #fcb9b2;
  --primary-600: #f09d94;
  --primary-700: #eb5040;
  --primary-800: #c03f31;
  --primary-900: #87261c;
  --primary-950: #4e0909;

  /* Colors - Neutrals */
  --neutral-50: #ffffff;
  --neutral-100: #fbfbfb;
  --neutral-200: #f4f4f4;
  --neutral-300: #e2e2e2;
  --neutral-400: #cacaca;
  --neutral-500: #a2a2a2;
  --neutral-600: #848484;
  --neutral-700: #686868;
  --neutral-800: #505050;
  --neutral-900: #333333;
  --neutral-950: #1e1e1e;

  /* Semantic Colors */
  --fg-primary: #1e1e1e;
  --fg-secondary: #524f4f;
  --fg-tertiary: #a2a2a2;
  --bg-brand: #eb5040;
  --bg-brand-hover: #c03f31;
  --bg-brand-pressed: #87261c;
  --surface-l0: #fff9f9;
  --surface-l1: #fff9f9;
  --bg-secondary: #fff9f9;

  /* Spacing */
  --space-2xs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 32px;
  --space-4xl: 40px;
  --space-5xl: 48px;
  --space-6xl: 56px;
  --space-7xl: 64px;
  --space-8xl: 72px;
  --space-9xl: 80px;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-pill: 9999px;

  /* Typography */
  --font-family: 'DM Sans', sans-serif;
  --font-heading: 'Livvic', sans-serif;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--fg-primary);
  background: var(--surface-l0);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ========================================
   Gradient Text
   ======================================== */
.gradient-text {
  background: linear-gradient(90deg, #eb5040, rgba(235, 80, 64, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(40px, calc((100% - 1440px) / 2 + 40px));
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-logo img {
  height: 24px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}

.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-link.active {
  color: var(--fg-primary);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: white;
  background: var(--bg-brand);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(235, 80, 64, 0.18);
}

.nav-cta:hover {
  background: var(--bg-brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(235, 80, 64, 0.28);
}

.nav-cta:active {
  background: var(--bg-brand-pressed);
  transform: translateY(0);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  background: #fff9f9;
  overflow: hidden;
  padding-top: 160px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.hero-glow--left {
  width: 900px;
  height: 720px;
  left: -260px;
  top: -40px;
  background: radial-gradient(ellipse at center, rgba(235, 80, 64, 0.3) 0%, rgba(235, 80, 64, 0) 70%);
}

.hero-glow--right {
  width: 720px;
  height: 680px;
  right: -80px;
  bottom: -140px;
  background: radial-gradient(ellipse at center, rgba(235, 80, 64, 0.22) 0%, rgba(235, 80, 64, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
  min-height: 640px;
  gap: 64px;
}

.hero-image {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  animation: heroReveal 0.9s ease-out;
}

.hero-text {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg-primary);
}

.hero-highlight {
  color: var(--bg-brand);
}

.hero-subtitle {
  margin-top: 20px;
  font-family: var(--font-family);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg-secondary);
}

.hero-appstore {
  display: inline-block;
  margin-top: 32px;
  transition: transform 0.2s, opacity 0.2s;
}

.hero-appstore img {
  height: 56px;
  width: auto;
  display: block;
}

.hero-appstore:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Stats
   ======================================== */
.stats {
  padding: 140px 40px;
  margin: 0 auto;
  background: transparent;
}

.stats-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}

.stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  flex: 1;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(235, 80, 64, 0.06);
}

.stat-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--primary-700);
  letter-spacing: -1px;
}

.stat-label {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--fg-secondary);
  text-align: center;
}

/* ========================================
   Team / Om oss
   ======================================== */
.team-group-img {
  margin-top: var(--space-3xl);
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.team-group-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-members {
  display: flex;
  gap: 24px;
  margin-top: var(--space-5xl);
}

.team-member {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(30, 12, 10, 0.04), 0 1px 4px rgba(30, 12, 10, 0.03);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--fg-primary);
}

.team-role {
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-brand);
}

.team-bio {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-secondary);
  line-height: 1.5;
  max-width: 260px;
  text-align: center;
}

.team-email {
  margin-top: 12px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-brand);
  text-decoration: none;
  transition: opacity 0.2s;
}

.team-email:hover {
  opacity: 0.7;
}

/* ========================================
   Showcase – Klarna-style cards
   ======================================== */
.showcase {
  position: relative;
  padding: 100px max(40px, calc((100% - 1440px) / 2 + 40px));
  background: var(--surface-l0);
}

.showcase-label {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: var(--space-2xl);
}

.showcase-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg-primary);
  text-align: center;
  margin-bottom: 48px;
}

/* Features – slide-inspired editorial rows */
.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 64px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 0 80px;
  border-radius: 40px;
  background-color: #ffffff;
  background-image: linear-gradient(
    225deg,
    rgba(235, 80, 64, 0.3) 0%,
    rgba(235, 80, 64, 0.05) 25%,
    rgba(235, 80, 64, 0.2) 65%,
    rgba(235, 80, 64, 0.3) 100%
  );
  overflow: hidden;
  aspect-ratio: 1200 / 630;
}

.feature:nth-child(even) {
  flex-direction: row-reverse;
  padding: 0 80px 0 0;
}

.feature-text {
  flex: 0 0 463px;
  max-width: 463px;
}

.feature-phone {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.feature-subtitle {
  font-family: var(--font-family);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--bg-brand);
  margin-bottom: 24px;
}

.feature-body {
  font-family: var(--font-family);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg-primary);
}

/* ========================================
   Creators Carousel
   ======================================== */
.creators-carousel {
  background: var(--bg-secondary);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  border-radius: 80px;
  margin: 80px auto;
  max-width: calc(100% - 80px);
  will-change: max-width;
}

/* White glow */
.creators-carousel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.creators-carousel .section-header {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.creators-carousel .section-label {
  color: var(--fg-secondary);
}

.creators-carousel h2 {
  color: var(--fg-primary);
}

.creators-carousel .section-subtitle {
  color: var(--fg-secondary);
}

.carousel-track-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: carouselScroll 40s linear infinite;
  animation-play-state: paused;
  width: max-content;
}

.carousel-track.ready {
  animation-play-state: running;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.creator-card {
  flex-shrink: 0;
  width: 260px;
  text-decoration: none;
}

.creator-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.creator-img-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.creator-card:hover img {
  transform: scale(1.05);
}

@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.section-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-secondary);
}


/* ========================================
   About
   ======================================== */
.about {
  padding: 120px var(--space-9xl);
  background: var(--surface-l0);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.about-content > p {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-secondary);
  line-height: 1.6;
  text-align: center;
}

/* ========================================
   Download CTA
   ======================================== */
.download-cta {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.download-card {
  position: relative;
  max-width: 762px;
  width: 100%;
  padding: 104px 80px 80px;
  border-radius: 48px;
  background: linear-gradient(to bottom, #ffffff 0%, #fff4f4 100%);
  text-align: center;
  box-shadow: 0 8px 32px rgba(30, 12, 10, 0.06), 0 2px 8px rgba(30, 12, 10, 0.04);
}

.download-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eb5040 0%, #87261c 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon svg {
  width: 34px;
  height: 37px;
}

.download-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg-primary);
  margin-bottom: 24px;
}

.download-highlight {
  color: var(--bg-brand);
}

.download-body {
  font-family: var(--font-family);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg-primary);
  margin-bottom: 40px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--bg-brand);
  color: white;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(235, 80, 64, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.download-btn:hover {
  background: var(--bg-brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(235, 80, 64, 0.35);
}

.download-btn:active {
  background: var(--bg-brand-pressed);
  transform: translateY(0);
}

/* ========================================
   404 / Error Page
   ======================================== */
.error-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  background: transparent;
}

.error-content {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.error-label {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-brand);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.error-content h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg-primary);
  margin: 0;
}

.error-content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--fg-secondary);
  max-width: 480px;
  margin: 8px 0 16px;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-cta {
  display: inline-block;
  background: var(--bg-brand);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.15s;
}

.error-cta:hover {
  background: var(--bg-brand-hover);
  transform: translateY(-1px);
}

.error-secondary {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-secondary);
  transition: color 0.2s;
}

.error-secondary:hover {
  color: var(--bg-brand);
}

@media (max-width: 640px) {
  .error-page {
    padding: 96px 24px 56px;
  }

  .error-content h1 {
    letter-spacing: -1px;
  }

  .error-content h1 br {
    display: none;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  background: linear-gradient(180deg, #1a0b09 0%, #0e0504 100%);
  color: #f4e8e4;
  overflow: hidden;
  isolation: isolate;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 8% 15%, rgba(235, 80, 64, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 95% 85%, rgba(235, 80, 64, 0.10) 0%, transparent 60%);
  z-index: 0;
}

.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 96px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 520px;
}

.footer-logo {
  height: 48px;
  filter: brightness(1.05);
}

.footer-tagline {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: #d8c4bf;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 64px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-label {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8f7672;
  margin-bottom: 4px;
}

.footer-contact-text {
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: #f4e8e4;
  margin: 0;
}

.footer-email {
  color: #ff6b5a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: #ffae9f;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: #d8c4bf;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #ff6b5a;
}

.footer-col--download .footer-download {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-appstore {
  display: none;
  transition: opacity 0.2s, transform 0.15s;
}

.footer-appstore img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-appstore:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.footer-qr-box {
  width: 96px;
  height: 96px;
  background: #f4e8e4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0b09;
  flex-shrink: 0;
}

.footer-qr-box svg {
  width: 72px;
  height: 72px;
}

.footer-download-text {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: #9c8681;
  margin: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px 160px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9c8681;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #ff6b5a;
  transform: translateY(-1px);
}

.footer-copy {
  font-family: var(--font-family);
  font-size: 13px;
  color: #8f7672;
  margin: 0;
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-center {
    gap: 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-content {
    flex-direction: column;
    padding: 16px 32px 48px;
    text-align: left;
    gap: 32px;
    min-height: auto;
    align-items: stretch;
  }

  .hero-image {
    order: 1;
    justify-content: center;
    mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
  }

  .hero-image img {
    max-width: 72%;
    max-height: 48vh;
    width: auto;
  }

  .hero-text {
    order: 2;
    max-width: 100%;
  }

  .about,
  .download-cta {
    padding: 80px var(--space-4xl);
  }

  .download-card {
    padding: 88px 56px 64px;
    border-radius: 40px;
  }

  .showcase {
    padding: 80px 24px;
  }

  .features {
    gap: 32px;
  }

  .feature {
    gap: 32px;
    padding: 0 0 0 48px;
  }

  .feature:nth-child(even) {
    padding: 0 48px 0 0;
  }

  .feature-text {
    flex: 0 0 46%;
    max-width: 46%;
  }

  .feature-title {
    font-size: clamp(24px, 4vw, 32px);
  }

  .feature-subtitle {
    font-size: clamp(16px, 2vw, 20px);
  }

  .creators-carousel {
    margin: 0;
    border-radius: 0 !important;
    max-width: 100% !important;
  }

  .footer-col--download .footer-download {
    display: none;
  }

  .footer-appstore {
    display: inline-block;
  }

  .footer-main {
    padding: 72px 32px 40px;
  }

  .footer-bottom {
    padding: 20px 32px 160px;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 48px 24px;
  }

  .stats-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat {
    max-width: none;
    padding: 24px 16px;
  }

  .nav-center {
    display: none;
  }

  .nav-cta {
    font-size: 14px;
    padding: 10px 18px;
  }

  .navbar {
    padding: var(--space-lg) var(--space-2xl);
  }

  .hero {
    padding-top: 96px;
  }

  .hero-content {
    padding: 16px 24px 40px;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 48px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .about,
  .download-cta {
    padding: 64px 20px;
  }

  .download-card {
    padding: 72px 28px 48px;
    border-radius: 32px;
  }

  .download-body {
    font-size: 17px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content > p {
    font-size: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 24px 48px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 0;
  }

  .footer-col--download .footer-download {
    flex-direction: row;
  }

  .footer-qr-box {
    width: 88px;
    height: 88px;
  }

  .footer-qr-box svg {
    width: 68px;
    height: 68px;
  }

  .footer-tagline {
    font-size: 16px;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 24px 160px;
  }

  .team-members {
    gap: 16px;
  }

  .team-bio {
    max-width: 320px;
  }

  .showcase {
    padding: 64px 24px;
  }

  .features {
    gap: 24px;
    margin-top: 40px;
  }

  .feature,
  .feature:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    aspect-ratio: auto;
    padding: 0;
    gap: 24px;
    text-align: left;
    border-radius: 24px;
  }

  .feature-text,
  .feature:nth-child(even) .feature-text {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    order: 2;
    padding: 0 28px 40px;
  }

  .feature-phone {
    width: 100%;
    order: 1;
    height: auto;
    flex: 0 0 auto;
  }

  .feature-phone img,
  .feature-phone picture,
  .feature-phone source {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 640px) {
  .stats-content {
    grid-template-columns: 1fr;
  }

  .team-members {
    flex-direction: column;
    gap: 40px;
  }

  .showcase {
    padding: 64px 24px;
  }

  .showcase-heading {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 14px 20px;
  }

  .nav-logo img {
    height: 22px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px 16px;
  }

  .hero-content {
    padding: 0 16px;
  }
}