:root {
  color-scheme: dark;
  --page: #080401;
  --section: #120802;
  --section-deep: #040200;
  --ink: #fff8ec;
  --muted: #f4dfaf;
  --quiet: #d4ae58;
  --gold: #f2b233;
  --gold-soft: #ffe6a2;
  --gold-deep: #8b4b04;
  --line: rgba(242, 178, 51, 0.46);
  --line-strong: rgba(255, 219, 124, 0.82);
  --button: linear-gradient(180deg, #ffcf57 0%, #b3690a 52%, #5a2902 100%);
  --button-dark: linear-gradient(180deg, rgba(48, 26, 7, 0.95) 0%, rgba(10, 5, 2, 0.98) 100%);
  --header-height: 74px;
  --max-width: 1260px;
  --content-width: 1160px;
  --section-pad: 68px;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(7, 2, 0, 0.86), rgba(0, 0, 0, 0.96)),
    url("assets/richman/7767a741-13be-4b29-b1c2-7418be65d5f9.webp") center top / cover fixed,
    var(--page);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(255, 198, 77, 0.2);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 23px;
}

p,
li,
td,
summary {
  color: var(--muted);
}

strong {
  color: #fff4cf;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: #170802;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-height);
  background: rgba(9, 4, 1, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 212, 107, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
  background: rgba(6, 2, 0, 0.97);
}

.header-inner {
  width: min(100% - 40px, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 290px;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  max-width: 100%;
  width: auto;
  height: 46px;
  filter:
    drop-shadow(0 0 18px rgba(255, 197, 85, 0.26))
    drop-shadow(0 6px 24px rgba(0, 0, 0, 0.24));
}

.primary-nav {
  justify-self: center;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.primary-nav a {
  color: #fff8ec;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(255, 203, 79, 0.42);
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 207, 87, 0.52);
  border-radius: 999px;
  padding: 10px 22px;
  color: #fff7e6;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.solid {
  background: var(--button);
  color: #130802;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 217, 0.54),
    0 0 24px rgba(235, 171, 44, 0.24);
}

.button.ghost {
  background: var(--button-dark);
}

.button.large {
  min-width: 250px;
  min-height: 58px;
  font-size: 22px;
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 217, 0.54),
    0 0 30px rgba(255, 200, 71, 0.38);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 5, 2, 0.9);
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  background: #050200;
}

.hero-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-banners img {
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
}

.hero-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 42px 20px 58px;
  background:
    radial-gradient(circle at center top, rgba(255, 192, 68, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(8, 3, 1, 0.95), rgba(0, 0, 0, 0.98));
  text-align: center;
}

.hero-logo {
  width: min(280px, 72vw);
  filter:
    drop-shadow(0 0 22px rgba(255, 194, 74, 0.28))
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.32));
}

.hero-intro h1 {
  max-width: 1050px;
}

.hero-intro p {
  max-width: 920px;
  color: #fff6dd;
  font-weight: 700;
}

.section-inner {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
}

section:not(.hero) {
  padding: var(--section-pad) 0;
}

.split-section,
.portfolio-section,
.steps-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(10, 4, 1, 0.95), rgba(0, 0, 0, 0.96)),
    url("assets/richman/a9b1de3e-d9a3-46a1-a58e-afb351c7914a.webp") center / cover fixed;
}

.promo-section,
.table-section,
.site-footer {
  background:
    radial-gradient(circle at top, rgba(255, 191, 74, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 3, 1, 0.98), rgba(0, 0, 0, 1));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.split-layout.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.split-layout.reverse .feature-image {
  order: 2;
}

.feature-image,
.blue-standard-visual,
.faq-visual,
.portfolio-media-grid figure {
  margin: 0;
}

.feature-image img,
.faq-visual img,
.portfolio-media-grid img,
.promo-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.split-section .feature-image img {
  aspect-ratio: 4 / 3;
}

.steps-section .feature-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
  padding: 10px;
}

