:root {
  color-scheme: dark;
  --bg: #101827;
  --bg-deep: #07101b;
  --surface: #1d2839;
  --surface-2: #172232;
  --surface-3: #111b29;
  --line: #2d3a4d;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f6f7fb;
  --muted: #a9b2c1;
  --dim: #7f8b9b;
  --gold: #d6a351;
  --gold-light: #efc56f;
  --green: #50ac67;
  --holiday-green: #173f31;
  --holiday-red: #6f1d2d;
  --holiday-green-rgb: 23, 63, 49;
  --holiday-red-rgb: 111, 29, 45;
  --content-wide: 1180px;
  --content-medium: 920px;
  --content-narrow: 800px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.no-select {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(214, 163, 81, 0.08), rgba(214, 163, 81, 0.025) 24%, transparent 48%),
    linear-gradient(315deg, rgba(68, 112, 158, 0.09), rgba(68, 112, 158, 0.025) 26%, transparent 52%),
    linear-gradient(rgba(214, 163, 81, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 163, 81, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px, 92px 92px;
  opacity: 0.42;
}

body.is-holiday-season::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--holiday-red-rgb), 0.24), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(var(--holiday-green-rgb), 0.28), transparent 27%),
    radial-gradient(circle at 74% 80%, rgba(var(--holiday-red-rgb), 0.16), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(var(--holiday-green-rgb), 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 42%);
}

.holiday-snow {
  position: fixed;
  inset: 0;
  z-index: 75;
  overflow: hidden;
  pointer-events: none;
}

.holiday-snow span {
  position: absolute;
  top: -12px;
  left: var(--snow-left);
  width: var(--snow-size);
  height: var(--snow-size);
  border-radius: 999px;
  background: rgba(255, 255, 255, var(--snow-opacity));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.34);
  animation: snowFall var(--snow-duration) linear var(--snow-delay) infinite;
}

body.is-holiday-season .panel-preview,
body.is-holiday-season .dashboard-preview,
body.is-holiday-season .pricing-grid.current-pricing,
body.is-holiday-season .contact-panel {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 34px rgba(23, 63, 49, 0.14);
}

body.is-holiday-season .feature-grid article,
body.is-holiday-season .why-grid article,
body.is-holiday-season .faq-grid article,
body.is-holiday-season .pricing-grid.current-pricing article {
  position: relative;
  overflow: hidden;
}

body.is-holiday-season .feature-grid article::before,
body.is-holiday-season .why-grid article::before,
body.is-holiday-season .faq-grid article::before,
body.is-holiday-season .pricing-grid.current-pricing article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(var(--holiday-green-rgb), 0.62), rgba(var(--holiday-red-rgb), 0.62), transparent);
  opacity: 0.75;
}

body.is-holiday-season .site-header {
  border-bottom-color: rgba(214, 163, 81, 0.12);
  background: linear-gradient(180deg, rgba(7, 16, 27, 0.96), rgba(8, 20, 24, 0.94));
}

body.is-holiday-season .button.gold {
  position: relative;
  overflow: hidden;
  border-color: rgba(214, 163, 81, 0.92);
  background: linear-gradient(135deg, #d6a351, #b98645);
  box-shadow:
    0 0 0 1px rgba(23, 63, 49, 0.22),
    0 12px 28px rgba(111, 29, 45, 0.16);
}

body.is-holiday-season .purchase-cta {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(var(--holiday-red-rgb), 0.34) 44% 56%, transparent 56%),
    linear-gradient(135deg, #d6a351, #b98645);
  box-shadow:
    0 0 0 1px rgba(111, 29, 45, 0.22),
    0 16px 34px rgba(23, 63, 49, 0.2);
}

@keyframes snowFall {
  from {
    transform: translate3d(0, -10vh, 0);
  }
  to {
    transform: translate3d(var(--snow-drift), 110vh, 0);
  }
}


@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.985);
    transition:
      opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 18px clamp(22px, 3.5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 16, 27, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.section-heading,
.site-footer,
.footer-links,
.footer-socials,
.docs-link {
  display: flex;
  align-items: center;
}

.brand {
  width: min(184px, 38vw);
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand picture,
.footer-brand picture {
  display: block;
  width: 100%;
}

.main-nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #d8dde5;
  font-size: 15px;
}

.main-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  justify-content: flex-end;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #121d2b;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 8px 18px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 16, 27, 0.98);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.button.ghost {
  background: #121d2b;
  color: var(--text);
}

.button.large {
  min-height: 54px;
  min-width: 176px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding: 76px clamp(22px, 3.5vw, 56px) 34px;
}

