/* Landing home polish — works with style.css */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #0c3c78;
  color: #fff;
  padding: 0.65rem 1rem;
  z-index: 10000;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.landing-home .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
}
.landing-home .brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0c2340;
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
  object-fit: cover;
}
.landing-home .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}
.landing-home .brand-name {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}
.landing-home .brand-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.landing-home .main-nav a {
  font-weight: 600;
}

/* Fixed header Login button */
.landing-home .header-nav-inner {
  align-items: center;
  flex-wrap: nowrap;
}
.landing-home .auth-links {
  flex-shrink: 0;
  margin-left: auto;
}
.landing-home .auth-links a.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 36px;
  padding: 0 1.15rem;
  margin: 0;
  border-radius: 4px;
  background: #ffffff;
  color: #0c3c78 !important;
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.landing-home .auth-links a.btn-login:hover,
.landing-home .auth-links a.btn-login:focus {
  background: #c9a227;
  border-color: #c9a227;
  color: #0c2340 !important;
  filter: none;
}

/* Full-bleed hero WITH background image */
.landing-home .hero {
  aspect-ratio: auto;
  min-height: min(68vh, 560px);
  position: relative;
  overflow: hidden;
  background-color: #0a2f5c;
  background-image: none;
}
.landing-home .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(8, 32, 64, 0.88) 0%, rgba(12, 60, 120, 0.72) 45%, rgba(12, 60, 120, 0.35) 100%),
    url("../img/hero-city.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}
.landing-home .hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.landing-home .hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a227;
}
.landing-home .hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 14ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.landing-home .hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.2);
}
.landing-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.landing-home .btn-hero-secondary {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 2px;
}
.landing-home .btn-hero-secondary:hover {
  color: #c9a227;
  border-color: #c9a227;
}
.landing-home .btn-read-more {
  background: #c9a227;
  color: #0c2340;
  border: 0;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.35rem;
  border-radius: 4px;
  text-decoration: none;
}
.landing-home .btn-read-more:hover {
  background: #dbb43a;
  color: #0c2340;
}

.landing-home .feature-hero-media {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.feature-mini-thumb {
  width: 100%;
  height: 110px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.65rem;
}
.feature-mini-card .mini-summary {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.press-login-cta {
  display: inline-block;
  margin-top: 1.25rem;
}

.access-steps {
  margin: 1.25rem 0 0;
  padding: 1rem 1rem 1rem 1.5rem;
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}
.access-steps li + li {
  margin-top: 0.45rem;
}

.footer-copy {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.72);
  max-width: 42rem;
  line-height: 1.45;
}
.landing-home .footer-seal {
  object-fit: contain;
  padding: 6px;
}

@media (max-width: 700px) {
  .landing-home .brand-sub { display: none; }
  .landing-home .hero {
    min-height: 420px;
  }
  .landing-home .header-nav-inner {
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  .landing-home .auth-links {
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
  }
}
