/* Gamaitic LLC — single-page company site
   Visual language inspired by Theme-Junction's "Bexon" template.
   Self-hosted system fonts only (no Google Fonts, no JS, no trackers).

   To use Mona Sans for an exact Bexon match, drop a self-hosted
   @font-face block at the top and add 'Mona Sans' to --tj-ff. */

:root {
  /* Type */
  --tj-ff: 'Mona Sans', system-ui, -apple-system, BlinkMacSystemFont,
           "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue",
           Arial, sans-serif;

  /* Palette — Bexon teal system */
  --c-bg:        #ecf0f0;   /* page background */
  --c-surface:   #ffffff;   /* card surface */
  --c-soft:      #d8e5e5;   /* mint section */
  --c-soft-2:    #cee0e0;   /* alt mint */
  --c-dark:      #0c1e21;   /* hero / heading-primary */
  --c-dark-2:    #18292c;
  --c-dark-3:    #202e30;
  --c-accent:    #1e8a8a;   /* teal */
  --c-accent-2:  #2ba8a8;   /* hover teal */
  --c-text:      #364e52;   /* body */
  --c-text-mute: #67787a;
  --c-text-soft: #a9b8b8;
  --c-border:    #c9d1d1;
  --c-border-2:  rgba(255,255,255,0.15);

  /* Radii */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Layout */
  --max:        1200px;
  --max-prose:  720px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(12,30,33,0.04), 0 1px 3px rgba(12,30,33,0.06);
  --sh-md: 0 8px 24px -8px rgba(12,30,33,0.10);
  --sh-lg: 0 30px 60px -20px rgba(12,30,33,0.18);
}

/* ─── Reset & base ──────────────────────────────────────────────────── */

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

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

body {
  margin: 0;
  font-family: var(--tj-ff);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

ul, ol { margin: 0; padding-left: 1.25em; }

p { margin: 0 0 14px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tj-ff);
  color: var(--c-dark);
  margin: 0;
  font-weight: 500;        /* Bexon: medium, not bold */
  letter-spacing: -0.03em; /* Bexon: tight tracking */
  line-height: 1.12;
}

h1 { font-size: clamp(42px, 6.5vw, 74px); line-height: 1.06; }
h2 { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.12; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.22; }
h4 { font-size: 22px; line-height: 1.3; }
h5 { font-size: 18px; line-height: 1.4; }

a { color: var(--c-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-accent-2); }

::selection { background: var(--c-accent); color: #fff; }

/* ─── Layout ────────────────────────────────────────────────────────── */

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container-prose { max-width: var(--max-prose); }

section[id] { scroll-margin-top: 96px; }

/* ─── Header ────────────────────────────────────────────────────────── */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 240, 240, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(201, 209, 209, 0.6);
}

header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-dark);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--c-dark); }

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--c-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Plain nav anchors only — exclude the pill CTA so .btn-pill styles win. */
nav.primary a:not(.btn-pill) {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease;
}

nav.primary a:not(.btn-pill):hover {
  color: var(--c-dark);
  background: rgba(255,255,255,0.7);
}

nav.primary a.btn-pill { margin-left: 6px; }

/* ─── Signature pill button (Bexon "tj-primary-btn") ────────────────── */

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 5px 5px 5px 22px;
  background-color: var(--c-accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-color .25s ease, transform .15s ease;
}

.btn-pill:active { transform: translateY(1px); }
.btn-pill:hover { color: #fff; background-color: var(--c-accent-2); }

.btn-pill .btn-text {
  display: inline-flex;
  overflow: hidden;
  height: 1em;
  align-items: flex-start;
}

.btn-pill .btn-text > span {
  display: block;
  line-height: 1;
  text-shadow: 0 28px 0 #fff;        /* duplicate of itself, 28px below */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.5,0,.2,1);
}

.btn-pill:hover .btn-text > span {
  transform: translateY(-28px);       /* slides up; "shadow" copy reveals */
}

.btn-pill .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--c-dark);
  flex: none;
  overflow: hidden;
}

.btn-pill .btn-icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
  transform: rotate(-45deg);
  transition: transform .35s cubic-bezier(.5,0,.2,1);
}

.btn-pill:hover .btn-icon svg { transform: rotate(0); }

/* Variants */