.hero-copy {
  max-width: 660px;
}

.trust-line,
.section-heading p,
.kicker-heading {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enhanced-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
  padding: 7px 10px 7px 12px;
  border: 1px solid rgba(189, 177, 121, 0.24);
  border-radius: 6px;
  background: rgba(189, 177, 121, 0.07);
  color: #cfd5df;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.enhanced-badge img {
  display: block;
  width: 130px;
  height: 20px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold-light);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

.kicker-heading {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: #c5cfdb;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.panel-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-3);
  box-shadow: var(--shadow);
}

.panel-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 3456 / 1994;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: 64px clamp(22px, 3.5vw, 56px) 0;
}

.section-heading {
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.section-heading.center {
  display: block;
  text-align: center;
}

.section-heading.center h2 {
  max-width: 760px;
  margin-inline: auto;
}

.section-heading .section-intro {
  max-width: 660px;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  text-align: center;
}

.feature-grid,
.pricing-grid,
.why-grid,
.preview-points,
.faq-grid {
  display: grid;
  gap: 16px;
}

.feature-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.compact,
.why-grid {
  width: min(var(--content-wide), 100%);
  margin-inline: auto;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.pricing-grid article,
.why-grid article,
.dashboard-preview,
.preview-points article,
.contact-panel,
.faq-grid article,
.docs-link {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
}

.feature-grid article {
  min-height: 210px;
  padding: 22px;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-top .icon {
  margin-bottom: 0;
}

.why-grid article {
  min-height: 190px;
  padding: 24px;
}

.feature-grid article:hover {
  border-color: rgba(214, 163, 81, 0.44);
  transform: translateY(-3px);
}

.feature-grid p,
.pricing-grid p,
.why-grid p,
.preview-points p,
.faq-grid p,
.contact-panel p,
.site-footer {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(214, 163, 81, 0.32);
  border-radius: 6px;
  background: rgba(214, 163, 81, 0.1);
  color: var(--gold);
  font-size: 24px;
}

.demo-link {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(214, 163, 81, 0.62);
  border-radius: 6px;
  background: rgba(214, 163, 81, 0.2);
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-size: 24px;
  font-family: inherit;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.demo-link:hover {
  border-color: rgba(214, 163, 81, 0.7);
  background: var(--gold);
  transform: translateY(-1px);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: stretch;
  width: min(var(--content-wide), 100%);
  margin-inline: auto;
  padding: 16px;
}

.dashboard-preview figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--surface-3);
}

.dashboard-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
}

.preview-points {
  grid-template-columns: 1fr;
}

.preview-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(29, 40, 57, 0.72);
}

.preview-points i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 163, 81, 0.32);
  border-radius: 6px;
  background: rgba(214, 163, 81, 0.1);
  color: var(--gold);
  font-size: 20px;
}

.preview-points h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.preview-points p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-grid.current-pricing {
  grid-template-columns: repeat(2, minmax(240px, 330px));
  justify-content: center;
  gap: 20px;
  width: min(var(--content-narrow), 100%);
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
}

.pricing-note {
  max-width: 620px;
  margin: -8px auto 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.pricing-grid.current-pricing article {
  padding: 18px;
  text-align: center;
  background: var(--surface-2);
}

.product-image {
  width: min(150px, 72%);
  margin: 0 auto 14px;
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.current-pricing h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 760;
}

.current-pricing del,
.checkout-total del {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  text-decoration-color: rgba(214, 163, 81, 0.8);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 7px;
  padding: 4px 7px;
  border: 1px solid rgba(214, 163, 81, 0.32);
  border-radius: 4px;
  background: rgba(214, 163, 81, 0.1);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.discount-badge img {
  width: 14px;
  height: 14px;
}

.current-pricing strong {
  display: block;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.plan-includes {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  list-style: none;
  text-align: left;
}

.plan-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-includes i {
  color: var(--green);
  font-size: 16px;
  line-height: 1.15;
}

.button.buy {
  width: 100%;
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--content-medium), 100%);
  margin-inline: auto;
  gap: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
}

.faq-grid article {
  padding: 16px 18px;
  background: rgba(29, 40, 57, 0.72);
}

.faq-grid h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.faq-grid h3 i {
  color: var(--gold);
  font-size: 17px;
  line-height: 1.25;
}

.faq-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.faq-grid code {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 13px;
}

.contact-panel {
  display: block;
  overflow: hidden;
  width: min(var(--content-wide), calc(100% - clamp(44px, 7vw, 112px)));
  margin: 64px clamp(22px, 3.5vw, 56px) 0;
  margin-inline: auto;
  padding: clamp(30px, 4vw, 48px);
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.8vw, 62px);
}

