/* ===== Landing / About Page — Marketing Layout ===== */

/* ===== Hero ===== */
.landing-hero {
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(42, 31, 14, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-medium), var(--bg-dark));
  border-bottom: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emboss-light), transparent);
}

.landing-hero-content {
  position: relative;
  z-index: 1;
}

.landing-title {
  font-family: 'MedievalSharp', cursive;
  font-size: 3rem;
  color: var(--gold);
  text-shadow:
    0 0 30px var(--gold-glow),
    0 0 60px rgba(201, 168, 76, 0.2),
    0 3px 6px var(--shadow-deep);
  margin-bottom: 0.3rem;
  letter-spacing: 2px;
}

.landing-tagline {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px var(--shadow);
}

.landing-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Reuse hero CTA styling */
.landing-hero .cta-button {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(180deg, #d4b45a 0%, #a08030 40%, #8a6c28 100%);
  color: #1a1209;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  border: 2px solid #d4b45a;
  text-shadow: 0 1px 0 rgba(255, 230, 160, 0.3);
  transition: all 0.2s;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 160, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 2px 8px var(--shadow),
    0 0 16px var(--gold-glow);
}

.landing-hero .cta-button:hover {
  background: linear-gradient(180deg, #e0c060 0%, #b09040 40%, #9a7c30 100%);
  border-color: #e0c060;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 160, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 2px 12px var(--shadow),
    0 0 24px var(--gold-glow-strong);
  transform: translateY(-1px);
}

.landing-hero .cta-button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 4px var(--shadow);
  background: linear-gradient(180deg, #a08030 0%, #8a6c28 40%, #7a5c20 100%);
}

/* ===== Feature Sections ===== */
.landing-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.landing-row {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

/* ===== Screenshot Image ===== */
.landing-img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
}

.landing-img img,
.landing-img video {
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 2px solid var(--border-color);
  box-shadow:
    0 6px 24px var(--shadow-deep),
    0 0 12px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.landing-img img:hover,
.landing-img video:hover {
  border-color: var(--border-gold);
  box-shadow:
    0 8px 32px var(--shadow-deep),
    0 0 16px var(--gold-glow);
}

/* ===== Text Block ===== */
.landing-text {
  flex: 1;
}

.landing-text h2 {
  font-family: 'MedievalSharp', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-shadow:
    0 0 16px var(--gold-glow),
    0 2px 4px var(--shadow-deep);
}

.landing-text p {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== Feature Bullet List ===== */
.landing-features {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.landing-features li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.landing-features li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--border-gold);
  font-size: 0.7rem;
  top: 0.55rem;
  text-shadow: 0 0 6px var(--gold-glow);
}

/* ===== Stats Grid ===== */
.landing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.landing-stat {
  text-align: center;
  padding: 0.75rem 0.25rem;
  background:
    linear-gradient(170deg, var(--bg-card-inner) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 var(--emboss-light),
    0 2px 8px var(--shadow);
}

.stat-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.15rem;
}

/* ===== Section Divider ===== */
.landing-divider {
  text-align: center;
  padding: 0;
  max-width: 960px;
  margin: 0 auto;
}

.landing-divider span {
  display: inline-block;
  width: 60%;
  max-width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  position: relative;
}

.landing-divider span::after {
  content: "\2726";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--border-gold);
  font-size: 0.7rem;
  background: var(--bg-dark);
  padding: 0 0.75rem;
  text-shadow: 0 0 6px var(--gold-glow);
  opacity: 0.6;
}

/* ===== Final CTA Section ===== */
.landing-cta {
  text-align: center;
  padding: 3.5rem 1.5rem;
  margin-top: 1rem;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.landing-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emboss-light), transparent);
}

.landing-cta h2 {
  font-family: 'MedievalSharp', cursive;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-shadow:
    0 0 20px var(--gold-glow),
    0 2px 4px var(--shadow-deep);
}

.landing-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta .cta-button {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(180deg, #d4b45a 0%, #a08030 40%, #8a6c28 100%);
  color: #1a1209;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  border: 2px solid #d4b45a;
  text-shadow: 0 1px 0 rgba(255, 230, 160, 0.3);
  transition: all 0.2s;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 160, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 2px 8px var(--shadow),
    0 0 16px var(--gold-glow);
}

.landing-cta .cta-button:hover {
  background: linear-gradient(180deg, #e0c060 0%, #b09040 40%, #9a7c30 100%);
  border-color: #e0c060;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 160, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 2px 12px var(--shadow),
    0 0 24px var(--gold-glow-strong);
  transform: translateY(-1px);
}

.landing-cta .cta-button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 4px var(--shadow);
  background: linear-gradient(180deg, #a08030 0%, #8a6c28 40%, #7a5c20 100%);
}

/* ===== Desktop: Side-by-Side Layout ===== */
@media (min-width: 768px) {
  .landing-hero {
    padding: 5rem 2rem 4.5rem;
  }

  .landing-title {
    font-size: 4rem;
  }

  .landing-tagline {
    font-size: 1.5rem;
  }

  .landing-section {
    padding: 3rem 2rem;
  }

  .landing-row {
    flex-direction: row;
    gap: 2.5rem;
  }

  .landing-row.reverse {
    flex-direction: row-reverse;
  }

  .landing-img {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .landing-text {
    flex: 1;
  }

  .landing-text h2 {
    font-size: 2rem;
  }

  .landing-cta h2 {
    font-size: 2.4rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* ===== Large Desktop ===== */
@media (min-width: 1024px) {
  .landing-title {
    font-size: 4.5rem;
  }

  .landing-row {
    gap: 3.5rem;
  }
}