.btn-pill.btn-dark { background-color: var(--c-dark); color: #fff; }
.btn-pill.btn-dark:hover { background-color: var(--c-dark-2); }
.btn-pill.btn-dark .btn-icon { background-color: #fff; }
.btn-pill.btn-dark .btn-icon svg { color: var(--c-dark); }
.btn-pill.btn-dark .btn-text > span { text-shadow: 0 28px 0 #fff; }

.btn-pill.btn-on-dark { background-color: #fff; color: var(--c-dark); }
.btn-pill.btn-on-dark:hover { background-color: #f4f8f8; color: var(--c-dark); }
.btn-pill.btn-on-dark .btn-text > span { text-shadow: 0 28px 0 var(--c-dark); }
.btn-pill.btn-on-dark .btn-icon { background-color: var(--c-dark); }
.btn-pill.btn-on-dark .btn-icon svg { color: #fff; }

.btn-pill.btn-ghost {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 11px 22px;
}
.btn-pill.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ─── Hero ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--c-dark);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

/* Slim variant for document pages (Privacy, etc.) */
.hero.hero-compact { padding: 76px 0 56px; }
.hero.hero-compact .hero-inner { max-width: 760px; }
.hero.hero-compact h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 14px; }
.hero.hero-compact .hero-lede { font-size: 17px; margin-bottom: 0; }
.hero.hero-compact .meta-on-dark {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(70% 90% at 90% 10%, rgba(30,138,138,0.32), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(30,138,138,0.18), transparent 60%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  z-index: -1;
}

.hero-inner { max-width: 600px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

/* Right-column illustration */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  justify-self: end;
}

.hero-art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
}

.hero-art .float-pill,
.hero-art .float-badge {
  position: absolute;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.hero-art .float-pill {
  top: 18%;
  left: -8%;
  width: 55%;
  animation: float-y 5s ease-in-out infinite;
}

.hero-art .float-badge {
  bottom: 8%;
  right: -6%;
  width: 28%;
  animation: float-y 5s ease-in-out infinite reverse;
}

@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

@media (max-width: 600px) {
  .hero-art .float-pill { left: 0; top: 12%; width: 50%; }
  .hero-art .float-badge { right: 0; bottom: 6%; width: 24%; }
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-2);
  box-shadow: 0 0 0 4px rgba(43,168,168,0.25);
}

.hero h1 { color: #fff; margin: 0 0 18px; font-size: clamp(38px, 5.4vw, 62px); }
.hero h1 .accent { color: var(--c-accent-2); font-style: italic; font-weight: 400; }

.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
}

.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }

.hero-meta .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(43,168,168,0.22);
  color: var(--c-accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Subtle "scroll" indicator at hero bottom */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.hero-scroll:hover { color: var(--c-accent-2); }
.hero-scroll .line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, currentColor);
  animation: scroll-line 2.4s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero-scroll { display: none; }
}

@keyframes scroll-line {
  0%,100% { opacity: 0.3; transform: scaleY(.6); transform-origin: top; }
  50%     { opacity: 1;   transform: scaleY(1);  transform-origin: top; }
}

/* ─── Sections ──────────────────────────────────────────────────────── */

.band       { padding: 76px 0; }
.band-mint  { background: var(--c-soft); }
.band-white { background: var(--c-surface); }

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Decorative dots motif used near a centered section head */
.section-head .deco {
  display: block;
  margin: 0 auto 18px;
  width: 64px;
  height: 24px;
  opacity: 0.7;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-accent);
}

.section-title {
  margin: 0 0 14px;
  color: var(--c-dark);
}

.section-lede {
  color: var(--c-text-mute);
  font-size: 18px;
  margin: 0;
  max-width: 640px;
}

.section-head:not(.left) .section-lede { margin-left: auto; margin-right: auto; }

/* ─── Cards ─────────────────────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.band-mint .card { background: var(--c-surface); }
.band-white .card { background: var(--c-bg); }

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--c-soft-2);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--c-soft);
  color: var(--c-accent);
}

.card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--c-dark);
}

.card p {
  margin: 0;
  color: var(--c-text-mute);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── Values strip ──────────────────────────────────────────────────── */

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 36px;
}

.value-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 12px;
  letter-spacing: 0.16em;
}

.value h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--c-dark);
}

.value p {
  margin: 0;
  color: var(--c-text-mute);
  font-size: 16px;
}