.contact-panel p {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.5vw, 21px);
}

.button.discord {
  min-height: 58px;
  padding-inline: 34px;
  font-size: 20px;
}

.docs-link {
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - clamp(44px, 7vw, 112px)));
  margin: 18px auto 0;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 14px;
}

.docs-link a {
  color: var(--gold);
  font-weight: 760;
}

.contact-panel .docs-link {
  width: 100%;
  margin: 26px 0 0;
  background: rgba(7, 16, 27, 0.28);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(3, 8, 14, 0.76);
}

.modal-backdrop.is-open {
  display: flex;
}

@media (prefers-reduced-motion: no-preference) {
  .modal-backdrop.is-open {
    animation: modalBackdropIn 180ms ease-out both;
  }

  .modal-backdrop.is-open .research-modal,
  .modal-backdrop.is-open .video-modal,
  .modal-backdrop.is-open .checkout-modal {
    animation: modalPanelIn 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
}

@keyframes modalBackdropIn {
  from {
    background: rgba(3, 8, 14, 0);
  }
  to {
    background: rgba(3, 8, 14, 0.76);
  }
}

@keyframes modalPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.research-modal,
.video-modal,
.checkout-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101827;
  box-shadow: var(--shadow);
}

.research-modal {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: min(760px, calc(100vh - 44px));
  overflow: hidden;
  padding: 0;
}

.research-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: #101827;
}

.research-modal-head p,
.video-modal > p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.research-modal h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 28px;
}

.video-modal {
  width: min(920px, 100%);
  padding: 28px;
  overflow: hidden;
}

.video-modal h2 {
  max-width: calc(100% - 54px);
  margin-bottom: 18px;
  font-size: 28px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: #07101b;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07101b;
}

.video-placeholder {
  display: grid;
  min-height: min(52vw, 430px);
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 36px;
  color: var(--muted);
  text-align: center;
}

.video-placeholder i {
  color: var(--gold);
  font-size: 48px;
}

.video-placeholder span {
  color: var(--text);
  font-size: 18px;
  font-weight: 760;
}

.video-placeholder small {
  max-width: 360px;
  color: var(--dim);
  font-size: 13px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.research-modal-head .modal-close {
  position: static;
  flex: 0 0 auto;
}

.research-list {
  display: grid;
  gap: 10px;
  margin: 0;
  max-height: 100%;
  overflow: auto;
  padding: 18px 28px 28px;
  list-style: none;
}

.research-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.research-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 163, 81, 0.32);
  border-radius: 6px;
  background: rgba(214, 163, 81, 0.1);
  color: var(--gold);
}

.research-list h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.research-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.research-list code {
  padding: 2px 6px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 13px;
}

.research-list a {
  color: var(--gold);
  font-weight: 760;
}

.checkout-modal {
  width: min(620px, 100%);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  padding: 0;
  background: var(--surface);
}

.checkout-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  background: var(--surface-2);
}

.checkout-header p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-header h2 {
  color: var(--gold);
  font-size: 22px;
  text-transform: uppercase;
}

.checkout-header .modal-close {
  position: static;
  flex: 0 0 auto;
}

.checkout-body {
  width: min(520px, 100%);
  margin-inline: auto;
  padding: 18px 18px 20px;
}

.checkout-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.checkout-field span,
.payment-section h3 {
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
}

