:root {
  color-scheme: dark;
  --page: #050201;
  --section: #120902;
  --section-deep: #040100;
  --ink: #ffffff;
  --muted: #f8e8bf;
  --quiet: #d3bb84;
  --blue: #f4bc4e;
  --blue-soft: #ffe8a5;
  --blue-deep: #5d3505;
  --line: rgba(236, 190, 88, 0.58);
  --line-strong: rgba(255, 225, 154, 0.84);
  --button: linear-gradient(180deg, #ffcf58 0%, #9a5b08 55%, #241003 100%);
  --button-dark: linear-gradient(180deg, #3a2408 0%, #0a0502 100%);
  --header-height: 72px;
  --max-width: 1260px;
  --content-width: 1160px;
  --section-pad: 64px;
  --shadow: 0 0 28px rgba(243, 187, 76, 0.28);
}

*,
*::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(10, 5, 1, 0.84), rgba(0, 0, 0, 0.95)),
    radial-gradient(circle at top, rgba(255, 196, 77, 0.16), transparent 32%),
    url("assets/cloud9/about-casino.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(--blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 193, 71, 0.24);
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 23px;
}

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

strong {
  color: var(--ink);
}

.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: 4px;
  background: var(--blue);
  color: #130801;
  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: linear-gradient(180deg, rgba(18, 10, 3, 0.96), rgba(5, 2, 0, 0.96));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

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

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

.brand-logo-image {
  width: min(100%, 122px);
  max-width: 100%;
  max-height: calc(var(--header-height) - 10px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 198, 87, 0.34))
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.42));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 194, 71, 0.86),
    0 0 28px rgba(255, 194, 71, 0.5);
}

.brand-mark::first-letter {
  color: var(--blue);
}

.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: #ffffff;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(255, 196, 77, 0.52);
}

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

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 214, 122, 0.7);
  border-radius: 8px;
  padding: 10px 22px;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.solid {
  background: var(--button);
  color: #150801;
  box-shadow: inset 0 1px 0 rgba(255, 251, 223, 0.4), 0 0 18px rgba(233, 172, 52, 0.32);
}

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

.button.large {
  min-width: 250px;
  min-height: 58px;
  font-size: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 20px rgba(255, 194, 71, 0.38);
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 26px rgba(255, 194, 71, 0.42);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #130904;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 14px rgba(255, 194, 71, 0.12);
}

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

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

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

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

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) 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%, 0) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(circle at top center, rgba(255, 198, 77, 0.12), transparent 36%),
    #090300;
}

.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;
  background: #020614;
}

.hero-intro {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 42px 20px 56px;
  background:
    linear-gradient(180deg, rgba(22, 10, 2, 0.94), rgba(0, 0, 0, 0.98)),
    #0b0401;
  text-align: center;
}

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

.hero-intro p {
  max-width: 1180px;
  color: #ffffff;
  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(18, 8, 2, 0.95), rgba(0, 0, 0, 0.96)),
    url("assets/cloud9/about-casino.webp") center / cover fixed;
}

.center-section,
.promo-section,
.table-section {
  background: #030712;
}

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

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

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

.feature-image {
  margin: 0;
}

.feature-image img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.steps-section .feature-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #02040a;
}

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

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

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

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

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

.wide-art {
  width: min(760px, 100%);
  margin: 18px auto 0;
}

.wide-art img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(255, 194, 71, 0.28));
}

.features-section {
  background: #02050d;
}

.features-section .section-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-panel {
  min-height: 245px;
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(7, 35, 88, 0.82), rgba(1, 4, 11, 0.94));
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-panel p {
  font-weight: 700;
}

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

.content-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  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 figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 214, 122, 0.58);
  border-radius: 10px;
  background: #020614;
  box-shadow: var(--shadow);
}

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

.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: 2px solid var(--line-strong);
  border-radius: 12px;
  background: #030712;
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 600 / 230;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.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, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(8, 0, 0, 0.62);
  box-shadow: none;
}

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

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

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

thead th {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
  font-weight: 900;
}

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

