/* Landing — The Future of Value™ premium dark/gold */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --landing-bg: #000000;
  --landing-gold: #c9a227;
  --landing-gold-light: #dbb94a;
  --landing-gold-dim: #8a6d2b;
  --landing-white: #f5f5f5;
  --landing-muted: #b8b8b8;
  --landing-blue: #7aa2f7;
  --landing-serif: 'Cinzel', Georgia, serif;
  --landing-sans: 'Montserrat', 'Segoe UI', sans-serif;
}

body.layout-landing {
  background: var(--landing-bg);
  color: var(--landing-white);
  font-family: var(--landing-sans);
}

body.layout-landing main.landing-main {
  max-width: none;
  padding: 0;
}

html { scroll-behavior: smooth; }

/* Horizontal slider */
.landing-slider-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #000;
  overflow: hidden;
}

.landing-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  height: calc(100svh - 72px);
  min-height: 480px;
  max-height: 900px;
}

.landing-slider::-webkit-scrollbar {
  display: none;
}

.landing-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.landing-slider-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.landing-slider-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.landing-slider-dots button:hover,
.landing-slider-dots button.active {
  background: var(--landing-gold);
  transform: scaleY(1.3);
}

.landing-slider-counter {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--landing-muted);
  white-space: nowrap;
}

.landing-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--landing-gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.landing-slider-arrow:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: var(--landing-gold);
}

.landing-slider-arrow--prev { left: 0.75rem; }
.landing-slider-arrow--next { right: 0.75rem; }

/* Sections — each slide is one full viewport width */
.landing-slider > .landing-section {
  position: relative;
  flex: 0 0 100%;
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
  overflow: hidden;
  box-sizing: border-box;
}

.landing-slider > .landing-section img.landing-slide {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.landing-slider > .landing-section--hero img.landing-slide {
  object-fit: cover;
}

/* CTA overlays */
.landing-cta-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
}

.landing-cta-wrap--center {
  bottom: 50%;
  transform: translateY(50%);
}

.landing-cta-wrap--foundation {
  bottom: 12%;
}

.landing-cta-wrap--executive {
  bottom: 6%;
}

.landing-cta-wrap--final {
  bottom: 18%;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.landing-btn {
  font-family: var(--landing-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--landing-gold);
  background: rgba(0, 0, 0, 0.6);
  color: var(--landing-white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.landing-btn:hover {
  background: var(--landing-gold);
  color: #000;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.35);
}

.landing-btn--large {
  font-size: clamp(0.55rem, 1.5vw, 0.75rem);
  padding: 1.1rem 2.5rem;
  max-width: 90%;
  text-align: center;
  line-height: 1.5;
}

.landing-btn .price {
  color: var(--landing-blue);
  font-weight: 700;
}

.landing-btn:hover .price {
  color: #000;
}

.landing-scarcity {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--landing-gold);
  text-align: center;
}

.landing-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Semantic text (screen readers + SEO, hidden visually when slide has text) */
.landing-sr-block {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Pricing anchor section built in HTML for interactivity */
.landing-pricing-actions {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 4rem 1.5rem 5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.landing-pricing-actions h2 {
  font-family: var(--landing-serif);
  text-align: center;
  color: var(--landing-gold);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.landing-tier-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.landing-tier-card {
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(10, 10, 10, 0.8);
}

.landing-tier-card h3 {
  font-family: var(--landing-serif);
  color: var(--landing-gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.landing-tier-card .price-label {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-suffix {
  font-size: 0.45em;
  font-weight: 400;
  margin-left: 0.2em;
  opacity: 0.85;
}

.landing-tier-card .price-compare,
.landing-tier-card .price-secondary {
  color: var(--landing-muted);
  font-size: 0.85rem;
  margin: -0.5rem 0 0.75rem;
}

.landing-tier-card .price-secondary {
  color: var(--landing-gold);
  font-size: 1.15rem;
  font-weight: 600;
}

.landing-tier-card p {
  color: var(--landing-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.landing-current-plan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: var(--landing-muted);
}

.landing-current-plan strong {
  color: var(--landing-gold);
  font-weight: 600;
}

.landing-current-plan a {
  color: var(--landing-gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-current-plan--none {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.landing-plan-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--landing-gold);
}

.landing-plan-badge--included {
  color: var(--landing-gold);
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.landing-tier-card--current {
  border-color: var(--landing-gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.landing-tier-card--included {
  opacity: 0.72;
}

.landing-btn--disabled {
  display: inline-block;
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .landing-slider {
    height: calc(100svh - 64px);
    min-height: 380px;
  }

  .landing-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .landing-cta-wrap {
    bottom: 4%;
  }

  .landing-btn {
    font-size: 0.6rem;
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .landing-slider-dots button {
    width: 18px;
  }

  .landing-slider-arrow--prev { left: 0.35rem; }
  .landing-slider-arrow--next { right: 0.35rem; }

  .landing-cta-wrap--final {
    bottom: 8%;
  }
}
