/* ============================================================
   THE TOUR — Web (livescore) · modelo tnnslive na identidade do app
   Dark por padrão + tema claro. Tokens do DESIGN-SYSTEM.md.
   ============================================================ */

:root {
  /* superfícies (dark) */
  --bg: #0C0F13;
  --screen-bg: #0F1319;
  --surface: #191F27;
  --surface-2: #212A34;
  --border: #2A333F;
  --text: #F2F5F8;
  --text-dim: #93A1B0;
  /* marca / ação */
  --accent: #C8FF3D;
  --accent-ink: #16210A;
  --live: #FF4D4D;
  /* tours */
  --atp: #3D8BFD;
  --wta: #FF5CA8;
  --itf: #5AD1B0;
  /* categorias */
  --slam: #F4C430;
  --masters: #4AA3FF;
  --wta1000: #FF6FB5;
  --finais: #B98CFF;
  --exib: #FF8A3D;
  /* ranking */
  --up: #35D07F;
  --down: #FF4D4D;

  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 1px 0 rgba(255,255,255,.02);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #EEF1F6;
  --screen-bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F1F4F9;
  --border: #E1E6EE;
  --text: #10151C;
  --text-dim: #6B7787;
  --accent: #A6E22E;
  --accent-ink: #14210A;
  --shadow: 0 1px 2px rgba(20,30,50,.06);
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.hidden { display: none !important; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------------- Top bar ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--screen-bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; gap: 16px;
  height: 62px;
}
/* logo THE TOUR */
.brand { display: flex; align-items: center; gap: 6px; font-weight: 800; letter-spacing: -.6px; font-size: 20px; white-space: nowrap; }
.brand .the { color: var(--text-dim); font-size: 13px; letter-spacing: 1.5px; }
.brand .tour { color: var(--text); display: inline-flex; align-items: center; }
.brand .ball-o { width: .82em; height: .82em; margin: 0 -.02em; transform: translateY(.06em); }
/* Logo em imagem — troca conforme o tema (preto no claro, branco no escuro) */
.brand-logo { height: 30px; width: auto; display: block; }
.brand-logo.dark-only { display: none; }
:root[data-theme="dark"] .brand-logo.dark-only { display: block; }
:root[data-theme="dark"] .brand-logo.light-only { display: none; }
.site-footer .brand-logo { height: 26px; }

.search {
  flex: 1; max-width: 460px;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 15px; color: var(--text-dim);
}
.search svg { width: 17px; height: 17px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; }
.search input { flex: 1; background: none; border: none; color: var(--text); font-size: 14px; outline: none; min-width: 40px; }
.search input::placeholder { color: var(--text-dim); }

.topbar-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.lang-toggle { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.lang-toggle button { background: none; border: none; color: var(--text-dim); font-weight: 800; font-size: 11px; letter-spacing: .5px; padding: 7px 11px; }
.lang-toggle button.on { background: var(--accent); color: var(--accent-ink); }
.icon-btn {
  width: 38px; height: 38px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  color: var(--text);
}
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-app {
  background: var(--accent); color: var(--accent-ink);
  border: none; border-radius: 999px; font-weight: 800; font-size: 13px;
  padding: 10px 16px; white-space: nowrap;
}

/* nav tabs */
.mainnav { border-bottom: 1px solid var(--border); background: var(--screen-bg); position: sticky; top: 62px; z-index: 30; }
.mainnav-inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.mainnav-inner::-webkit-scrollbar { display: none; }
.navtab {
  background: none; border: none; color: var(--text-dim);
  font-weight: 800; font-size: 13px; letter-spacing: .3px; text-transform: uppercase;
  padding: 15px 14px 13px; position: relative; white-space: nowrap;
}
.navtab.on { color: var(--text); }
.navtab.on::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 3px; background: var(--accent); border-radius: 3px 3px 0 0; }

/* ---------------- Layout ---------------- */
.page { padding: 22px 0 60px; }
.grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
@media (max-width: 900px) { .grid { grid-template-columns: 1fr; } .side { order: -1; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------------- Scores: controls ---------------- */
.datebar { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 14px; border-bottom: 1px solid var(--border); }
.datebar .nav-day { width: 40px; height: 40px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); display: inline-flex; align-items: center; justify-content: center; }
.datebar .nav-day svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.4; }
.datebar .today { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 16px; letter-spacing: -.3px; min-width: 150px; justify-content: center; }
.datebar .today small { color: var(--text-dim); font-weight: 600; font-size: 12px; }

.filters-row { display: flex; gap: 10px; padding: 14px; }
@media (max-width: 520px) { .filters-row { flex-direction: column; } }
.select, .textfilter {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 11px 13px; color: var(--text); font-size: 14px;
}
.select { justify-content: space-between; font-weight: 700; }
.select select { appearance: none; background: none; border: none; color: var(--text); font: inherit; font-weight: 700; width: 100%; outline: none; }
.textfilter svg { width: 16px; height: 16px; stroke: var(--text-dim); fill: none; stroke-width: 2; }
.textfilter input { flex: 1; background: none; border: none; color: var(--text); font: inherit; outline: none; }
.textfilter input::placeholder { color: var(--text-dim); }

.segs { display: flex; gap: 6px; padding: 0 14px 14px; flex-wrap: wrap; }
.seg {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
  border-radius: 999px; font-weight: 800; font-size: 13px; padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 7px;
}
.seg.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.seg .count { background: var(--live); color: #fff; border-radius: 999px; font-size: 11px; padding: 1px 7px; font-weight: 800; }
.seg.on .count { background: var(--accent-ink); color: var(--accent); }
/* Segmento "Ao vivo" — vermelho e piscando */
.seg.live-seg { color: var(--live); border-color: color-mix(in srgb, var(--live) 55%, var(--border)); animation: liveblink 1.3s ease-in-out infinite; }
.seg.live-seg.on { background: var(--live); border-color: var(--live); color: #fff; animation: liveblink 1.3s ease-in-out infinite; }
.seg.live-seg.on .count { background: #fff; color: var(--live); }
@keyframes liveblink { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.seg.live-seg.no-live { animation: none; opacity: .7; }   /* sem jogos ao vivo → não pisca */

/* ---------------- Match groups ---------------- */
.grp-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 16px; background: var(--surface-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.grp-head .g-name { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; }
.grp-head .g-name .tourdot { width: 8px; height: 8px; border-radius: 999px; flex: none; }
.grp-head .g-meta { color: var(--text-dim); font-weight: 700; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; }

.match {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center;
  gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.match:hover { background: var(--surface-2); cursor: pointer; }
.match .m-live {
  width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--live); background: color-mix(in srgb, var(--live) 12%, transparent);
}
.match .m-live svg { width: 14px; height: 14px; fill: currentColor; }
.match .m-live.dim { color: var(--text-dim); background: var(--surface-2); }

.m-players { display: grid; gap: 8px; min-width: 0; }
.m-p { display: flex; align-items: center; gap: 9px; min-width: 0; }
.m-p .flag { font-size: 16px; flex: none; width: 20px; text-align: center; }
.m-p .name { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-p.win .name { font-weight: 800; }
.m-p.lose .name { color: var(--text-dim); }
.m-p .seed { color: var(--text-dim); font-size: 12px; font-weight: 700; flex: none; }
.m-p .serve { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); flex: none; }

.m-scores { display: grid; grid-auto-flow: column; grid-template-rows: 1fr 1fr; gap: 0 2px; align-items: center; }
.m-scores .sc {
  min-width: 22px; text-align: center; font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 15px; padding: 3px 4px; color: var(--text-dim);
}
.m-scores .sc.win { color: var(--text); font-weight: 800; }
.m-scores .sc.pts { color: var(--accent); font-weight: 800; }
.m-scores .col-div { grid-row: 1 / 3; width: 1px; background: var(--border); align-self: stretch; margin: 4px 3px; }
.m-scores .tb { font-size: 9px; vertical-align: super; color: var(--text-dim); margin-left: 1px; }
.m-time {
  min-width: 48px; text-align: center; font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 13px; color: var(--text-dim);
  padding: 3px 8px; border-radius: 8px; background: var(--surface-2);
}
.m-time.done { min-width: 40px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
/* Botões "Assistir" no drawer (highlights + ao vivo) */
.watch-row { display: flex; gap: 8px; margin: 4px 0 14px; }
.watch-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 12px; border-radius: 12px; font-weight: 700; font-size: 14px;
  text-decoration: none; border: 1px solid var(--border); transition: transform .06s, background .15s;
}
.watch-btn:active { transform: scale(.98); }
.watch-btn svg { width: 16px; height: 16px; fill: currentColor; }
.watch-btn.hl { background: var(--accent); color: #10240a; border-color: transparent; }
.watch-btn.hl:hover { filter: brightness(1.05); }
.watch-btn.live { background: var(--surface-2); color: var(--text); }
.watch-btn.live:hover { background: var(--surface); }
.watch-btn.live .wdot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,.55); animation: wpulse 1.4s infinite;
}
@keyframes wpulse { 70% { box-shadow: 0 0 0 6px rgba(255,59,59,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); } }

.status-txt { color: var(--text-dim); font-weight: 700; font-size: 13px; text-align: right; min-width: 66px; }

/* live pulse dot on group */
.livepulse { width: 8px; height: 8px; border-radius: 999px; background: var(--live); box-shadow: 0 0 0 0 rgba(255,77,77,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,77,77,.5); } 70% { box-shadow: 0 0 0 7px rgba(255,77,77,0); } 100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); } }

/* ---------------- Sidebar: active tournaments ---------------- */
.side .card { padding: 4px 0 8px; }
.side-title { font-weight: 800; font-size: 15px; padding: 14px 16px 8px; }
.side-grp { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-top: 1px solid var(--border); font-weight: 800; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--text-dim); }
.side-grp .cnt { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; font-size: 11px; padding: 1px 9px; color: var(--text); }
.side-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 16px; border-top: 1px solid var(--border); }
.side-row:hover { background: var(--surface-2); cursor: pointer; }
.side-row .sr-name { font-weight: 700; font-size: 14px; }
.side-row .sr-sub { color: var(--text-dim); font-size: 12px; margin-top: 2px; }
.badge {
  font-size: 10px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase;
  padding: 3px 7px; border-radius: 6px; white-space: nowrap; flex: none;
  color: #fff; line-height: 1.3; text-align: center;
}
.badge.two { display: grid; }

