/* Landing page (index.html) specific styles */
.landing-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #04070f 0%, #0a1226 55%, #05060f 100%);
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid rgba(244, 184, 96, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  padding: 48px clamp(20px, 5vw, 48px) 56px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(
      420px 280px at 18% 22%,
      rgba(244, 184, 96, 0.22),
      transparent 60%
    ),
    radial-gradient(
      460px 300px at 82% 10%,
      rgba(96, 136, 255, 0.18),
      transparent 60%
    );
  opacity: 0.6;
  filter: blur(40px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(244, 184, 96, 0.85);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 0;
  color: rgba(235, 240, 255, 0.78);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-link {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(244, 184, 96, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
}

.icon-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(244, 184, 96, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(244, 184, 96, 0.85);
}

.hero-meta,
.hero-trust {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(235, 240, 255, 0.55);
}

.hero-trust {
  letter-spacing: 0.18em;
  font-size: 12px;
}

.hero-visual {
  grid-column: span 5;
  position: relative;
  min-height: 360px;
  z-index: 1;
}

.hero-monitor {
  width: min(440px, 100%);
  margin-left: auto;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #11182a, #05060f);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.hero-monitor::before {
  content: "";
  position: absolute;
  inset: 12% -20%;
  background: radial-gradient(
    60% 80% at 30% 30%,
    rgba(244, 184, 96, 0.25),
    transparent 70%
  );
  opacity: 0.35;
  pointer-events: none;
}

.hero-monitor-screen {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(244, 184, 96, 0.2);
  padding: 18px;
  background: rgba(5, 7, 12, 0.95);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text);
  min-height: 260px;
  overflow: hidden;
}

.hero-monitor-screen .hero-shimmer {
  position: absolute;
  inset: -22% -32% -16% -32%;
  border-radius: 44px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(244, 184, 96, 0.3) 45%,
    transparent 90%
  );
  background-size: 220% 100%;
  filter: blur(18px);
  opacity: 0.16;
  animation: heroShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-monitor-screen > *:not(.hero-shimmer) {
  position: relative;
  z-index: 1;
}

.hero-screen-header,
.hero-screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(235, 240, 255, 0.7);
}

.hero-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(244, 184, 96, 0.12);
  border: 1px solid rgba(244, 184, 96, 0.45);
}

.hero-screen-lane {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(12, 18, 32, 0.85);
  border: 1px solid rgba(244, 184, 96, 0.12);
  border-radius: 16px;
  padding: 10px 12px;
}

.lane-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(244, 184, 96, 0.4);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.lane-name {
  margin: 0;
  font-weight: 700;
}

.lane-meta {
  margin: 0;
  font-size: 12px;
  color: rgba(235, 240, 255, 0.6);
}

.lane-score {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.audience-strip {
  margin-top: 24px;
  padding: 28px 24px;
  border-radius: calc(var(--radius) * 1.1);
  background: rgba(20, 25, 40, 0.65);
  border: 1px solid rgba(244, 184, 96, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.audience-card {
  background: rgba(5, 8, 16, 0.9);
  border: 1px solid rgba(244, 184, 96, 0.18);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 184, 96, 0.15);
  border: 1px solid rgba(244, 184, 96, 0.35);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.audience-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-card p {
  margin: 0;
  color: rgba(235, 240, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.hero-floating {
  position: absolute;
  border-radius: 18px;
  padding: 18px;
  background: rgba(12, 18, 32, 0.9);
  border: 1px solid rgba(244, 184, 96, 0.2);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 2;
}

.hero-floating--panel {
  width: 240px;
  top: 16%;
  left: -32px;
  animation-delay: 0.3s;
}

.hero-floating--card {
  width: 180px;
  bottom: 12%;
  right: -20px;
  animation-delay: 1.2s;
}

.floating-title,
.floating-sub,
.floating-chip,
.floating-desc {
  margin: 0;
  font-size: 13px;
  color: rgba(235, 240, 255, 0.8);
}

.floating-chip {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 184, 96, 0.85);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroShimmer {
  0% {
    background-position: -120% 0;
    opacity: 0;
  }
  20% {
    opacity: 0.28;
  }
  50% {
    background-position: 100% 0;
    opacity: 0.4;
  }
  80% {
    opacity: 0.12;
  }
  100% {
    background-position: 180% 0;
    opacity: 0;
  }
}

.landing-features,
.landing-pricing,
.landing-info {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  padding: 24px 28px;
}

.landing-features h2,
.landing-info h2 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-features ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.landing-info p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.landing-trust {
  margin: 16px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.landing-pricing {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  padding: 24px 28px;
}

.landing-pricing h2 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-pricing p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  padding: 18px 24px 24px;
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  opacity: 0.9;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-visual {
    grid-column: span 12;
  }
  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-stage {
    padding: 36px 18px 42px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-link {
    justify-content: center;
  }
}
