:root {
  --navy: #071426;
  --navy-2: #0d2038;
  --navy-3: #102a4a;
  --gold: #c8a24a;
  --gold-2: #f2d27a;
  --white: #ffffff;
  --offwhite: #f7f8fb;
  --muted: #7d8794;
  --text: #182230;
  --line: rgba(200, 162, 74, 0.28);
  --shadow: 0 22px 60px rgba(7, 20, 38, 0.16);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  background: #050d19;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  padding: 9px 18px;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 20, 38, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-main {
  color: var(--white);
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 25px;
}

.logo-main span {
  color: var(--gold-2);
}

.logo-sub {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #071426;
  box-shadow: 0 12px 26px rgba(200,162,74,.27);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(200,162,74,.33);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(7,20,38,.08);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(242,210,122,.20), transparent 35%),
    radial-gradient(circle at 84% 22%, rgba(55,96,150,.32), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2) 58%, #06101e);
  color: var(--white);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 380px;
  background: radial-gradient(circle, rgba(200,162,74,.18), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 18px 72px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -0.065em;
  margin: 18px 0 22px;
}

.hero p {
  color: rgba(255,255,255,.78);
  font-size: 19px;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.trust-pill {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 14px;
}

.trust-pill strong {
  color: var(--white);
  display: block;
  font-size: 14px;
}

.trust-pill span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.hero-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.market-card {
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 22px;
}

.market-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 22px;
}

.market-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}

.inventory-mini {
  display: grid;
  gap: 12px;
}

.mini-line {
  border: 1px solid rgba(7,20,38,.08);
  border-radius: 18px;
  padding: 15px;
  background: #fbfcff;
}

.mini-line-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
  color: var(--navy);
}

.mini-line-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
}

.price {
  color: #0f7a4a;
  font-weight: 900;
}

.special-tag {
  color: #071426;
  background: var(--gold-2);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 900;
}

section {
  padding: 76px 18px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 10px 0 14px;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.path-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,20,38,.06);
}

.path-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
  margin-bottom: 18px;
}

.path-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.path-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.path-card ul {
  margin: 0 0 22px;
  padding-left: 19px;
  color: #465364;
}

.path-card li {
  margin: 7px 0;
}

.split {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 36px;
  align-items: center;
}

.panel {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(7,20,38,.06);
}

.dark-panel {
  background:
    radial-gradient(circle at 20% 10%, rgba(242,210,122,.16), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark-panel h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

.dark-panel p {
  color: rgba(255,255,255,.72);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.step:before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(200,162,74,.15);
  color: var(--gold-2);
  border: 1px solid rgba(200,162,74,.28);
  display: grid;
  place-items: center;
  font-weight: 950;
}

.step strong {
  display: block;
  color: var(--white);
}

.step span {
  color: rgba(255,255,255,.67);
  font-size: 14px;
}

.inventory-table-wrap {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(7,20,38,.06);
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #fbf8ef);
  border-bottom: 1px solid rgba(7,20,38,.06);
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7a4b00;
  background: rgba(242,210,122,.35);
  border: 1px solid rgba(200,162,74,.35);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th, td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(7,20,38,.06);
}

th {
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #fbfcff;
}

td {
  color: #344254;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
  background: rgba(15,122,74,.10);
  color: #0f7a4a;
}

.badge-gold {
  background: rgba(200,162,74,.16);
  color: #7a4b00;
}

.score-tool {
  background:
    radial-gradient(circle at 14% 0%, rgba(242,210,122,.16), transparent 32%),
    linear-gradient(135deg, var(--navy), #08182c);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.score-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.meter {
  position: relative;
  height: 190px;
  display: grid;
  place-items: end center;
  margin: 20px auto;
  max-width: 380px;
}

.arc {
  width: 300px;
  height: 150px;
  border-radius: 300px 300px 0 0;
  background: conic-gradient(from 270deg, #8b2635, #c8a24a, #0f7a4a 50%, transparent 50%);
  opacity: .95;
}

.arc:after {
  content: "";
  position: absolute;
  width: 224px;
  height: 112px;
  background: #08182c;
  border-radius: 224px 224px 0 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.needle {
  position: absolute;
  bottom: 8px;
  width: 132px;
  height: 6px;
  background: var(--gold-2);
  border-radius: 999px;
  transform-origin: 10px center;
  transform: rotate(-28deg);
  transition: .25s ease;
  box-shadow: 0 0 22px rgba(242,210,122,.45);
}

.needle:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 5px solid var(--gold);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(-20%, -50%);
}

.score-number {
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -.05em;
  text-align: center;
  color: var(--gold-2);
}

.slider-wrap {
  display: grid;
  gap: 13px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.note {
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(242,210,122,.18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-radius: 34px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 10px;
}

.cta-band p {
  color: rgba(255,255,255,.72);
  margin: 0;
}

.footer {
  background: #050d19;
  color: rgba(255,255,255,.72);
  padding: 52px 18px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.footer a:hover {
  color: var(--gold-2);
}

.legal {
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.48);
}

.mobile-menu-note {
  display: none;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-note {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    margin-top: 8px;
  }

  .hero-inner,
  .split,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .table-toolbar,
  .cta-band,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 58px 18px;
  }

  .hero-inner {
    padding-top: 64px;
  }

  .inventory-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mini-line-meta {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px;
  }

  .hero-card,
  .score-tool,
  .dark-panel,
  .panel {
    padding: 22px;
  }
}