:root {
  --landing-bg: color-mix(in srgb, var(--color-bg) 98%, transparent);
}

#main.landing {
  inline-size: 100%;
  max-inline-size: 100%;
  margin-inline: 0;
  padding-inline: 0;
  text-align: initial;
  background: transparent;
}

.landing-surface {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 0;
  background: var(--landing-bg);
}

.landing__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 6vw, 4rem);
  background: var(--landing-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-subtle-dark) 8%, transparent);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
}

.landing__nav-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.landing__nav-menu {
  display: none;
}

@media (max-width: 959px) {
  .landing__nav-buttons {
    display: none;
  }

  .landing__nav-menu {
    display: block;
  }
}

/* Hero Section - Modern Classic with Background */
.landing__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.landing__hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing__hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.landing__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.85) 50%,
    rgba(15, 23, 42, 0.90) 100%
  );
  backdrop-filter: blur(2px);
}

.landing__hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
}

.landing__hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.landing__hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.landing__hero-badge svg {
  flex-shrink: 0;
}

.landing__hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 3rem + 4vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: white;
}

.landing__title-line {
  display: block;
}

.landing__title-accent {
  background: linear-gradient(135deg,
    #60A5FA 0%, 
    #A78BFA 50%,
    #F472B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.landing__title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 0.08em;
  background: linear-gradient(90deg, #60A5FA, #A78BFA, #F472B6);
  opacity: 0.5;
}

.landing__hero-description {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2.5rem;
  max-width: 600px;
}

.landing__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.btn--hero {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  box-shadow: 
    0 10px 30px -10px rgba(59, 130, 246, 0.5),
    0 0 0 0 rgba(59, 130, 246, 0);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 20px 40px -10px rgba(59, 130, 246, 0.6),
    0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn--hero svg {
  transition: transform 300ms ease;
}

.btn--hero:hover svg {
  transform: translateX(4px);
}

.btn--hero-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  transition: all 300ms ease;
}

.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.landing__hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.landing__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.landing__hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.landing__hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.landing__hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
}

/* Benefits Bar */
.landing__benefits {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 6vw, 4rem);
  background: color-mix(in srgb, var(--color-subtle-light) 50%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--color-subtle-dark) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-subtle-dark) 8%, transparent);
}

.landing__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin-inline: auto;
}

.landing__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.landing__benefit-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.landing__benefit-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.landing__benefit-content p {
  margin: 0;
  color: color-mix(in srgb, var(--color-ink) 65%, transparent);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Featured Collection */
.landing__featured {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 4rem);
  background: var(--landing-bg);
}

.landing__featured-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin-inline: auto;
}

.landing__featured-title {
  margin: 0;
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.landing__featured-link {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 200ms ease;
}

.landing__featured-link:hover {
  opacity: 0.7;
}

.landing__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin-inline: auto;
}

/* New Arrivals */
.landing__new {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 4rem);
  background: 
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--color-selected) 10%, transparent) 0%, transparent 50%),
    var(--landing-bg);
}

.landing__new-header {
  max-width: 1400px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.landing__new-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--color-ink) 60%, transparent);
  margin-bottom: 0.75rem;
}

.landing__new-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.landing__new-description {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  color: color-mix(in srgb, var(--color-ink) 70%, transparent);
  line-height: 1.6;
  max-width: 60ch;
}

.landing__new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.landing__new-footer {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin-inline: auto;
}

/* Final CTA */
.landing__final {
  padding: clamp(5rem, 10vw, 8rem) clamp(2rem, 6vw, 4rem);
  background: 
    linear-gradient(135deg, 
      color-mix(in srgb, var(--color-selected) 12%, transparent) 0%,
      transparent 100%),
    var(--landing-bg);
  border-top: 1px solid color-mix(in srgb, var(--color-subtle-dark) 8%, transparent);
}

.landing__final-content {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.landing__final-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.landing__final-text {
  margin: 0 0 2.5rem;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  color: color-mix(in srgb, var(--color-ink) 70%, transparent);
  line-height: 1.6;
}

.landing__final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.landing__footer {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 4rem);
  border-top: 1px solid color-mix(in srgb, var(--color-subtle-dark) 8%, transparent);
  background: var(--landing-bg);
}

.landing__footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.landing__footer-brand-text {
  margin: 0;
  font-size: 1rem;
  color: var(--color-ink);
  font-weight: 500;
}

.landing__footer-brand-text strong {
  font-weight: 700;
  color: var(--color-ink);
}

.landing__footer-attribution {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--color-ink) 65%, transparent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing__footer-link {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 200ms ease;
}

.landing__footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.landing__footer-divider {
  color: color-mix(in srgb, var(--color-ink) 40%, transparent);
  font-weight: 300;
}

@media (max-width: 640px) {
  .landing__footer-attribution {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .landing__footer-divider {
    display: none;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .landing__hero {
    min-height: auto;
  }

  .landing__hero-content {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 2.5rem);
  }

  .landing__hero-title {
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  }

  .landing__hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }

  .landing__hero-stat-divider {
    display: none;
  }

  .btn--hero,
  .btn--hero-ghost {
    width: 100%;
    justify-content: center;
  }

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

  .landing__featured-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .landing__hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }

  .landing__hero-badge svg {
    width: 16px;
    height: 16px;
  }

  .landing__hero-description {
    font-size: 1rem;
  }

  .landing__hero-stats {
    width: 100%;
  }

  .landing__hero-stat {
    flex: 1;
    min-width: 0;
  }

  .landing__hero-stat-value {
    font-size: 1.25rem;
  }

  .landing__hero-stat-label {
    font-size: 0.75rem;
  }
}