td {
  color: #ffffff;
}

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

.faq-visual {
  margin: 0;
}

.faq-visual img {
  width: 100%;
  border: 1px solid rgba(255, 214, 122, 0.58);
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.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: 2px solid var(--line-strong);
  border-radius: 7px;
  background: #030712;
  padding: 18px 20px;
}

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

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

.provider-section {
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 196, 77, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(17, 8, 2, 0.98), rgba(0, 0, 0, 0.98));
  padding: 42px 0 48px;
}

.provider-section h2 {
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 22px;
  text-align: center;
  text-shadow: 0 0 14px rgba(255, 193, 71, 0.4);
}

.provider-carousel {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 198, 77, 0.22);
  border-bottom: 1px solid rgba(255, 198, 77, 0.22);
  padding: 18px 0;
}

.provider-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: 18px;
  animation: providerLoop 40s linear infinite;
  will-change: transform;
}

.provider-track img {
  width: 150px;
  height: 203px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #120903;
  object-fit: cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 238, 186, 0.08),
    0 0 0 1px rgba(255, 196, 77, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.38);
}

@keyframes providerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.blue-standard-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 52%, rgba(255, 196, 77, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 5, 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.76), rgba(27, 13, 4, 0.46), rgba(0, 0, 0, 0.76)),
    rgba(9, 3, 0, 0.42);
  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;
}

.blue-standard-logo {
  color: #ffdf95;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 196, 77, 0.62),
    0 0 28px rgba(255, 196, 77, 0.3);
}

.blue-standard-heading h2 {
  color: #ffd77a;
  font-size: 38px;
  text-shadow: 0 0 18px rgba(255, 194, 71, 0.22), 0 2px 0 rgba(0, 0, 0, 0.6);
}

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

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

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

.blue-standard-visual {
  margin: 0;
}

.blue-standard-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(255, 194, 71, 0.34))
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.58));
}

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

.blue-standard-panel {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(240, 184, 72, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(42, 21, 5, 0.96), rgba(6, 2, 0, 0.94));
  padding: 15px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 195, 0.08),
    0 0 22px rgba(223, 161, 51, 0.16);
}

.blue-standard-panel::before,
.blue-standard-panel::after {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 122, 0.78), transparent);
  content: "";
}

.blue-standard-panel::before {
  top: -1px;
}

.blue-standard-panel::after {
  bottom: -1px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 215, 122, 0.72);
  border-radius: 999px;
  color: #ffffff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 0 16px rgba(244, 188, 78, 0.34), inset 0 0 14px rgba(244, 188, 78, 0.14);
}

.blue-standard-panel h3 {
  margin-bottom: 6px;
  color: #ffd77a;
  font-size: 21px;
}

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

.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;
  margin-top: 0;
}

.blue-standard-badges div {
  min-height: 68px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 196, 77, 0.5);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(41, 21, 5, 0.94), rgba(7, 2, 0, 0.96));
  color: #ffffff;
  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 0 18px rgba(255, 194, 71, 0.12);
}

.blue-standard-badges span {
  color: #ffe7aa;
  font-size: 20px;
}

.site-footer {
  border-top: 3px solid rgba(255, 214, 122, 0.7);
  background: linear-gradient(180deg, rgba(15, 7, 2, 0.98), rgba(0, 0, 0, 0.98));
}

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

.footer-provider-strip > img {
  width: min(100%, 1180px);
  max-height: 210px;
  border: 1px solid rgba(255, 196, 77, 0.22);
  border-radius: 18px;
  object-fit: cover;
  filter:
    drop-shadow(0 0 10px rgba(255, 194, 71, 0.18))
    saturate(1.12)
    brightness(1.06);
}

.footer-inner h2 {
  display: grid;
  color: var(--blue-soft);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 20px;
  text-shadow: 0 0 12px rgba(255, 194, 71, 0.22);
}

.footer-inner {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.68fr) minmax(420px, 1.22fr);
  gap: 46px;
  padding: 28px 0 36px;
}

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

