/* ==========================================================================
   M²A by Alpha Technologies — shared design system
   Light, editorial, athletic-brand aesthetic: white space, bold italic
   display type, soft pastel accent cards, pill buttons.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --tint-blue: #e8f1ff;
  --tint-blue-strong: #dbe9ff;
  --tint-orange: #fff1e0;
  --tint-orange-strong: #ffe4c2;

  --navy: #0b1c3d;
  --navy-soft: #16305c;
  --slate: #4c586f;
  --slate-light: #8590a6;
  --line: #e4e9f2;
  --line-strong: #ccd6e8;

  --blue: #3a7bd5;
  --cyan: #00c6ff;
  --sky: #6fa4ec;
  --orange: #ff5722;
  --amber: #ffab00;
  --white: #ffffff;

  --gradient-brand: linear-gradient(90deg, #00c6ff 0%, #3a7bd5 45%, #ffab00 78%, #ff5722 100%);
  --gradient-blue: linear-gradient(135deg, #3a7bd5, #00b8ff);
  --gradient-orange: linear-gradient(135deg, #ffab00, #ff5722);

  --shadow-sm: 0 10px 26px rgba(11, 28, 61, 0.06);
  --shadow-md: 0 22px 50px rgba(11, 28, 61, 0.09);
  --shadow-lg: 0 30px 70px rgba(11, 28, 61, 0.12);

  --radius: 24px;
  --radius-lg: 32px;
  --container: min(1180px, 92%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
::selection { background: var(--navy); color: #fff; }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.02;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.3rem; margin-bottom: 8px; font-style: normal; font-weight: 800; }

p { color: var(--slate); }

.grad-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-inline {
  height: 0.82em;
  width: 0.82em;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: -0.08em;
  margin: 0 0.04em;
  box-shadow: 0 2px 8px rgba(11, 28, 61, 0.25);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.section-title { max-width: 760px; margin-bottom: 36px; }
.section-title p { font-size: 1.04rem; }
.section-title.center { margin: 0 auto 44px; text-align: center; }

section { padding: 96px 0; position: relative; }
section.alt { background: var(--bg-alt); }
section.tight { padding: 64px 0; }

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gradient-blue);
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button.secondary:hover { border-color: var(--blue); color: var(--blue); }

.button.dark { background: var(--navy); }
.button.dark:hover { background: var(--navy-soft); }

.button.small { padding: 11px 20px; font-size: 0.84rem; }

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.logo-mark {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 14px rgba(11, 28, 61, 0.22);
}

.brand-word {
  font-family: 'Archivo', Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
  white-space: nowrap;
}

.powered-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid var(--line-strong);
}

.powered-by-text {
  color: var(--slate-light);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.alpha-logo { height: 24px; width: auto; object-fit: contain; opacity: 0.88; }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  font-size: 0.86rem;
}

.nav-links a {
  color: var(--navy-soft);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: right 0.2s ease;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-cta .button { padding: 12px 22px; font-size: 0.82rem; }
.nav-toggle { display: none; }

#nav-check { display: none; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 84px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 18px 4%;
    background: #ffffff;
    border-top: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    font-size: 1rem;
  }

  .nav-links a { width: 100%; padding: 16px 2%; border-bottom: 1px solid var(--line); }

  #nav-check:checked ~ .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    cursor: pointer;
    flex: none;
  }

  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }

  .nav-cta .button { display: none; }
}

/* ---------- Decorative background (wave lines / sunburst) ---------- */

.wave-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wave-field svg { position: absolute; left: -5%; right: -5%; top: 20%; width: 110%; height: auto; opacity: 0.55; }

.sunburst {
  position: relative;
  overflow: hidden;
}

.sunburst::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(from 0deg, rgba(11, 28, 61, 0.06) 0deg 0.6deg, transparent 0.6deg 9deg);
  mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 0%, transparent 68%);
  pointer-events: none;
}

.sunburst > * { position: relative; z-index: 1; }

/* ---------- Hero ---------- */

.hero { padding: 56px 0 30px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero h1 { margin-bottom: 20px; }
.hero-lead { font-size: 1.14rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; }

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate);
}

.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-brand); flex: none; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-media img, .hero-media video {
  width: 100%;
  display: block;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-stat-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  background: rgba(8, 18, 38, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.hero-stat-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.hero-stat-strip .hstat {
  flex: 1;
  text-align: center;
  padding: 16px 8px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat-strip .hstat:last-child { border-right: none; }

.hero-stat-strip strong {
  display: block;
  font-family: 'Archivo', Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 1.28rem;
  line-height: 1.1;
  color: #fff;
}

.hero-stat-strip strong .unit {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 1px;
}

.hero-stat-strip small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 560px) {
  .hero-stat-strip { flex-wrap: wrap; }
  .hero-stat-strip .hstat { flex: 1 1 50%; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .hero-stat-strip .hstat:nth-child(2) { border-right: none; }
}

.hero-float {
  position: absolute;
  right: -26px;
  bottom: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
}

.hero-float .ring {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--blue) calc(var(--pct,80)*1%), var(--tint-blue) 0);
  flex: none;
}

.hero-float .ring::before { content: ""; position: absolute; width: 34px; height: 34px; border-radius: 50%; background: #fff; }
.hero-float .ring span { position: relative; font-weight: 900; font-size: 0.72rem; color: var(--navy); }

.hero-float strong { display: block; font-size: 0.95rem; color: var(--navy); }
.hero-float small { color: var(--slate-light); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 980px) {
  .hero-float { position: static; margin-top: -40px; margin-left: auto; margin-right: 20px; width: fit-content; }
  .hero-media video { aspect-ratio: 3 / 4; }
}

/* ---------- Feature row (alternating, Runkeeper-style) ---------- */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }

.feature-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

.feature-copy h2 { margin-bottom: 18px; }
.feature-copy p { font-size: 1.06rem; margin-bottom: 26px; max-width: 480px; }

.quote-card {
  border-radius: 24px;
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 34px;
}

.quote-card.tint-blue { background: var(--tint-blue); }
.quote-card.tint-orange { background: var(--tint-orange); }

.quote-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  flex: none;
  display: grid; place-items: center;
  background: var(--gradient-blue);
  color: #fff; font-weight: 900; font-size: 1.1rem;
  font-family: 'Archivo', sans-serif; font-style: italic;
}