.split-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.split-copy p,
.split-copy li {
  color: #fff8ea;
  font-weight: 700;
}

.split-copy ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  text-align: left;
}

.portfolio-section .section-inner,
.promo-section .section-inner,
.table-section .section-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.portfolio-section > .section-inner > p,
.promo-section > .section-inner > p,
.table-section > .section-inner > p {
  max-width: 980px;
  color: #fff8ea;
  font-weight: 700;
}

.down-arrow {
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 18px solid var(--gold-soft);
  filter: drop-shadow(0 0 12px rgba(255, 200, 71, 0.5));
}

.content-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 12px;
  text-align: left;
}

.content-columns article {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.content-columns h3 {
  width: 100%;
  text-align: center;
}

.content-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
}

.content-columns .button {
  justify-self: center;
  min-width: 220px;
}

.portfolio-media-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 4px 0 12px;
}

.portfolio-media-grid img {
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.provider-section {
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 206, 104, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(22, 10, 2, 0.98), rgba(5, 2, 0, 0.98));
}

.provider-section .section-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.provider-heading-wrap {
  width: 100%;
  display: grid;
  justify-items: center;
  padding: 18px 0 6px;
}

.provider-section h2 {
  margin: 0;
  text-align: center;
  color: #ffe9ae;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 14px rgba(255, 210, 108, 0.36),
    0 0 28px rgba(255, 184, 58, 0.22);
}

.provider-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.provider-row {
  overflow: hidden;
  border-top: 1px solid rgba(255, 224, 146, 0.22);
  border-bottom: 1px solid rgba(255, 224, 146, 0.22);
  background: linear-gradient(180deg, rgba(255, 196, 80, 0.05), rgba(255, 196, 80, 0.02));
  box-shadow:
    inset 0 16px 30px rgba(255, 199, 88, 0.04),
    inset 0 -16px 30px rgba(255, 199, 88, 0.03),
    0 0 36px rgba(255, 183, 55, 0.08);
  padding: 20px 0;
}

.provider-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  will-change: transform;
}

.provider-track.is-paused {
  animation-play-state: paused;
}

.provider-card {
  position: relative;
  width: 146px;
  height: 146px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 89, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(98, 67, 24, 0.96), rgba(26, 14, 4, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 214, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 196, 74, 0.18);
  transform: translateZ(0);
}

.provider-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 240, 186, 0.1), transparent 40%, transparent 72%, rgba(255, 220, 120, 0.12));
  pointer-events: none;
  content: "";
}

.provider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.08);
}

.blue-standard-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 196, 64, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(9, 4, 1, 0.98), rgba(0, 0, 0, 0.98));
}

.blue-standard-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(29, 13, 3, 0.52), rgba(0, 0, 0, 0.78)),
    rgba(1, 0, 0, 0.34);
  content: "";
}

.blue-standard-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.blue-standard-heading {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.section-logo {
  width: min(250px, 70vw);
  filter: drop-shadow(0 0 24px rgba(255, 196, 72, 0.28));
}

.blue-standard-heading p {
  max-width: 980px;
  color: #fff8e6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.blue-standard-heading strong,
.blue-standard-panel strong {
  color: var(--gold-soft);
}

.blue-standard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(460px, 1.12fr);
  align-items: start;
  gap: 30px;
}

.blue-standard-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(255, 191, 74, 0.18))
    drop-shadow(0 22px 38px rgba(0, 0, 0, 0.58));
}

.blue-standard-panels {
  display: grid;
  gap: 14px;
}

.blue-standard-panel {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 209, 88, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(53, 28, 6, 0.9), rgba(9, 4, 1, 0.94));
  padding: 16px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 145, 0.06),
    0 18px 28px rgba(0, 0, 0, 0.22);
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 216, 124, 0.66);
  border-radius: 999px;
  color: #120802;
  background: linear-gradient(180deg, #ffe7a7, #d2891d);
  font-size: 16px;
  font-weight: 950;
}