.footer-social {
  gap: 8px;
}

.footer-logo-image {
  width: min(100%, 210px);
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(255, 196, 77, 0.22))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

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

.partner-loop {
  width: min(250px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 196, 77, 0.5);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34, 18, 4, 0.96), rgba(7, 2, 0, 0.98));
  padding: 10px 0;
  box-shadow: 0 0 18px rgba(255, 194, 71, 0.12);
  animation: partnerPulse 1.8s ease-in-out infinite;
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  padding-inline: 16px;
  animation: partnerLoop 18s linear infinite;
}

.partner-track img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 194, 71, 0.18));
}

@keyframes partnerLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes partnerPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 194, 71, 0.12);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 28px rgba(255, 194, 71, 0.3);
    transform: translateY(-1px);
  }
}

.footer-social a {
  display: block;
}

.footer-social img {
  width: 100%;
  max-height: 126px;
  border: 0;
  border-radius: 16px;
  aspect-ratio: 1374 / 322;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(255, 194, 71, 0.16));
}

.footer-bottom {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 32px;
  color: #ffffff;
  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;
  }

  .provider-track {
    animation-duration: 40s !important;
    animation-iteration-count: infinite !important;
  }

  .partner-track {
    animation-duration: 18s !important;
    animation-iteration-count: infinite !important;
  }
}

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

  .header-inner {
    grid-template-columns: 160px 1fr auto;
    min-height: var(--header-height);
  }

  .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: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    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;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 27px;
  }

  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-image {
    width: min(100%, 96px);
  }

  .account-actions {
    display: none;
  }

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

  .hero-banners img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1774 / 887;
  }

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

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

  section:not(.hero) {
    padding: 54px 0;
  }

  .split-layout,
  .split-layout.reverse {
    gap: 26px;
  }

  .blue-standard-heading h2 {
    font-size: 32px;
  }

  .blue-standard-heading p {
    font-size: 16px;
  }

  .blue-standard-grid {
    gap: 22px;
  }

  .blue-standard-visual img {
    max-height: 520px;
  }

  .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));
  }

  .content-columns {
    gap: 34px;
  }

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

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

  .promo-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .promo-card div {
    min-height: 230px;
  }

  .provider-section {
    padding: 42px 0 48px;
  }

  .provider-track {
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 34s;
  }

  .provider-track img {
    width: 118px;
    height: 160px;
  }

  .footer-provider-strip > img {
    max-height: 140px;
  }

  .partner-loop {
    width: min(260px, 100%);
    justify-self: center;
  }

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

  .footer-social img {
    max-width: 520px;
    max-height: 120px;
    margin: 0 auto;
  }

  table {
    min-width: 0;
  }

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

  thead th {
    border-bottom: 1px solid rgba(255, 214, 122, 0.28);
  }

  tr {
    border-bottom: 1px solid rgba(255, 214, 122, 0.28);
  }

  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-image {
    width: min(100%, 84px);
  }

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

  .blue-standard-logo {
    font-size: 40px;
  }

  .blue-standard-heading h2 {
    font-size: 28px;
  }

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

/* =========================================================
   Responsive refinement layer: desktop + tablet + mobile
   ========================================================= */
:root {
  --page-gutter: clamp(12px, 4vw, 44px);
  --fluid-section-pad: clamp(42px, 6vw, 76px);
}

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

body {
  overflow-x: clip;
}

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

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

h1 {
  font-size: clamp(30px, 4vw, 52px);
}

h2 {
  font-size: clamp(26px, 3vw, 42px);
}

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

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

.button {
  min-width: max-content;
  touch-action: manipulation;
}

.header-inner {
  grid-template-columns: clamp(132px, 14vw, 180px) minmax(0, 1fr) minmax(220px, 290px);
}

.primary-nav {
  min-width: 0;
  gap: clamp(8px, 1vw, 14px);
  font-size: clamp(12px, 0.95vw, 14px);
}

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

.hero-intro {
  padding: clamp(32px, 5vw, 64px) var(--page-gutter) clamp(42px, 6vw, 76px);
}

