:root {
  --navy: #0b1f3a;
  --navy-2: #123056;
  --gold: #b8860b;
  --gold-2: #d4a017;
  --paper: #f5f7fa;
  --white: #ffffff;
  --ink: #1b2430;
  --mute: #5c6b7a;
  --line: #e2e8f0;
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: Poppins, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  min-height: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 80;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  font-weight: 600;
}
.skip:focus { top: 10px; }

.meter {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 70;
}
.meter span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.stage {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.stage-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img { height: 46px; width: auto; }

.nav { display: flex; gap: 22px; }
.nav a {
  color: #c5d0de;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
  text-decoration: none;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
}

.acts { display: flex; gap: 8px; }

.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  text-decoration: none !important;
}
.act-main {
  background: var(--gold);
  color: #111;
}
.act-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.act:hover { opacity: 0.92; }

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 56px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lead {
  color: #c9d4e3;
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 28px;
}
.lead strong { color: #fff; font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.plate {
  background: #071526;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  text-align: center;
}
.plate img {
  height: 86px;
  width: auto;
  margin: 0 auto 18px;
}
.plate p {
  color: #9eb0c4;
  font-size: 0.92rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: -36px auto 56px;
  position: relative;
  z-index: 2;
}

.offer {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 22px 22px;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  text-decoration: none !important;
  color: inherit;
  border-top: 3px solid var(--gold);
}
.offer:hover { box-shadow: 0 14px 36px rgba(11, 31, 58, 0.12); }
.offer small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.offer b {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.offer p { color: var(--mute); font-size: 0.92rem; margin: 0; }

.story {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.when {
  color: var(--mute);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

article h2 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
}
article h3 {
  font-size: 1.1rem;
  margin: 22px 0 8px;
  color: var(--navy);
}
article p { margin-bottom: 16px; }
article ul { margin: 0 0 16px 1.15rem; }
article li { margin-bottom: 7px; }

.panel {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.panel h2 { margin: 0 0 4px; font-size: 1.2rem; }
.panel p { margin: 0; color: var(--mute); }
.panel .act-ghost {
  color: var(--navy);
  border-color: var(--navy);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin-bottom: 8px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 8px 0 0; color: var(--mute); }

.foot {
  background: var(--navy);
  color: #b7c4d4;
  padding: 40px 0 108px;
  font-size: 0.92rem;
}
.cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.foot strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}
.foot ul { list-style: none; }
.foot li { margin-bottom: 6px; }
.foot a { color: #dce4ee; }
.foot img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin: 8px 0 12px;
}
.fine {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--navy);
  z-index: 50;
}
.dock .act { flex: 1; }

@media (max-width: 900px) {
  .hero-grid,
  .offers,
  .cols,
  .panel {
    grid-template-columns: 1fr;
  }
  .panel { display: grid; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-2);
    padding: 16px 20px 20px;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .burger { display: grid; place-items: center; }
  .stage-row > .acts { display: none; }
  .dock { display: flex; }
  .offers { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