.blue-standard-panel h3 {
  margin-bottom: 6px;
}

.blue-standard-panel p,
.blue-standard-panel li {
  color: #fff8eb;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.36;
}

.blue-standard-panel ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 20px;
}

.blue-standard-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.blue-standard-badges div {
  min-height: 72px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 213, 95, 0.36);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(70, 38, 6, 0.92), rgba(10, 4, 1, 0.95));
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.blue-standard-badges span {
  color: var(--gold-soft);
  font-size: 20px;
}

.promo-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.promo-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(255, 215, 120, 0.26);
  border-radius: 18px;
  background: rgba(10, 4, 1, 0.86);
  box-shadow: var(--shadow);
}

.promo-card img {
  aspect-ratio: 600 / 230;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.promo-card div {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px 20px;
}

.promo-card p {
  color: var(--muted);
  font-weight: 700;
}

.promo-card .button {
  min-width: 220px;
}

.table-wrap {
  width: min(1120px, 100%);
  overflow-x: auto;
  border: 1px solid rgba(255, 220, 138, 0.18);
  border-radius: 18px;
  background: rgba(25, 9, 2, 0.65);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 16px;
  border-right: 1px solid rgba(255, 233, 170, 0.12);
  border-bottom: 1px solid rgba(255, 233, 170, 0.12);
  color: #fff8ea;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  color: #fff5da;
  background: rgba(255, 195, 74, 0.08);
  font-weight: 900;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 40px;
}

.faq-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.faq-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.faq-copy h2 {
  text-align: left;
}

.faq-list {
  width: min(620px, 100%);
  display: grid;
  gap: 12px;
  margin-top: 6px;
  text-align: left;
}

.faq-list details {
  border: 1px solid rgba(255, 219, 126, 0.28);
  border-radius: 14px;
  background: rgba(19, 8, 2, 0.84);
  padding: 18px 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 219, 126, 0.16);
}

.footer-provider-strip {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding: 32px 0 8px;
}

.footer-provider-strip > img {
  width: min(320px, 100%);
  filter:
    drop-shadow(0 0 18px rgba(255, 196, 83, 0.22))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.24));
}

.footer-inner h2 {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.footer-inner {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.84fr) minmax(360px, 1.1fr);
  gap: 40px;
  padding: 28px 0 36px;
}

.footer-brand,
.footer-partner,
.footer-social {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  height: 66px;
}

.footer-brand p {
  max-width: 420px;
  color: #fff7e6;
  font-weight: 700;
}

.partner-loop {
  width: min(360px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 208, 89, 0.26);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 11, 3, 0.95), rgba(7, 3, 1, 0.98));
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  will-change: transform;
}

.partner-loop:hover .partner-track {
  cursor: default;
}

.partner-track img {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 208, 89, 0.42);
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(145deg, rgba(98, 67, 24, 0.96), rgba(26, 14, 4, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 214, 0.18),
    0 10px 18px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 196, 74, 0.16);
}

.footer-social {
  gap: 10px;
}

.footer-social a {
  display: block;
}

.footer-social img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 208, 89, 0.18);
  box-shadow: var(--shadow);
}

