:root {
  --bg: #091321;
  --card: rgba(13, 24, 39, .82);
  --card-2: rgba(17, 31, 49, .9);
  --line: rgba(255,255,255,.1);
  --text: #eef3fa;
  --muted: #c7d1dc;
  --gold: #d9aa59;
  --gold-2: #f0ca86;
  --shadow: 0 20px 56px rgba(0,0,0,.34);
  --radius-xl: 28px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/bg-wos.jpg") center center / cover no-repeat fixed;
  z-index: -3;
  filter: saturate(1.02) contrast(1.03);
}

.page-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217,170,89,.16), transparent 30%),
    linear-gradient(180deg, rgba(6,12,20,.18), rgba(4,10,18,.84)),
    linear-gradient(135deg, rgba(9,19,33,.62), rgba(10,22,39,.9));
  z-index: -2;
}

.topbar {
  padding: 26px 22px 0;
}

.topbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.34));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(240,202,134,.34);
  background: linear-gradient(180deg, rgba(217,170,89,.18), rgba(217,170,89,.08));
  color: #fff3dc;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.hero-shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 22px 36px;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 1140px;
  min-height: 420px;
  margin: 0 auto;
  padding: 48px 52px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 33, 52, .78), rgba(10, 20, 34, .9)),
    linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card__glow {
  position: absolute;
  left: -70px;
  bottom: -82px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,170,89,.24), transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  width: 100%;
  font-size: clamp(2rem, 1.2rem + 2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.lead {
  margin: 18px 0 0;
  width: 100%;
  color: var(--muted);
  font-size: clamp(.9rem, .72rem + .45vw, 1.12rem);
  line-height: 1.45;
  white-space: nowrap;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.07);
}

.feature-item__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217,170,89,.28), rgba(217,170,89,.12));
  color: var(--gold-2);
  font-weight: 800;
}

.footer {
  padding: 0 22px 24px;
}

.footer p {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  color: rgba(238,243,250,.86);
  font-size: .92rem;
}

@media (max-width: 991.98px) {
  .topbar {
    padding-top: 22px;
  }

  .hero-shell {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero-card {
    max-width: 1140px;
    min-height: auto;
    padding: 34px 28px;
  }

  h1,
  .lead {
    white-space: normal;
  }

  h1 {
    font-size: clamp(1.95rem, 1.45rem + 1.8vw, 2.85rem);
    line-height: 1.08;
  }

  .lead {
    margin-top: 16px;
    font-size: clamp(.98rem, .88rem + .35vw, 1.08rem);
    line-height: 1.5;
  }

  .feature-list {
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    padding: 18px 14px 0;
  }

  .topbar__inner {
    align-items: center;
    gap: 12px;
  }

  .brand img {
    width: 126px;
  }

  .status-pill {
    min-height: 38px;
    padding: 8px 14px;
    font-size: .88rem;
  }

  .hero-shell {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 18px 14px 20px;
  }

  .hero-card {
    min-height: auto;
    padding: 24px 16px;
    border-radius: 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .78rem;
    line-height: 1.35;
  }

  h1,
  .lead {
    white-space: normal;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
    letter-spacing: -.025em;
  }

  .lead {
    margin-top: 14px;
    font-size: clamp(.92rem, 3.8vw, 1rem);
    line-height: 1.5;
  }

  .feature-list {
    gap: 10px;
    margin-top: 22px;
  }

  .feature-item {
    min-height: 52px;
    padding: 12px 14px;
    align-items: center;
  }

  .feature-item__icon {
    margin-top: 0;
  }

  .footer {
    padding: 0 14px 20px;
  }

  .footer p {
    font-size: .84rem;
    line-height: 1.45;
  }
}
