/* LANDING PAGE ENHANCEMENTS */

.landing-page {
  position: relative;
}

.landing-hero {
  margin-top: 1.25rem;
}

.landing-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.landing-hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.landing-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.landing-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 227, 176, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 227, 176, 0.95);
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.18), rgba(9, 4, 28, 0.8));
  white-space: nowrap;
}

.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.landing-primary-cta,
.landing-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease-out, color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.16s ease-out, border-color 0.16s ease-out;
}

.landing-primary-cta {
  background: radial-gradient(circle at top left, #f5c443, #f28c3f);
  color: #20120a;
  border: 1px solid rgba(245, 196, 67, 0.95);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.75);
}

.landing-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  background: radial-gradient(circle at top left, #ffd867, #f79a49);
}

.landing-secondary-cta {
  background: transparent;
  border: 1px solid rgba(249, 227, 176, 0.7);
  color: #f9e3b0;
  backdrop-filter: blur(12px);
}

.landing-secondary-cta:hover {
  background: radial-gradient(circle at top left, rgba(249, 227, 176, 0.16), rgba(9, 4, 28, 0.9));
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.landing-hero-meta {
  font-size: 0.8rem;
  color: rgba(225, 225, 245, 0.82);
  max-width: 460px;
}

.landing-veil-figure {
  margin: 0;
  margin-bottom: 0.85rem;
  max-width: 370px;
  /* width: 60%; */
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(249, 227, 176, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
  background: radial-gradient(circle at top left, rgba(245, 196, 67, 0.22), rgba(9, 4, 28, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-veil-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.landing-section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(249, 227, 176, 0.9);
  margin-bottom: 0.4rem;
}

.landing-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.landing-step {
  background: linear-gradient(145deg, rgba(14, 10, 32, 0.96), rgba(20, 14, 48, 0.98));
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.landing-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #ffe4a1;
}

.landing-step-copy {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(225, 225, 245, 0.9);
}

.landing-highlighted-grid {
  margin-top: 1.5rem;
}

.landing-trust-section {
  margin-top: 1.5rem;
}

.landing-trust-intro {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(235, 235, 255, 0.9);
  margin-bottom: 1rem;
}

.landing-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(249, 227, 176, 0.98);
  margin-top: 0.6rem;
}
.landing-logo img {
  width: 100%;
  height: auto;
}
.landing-hero-vertical {
  display: none;
}
@media (max-width: 768px) {
  .heroInner {
    padding: 18px;
  }
  .landing-logo img {
    padding-left: 4px;
  }
  .landing-veil-figure {
    width: 80%;
    max-width: 80%;
    background-color: red;
  }
  .landing-hero-cta {
    align-items: center;
    justify-content: center;
  }

  .landing-hero-side {
    display: none;
  }

  .landing-hero-vertical{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
/* Larger screen tweaks for landing layout */
@media (min-width: 768px) {
  .landing-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }

  .landing-hero-copy {
    flex: 1.4;
  }

  .landing-hero-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
  }

  .landing-veil-figure {
    align-self: flex-end;
  }

  .landing-hero-side-card {
    background: linear-gradient(155deg, rgba(18, 10, 44, 0.95), rgba(42, 24, 96, 0.98));
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(249, 227, 176, 0.16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(235, 235, 255, 0.9);
  }

  .landing-hero-side-metadata {
    font-size: 0.8rem;
    color: rgba(193, 198, 255, 0.9);
  }

  .landing-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .landing-hero {
    margin-top: 2rem;
  }
}