.footer-bottom {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 32px;
  color: #fff7e5;
  font-size: 14px;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 84px;
  }

  .header-inner {
    grid-template-columns: 220px 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    width: auto;
    display: grid;
    gap: 0;
    background: rgba(10, 4, 1, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 18px;
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  body.is-nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .account-actions {
    width: 250px;
    margin-left: auto;
  }

  .split-layout,
  .split-layout.reverse,
  .blue-standard-grid,
  .content-columns,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .feature-image {
    order: 0;
  }

  .faq-copy,
  .faq-copy h2 {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
    --section-pad: 56px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 21px;
  }

  .header-inner,
  .section-inner,
  .footer-provider-strip,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, var(--max-width));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand-logo {
    height: 40px;
  }

  .account-actions {
    display: none;
  }

  .hero-banners,
  .portfolio-media-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    padding: 34px 16px 44px;
  }

  .button,
  .button.large {
    width: 100%;
    min-width: 0;
  }

  .split-layout,
  .split-layout.reverse,
  .content-columns,
  .blue-standard-grid {
    gap: 26px;
  }

  .blue-standard-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .blue-standard-panel ul {
    text-align: left;
  }

  .blue-standard-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-track {
    gap: 14px;
  }

  .provider-card {
    width: 124px;
    height: 124px;
  }

  .partner-loop {
    width: 100%;
  }

  .partner-track img {
    width: 100px;
    height: 100px;
  }

  table {
    min-width: 0;
  }

  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead th {
    border-bottom: 1px solid rgba(255, 224, 147, 0.2);
  }

  tr {
    border-bottom: 1px solid rgba(255, 224, 147, 0.2);
  }

  tbody tr:last-child {
    border-bottom: 0;
  }

  th,
  td {
    border-bottom: 0;
    padding: 11px 14px;
  }

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