.hero-intro p,
.center-section p,
.portfolio-section > .section-inner > p,
.promo-section > .section-inner > p,
.table-section > .section-inner > p,
.blue-standard-heading p {
  font-size: clamp(15px, 1.35vw, 18px);
}

.split-layout,
.split-layout.reverse,
.blue-standard-grid,
.faq-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

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

.promo-grid {
  align-items: stretch;
}

.promo-card {
  height: 100%;
}

.footer-social img {
  height: auto;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

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

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

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: var(--page-gutter);
    left: var(--page-gutter);
    width: auto;
    max-height: calc(100dvh - var(--header-height) - 20px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    justify-items: stretch;
    border: 1px solid rgba(255, 214, 122, 0.42);
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, rgba(24, 12, 3, 0.99), rgba(4, 1, 0, 0.99));
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.56), 0 0 24px rgba(255, 194, 71, 0.12);
    padding: 8px 16px 18px;
    transform: translateY(calc(-100% - var(--header-height) - 40px));
    transition: transform 220ms ease;
    white-space: normal;
  }

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

  .primary-nav a {
    width: 100%;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 214, 122, 0.12);
    text-align: center;
  }

  .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;
  }

  .blue-standard-visual,
  .faq-visual {
    justify-self: center;
    width: min(640px, 100%);
  }

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

  .footer-inner {
    gap: 30px;
  }
}

@media (max-width: 960px) {
  .hero-banners {
    grid-template-columns: 1fr;
  }

  .hero-banners img {
    aspect-ratio: 1774 / 887;
  }

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

  .promo-card:nth-child(3) {
    grid-column: 1 / -1;
    width: min(560px, 100%);
    justify-self: center;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
    --page-gutter: clamp(10px, 4vw, 18px);
  }

  body {
    background-attachment: scroll;
    font-size: 15px;
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    column-gap: 12px;
  }

  .brand {
    min-width: 0;
    min-height: calc(var(--header-height) - 8px);
    align-items: center;
  }

  .brand-logo-image {
    width: auto;
    max-width: min(100%, 102px);
    max-height: calc(var(--header-height) - 12px);
  }

  .account-actions {
    display: none;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .mobile-nav-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-banners img {
    min-height: 0;
    object-fit: contain;
    background: #030100;
  }

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

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

  .feature-image img,
  .split-section .feature-image img,
  .steps-section .feature-image img,
  .faq-visual img {
    border-radius: 14px;
  }

  .blue-standard-logo {
    font-size: clamp(34px, 11vw, 42px);
  }

  .blue-standard-heading h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

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

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

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

  .promo-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

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

  .provider-track {
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 34s;
  }

  .provider-track img {
    width: clamp(96px, 28vw, 124px);
    height: auto;
    aspect-ratio: 150 / 203;
  }

  .footer-provider-strip > img {
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .footer-social img {
    width: min(100%, 520px);
    max-height: none;
  }

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

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

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

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

  tr {
    overflow: hidden;
    border: 1px solid rgba(255, 214, 122, 0.36);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(34, 18, 4, 0.92), rgba(5, 1, 0, 0.96));
    box-shadow: 0 0 18px rgba(255, 194, 71, 0.1);
  }

  th,
  td {
    border: 0;
  }

  td {
    display: grid;
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 214, 122, 0.14);
    padding: 12px 14px;
    text-align: right;
  }

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

  td::before {
    content: attr(data-label);
    color: #ffe7aa;
    font-weight: 950;
    text-align: left;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: clamp(27px, 8.2vw, 32px);
  }

  h2 {
    font-size: clamp(24px, 7.4vw, 29px);
  }

  .hero-intro {
    gap: 18px;
  }

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

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  td {
    grid-template-columns: 1fr;
    text-align: left;
  }
}


/* CLOUD9 SEO page additions */
.content-section {
  padding: var(--section-pad) 0;
}