.checkout-field input {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 0;
  outline: 0;
  background: rgba(7, 16, 27, 0.42);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.checkout-field input::placeholder {
  color: var(--muted);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.payment-option {
  min-height: 50px;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: rgba(7, 16, 27, 0.3);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.payment-option.is-selected {
  border-color: var(--gold);
}

.payment-option:disabled,
.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.payment-option[hidden] {
  display: none;
}

.payment-logos {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.payment-logos img {
  display: block;
  max-width: 104px;
  max-height: 24px;
  object-fit: contain;
}

.payment-logos.single img {
  max-width: 112px;
  max-height: 25px;
  padding: 4px 7px;
  border-radius: 4px;
  background: #fff;
}

.payment-logos.multi {
  flex-wrap: wrap;
  gap: 0;
  min-height: 42px;
}

.payment-logos.multi img {
  max-width: 74px;
  max-height: 24px;
  margin-inline: -3px;
  padding: 5px 7px;
  border-radius: 4px;
  background: #fff;
}

.payment-logos.polish {
  gap: 8px;
}

.payment-logos.polish img {
  max-width: 86px;
  max-height: 26px;
  padding: 5px 7px;
  border-radius: 4px;
  background: #fff;
}

.payment-logos.paysafe {
  gap: 8px;
}

.payment-logos.paysafe img {
  max-width: 118px;
  padding: 4px 7px;
  border-radius: 4px;
  background: #fff;
}

.payment-logos small {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
}

.checkout-error {
  margin: 10px 0 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 91, 91, 0.3);
  border-radius: 4px;
  background: rgba(255, 91, 91, 0.08);
  color: #ffb3b3;
  font-size: 12px;
  font-weight: 700;
}

.checkout-terms {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.checkout-terms p {
  margin-bottom: 0;
  padding: 7px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(7, 16, 27, 0.24);
}

.checkout-terms a {
  color: var(--gold);
}

.gateway-logo {
  display: block;
  height: 22px;
  margin: 12px auto 0;
  object-fit: contain;
  opacity: 0.82;
}

.checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--surface-2);
}

.checkout-total {
  display: grid;
  gap: 2px;
}

.checkout-footer strong {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.checkout-submit {
  min-width: 120px;
  min-height: 40px;
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 38px clamp(22px, 3.5vw, 56px);
  border-top: 1px solid var(--line-soft);
  background: rgba(7, 16, 27, 0.86);
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 340px;
  margin: 12px 0 0;
  font-size: 14px;
}

.footer-links {
  gap: 18px;
  font-size: 14px;
}

.footer-socials {
  justify-content: flex-end;
  gap: 10px;
}

.social-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 20px;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-button:hover {
  border-color: rgba(214, 163, 81, 0.5);
  background: rgba(214, 163, 81, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 13px;
}

.terms-page {
  padding: 76px clamp(22px, 3.5vw, 56px);
}

.terms-shell {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface);
}

.terms-shell h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 64px);
}

.terms-shell .lead {
  max-width: 700px;
  margin-bottom: 36px;
}

.terms-shell article {
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}

.terms-shell article h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.terms-shell article p {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--muted);
}

.terms-shell article p:last-child {
  margin-bottom: 0;
}

.terms-shell article a {
  color: var(--gold);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-shell article strong {
  color: var(--text);
}

.terms-shell .button {
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .panel-preview {
    max-width: 920px;
  }

  .feature-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
    grid-template-columns: auto 1fr;
  }

  .brand {
    width: 150px;
  }

  .header-actions .ghost {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .gold {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    padding: 44px 18px 18px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .button.large,
  .hero-actions .button {
    width: 100%;
  }

  .feature-grid.compact,
  .dashboard-preview,
  .pricing-grid.current-pricing,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 18px 0;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid article:nth-child(2) {
    grid-column: auto;
  }

  .contact-panel,
  .docs-link {
    margin-inline: 18px;
    width: auto;
  }

  .pricing-grid.current-pricing,
  .dashboard-preview,
  .faq-grid article,
  .contact-panel {
    padding: 22px;
  }

  .product-image {
    width: min(150px, 68%);
  }

  .contact-panel {
    margin-top: 48px;
  }

  .contact-panel h2 {
    font-size: 38px;
  }

  .contact-panel p {
    font-size: 17px;
  }

  .button.discord {
    width: 100%;
    min-height: 58px;
    font-size: 19px;
  }

  .checkout-header,
  .checkout-footer {
    padding: 12px 14px;
  }

  .checkout-header h2 {
    font-size: 19px;
  }

  .checkout-body {
    padding: 14px 12px 16px;
  }

  .research-modal {
    max-height: calc(100dvh - 24px);
  }

  .research-modal-head {
    padding: 18px 18px 14px;
  }

  .research-modal h2 {
    font-size: 22px;
  }

  .research-list {
    padding: 14px 18px 18px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-option {
    min-height: 46px;
    padding: 7px 8px;
  }

  .payment-option span {
    font-size: 13px;
  }

  .payment-option small {
    font-size: 10px;
  }

  .checkout-terms {
    margin-top: 10px;
    font-size: 10px;
  }

  .checkout-terms p {
    padding: 6px 8px;
  }

  .checkout-footer strong {
    font-size: 18px;
  }

  .checkout-submit {
    min-height: 38px;
    min-width: 112px;
    font-size: 15px;
  }

  .video-modal {
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }

  .video-modal h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .video-placeholder {
    min-height: 220px;
    padding: 24px 18px;
  }

  .video-placeholder i {
    font-size: 38px;
  }

  .docs-link {
    display: block;
  }

  .docs-link a {
    display: inline-flex;
    margin-top: 8px;
    align-items: center;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .footer-links,
  .footer-socials {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-copy {
    margin-top: 0;
  }
}