.quote-card.tint-orange .avatar { background: var(--gradient-orange); }

.quote-card .role {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 6px;
}

.quote-card.tint-orange .role { color: var(--orange); }

.quote-card blockquote { font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.4; }

.promo-pill {
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.promo-pill .tag-mini {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  display: block;
  margin-bottom: 3px;
}

.promo-pill strong { font-size: 0.9rem; color: var(--navy); display: block; }
.promo-pill .meta { font-size: 0.76rem; color: var(--slate-light); }

.play-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient-blue);
  display: grid; place-items: center;
  flex: none;
  margin-left: auto;
}

.play-dot svg { width: 13px; height: 13px; fill: #fff; margin-left: 2px; }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card .number {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--tint-blue);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.card:nth-child(even) .number { background: var(--tint-orange); color: var(--orange); }

.card p, .card li { color: var(--slate); }

.use-card {
  border-radius: var(--radius);
  padding: 32px;
  min-height: 360px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.use-card ul, .card ul { margin-top: 16px; padding-left: 0; list-style: none; display: grid; gap: 10px; }

.use-card li, .card li { padding-left: 22px; position: relative; font-size: 0.95rem; }

.use-card li::before, .card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--gradient-brand);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--tint-blue);
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  width: fit-content;
}

.tag.amber { background: var(--tint-orange); color: var(--orange); }

.list { display: grid; gap: 14px; }

.list-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.list-item strong { color: var(--navy); }

.check {
  min-width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 0.74rem;
  background: var(--tint-blue);
  color: var(--blue);
  flex: none;
}

/* ---------- Table ---------- */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { text-align: left; padding: 20px; border-bottom: 1px solid var(--line); vertical-align: top; }

th {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--bg-alt);
}

td { color: var(--slate); font-size: 0.93rem; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-alt); }

/* ---------- Video library (event-card style) ---------- */

.video-card-lite {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.video-card-lite .banner {
  height: 84px;
  background: var(--gradient-blue);
  position: relative;
}

.video-card-lite:nth-child(2n) .banner { background: var(--gradient-orange); }

.video-card-lite .thumb-wrap {
  margin: -56px 18px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  position: relative;
}

.video-card-lite .thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }

.video-card-lite .play-dot {
  position: absolute;
  bottom: 10px; right: 10px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.video-card-lite .body { padding: 18px 20px 24px; }
.video-card-lite h3 { font-size: 1.08rem; margin-bottom: 6px; }
.video-card-lite p { font-size: 0.86rem; margin-bottom: 16px; }

/* ---------- Tinted band section ---------- */

.band {
  background: var(--tint-blue);
  border-radius: var(--radius-lg);
  padding: 70px 6%;
  text-align: center;
}

.band .section-title { margin-left: auto; margin-right: auto; }
.band .button { margin: 0 auto; }

/* ---------- Alpha box ---------- */

.alpha-box {
  border-radius: var(--radius-lg);
  padding: 50px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}

/* ---------- CTA ---------- */

.cta {
  border-radius: var(--radius-lg);
  padding: 50px;
  background: var(--tint-orange);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.cta.tight { grid-template-columns: 1fr auto; padding: 40px 50px; }

form { display: grid; gap: 12px; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  font-size: 0.94rem;
}

input::placeholder, textarea::placeholder { color: var(--slate-light); }

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.15);
}

textarea { min-height: 120px; resize: vertical; }

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* ---------- Video / media cards (sport pages) ---------- */

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.video-card video { width: 100%; display: block; background: #000; aspect-ratio: 16/9; }
.video-caption { padding: 20px 26px; color: var(--slate); font-size: 0.92rem; border-top: 1px solid var(--line); }

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  color: var(--slate-light);
  margin-top: 40px;
  background: var(--bg-alt);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy-soft);
}

.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-row strong { color: var(--navy); }

.social-links { display: flex; gap: 10px; margin-top: 12px; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-icon svg { width: 17px; height: 17px; }

.social-icon:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid, .grid-2, .cta, .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media, .feature-row.reverse .feature-copy { order: initial; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta.tight { grid-template-columns: 1fr; }
  .feature-row { gap: 34px; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .alpha-box, .cta, .band { padding: 30px; }
  .powered-wrap { display: none; }
  h1 { font-size: clamp(2.3rem, 9vw, 3.2rem); }

  .table-wrap { overflow-x: visible; border: none; box-shadow: none; background: transparent; }
  table { min-width: 0; }
  thead { display: none; }
  tbody { display: grid; gap: 16px; }
  tr {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 6px 20px;
  }
  td { display: block; padding: 14px 0; }
  td:last-child { border-bottom: none; }
  td::before {
    content: attr(data-label);
    display: block;
    color: var(--blue);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
}
