/* ====================================================================== *
 * File: landing-hero-composition.css
 * Location: static/css/landing-hero-composition.css
 * Description: Preserves the approved premium hero composition while supporting three concise access actions responsively.
 * Version: 1.1.0
 * Last Modified: Sun Aug 16 2026 - 15:17
 * Dependencies: landing.css, landing-title.css, landing-nav-refinement.css
 * ====================================================================== */

/* -------------------------------------------------------------------------- *
 * 1. Desktop hero composition
 * -------------------------------------------------------------------------- */

/* - - - 1.1. Centered specialty line above the academy name - - - */

.landing-center {
  width: min(960px, 100%);
  padding: 112px 20px 168px;
}

.landing-eyebrow {
  display: flex;
  max-width: min(760px, 100%);
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 24px;
  color: var(--landing-gold-2);
  font-size: clamp(0.9rem, 1.22vw, 1.08rem);
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
}

.landing-eyebrow-line {
  width: clamp(40px, 5vw, 72px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 196, 109, 0.82)
  );
}

.landing-eyebrow-line:last-child {
  transform: scaleX(-1);
}

/* - - - 1.2. Academy title, gold separator, and supporting sentence - - - */

.landing-center h1 {
  font-size: clamp(2.8rem, 4.65vw, 4.2rem);
  line-height: 1.22;
}

.landing-accent {
  width: 94px;
  margin-top: 22px;
}

.landing-subtitle {
  margin: 23px 0 0;
  color: rgba(251, 253, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  font-weight: 500;
  line-height: 1.9;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* -------------------------------------------------------------------------- *
 * 2. Hero actions and first-access guidance
 * -------------------------------------------------------------------------- */

.landing-actions {
  display: flex;
  width: min(780px, 100%);
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-actions .landing-cta {
  min-width: 0;
  min-height: 56px;
  flex: 1 1 220px;
  margin-top: 0;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.landing-cta-secondary {
  border-color: rgba(233, 196, 109, 0.68);
  background: rgba(7, 23, 53, 0.42);
  color: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-cta-secondary::before {
  display: none;
}

.landing-cta-secondary:hover {
  border-color: rgba(255, 226, 146, 0.9);
  background: rgba(12, 37, 80, 0.66);
  color: #ffffff;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.landing-access-note {
  width: min(720px, 100%);
  margin: 15px 0 0;
  color: rgba(231, 238, 249, 0.78);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------------------- *
 * 3. Concise trust points
 * -------------------------------------------------------------------------- */

.landing-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  margin: 30px 0 0;
  padding: 0;
  color: rgba(245, 249, 255, 0.86);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 500;
  line-height: 1.7;
  list-style: none;
}

.landing-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.landing-benefits li::before {
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(233, 196, 109, 0.92);
  border-radius: 50%;
  color: var(--landing-gold-2);
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 14px rgba(233, 196, 109, 0.1);
}

/* -------------------------------------------------------------------------- *
 * 4. Tablet and phone composition
 * -------------------------------------------------------------------------- */

@media (max-width: 700px) {
  .landing-center {
    width: 100%;
    padding: 92px 4px 270px;
  }

  .landing-eyebrow {
    gap: 9px;
    margin-bottom: 17px;
    font-size: clamp(0.72rem, 3.35vw, 0.86rem);
    line-height: 1.65;
  }

  .landing-eyebrow-line {
    width: clamp(20px, 7vw, 34px);
  }

  .landing-center h1 {
    font-size: clamp(2.15rem, 9.6vw, 3.15rem);
  }

  .landing-accent {
    width: 76px;
    margin-top: 16px;
  }

  .landing-subtitle {
    margin-top: 17px;
    font-size: clamp(0.82rem, 3.75vw, 1rem);
    line-height: 1.75;
  }

  .landing-actions {
    display: grid;
    width: min(430px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .landing-actions .landing-cta {
    min-height: 49px;
    padding: 10px 9px;
    font-size: clamp(0.7rem, 3vw, 0.84rem);
    white-space: normal;
    line-height: 1.55;
  }

  .landing-actions .landing-cta:last-child:nth-child(3) {
    grid-column: 1 / -1;
  }

  .landing-access-note {
    width: min(430px, calc(100% - 16px));
    margin-top: 12px;
    font-size: clamp(0.68rem, 2.85vw, 0.78rem);
    line-height: 1.75;
  }

  .landing-benefits {
    display: grid;
    width: min(430px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    font-size: clamp(0.62rem, 2.75vw, 0.75rem);
  }

  .landing-benefits li {
    min-width: 0;
    justify-content: center;
    gap: 5px;
    white-space: normal;
  }

  .landing-benefits li::before {
    width: 17px;
    height: 17px;
    font-size: 0.58rem;
  }
}

/* -------------------------------------------------------------------------- *
 * 5. Short and narrow viewport safeguards
 * -------------------------------------------------------------------------- */

@media (min-width: 701px) and (max-height: 760px) {
  .landing-center {
    padding-top: 88px;
    padding-bottom: 138px;
  }

  .landing-eyebrow {
    margin-bottom: 14px;
  }

  .landing-accent {
    margin-top: 14px;
  }

  .landing-subtitle {
    margin-top: 14px;
  }

  .landing-actions {
    margin-top: 18px;
  }

  .landing-access-note {
    margin-top: 10px;
  }

  .landing-benefits {
    margin-top: 18px;
  }
}

/* ============================= End of landing-hero-composition.css ============================= */