/* Kick Ups — legal / support pages shared styles
   Brand: volt green #CDFF00 on near-black #000000
   Kept intentionally lightweight: no external fonts, no JS, fast to load. */

:root {
  --volt: #cdff00;
  --black: #000000;
  --ink: #0a0a0a;
  --line: rgba(255, 255, 255, 0.1);
  --text: #e8e8e8;
  --dim: #9a9a9a;
  --dimmer: #6a6a6a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

/* Header */
.site-head {
  border-bottom: 1px solid var(--line);
  padding: 28px 24px;
  margin-bottom: 48px;
}
.site-head-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-bottom: none;
  color: var(--text);
}
.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 14px rgba(205, 255, 0, 0.6);
  flex-shrink: 0;
}
.logo-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.logo-tag {
  margin-left: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dimmer);
}

/* Page title block */
.kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--volt);
  margin-bottom: 16px;
}
h1 {
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 14px;
}
.updated {
  color: var(--dim);
  font-size: 14px;
  margin-bottom: 40px;
}

/* Body sections */
h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 44px 0 14px;
  padding-top: 12px;
}
h2:first-of-type {
  margin-top: 8px;
}
h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}
p {
  margin-bottom: 16px;
  color: var(--text);
}
ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}
strong {
  color: #fff;
  font-weight: 700;
}
a {
  color: var(--volt);
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 255, 0, 0.3);
}
a:hover {
  border-bottom-color: var(--volt);
}

/* Definition table for data collection */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: 15px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.data-table th {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  width: 32%;
}
.data-table td {
  color: var(--dim);
}

/* Callout / note box */
.note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--volt);
  background: var(--ink);
  padding: 16px 18px;
  margin: 24px 0;
  border-radius: 4px;
  font-size: 15px;
  color: var(--dim);
}

/* Hub nav cards */
.hub-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.hub-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  background: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hub-card:hover {
  border-color: rgba(205, 255, 0, 0.5);
  transform: translateY(-2px);
}
.hub-card h2 {
  margin: 0 0 6px;
  padding: 0;
  font-size: 19px;
  color: #fff;
}
.hub-card p {
  margin: 0;
  color: var(--dim);
  font-size: 15px;
}

/* Footer */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
  margin-top: 64px;
}
.site-foot-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  font-size: 14px;
  color: var(--dimmer);
}
.site-foot-inner a {
  border-bottom: none;
}
.site-foot-inner .sep {
  color: #333;
}
.site-foot-inner .copy {
  margin-left: auto;
}

.toc {
  margin: 0 0 40px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}
.toc-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dimmer);
  margin-bottom: 10px;
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}
.toc li {
  margin-bottom: 6px;
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .toc ul {
    columns: 1;
  }
  .data-table th {
    width: 40%;
  }
}

/* Brand lockup in the legal header */
.logo-img { height: 30px; width: auto; display: block; }