/* ---------------- Rankings ---------------- */
.rank-typeseg { display: flex; gap: 6px; padding: 14px 14px 0; }
.rank-typeseg .tyseg { flex: 1; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); border-radius: 12px; font-weight: 800; padding: 10px; font-size: 14px; }
.rank-typeseg .tyseg.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.rank-seg { display: flex; gap: 6px; padding: 14px; border-bottom: 1px solid var(--border); }
.rank-seg .tseg { flex: 1; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); border-radius: 12px; font-weight: 800; padding: 11px; font-size: 14px; }
.rank-seg .tseg.on[data-t="atp"] { color: var(--atp); border-color: var(--atp); background: color-mix(in srgb, var(--atp) 14%, transparent); }
.rank-seg .tseg.on[data-t="wta"] { color: var(--wta); border-color: var(--wta); background: color-mix(in srgb, var(--wta) 14%, transparent); }
.rank-seg .tseg.on[data-t="itf"] { color: var(--itf); border-color: var(--itf); background: color-mix(in srgb, var(--itf) 14%, transparent); }
.rank-asof { color: var(--text-dim); font-size: 12px; padding: 12px 16px 4px; }
.rank-row { display: grid; grid-template-columns: 34px 22px 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; border-top: 1px solid var(--border); }
.rank-row .pos { font-weight: 800; font-size: 16px; text-align: center; font-variant-numeric: tabular-nums; }
.rank-row .mov { font-size: 12px; font-weight: 800; text-align: center; }
.rank-row .mov.up { color: var(--up); } .rank-row .mov.down { color: var(--down); } .rank-row .mov.same { color: var(--text-dim); }
.rank-row .who { display: flex; align-items: center; gap: 10px; min-width: 0; }
.rank-row .who .flag { font-size: 18px; }
.rank-row .who .nm { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-row .who .ct { color: var(--text-dim); font-size: 12px; }
.rank-row .pts { font-weight: 800; font-variant-numeric: tabular-nums; }
.rank-row .pts small { color: var(--text-dim); font-weight: 600; font-size: 11px; margin-left: 3px; }

/* ---------------- Tournaments ---------------- */
.tourn-list { display: grid; gap: 12px; }
.tourn-card { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 15px 16px; }
.tourn-card:hover { border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); cursor: pointer; }
.tourn-card .cal { width: 52px; text-align: center; }
.tourn-card .cal .d { font-weight: 800; font-size: 22px; letter-spacing: -1px; }
.tourn-card .cal .m { color: var(--text-dim); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.tourn-card .info .nm { font-weight: 800; font-size: 16px; letter-spacing: -.2px; }
.tourn-card .info .loc { color: var(--text-dim); font-size: 13px; margin-top: 3px; }
.tourn-card .info .tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag { font-size: 10px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim); }
.tag.live { color: var(--live); border-color: var(--live); }
.tc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.fav-btn { background: none; border: none; padding: 4px; cursor: pointer; color: var(--text-dim); display: inline-flex; line-height: 0; border-radius: 8px; transition: transform .12s; }
.fav-btn svg { fill: none; stroke: currentColor; stroke-width: 2; }
.fav-btn:hover { color: var(--live); transform: scale(1.12); }
.fav-btn.on { color: var(--live); }
.fav-btn.on svg { fill: currentColor; stroke: currentColor; }

