:root {
  --bg: #07090d;
  --bg-soft: #0d1117;
  --panel: #111820;
  --panel-strong: #17212b;
  --text: #f7f9fb;
  --muted: #b9c2cc;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #10d8d0;
  --teal: #21b68f;
  --gold: #f6bd3f;
  --violet: #8b6cf6;
  --danger: #ff6b6b;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(16, 216, 208, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 189, 63, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Keeps the Bootstrap-based layout responsive even when CDN assets load slowly. */
.container {
  --bs-gutter-x: 1.5rem;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: calc(0.5 * var(--bs-gutter-x));
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-inline: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-top: var(--bs-gutter-y);
  padding-inline: calc(0.5 * var(--bs-gutter-x));
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 2.25rem;
  --bs-gutter-y: 2.25rem;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.ms-auto {
  margin-left: auto;
}

.mt-3 {
  margin-top: 1rem;
}

.w-100 {
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-block: 0.5rem;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: inherit;
  gap: 0.75rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-block: 0;
  text-decoration: none;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
}

.collapse:not(.show) {
  display: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.form-label {
  display: inline-block;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  border: 0;
  text-align: left;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .flex-sm-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .navbar-expand-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex;
    align-items: center;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .align-items-xl-center {
    align-items: center;
  }

  .gap-xl-1 {
    gap: 0.25rem;
  }

  .ms-xl-3 {
    margin-left: 1rem;
  }

  .mt-xl-0 {
    margin-top: 0;
  }
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 9, 13, 0.86);
  backdrop-filter: blur(18px);
}

.site-nav .container {
  min-width: 0;
}

.brand-logo {
  width: 158px;
  height: 54px;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  width: 50px;
  height: 46px;
  flex: 0 0 50px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(12, 18, 25, 0.98), rgba(4, 7, 10, 0.98)) padding-box,
    linear-gradient(135deg, rgba(246, 189, 63, 0.95), rgba(16, 216, 208, 0.82), rgba(139, 108, 246, 0.72)) border-box;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(16, 216, 208, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -42% 14% auto;
  height: 56%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(11px);
  transform: rotate(-18deg);
  z-index: -1;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  box-shadow: 0 18px 40px rgba(16, 216, 208, 0.2), 0 0 0 4px rgba(246, 189, 63, 0.1);
  transform: translateY(-1px);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle-icon {
  position: relative;
  width: 24px;
  height: 18px;
  display: grid;
  align-content: space-between;
}

.menu-toggle-icon span {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, var(--gold), var(--cyan));
  box-shadow: 0 0 12px rgba(16, 216, 208, 0.45);
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease, width 0.18s ease;
}

.menu-toggle-icon span:nth-child(2) {
  width: 74%;
  justify-self: end;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(247, 249, 251, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.navbar-nav .nav-link i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 7px;
  color: var(--cyan);
  font-size: 0.98rem;
  background: rgba(16, 216, 208, 0.1);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--gold);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link:focus i,
.navbar-nav .nav-link.active i {
  color: #071015;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  transform: translateY(-1px);
}

@media (min-width: 1200px) {
  .site-nav .navbar-collapse {
    justify-content: flex-end;
  }

  .site-nav .nav-link {
    padding: 8px 9px;
    border-radius: 8px;
  }

  .site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus,
  .site-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.055);
  }

  .site-nav .nav-link:hover::after,
  .site-nav .nav-link:focus::after,
  .site-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.btn {
  border-radius: 8px;
  font-weight: 800;
}

.btn i {
  margin-right: 8px;
}

.btn-accent,
.btn-primary-action {
  border: 0;
  background: linear-gradient(135deg, var(--gold), #ffe38a 48%, var(--cyan));
  color: #071015;
  box-shadow: 0 12px 28px rgba(16, 216, 208, 0.16);
}

.btn-accent:hover,
.btn-accent:focus,
.btn-primary-action:hover,
.btn-primary-action:focus {
  background: linear-gradient(135deg, #ffe38a, var(--gold) 52%, var(--teal));
  color: #071015;
  transform: translateY(-1px);
}

.btn-outline-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-outline-action:hover,
.btn-outline-action:focus {
  border-color: var(--cyan);
  background: rgba(16, 216, 208, 0.12);
  color: var(--text);
}

.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 88px;
  border-bottom: 1px solid var(--line);
  background: #030609;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.96) 0%, rgba(5, 8, 12, 0.82) 34%, rgba(5, 8, 12, 0.34) 66%, rgba(5, 8, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.72) 0%, rgba(5, 8, 12, 0.14) 46%, rgba(5, 8, 12, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

.hero-section h1 {
  margin: 0 0 18px;
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.92;
  color: #ffffff;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.46);
}

.hero-lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(247, 249, 251, 0.84);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(10, 15, 21, 0.72);
  box-shadow: var(--shadow);
}

.hero-proof strong {
  display: block;
  color: var(--cyan);
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice-strip {
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(246, 189, 63, 0.18), rgba(16, 216, 208, 0.14), rgba(139, 108, 246, 0.12));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notice-inner i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  font-size: 1.1rem;
}

.notice-inner p {
  margin: 0;
  color: rgba(247, 249, 251, 0.9);
  font-weight: 600;
}

.section-block {
  padding: 92px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(23, 33, 43, 0.88), rgba(9, 13, 18, 0.94)),
    var(--bg-soft);
}

.blockchain-section {
  background:
    linear-gradient(135deg, rgba(16, 216, 208, 0.12), rgba(139, 108, 246, 0.12)),
    #090d12;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading .section-kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

.section-block h2,
.section-heading h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
}

.section-heading p,
.section-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.feature-card,
.option-card,
.mini-card,
.knowledge-card,
.risk-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  min-width: 0;
}

.metric-card {
  min-height: 210px;
  padding: 24px;
}

.metric-card i,
.feature-card > i,
.option-card > i,
.mini-card > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(16, 216, 208, 0.13);
  color: var(--cyan);
  font-size: 1.35rem;
}