@media (max-width: 460px) {
  .brand-logo {
    height: 34px;
  }

  .provider-card {
    width: 102px;
    height: 102px;
  }

  .blue-standard-badges {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Responsive Upgrade v2
   Desktop + Tablet + Mobile polish for RICHMAN96 landing page
   ========================================================= */
:root {
  --gutter: clamp(14px, 4vw, 44px);
  --section-pad: clamp(44px, 7vw, 76px);
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

h1 {
  font-size: clamp(30px, 4.1vw, 54px);
}

h2,
.provider-section h2 {
  font-size: clamp(26px, 3vw, 40px);
}

h3 {
  font-size: clamp(20px, 2vw, 25px);
}

p,
li,
td,
summary {
  overflow-wrap: anywhere;
}

.section-inner,
.header-inner,
.footer-provider-strip,
.footer-inner,
.footer-bottom {
  width: min(100% - var(--gutter), var(--max-width));
}

.feature-image img,
.faq-visual img,
.portfolio-media-grid img,
.promo-card img,
.footer-social img {
  height: auto;
}

.mobile-nav-action {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 890;
    width: auto;
    max-height: calc(100svh - var(--header-height));
    display: grid;
    justify-items: center;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at top, rgba(255, 196, 74, 0.12), transparent 42%),
      rgba(8, 3, 1, 0.985);
    border-top: 1px solid rgba(255, 226, 140, 0.16);
    border-bottom: 1px solid var(--line);
    padding: 12px 22px 20px;
    box-shadow: 0 28px 42px rgba(0, 0, 0, 0.46);
    transform: translateY(-135%);
    transition: transform 220ms ease;
  }

  body.is-nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    width: min(420px, 100%);
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 220, 130, 0.08);
    white-space: normal;
  }

  .account-actions {
    width: min(260px, 28vw);
  }

  .split-layout,
  .split-layout.reverse,
  .blue-standard-grid,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .feature-image {
    order: 0;
  }

  .blue-standard-grid,
  .faq-layout {
    gap: 32px;
  }

  .faq-copy,
  .faq-copy h2,
  .footer-brand,
  .footer-partner,
  .footer-social {
    justify-items: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  body,
  .split-section,
  .portfolio-section,
  .steps-section,
  .faq-section {
    background-attachment: scroll;
  }

  .hero-banners img {
    min-height: 230px;
    object-position: center;
  }

  .content-columns,
  .portfolio-media-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blue-standard-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-wrap {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
    --gutter: 24px;
  }

  body {
    font-size: 15px;
    line-height: 1.58;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--header-height);
  }

  .brand-logo {
    height: clamp(34px, 10vw, 42px);
  }

  .account-actions {
    display: none;
  }

  .mobile-nav-action {
    width: min(360px, 100%);
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid rgba(255, 207, 87, 0.52);
    border-radius: 999px;
    color: #fff7e6;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-nav-action.solid {
    color: #130802;
    background: var(--button);
  }

  .mobile-nav-action.ghost {
    background: var(--button-dark);
  }

  .primary-nav {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

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

  .hero-banners img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-intro {
    gap: 16px;
    padding: 32px 12px 44px;
  }

  .hero-logo,
  .section-logo {
    width: min(230px, 70vw);
  }

  .button,
  .button.large,
  .promo-card .button,
  .content-columns .button {
    width: 100%;
    min-width: 0;
  }

  .split-copy,
  .content-columns article,
  .faq-copy {
    justify-items: stretch;
  }

  .split-copy,
  .content-columns,
  .faq-copy,
  .portfolio-section .section-inner,
  .promo-section .section-inner,
  .table-section .section-inner {
    text-align: center;
  }

  .content-columns ul,
  .split-copy ol {
    text-align: left;
  }

  .feature-image img,
  .split-section .feature-image img,
  .portfolio-media-grid img,
  .faq-visual img {
    aspect-ratio: 4 / 3;
  }

  .steps-section .feature-image img {
    aspect-ratio: 1 / 1;
  }

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

  .promo-card div {
    min-height: auto;
    padding: 22px 16px 24px;
  }

  .provider-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .provider-row {
    padding: 16px 0;
    border-radius: 16px;
  }

  .provider-card {
    width: clamp(96px, 28vw, 124px);
    height: clamp(96px, 28vw, 124px);
  }

  .blue-standard-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .blue-standard-panel ul {
    text-align: left;
  }

  .blue-standard-badges {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table {
    min-width: 0;
    display: block;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  tbody {
    display: grid;
    gap: 14px;
  }

  tbody tr {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 220, 138, 0.22);
    border-radius: 16px;
    background: rgba(25, 9, 2, 0.72);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  }

  tbody td {
    display: grid;
    grid-template-columns: minmax(112px, 0.75fr) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    padding: 13px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 233, 170, 0.12);
    text-align: left;
  }

  tbody td:last-child {
    border-bottom: 0;
  }

  tbody td::before {
    color: var(--gold-soft);
    font-weight: 950;
    content: attr(data-label);
  }

  .faq-list details {
    padding: 16px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-logo {
    height: auto;
    width: min(260px, 78vw);
  }

  .partner-loop {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 20px;
  }

  .hero-intro {
    padding-right: 10px;
    padding-left: 10px;
  }

  .blue-standard-panel,
  .content-columns article,
  .faq-list details {
    border-radius: 14px;
  }

  tbody td {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}



/* Mobile nav-toggle alignment fix */
.site-header .nav-toggle {
  justify-self: end;
}


/* =========================================================
   Standalone page templates v1
   ========================================================= */
.content-page {
  background:
    radial-gradient(circle at top, rgba(255, 194, 74, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(6, 2, 0, 0.98), rgba(0, 0, 0, 1));
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: calc(var(--section-pad) + 14px) 0 var(--section-pad);
  background:
    linear-gradient(180deg, rgba(4, 1, 0, 0.7), rgba(0, 0, 0, 0.96)),
    url("assets/richman/7767a741-13be-4b29-b1c2-7418be65d5f9.webp") center / cover;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 210, 103, 0.28), transparent 22%),
    linear-gradient(90deg, rgba(0,0,0,0.86), rgba(71,33,5,0.38), rgba(0,0,0,0.86));
  content: "";
}

.page-hero-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.page-hero-inner h1,
.page-hero-inner p {
  max-width: 980px;
}

.page-hero-inner > p:not(.eyebrow) {
  color: #fff8e6;
  font-weight: 760;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(255, 215, 111, 0.42);
  border-radius: 999px;
  background: rgba(18, 8, 2, 0.78);
  padding: 7px 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(circle at top, rgba(255, 191, 74, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(9, 4, 1, 0.98), rgba(0, 0, 0, 0.98));
}

.page-section .section-inner {
  display: grid;
  gap: 28px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 900px;
  color: #fff7e4;
  font-weight: 700;
}

.info-grid {
  display: grid;
  gap: 18px;
}

.info-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  border: 1px solid rgba(255, 215, 120, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(55, 29, 6, 0.9), rgba(8, 3, 1, 0.95));
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.info-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe7a7, #d2891d);
  color: #120802;
  font-weight: 950;
}

.info-card p {
  color: #fff4dc;
  font-weight: 700;
}

.dark-panel-section {
  background:
    linear-gradient(180deg, rgba(4, 2, 0, 0.99), rgba(0, 0, 0, 1));
}

.content-narrow {
  width: min(100% - var(--gutter), 960px);
  justify-items: center;
  text-align: center;
}

.content-narrow p,
.content-narrow li {
  color: #fff4dc;
  font-weight: 700;
}

.page-split {
  padding-top: var(--section-pad);
}

.page-provider-loop {
  padding-top: 44px;
  padding-bottom: 54px;
}

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

.provider-grid-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 89, 0.42);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(98, 67, 24, 0.96), rgba(26, 14, 4, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 214, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 196, 74, 0.18);
}