.seo-page .page-hero-section {
  padding-top: calc(var(--section-pad) + 18px);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 203, 95, 0.20), transparent 32%),
    linear-gradient(180deg, rgba(10, 4, 1, 0.90), rgba(0, 0, 0, 0.70));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: center;
}

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

.seo-eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(255, 204, 92, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero-copy h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.page-hero-copy p {
  max-width: 760px;
  font-size: 18px;
}

.page-hero-visual {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 215, 111, 0.15), rgba(0, 0, 0, 0.42));
  box-shadow: var(--shadow), 0 24px 70px rgba(0, 0, 0, 0.55);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.provider-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
}

.provider-stack img {
  min-height: auto;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.42);
}

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

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

.seo-card,
.policy-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 208, 101, 0.10), rgba(0, 0, 0, 0.28)),
    rgba(12, 5, 1, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.seo-card.wide {
  grid-column: 1 / -1;
}

.seo-card h2,
.seo-card h3,
.policy-card h2 {
  margin-bottom: 12px;
}

.dark-panel-section {
  background: linear-gradient(180deg, rgba(12, 5, 1, 0.50), rgba(0, 0, 0, 0.72));
}

.centered-copy {
  width: min(100% - 40px, 880px);
  margin: 12px auto 28px;
  text-align: center;
}

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

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

.footer-quick-links,
.page-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-quick-links a,
.page-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(255, 207, 88, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.footer-quick-links a:hover,
.footer-quick-links a:focus-visible,
.page-link-grid a:hover,
.page-link-grid a:focus-visible {
  border-color: var(--line-strong);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 203, 92, 0.20);
}

.footer-seo-note {
  margin-top: 16px;
  font-size: 14px;
}

.home-seo-links {
  background: rgba(0, 0, 0, 0.42);
}

.standalone-faq {
  padding-top: var(--section-pad);
}

@media (max-width: 980px) {
  .page-hero-grid,
  .seo-grid,
  .policy-layout,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-visual img {
    min-height: 240px;
  }
}

@media (max-width: 620px) {
  .content-section {
    padding: 42px 0;
  }

  .seo-eyebrow {
    width: auto;
    border-radius: 16px;
  }

  .provider-stack {
    grid-template-columns: 1fr;
  }

  .seo-card,
  .policy-card {
    padding: 20px;
    border-radius: 18px;
  }

  .page-hero-copy p {
    font-size: 16px;
  }
}


/* SEO optimization additions */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.internal-link-panel { background: linear-gradient(180deg, rgba(255, 195, 77, .08), rgba(0, 0, 0, .42)); }
.seo-link-grid,
.seo-link-card-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.seo-link-grid a,
.seo-link-card-grid a {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 5, 1, .72);
  box-shadow: 0 0 20px rgba(241, 183, 66, .12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.seo-link-grid a:hover,
.seo-link-card-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 0 28px rgba(241, 183, 66, .24);
}
.seo-link-card-grid strong { color: var(--blue-soft); font-size: 18px; }
.seo-link-card-grid span { color: var(--muted); font-size: 14px; }
.enhanced-footer-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .9fr) minmax(260px, .8fr);
}
.footer-seo-links ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.footer-seo-links a {
  display: inline-flex;
  color: var(--muted);
  border-bottom: 1px solid rgba(236,190,88,.22);
  padding-bottom: 2px;
}
.footer-seo-links a:hover { color: var(--blue-soft); border-color: var(--line-strong); }
.footer-note { margin-top: 14px; font-size: 13px; color: var(--quiet); }
.blog-grid .seo-card a { color: var(--blue-soft); }
@media (max-width: 980px) {
  .seo-link-grid,
  .seo-link-card-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .enhanced-footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .seo-link-grid,
  .seo-link-card-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .cta-row .button { width: 100%; justify-content: center; }
}

/* Compact three-column footer refinement */
.compact-footer {
  border-top: 2px solid rgba(255, 214, 122, 0.55);
  background: linear-gradient(180deg, rgba(15, 7, 2, 0.98), rgba(0, 0, 0, 0.99));
}