.metric-card:nth-child(2) i,
#features .col-md-6:nth-child(2n) .feature-card > i,
#trading .col-md-6:nth-child(2n) .option-card > i,
#options .col-md-6:nth-child(2n) .mini-card > i {
  background: rgba(246, 189, 63, 0.14);
  color: var(--gold);
}

.metric-card:nth-child(4) i,
#features .col-md-6:nth-child(3n) .feature-card > i,
#trading .col-md-6:nth-child(3n) .option-card > i,
#options .col-md-6:nth-child(3n) .mini-card > i {
  background: rgba(139, 108, 246, 0.14);
  color: var(--violet);
}

.metric-card strong,
.feature-card h3,
.option-card h3,
.mini-card h3,
.knowledge-card h3,
.risk-panel h3,
.timeline-item h3 {
  display: block;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.metric-card span,
.feature-card p,
.option-card p,
.mini-card p,
.knowledge-card p,
.risk-panel p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-card,
.option-card,
.mini-card {
  height: 100%;
  padding: 26px;
  min-width: 0;
}

.feature-card {
  min-height: 268px;
}

.option-card {
  min-height: 246px;
}

.mini-card {
  min-height: 210px;
}

.callout {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(246, 189, 63, 0.2);
  border-radius: 8px;
  background: rgba(246, 189, 63, 0.09);
}

.callout i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(246, 189, 63, 0.14);
  color: var(--gold);
  font-size: 1.25rem;
}

.callout strong,
.callout span {
  display: block;
}

.callout strong {
  margin-bottom: 6px;
  color: #ffffff;
}

.callout span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  min-height: 128px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  min-width: 0;
}

.timeline-item span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 216, 208, 0.25), rgba(246, 189, 63, 0.18));
  color: #ffffff;
  font-family: "Rajdhani", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.knowledge-card {
  height: 100%;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px;
  min-width: 0;
}

.knowledge-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 1.4rem;
}

.knowledge-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(247, 249, 251, 0.78);
  line-height: 1.7;
}

.security-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.security-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 249, 251, 0.88);
  font-weight: 700;
}

.security-list i {
  color: var(--teal);
  font-size: 1.15rem;
}

.risk-panel {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(16, 216, 208, 0.1), rgba(246, 189, 63, 0.055)),
    rgba(255, 255, 255, 0.04);
}

.risk-panel h3 {
  margin-bottom: 22px;
}

.risk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.risk-row span {
  color: var(--muted);
}

.risk-row strong {
  color: var(--gold);
  text-align: right;
}

.risk-panel p {
  margin-top: 20px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.accordion-button {
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-weight: 800;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(16, 216, 208, 0.12);
  color: #ffffff;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(246, 189, 63, 0.11), rgba(16, 216, 208, 0.09), rgba(139, 108, 246, 0.08)),
    #080b10;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-points a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 249, 251, 0.88);
  font-weight: 700;
  text-decoration: none;
}

.contact-points a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 28px;
}

