:root {
  --ink: #071326;
  --navy: #071a42;
  --navy-2: #0b2a68;
  --red: #d71920;
  --red-2: #8f090f;
  --gold: #ffd36a;
  --amber: #ff9f1c;
  --cyan: #2ed7ff;
  --cream: #fff8e6;
  --paper: #f8fbff;
  --muted: #667085;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(3, 12, 32, 0.28);
  --radius: 8px;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.12), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(46, 215, 255, 0.13), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 45%, #fff9ed 100%);
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 18, 48, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 211, 106, 0.45);
}

.brand-wordmark {
  display: grid;
  align-content: center;
  min-width: 270px;
  min-height: 44px;
  padding: 3px 16px 4px;
  border-left: 1px solid rgba(255, 211, 106, 0.28);
  line-height: 1;
}

.brand-wordmark b {
  display: block;
  color: #fff7c4;
  font-size: 1.28rem;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(138, 6, 13, 0.9), 0 0 18px rgba(255, 211, 106, 0.28);
}

.brand-wordmark small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #101828;
  background: linear-gradient(135deg, #fff8d7, var(--gold), var(--amber));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #061436;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 15, 38, 0.96) 0%, rgba(95, 10, 18, 0.78) 42%, rgba(6, 22, 59, 0.22) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(0deg, #f7fbff, transparent);
}

.hero-inner {
  min-height: calc(100vh - 74px);
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: end;
  gap: 34px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff7d6;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 211, 106, 0.34);
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 5vw, 4.85rem);
  max-width: 720px;
}

.hero-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #101828;
  background: linear-gradient(135deg, #fff7c4, var(--gold), var(--amber));
  box-shadow: 0 18px 40px rgba(255, 159, 28, 0.34);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.result-glass {
  width: min(510px, 100%);
  margin-left: auto;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(4, 18, 48, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.glass-head,
.result-row,
.mini-digits {
  display: grid;
  gap: 10px;
}

.glass-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 12px 14px;
  color: rgba(255, 255, 255, 0.74);
}

.glass-head b {
  color: var(--gold);
  font-size: 1.35rem;
}

.result-row {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  padding: 11px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.result-row span { color: rgba(255, 255, 255, 0.72); }
.result-row strong { color: #fff; font-size: 1.15rem; text-align: right; }
.result-row.hot strong { color: var(--gold); font-size: 1.7rem; }

.mini-digits {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}

.mini-digits span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--navy-2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2,
.split-copy h2,
.page-intro h1 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.65rem);
  margin-top: 10px;
}

.section-head p,
.split-copy p,
.card p,
.legal p,
.article-block p {
  color: var(--muted);
  line-height: 1.75;
}

.kicker {
  color: var(--red);
  font-size: 0.85rem;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 18px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 31, 76, 0.1);
  box-shadow: 0 12px 34px rgba(9, 31, 76, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.28);
  box-shadow: 0 18px 42px rgba(9, 31, 76, 0.14);
}

.card h3 {
  font-size: 1.18rem;
  color: var(--navy);
}

.num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--navy-2));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.split.reverse { grid-template-columns: 0.98fr 1.02fr; }

.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: #071326;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.split-visual.tall img {
  max-height: 760px;
  object-position: center top;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 22%, transparent 24%),
    linear-gradient(135deg, var(--red), var(--gold));
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.dashboard {
  padding: 20px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 215, 255, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy), #06122d);
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.tab.active,
.tab:hover {
  color: #101828;
  background: linear-gradient(135deg, #fff7c4, var(--gold), var(--amber));
}

.panel { display: none; }
.panel.active { display: block; }

.sample-table {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.sample-table div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sample-table div:last-child { border-bottom: 0; }
.sample-table b { color: var(--gold); }

.dark-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 18, 48, 0.94), rgba(134, 8, 18, 0.84)),
    var(--band-image) center / cover no-repeat;
}

.dark-band h2,
.dark-band h3 { color: #fff; }

.dark-band p,
.dark-band .card p { color: rgba(255, 255, 255, 0.76); }
.dark-band .card { background: rgba(4, 18, 48, 0.76); border-color: rgba(255, 255, 255, 0.16); }
.dark-band .kicker { color: var(--gold); }

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(9, 31, 76, 0.1);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-panel { display: block; }

.page-hero {
  padding: 92px 0 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 18, 48, 0.96), rgba(93, 10, 18, 0.78), rgba(4, 18, 48, 0.32)),
    var(--page-image) center / cover no-repeat;
}

.page-hero .page-intro {
  max-width: 780px;
}

.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, 0.8); line-height: 1.75; }

.content-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--navy-2));
  box-shadow: var(--shadow);
}

.article-flow {
  display: grid;
  gap: 18px;
}

.article-block,
.legal,
.contact-grid {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(9, 31, 76, 0.1);
  box-shadow: 0 12px 34px rgba(9, 31, 76, 0.08);
}

.legal {
  display: grid;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-line {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 6px;
  background: #f7fbff;
  border: 1px solid rgba(9, 31, 76, 0.08);
}

.contact-line b { color: var(--navy); }
.contact-line span { color: var(--muted); line-height: 1.6; }

.site-footer {
  padding: 46px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  background: #061436;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  color: #fff;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .brand-wordmark { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(4, 18, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
  .nav-links.open { display: flex; }
  .hero-inner,
  .section-head,
  .split,
  .split.reverse,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .result-glass { margin-left: 0; }
  .grid-4,
  .grid-3,
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .sticky-note { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .hero-inner { min-height: auto; padding: 54px 0 44px; }
  h1 { font-size: 2.55rem; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 48, 0.96) 0%, rgba(4, 18, 48, 0.82) 54%, rgba(4, 18, 48, 0.44) 100%),
      var(--hero-image) center / cover no-repeat;
  }
  .section { padding: 58px 0; }
  .grid-4,
  .grid-3,
  .contact-grid,
  .tabs,
  .mini-digits { grid-template-columns: 1fr; }
  .sample-table div { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .footer-links { justify-content: flex-start; }
}