.compact-footer .footer-inner,
.compact-footer .enhanced-footer-inner,
.compact-footer .footer-three-column {
  width: min(100% - 44px, var(--max-width));
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1fr) minmax(260px, 1.08fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  padding: 22px 0 16px;
}

.compact-footer .footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.compact-footer .footer-logo-image {
  width: min(100%, 150px);
  height: auto;
}

.compact-footer .footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.55;
}

.compact-footer .footer-note {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 12.5px;
  font-weight: 600;
}

.compact-footer .footer-inner h2 {
  margin: 0 0 4px;
  color: var(--blue-soft);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 194, 71, 0.18);
}

.compact-footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
}

.compact-footer .footer-link-list a,
.compact-footer .footer-social-compact a {
  display: inline-flex;
  width: fit-content;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.25;
  border-bottom: 1px solid rgba(236, 190, 88, 0.22);
  padding-bottom: 2px;
}

.compact-footer .footer-link-list a:hover,
.compact-footer .footer-social-compact a:hover {
  color: var(--blue-soft);
  border-color: var(--line-strong);
}

.compact-footer .footer-social,
.compact-footer .footer-social-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 8px;
}

.compact-footer .footer-bottom,
.compact-footer .compact-footer-bottom {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  border-top: 1px solid rgba(255, 214, 122, 0.14);
  padding: 12px 0 16px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .compact-footer .footer-inner,
  .compact-footer .enhanced-footer-inner,
  .compact-footer .footer-three-column {
    grid-template-columns: 1fr 1fr;
  }

  .compact-footer .footer-brand {
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .compact-footer .footer-inner,
  .compact-footer .enhanced-footer-inner,
  .compact-footer .footer-three-column {
    width: min(100% - 24px, var(--max-width));
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0 14px;
  }

  .compact-footer .footer-brand {
    grid-column: auto;
  }

  .compact-footer .footer-link-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .compact-footer .footer-bottom,
  .compact-footer .compact-footer-bottom {
    width: min(100% - 24px, var(--max-width));
    padding-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .compact-footer .footer-link-list {
    grid-template-columns: 1fr;
  }
}


/* Follow Us section restored above the compact footer */
.follow-us-section {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 82px) 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 214, 122, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(9, 4, 1, 0.96), rgba(0, 0, 0, 0.98));
  border-top: 1px solid rgba(255, 214, 122, 0.16);
  border-bottom: 1px solid rgba(255, 214, 122, 0.18);
}

.follow-us-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.follow-us-section h2 {
  margin: 8px 0 22px;
  color: var(--gold-soft);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 208, 105, 0.28);
}

.follow-us-banner-stack {
  width: min(100%, 900px);
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
}

.follow-us-banner-link {
  display: block;
  border-radius: clamp(14px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 214, 122, 0.22);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 30px rgba(255, 190, 60, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.follow-us-banner-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 214, 122, 0.55);
  box-shadow: 0 0 38px rgba(255, 190, 60, 0.24);
}

.follow-us-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .follow-us-section {
    padding: 34px 0 44px;
  }

  .follow-us-banner-stack {
    width: min(100%, 430px);
    gap: 12px;
  }
}


/* Footer follow-us banner column */
.compact-footer .footer-follow {
  gap: 12px;
}

.compact-footer .footer-follow-stack {
  display: grid;
  gap: 12px;
  width: min(100%, 320px);
}

.compact-footer .footer-follow-banner {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 122, 0.28);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 24px rgba(255, 190, 60, 0.10);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compact-footer .footer-follow-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 214, 122, 0.55);
  box-shadow: 0 0 30px rgba(255, 190, 60, 0.18);
}

.compact-footer .footer-follow-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .compact-footer .footer-follow {
    justify-items: center;
  }

  .compact-footer .footer-follow-stack {
    width: min(100%, 420px);
  }
}

@media (max-width: 640px) {
  .compact-footer .footer-follow {
    justify-items: stretch;
  }

  .compact-footer .footer-follow-stack {
    width: 100%;
    max-width: 420px;
  }
}