.form-label {
  color: rgba(247, 249, 251, 0.86);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(5, 8, 12, 0.78);
  color: var(--text);
}

.form-control::placeholder {
  color: rgba(185, 194, 204, 0.65);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  background-color: rgba(5, 8, 12, 0.92);
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(16, 216, 208, 0.13);
}

.site-footer {
  padding: 46px 0 28px;
  background: #05070a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 170px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  font-size: 0.9rem;
}

@media (max-width: 1199.98px) {
  .site-nav .navbar-collapse {
    position: relative;
    margin-top: 14px;
    padding: 12px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border: 1px solid rgba(246, 189, 63, 0.2);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(246, 189, 63, 0.12), rgba(16, 216, 208, 0.08), rgba(139, 108, 246, 0.1)),
      rgba(7, 10, 14, 0.98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
  }

  .site-nav .navbar-collapse::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
    pointer-events: none;
  }

  .site-nav .navbar-nav {
    display: grid;
    gap: 8px;
  }

  .site-nav .nav-link {
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.035);
    color: rgba(247, 249, 251, 0.9);
  }

  .site-nav .nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.44;
    transform: rotate(45deg);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav .nav-link i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 8px;
    font-size: 1.05rem;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus,
  .site-nav .nav-link.active {
    border-color: rgba(16, 216, 208, 0.34);
    background:
      linear-gradient(135deg, rgba(246, 189, 63, 0.16), rgba(16, 216, 208, 0.1)),
      rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transform: translateX(2px);
  }

  .site-nav .nav-link:hover::after,
  .site-nav .nav-link:focus::after,
  .site-nav .nav-link.active::after {
    opacity: 0.9;
    transform: translateX(2px) rotate(45deg);
  }

  .site-nav .btn-accent {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    margin-top: 12px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 640px;
    padding: 124px 0 72px;
  }

  .hero-section h1 {
    font-size: 3.9rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.96) 0%, rgba(5, 8, 12, 0.82) 56%, rgba(5, 8, 12, 0.54) 100%),
      linear-gradient(180deg, rgba(5, 8, 12, 0.78) 0%, rgba(5, 8, 12, 0.2) 48%, rgba(5, 8, 12, 0.94) 100%);
  }

  .section-block {
    padding: 74px 0;
  }

  .section-block h2,
  .section-heading h2 {
    font-size: 2.45rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .brand-logo {
    width: 136px;
    height: 48px;
  }

  .hero-section {
    min-height: auto;
    padding: 108px 0 56px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-section h1 {
    font-size: 2.95rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 82px;
  }

  .notice-inner {
    align-items: flex-start;
  }

  .section-block {
    padding: 62px 0;
  }

  .section-block h2,
  .section-heading h2 {
    font-size: 2.1rem;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .section-heading .section-kicker {
    justify-content: flex-start;
  }

  .section-heading .section-kicker::after {
    display: none;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .option-card,
  .mini-card,
  .metric-card {
    min-height: 0;
  }

  .timeline-item,
  .knowledge-card {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 52px;
    height: 52px;
  }

  .risk-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .risk-row strong {
    text-align: left;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 575.98px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-nav {
    min-height: 66px;
  }

  .site-nav .container {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 118px;
    height: 42px;
  }

  .navbar-toggler {
    padding: 6px 8px;
  }

  .hero-section {
    padding: 94px 0 44px;
  }

  .hero-section h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .hero-lead,
  .section-heading p,
  .section-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-proof div {
    min-height: 72px;
    padding: 14px;
  }

  .hero-proof strong {
    font-size: 1.7rem;
  }

  .notice-strip {
    padding: 14px 0;
  }

  .notice-inner {
    gap: 10px;
  }

  .notice-inner i {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .section-block {
    padding: 52px 0;
  }

  .metric-card,
  .feature-card,
  .option-card,
  .mini-card,
  .knowledge-card,
  .risk-panel,
  .contact-form,
  .timeline-item {
    padding: 18px;
  }

  .callout {
    align-items: flex-start;
    padding: 16px;
  }

  .callout i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 380px) {
  .container {
    --bs-gutter-x: 1.25rem;
  }

  .g-4,
  .g-5 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.86rem;
  }

  .eyebrow::before,
  .section-kicker::before {
    width: 18px;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .section-block h2,
  .section-heading h2 {
    font-size: 1.72rem;
  }

  .feature-card,
  .option-card,
  .mini-card,
  .metric-card,
  .knowledge-card,
  .risk-panel {
    padding: 20px;
  }
}