.section-label { color: var(--text-dim); font-weight: 800; font-size: 11px; letter-spacing: .9px; text-transform: uppercase; margin: 18px 2px 10px; }
.section-label .sec-cnt, .month-head .sec-cnt {
  display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px;
  padding: 0 6px; margin-left: 6px; border-radius: 999px; background: var(--surface-2);
  color: var(--text-dim); font-size: 11px; font-weight: 800; vertical-align: middle;
}
/* Barra Ativos|Temporada + filtro */
.tourn-toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; }
.tourn-toolbar .segs { flex: 0 0 auto; }
.tourn-filter { flex: 0 0 auto; min-width: 150px; }
/* Accordion por mês (Temporada) */
.month-head {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  padding: 14px 14px; margin-top: 8px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); font-weight: 800; font-size: 15px; user-select: none; transition: background .15s;
}
.month-head:hover { background: var(--surface-2); }
.month-head.open { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.month-head .mh-r { display: inline-flex; align-items: center; gap: 4px; color: var(--text-dim); }
.month-head .chev { width: 18px; height: 18px; transition: transform .18s; }
.month-head.open .chev { transform: rotate(180deg); }
.month-body { padding: 12px; border: 1px solid var(--border); border-top: 0; border-radius: 0 0 14px 14px; }

/* ---------------- Empty / loading ---------------- */
.empty { text-align: center; color: var(--text-dim); padding: 46px 20px; }
.empty .ico { font-size: 34px; margin-bottom: 10px; }
.empty .msg { font-size: 14px; }
.skeleton { padding: 16px; }
.skeleton .ln { height: 44px; background: linear-gradient(90deg, var(--surface-2), var(--surface), var(--surface-2)); background-size: 200% 100%; animation: sh 1.2s infinite; border-radius: 10px; margin-bottom: 10px; }
@keyframes sh { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.mono { font-variant-numeric: tabular-nums; }
.dim { color: var(--text-dim); }

/* ---------------- Drawer (match detail) ---------------- */
.drawer-back { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 60; display: flex; justify-content: flex-end; }
.drawer { width: min(440px, 100%); background: var(--screen-bg); height: 100%; overflow-y: auto; border-left: 1px solid var(--border); animation: slidein .22s ease; }
@keyframes slidein { from { transform: translateX(24px); opacity: .5; } to { transform: none; opacity: 1; } }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--screen-bg); }
.drawer-head h3 { margin: 0; font-size: 15px; }
.drawer-body { padding: 16px; }
.dscore { display: grid; gap: 12px; margin-bottom: 18px; }
.dscore .dp { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.dscore .dp.win { border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); }
.dscore .dp .who { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.dscore .dp .sets { display: flex; gap: 8px; font-weight: 800; font-variant-numeric: tabular-nums; }
.stat-row { display: grid; grid-template-columns: 46px 1fr 46px; gap: 10px; align-items: center; margin-bottom: 12px; }
.stat-row .v { font-weight: 800; font-variant-numeric: tabular-nums; text-align: center; }
.stat-row .lb { text-align: center; color: var(--text-dim); font-size: 12px; }
.stat-bar { height: 6px; border-radius: 999px; background: var(--surface-2); display: flex; overflow: hidden; margin-top: 5px; }
.stat-bar .a { background: var(--accent); } .stat-bar .b { background: var(--masters); }

/* toast */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); background: var(--surface-2); border: 1px solid var(--border); color: var(--text); padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; z-index: 80; box-shadow: 0 8px 30px rgba(0,0,0,.4); }

/* ===== links Home/Planos no menu (cross-page pra landing) ===== */
.navtab.navlink { text-decoration: none; display: inline-flex; align-items: center; color: var(--text-dim); }
.navtab.navlink:hover { color: var(--text); }

/* ===== footer (mesmo shell da landing) ===== */
.site-footer { border-top: 1px solid var(--border); margin-top: 40px; padding: 44px 0 30px; background: var(--screen-bg); }
.site-footer .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; }
.site-footer .brand { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 800; letter-spacing: -.6px; font-size: 19px; }
.site-footer .brand .the { color: var(--text-dim); font-size: 12px; letter-spacing: 1.5px; }
.site-footer .brand .ball-o { width: .82em; height: .82em; transform: translateY(.06em); }
.foot-brand p { color: var(--text-dim); font-size: 14px; max-width: 280px; margin: 12px 0 0; }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-dim); margin: 0 0 12px; }
.foot-col a { display: block; color: var(--text); font-size: 14px; padding: 5px 0; opacity: .85; }
.foot-col a:hover { opacity: 1; color: var(--accent); }
.foot-bot { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }
@media (max-width: 720px) { .site-footer .foot-grid { grid-template-columns: 1fr; gap: 22px; } }
