/* ====================================================
   landing.css — Styles specific to landing.html
   ==================================================== */

/* ── Body override for landing ── */
.landing-body {
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin: 0 0 20px;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}

.hero-gradient {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 36px;
  font-weight: 300;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

.hero-subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}

.hero-cta-primary {
  width: auto;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gold-gradient);
  color: #111;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.hero-cta-primary.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.hero-cta-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
}

.hero-cta-secondary {
  width: auto;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.25s ease;
  box-shadow: none;
}

.hero-cta-secondary:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: none;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #555;
  animation: fadeSlideUp 0.6s 0.4s ease both;
}

/* ── Floating mock clips ── */
.hero-mockup {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  animation: fadeSlideUp 0.7s 0.5s ease both;
}

.mock-clip {
  position: absolute;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.mock-clip:hover {
  transform: translateY(-4px) !important;
}

.mock-clip-1 {
  top: 0;
  left: 20px;
  width: 200px;
  height: 120px;
  animation: floatA 5s 0s ease-in-out infinite;
}

.mock-clip-2 {
  top: 60px;
  right: 0;
  width: 80px;
  height: 140px;
  animation: floatB 5s 0.8s ease-in-out infinite;
}

.mock-clip-3 {
  bottom: 0;
  left: 30px;
  width: 180px;
  height: 100px;
  animation: floatA 5s 1.6s ease-in-out infinite;
}

.mock-clip-inner {
  padding: 14px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.mock-clip-inner.vertical {
  justify-content: flex-end;
}

.mock-clip-bar {
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  width: 60%;
  margin-bottom: 6px;
}

.mock-clip-sub {
  font-size: 0.65rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.3;
}

.mock-clip-sub.muted {
  color: var(--text-muted);
  font-weight: 400;
}

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

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

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

/* ── SECTIONS ── */
.section-how,
.section-features,
.section-cta {
  width: 100%;
  padding: 80px 0;
}

.section-how {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-features {
  background: transparent;
}

.section-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 50px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 215, 0, 0.25);
  background: #161616;
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Banner */
.section-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 14px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 36px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.footer-links a,
.footer-link-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  padding: 0;
  width: auto;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}

.footer-links a:hover,
.footer-link-btn:hover:not(:disabled) {
  color: var(--gold-primary);
  transform: none;
  box-shadow: none;
}

.footer-copy {
  font-size: 0.78rem;
  color: #444;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero-mockup {
    display: none;
  }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
