:root {
  /* Logo palette: black + vivid yellow (#FEDA00 / #F8F000) */
  --navy: #080808;
  --deep: #a88900;
  --blue: #feda00;
  --accent: #f8f000;
  --lavender: #ffe96a;
  --ink: #121212;
  --muted: #5c5c5c;
  --line: #ece9d8;
  --bg: #fbfaf4;
  --card: #ffffff;
  --ok: #0a7a45;
  --brand: #feda00;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at top right, rgba(254, 218, 0, 0.14), transparent 42%),
    radial-gradient(ellipse at bottom left, rgba(248, 240, 0, 0.10), transparent 40%),
    var(--bg);
  line-height: 1.65;
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--deep); text-decoration: none; }
a:hover { text-decoration: underline; }
button, a { touch-action: manipulation; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px; z-index: 1000;
  background: #fff; padding: 8px 12px; border-radius: 8px;
}

.topbar {
  background: linear-gradient(90deg, #000000, #121212 55%, #1a1600);
  color: #feda00;
  font-size: 13px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 12px;
}
.topbar a { color: #fff; }

.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.logo img {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 0;
}
.nav {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav a {
  color: var(--ink); font-weight: 700; font-size: 13px;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: #fff6b8; color: #080808; text-decoration: none;
}
.header-cta { display: flex; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 16px; border-radius: 999px;
  font-weight: 800; font-size: 14px; border: 0; cursor: pointer;
  text-decoration: none !important;
}
.btn-outline {
  background: #fff; color: #080808;
  border: 1.5px solid #080808;
}
.btn-solid {
  background: linear-gradient(180deg, #f8f000, #feda00 55%, #f8d000);
  color: #080808 !important;
  box-shadow: 0 8px 18px rgba(254, 218, 0, 0.32);
}
.hero .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(254, 218, 0, 0.65);
}
.hero .btn-outline:hover {
  background: rgba(254, 218, 0, 0.12);
  color: #feda00;
  text-decoration: none;
}
.btn-lg { min-height: 48px; padding: 0 22px; font-size: 15px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--deep); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(254, 218, 0, 0.28), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(248, 208, 0, 0.14), transparent 36%),
    linear-gradient(160deg, #000000 0%, #0a0a0a 42%, #161200 78%, #2a2200 100%);
  color: #fff;
  padding: 40px 0 56px;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 75%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
  gap: 36px;
  align-items: center;
}
.hero-grid > .hero-card {
  order: 2;
  width: 100%;
}
.hero-grid > div:not(.hero-card) {
  order: 1;
  max-width: none;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--lavender); margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 40px); line-height: 1.2; margin-bottom: 14px; max-width: 18ch;
}
.hero .lead { color: #e8e8e8; font-size: 17px; max-width: 54ch; margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; color: #feda00; font-size: 13px; }
.hero-disclosure {
  margin-top: 12px;
  max-width: 62ch;
  color: #d7d7d7;
  font-size: 12px;
  line-height: 1.55;
}
.hero-disclosure a { color: #feda00; text-decoration: underline; }
.chip {
  background: rgba(254, 218, 0, 0.10); border: 1px solid rgba(254, 218, 0, 0.38);
  border-radius: 999px; padding: 6px 12px;
}
.hero-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-card img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: transparent;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.section { padding: 56px 0; }
@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}
.section.alt {
  background: linear-gradient(180deg, #fff, #fffceb);
}
.section h2 {
  font-size: clamp(24px, 3vw, 32px); line-height: 1.25; margin-bottom: 10px;
}
.section .intro { color: var(--muted); max-width: 70ch; margin-bottom: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-grid { gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.card-media {
  margin: -22px -22px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #000000, #1a1600);
}
.card-media img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  background: linear-gradient(160deg, #000000, #1a1600);
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p, .card li { color: var(--muted); font-size: 14.5px; }
.card ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}
.card li {
  position: relative;
  padding: 6px 0 6px 20px;
  line-height: 1.55;
}
.card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.85em;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.providers {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.providers span {
  background: #fff6b8; color: #080808; border-radius: 999px;
  padding: 6px 12px; font-size: 13px; font-weight: 700;
}

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 10px; padding: 4px 16px;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--deep); }
.faq details p { color: var(--muted); padding-bottom: 14px; font-size: 14.5px; }

.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start;
  margin-bottom: 16px;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #f8f000, #feda00); color: #080808; font-weight: 800;
}

.note {
  border-left: 4px solid var(--ok); background: #eefaf3; color: #134d2f;
  padding: 14px 16px; border-radius: 0 10px 10px 0; font-size: 14px; margin-top: 20px;
}

.footer {
  background: linear-gradient(180deg, #121212 0%, #000000 100%);
  color: #cfcfcf;
  padding: 56px 0 120px;
  border-top: 1px solid rgba(254, 218, 0, 0.28);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 8px;
}
.footer-brand {
  max-width: 320px;
}
.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand-head img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.footer-brand-head strong {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
}
.footer h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(254, 218, 0, 0.22);
}
.footer ul { margin: 0; padding: 0; }
.footer li { margin: 0 0 10px; }
.footer li:last-child { margin-bottom: 0; }
.footer a {
  color: #e8e8e8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer a:hover {
  color: #feda00;
  text-decoration: none;
  padding-left: 4px;
}
.footer-cta a {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-bottom {
  border-top: 1px solid rgba(254, 218, 0, 0.16);
  margin-top: 36px;
  padding-top: 18px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9a9a9a;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: #bdbdbd;
  font-size: 13px;
}
.footer-legal a:hover {
  color: #feda00;
  padding-left: 0;
}
.copy { margin: 0; }

.floatbar {
  position: fixed; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: min(480px, calc(100% - 16px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  background: rgba(0, 0, 0, 0.94); border: 1px solid #feda00;
  border-radius: 18px; padding: 10px; z-index: 80;
  box-shadow: 0 0 28px rgba(254, 218, 0, 0.22);
}
.floatbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  color: #080808 !important; text-align: center; text-decoration: none !important;
  background: linear-gradient(180deg, #f8f000, #feda00);
  border: 1px solid #f8d000; border-radius: 999px;
  padding: 0 8px; font-size: 13px; font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.breadcrumb {
  font-size: 13px; color: var(--muted); padding: 18px 0 0;
}
.breadcrumb a { color: var(--muted); }
.page-hero {
  padding: 28px 0 8px;
}
.page-hero h1 { font-size: clamp(26px, 3.5vw, 36px); margin: 8px 0 12px; }
.page-hero .eyebrow { color: var(--deep); }

.blog-page-hero {
  padding: 18px 0 6px;
}
.blog-page-hero h1 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: none;
  margin-bottom: 8px;
}
.blog-page-hero .intro {
  margin-bottom: 0;
  font-size: 15.5px;
}
.blog-listing {
  padding-top: 18px;
  padding-bottom: 56px;
}
.blog-featured {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
  margin-bottom: 8px;
}
.blog-featured .card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  height: 100%;
  min-height: 240px;
}
.blog-featured .card-media img,
.blog-card .card-media img {
  object-fit: cover;
  object-position: center top;
}
.blog-featured .blog-card-body {
  padding: 26px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured h3 {
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-featured .blog-excerpt {
  font-size: 15px;
  -webkit-line-clamp: 4;
}
.blog-section-title {
  font-size: 18px;
  margin: 28px 0 14px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.blog-card .card-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}
.blog-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 10px;
}
.pillar-hub {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-left: 4px solid var(--brand);
  background: rgba(254, 218, 0, 0.12);
  border-radius: 0 8px 8px 0;
}
.pillar-hub p { margin: 0; line-height: 1.55; }
.pillar-hub a { font-weight: 600; }
.article-faq {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-faq h2 {
  font-size: 22px;
  margin-bottom: 16px;
}
.article-faq details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.02);
}
.article-faq summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
}
.article-faq p {
  margin-top: 10px;
  color: var(--muted);
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-card h3 {
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.blog-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.blog-more {
  margin-top: auto;
  font-weight: 800;
  font-size: 14px;
  align-self: flex-start;
}
.article-layout {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56px;
}
.article-layout .page-hero h1 {
  font-size: clamp(24px, 3.2vw, 34px);
  max-width: none;
}
.article-cover {
  margin: 8px 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #000000, #1a1600);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.article-body {
  font-size: 16px;
  line-height: 1.8;
}
.article-body h2 { font-size: 22px; margin: 28px 0 10px; }
.article-body h3 { font-size: 18px; margin: 22px 0 8px; }
.article-body p { color: var(--muted); margin: 0 0 14px; }
.article-body ul {
  list-style: disc;
  padding-left: 1.3em;
  margin: 0 0 16px;
}
.article-body li { color: var(--muted); margin: 6px 0; }
.related-posts {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.related-posts h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

/* —— Tablet / Mobile —— */
@media (max-width: 900px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    background: var(--bg);
  }

  .header {
    background: #fff;
    backdrop-filter: none;
  }
  .hero::before { display: none; }

  .container { width: min(var(--max), calc(100% - 24px)); }

  .topbar {
    font-size: 11px;
  }
  .topbar .container {
    min-height: 34px;
    gap: 8px;
  }
  .topbar .container > span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-row {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 0;
    position: relative;
  }
  .logo { order: 1; }
  .logo img {
    width: 44px;
    height: 44px;
    border-radius: 0;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    order: 2;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff6b8;
  }
  .nav,
  .header-cta {
    display: none;
    width: 100%;
  }
  .header.open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    order: 3;
    position: static;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    margin-top: 4px;
  }
  .header.open .nav a {
    padding: 14px 12px;
    font-size: 15px;
    border-radius: 10px;
  }
  .header.open .header-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    order: 4;
    position: static;
    width: 100%;
    padding: 0 0 6px;
  }
  .header.open .header-cta .btn {
    width: 100%;
    min-height: 44px;
  }

  .hero {
    padding: 24px 0 36px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-grid > .hero-card {
    order: -1;
  }
  .hero-grid > div:not(.hero-card) {
    order: 1;
  }
  .hero-card img {
    max-width: 100%;
    border-radius: 16px;
  }
  .hero h1 {
    max-width: none;
    font-size: clamp(22px, 6.5vw, 28px);
  }
  .hero .lead {
    font-size: 15px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .btn,
  .hero-actions .btn-lg {
    width: 100%;
    min-height: 48px;
  }

  .section { padding: 40px 0; }
  .section .intro { margin-bottom: 20px; font-size: 14.5px; }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured .card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .blog-featured .blog-card-body {
    padding: 16px 18px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .feature-grid .card {
    padding: 14px;
  }
  .feature-grid .card h3 {
    font-size: 15px;
  }
  .feature-grid .card p {
    font-size: 13px;
    line-height: 1.55;
  }
  .feature-grid .card-media {
    margin: -14px -14px 12px;
    aspect-ratio: 1;
  }

  .footer {
    padding: 40px 0 calc(120px + env(safe-area-inset-bottom, 0px));
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .card { padding: 18px; }
  .card-media {
    margin: -18px -18px 14px;
    aspect-ratio: 16 / 10;
  }
  .card-media img {
    object-fit: cover;
  }

  .faq summary {
    padding: 16px 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .providers span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .page-hero { padding: 20px 0 4px; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 28px); }

  .floatbar {
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 12px);
    max-width: 420px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 16px;
    transform: translate3d(-50%, 0, 0);
    contain: layout paint;
  }
  .floatbar a {
    min-height: 42px;
    padding: 0 4px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured h3 { font-size: 20px; }
  .feature-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (hover: none) {
  .footer a:hover { padding-left: 0; }
}

@media (max-width: 380px) {
  .floatbar a { font-size: 11px; min-height: 40px; padding: 0 2px; }
  .chip { font-size: 12px; }
}


/* Brand polish aligned with logo (black + #FEDA00). */
main p + p {margin-top:14px;}
main .card p + p {margin-top:12px;}
main section > p {max-width:78ch;}
main .card > h3 {margin-bottom:10px;}
.logo {background:transparent;padding:0;border-radius:0;flex-shrink:0;}
.logo img {width:180px;height:54px;object-fit:contain;border-radius:0;}
.footer-brand-head img {width:144px;height:43.2px;object-fit:contain;border-radius:0;background:transparent;}
.footer-brand > img {width:144px;height:43.2px;object-fit:contain;margin-bottom:16px;background:transparent;border-radius:0;padding:0;}
.btn-solid,.floatbar a {color:#080808!important;background:linear-gradient(180deg,#f8f000,#feda00);border-color:#f8d000;}
.btn-solid:hover,.floatbar a:hover {background:#ffe96a;}
.hero .eyebrow {color:var(--lavender);}
.hero-grid > .hero-card {order:2;}
.hero-card img {aspect-ratio:4/3;object-fit:cover;width:100%;max-width:560px;}
@media (max-width:900px){
  .logo img{width:147px;height:44.1px;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-grid > .hero-card{order:-1;}
  .hero-grid > div:not(.hero-card){order:1;}
  .hero-card img{max-width:100%;width:100%;}
  .footer-brand-head img{width:144px;height:43.2px;}
}
.article-body a {color:var(--deep);}
:focus-visible {outline:3px solid #feda00;outline-offset:4px;}
.table-wrap{overflow-x:auto;}
table {border-collapse:collapse;width:100%;margin:16px 0;font-size:14px;}
th,td {padding:12px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top;}
th {background:#fff6b8;}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto;}*{transition:none!important;}}