/* ─── Stat strip ────────────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 40px 0;
  margin-top: 52px;
}

.stat {
  text-align: center;
  padding: 0 16px;
}

.stat .num {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.stat .num .unit {
  color: var(--c-accent);
  font-size: 0.7em;
  margin-left: 4px;
}

.stat .label {
  color: var(--c-text-mute);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ─── FAQ accordion (native <details>/<summary>) ────────────────────── */

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq { gap: 10px; }

.faq details {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.band-mint .faq details { background: var(--c-surface); }

.faq details:hover { border-color: var(--c-soft-2); }
.faq details[open] {
  border-color: var(--c-accent);
  box-shadow: 0 6px 24px -10px rgba(30,138,138,0.18);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 500;
  font-size: 17px;
  color: var(--c-dark);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-soft);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--c-accent);
  transition: transform .3s ease, background-color .3s ease;
}

.faq details[open] summary::after {
  background-color: var(--c-accent);
  color: #fff;
  background-size: 12px 2px, 0 0;     /* hide the vertical bar */
  transform: rotate(180deg);
}

.faq .faq-body {
  padding: 0 0 18px;
  color: var(--c-text-mute);
  font-size: 15.5px;
  line-height: 1.65;
  border-top: 1px solid var(--c-border);
  margin-top: -2px;
  padding-top: 14px;
}

.faq .faq-body p:last-child { margin-bottom: 0; }

/* ─── CTA band ──────────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  isolation: isolate;
  background: var(--c-dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 72px 56px;
  margin: 80px 28px 112px;
  max-width: var(--max);
  min-height: 320px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1256px) {
  .cta-band { margin-left: auto; margin-right: auto; }
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(60% 80% at 100% 0%, rgba(43,168,168,0.32), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(30,138,138,0.30), transparent 60%);
  z-index: -1;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 16.5px;
  margin: 0 0 22px;
  max-width: 520px;
}

.cta-art {
  width: 200px;
  height: 200px;
  flex: none;
  opacity: 0.75;
}

@media (max-width: 820px) {
  .cta-band { grid-template-columns: 1fr; padding: 56px 28px; min-height: 0; }
  .cta-art { display: none; }
}

/* ─── Legal sections (in-page Privacy / Terms blocks) ───────────────── */

.legal { max-width: var(--max-prose); }

.legal h3 {
  font-size: 20px;
  margin: 32px 0 10px;
  color: var(--c-dark);
  scroll-margin-top: 110px;
}

.legal h3::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-accent);
  margin-bottom: 14px;
}

.legal h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--c-dark);
}

.legal p, .legal ul, .legal ol { margin: 0 0 12px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--c-dark); font-weight: 600; }

.legal a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal a:hover { color: var(--c-accent-2); }

.callout {
  background: var(--c-soft);
  border: 1px solid var(--c-soft-2);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 15.5px;
  color: var(--c-dark);
}

.contact-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 18px 22px;
  margin: 18px 0;
}

.band-mint .contact-block { background: #fff; }

.contact-block p { margin: 6px 0; color: var(--c-text); }

.support-note {
  margin: 14px 0 0;
  max-width: var(--max-prose);
  color: var(--c-text-mute);
  font-size: 15px;
  line-height: 1.6;
}

.support-note strong { color: var(--c-dark); font-weight: 600; }

.meta {
  color: var(--c-text-soft);
  font-size: 14px;
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

/* ─── Footer ────────────────────────────────────────────────────────── */

footer.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}

footer.site-footer .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Slim variant: brand · nav · fineprint, all in one row */
footer.site-footer.site-footer-slim {
  padding: 28px 0;
}

footer.site-footer.site-footer-slim .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}

footer.site-footer.site-footer-slim .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

footer.site-footer.site-footer-slim nav {
  display: flex;
  gap: 6px;
}

footer.site-footer.site-footer-slim nav a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

footer.site-footer.site-footer-slim nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.footer-fineprint-inline {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.footer-brand-block .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-block p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  max-width: 320px;
  margin: 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--c-accent-2); }

.footer-fineprint {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ─── Focus & motion ────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  footer.site-footer .container { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 76px 0 88px; }
  .hero-actions { gap: 10px; }
  .band { padding: 56px 0; }
  .cta-band { padding: 48px 24px; margin: 56px 20px 80px; }
  nav.primary { gap: 0; }
  nav.primary a:not(.btn-pill) { padding: 6px 10px; font-size: 14px; }
  nav.primary a.btn-pill { padding: 5px 5px 5px 18px; }
  footer.site-footer .container { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 540px) {
  body { font-size: 15.5px; }
  .section-head { margin-bottom: 32px; }
}