.provider-grid-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.08);
}

.page-table-section {
  padding-top: var(--section-pad);
}

.four-card-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.four-card-columns article {
  border: 1px solid rgba(255, 215, 120, 0.24);
  border-radius: 18px;
  background: rgba(12, 5, 1, 0.82);
  padding: 24px 18px;
  box-shadow: var(--shadow);
}

.styled-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  text-align: left;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(10, 4, 1, 0.98), rgba(0, 0, 0, 1));
}

.legal-copy {
  justify-items: start;
  text-align: left;
}

.legal-copy h2 {
  margin-top: 18px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: #fff4dc;
  font-weight: 700;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-link-grid a {
  color: #fff7e6;
  font-weight: 850;
}

.footer-link-grid a:hover,
.footer-link-grid a:focus-visible {
  color: var(--gold-soft);
}

@media (max-width: 1200px) {
  .info-grid.four,
  .four-card-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-grid-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-links {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .info-grid.three {
    grid-template-columns: 1fr;
  }

  .provider-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 380px;
    padding-top: 48px;
  }

  .info-grid.four,
  .four-card-columns {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .provider-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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


/* SEO keyword content blocks */
.seo-keyword-section .info-card {
  min-height: 260px;
}

.internal-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.seo-disclaimer {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255, 215, 120, 0.28);
  border-radius: 16px;
  background: rgba(12, 5, 1, 0.72);
  padding: 18px 20px;
  color: #fff4dc;
  font-weight: 740;
  text-align: center;
}


/* SEO enhancement modules */
.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  color: rgba(255, 236, 194, 0.78);
  font-size: 0.92rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 209, 128, 0.58);
}

.breadcrumb a {
  color: #ffd56f;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.seo-expansion-section,
.responsible-gaming-note {
  padding: clamp(42px, 6vw, 86px) 0;
  background:
    radial-gradient(circle at top left, rgba(255, 211, 105, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(21, 8, 2, 0.96), rgba(50, 18, 8, 0.95));
}

.seo-expansion-section .content-narrow,
.responsible-gaming-note .content-narrow {
  border: 1px solid rgba(255, 203, 108, 0.22);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(7, 3, 2, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.seo-expansion-section a,
.responsible-gaming-note a {
  color: #ffd56f;
  font-weight: 800;
}

.responsible-gaming-note {
  padding-top: 0;
}

.responsible-gaming-note h2 {
  color: #fff5d7;
  margin-bottom: 12px;
}

.responsible-gaming-note p {
  color: rgba(255, 241, 212, 0.84);
}

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