:root {
  --bg: #060607;
  --band: #0e0f12;
  --tile: #16181d;
  --line: rgba(255,255,255,.09);
  --txt: #f5f5f7;
  --txt-dim: #a1a1a6;
  --txt-faint: #6e6e73;
  --accent: #2997ff;
  --accent-2: #6cb2ff;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Pretendard", "Apple SD Gothic Neo", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--txt); font-weight: 600; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(6,6,7,.7);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 13px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--txt-dim); font-size: 13.5px; transition: color .15s; }
.nav-links a:hover { color: var(--txt); }
/* GitHub icon link */
.nav-gh { display: inline-flex; align-items: center; color: var(--txt-dim); }
.nav-gh:hover { color: var(--txt); }
/* Language switcher — small outlined chip, stays visible on mobile */
.nav-lang {
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
  border: 1px solid var(--line); color: var(--txt-dim);
}
.nav-lang:hover { color: var(--txt); border-color: var(--txt-faint); }
/* Sponsor — gradient pill like the footer button */
.nav-sponsor {
  padding: 7px 16px; border-radius: 999px; font-weight: 600; color: #fff !important;
  background: linear-gradient(90deg, #2997ff, #7c5cff 55%, #ff5ea8);
  box-shadow: 0 4px 14px rgba(124,92,255,.32); transition: filter .15s;
}
.nav-sponsor:hover { filter: brightness(1.08); }

/* ---- Hero ---- */
.hero {
  max-width: 900px; margin: 0 auto; padding: 90px 22px 40px; text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 15px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #2997ff, #7c5cff 60%, #ff5ea8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 {
  font-size: 64px; line-height: 1.08; letter-spacing: -.03em; font-weight: 700;
  margin-bottom: 22px; white-space: nowrap;
}
.lead { font-size: 22px; color: var(--txt-dim); margin-bottom: 24px; }
.links { display: flex; gap: 26px; justify-content: center; }
.link { color: var(--accent); font-size: 18px; transition: opacity .15s; }
.link:hover { opacity: .75; text-decoration: underline; }
.hero-shot { margin-top: 56px; }
.hero-shot img {
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}

/* Coming-soon badge */
.badge-row { margin-bottom: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--txt-dim);
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px;
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #30d158; box-shadow: 0 0 9px #30d158;
}

/* CTA buttons */
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 13px 26px; border-radius: 980px; font-size: 16px; font-weight: 600;
  white-space: nowrap;   /* keep labels on one line so all buttons are equal height */
  background: var(--tile); border: 1px solid var(--line); color: var(--txt);
  transition: transform .12s, background .15s, border-color .15s, color .15s;
}
.btn:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.primary:hover { background: #1f86ec; border-color: #1f86ec; }
/* Sponsor — gradient emphasis */
.btn.sponsor {
  background: linear-gradient(90deg, #2997ff, #7c5cff 55%, #ff5ea8);
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 24px rgba(124,92,255,.35);
}
.btn.sponsor:hover {
  background: linear-gradient(90deg, #2997ff, #7c5cff 55%, #ff5ea8);
  filter: brightness(1.08); border-color: transparent;
}
.btn.heart { border: 1px solid var(--line); color: var(--txt); }
.btn.heart:hover { border-color: #ff5e8a; color: #ff8fc0; }
/* Sponsor heart — always pink, with a soft glow */
.heart-ic { color: #ff5e8a; text-shadow: 0 0 10px rgba(255,94,138,.5); }

/* Layout carousel */
.carousel { margin-top: 56px; }
.car-frames { display: grid; }
.car-frame {
  grid-area: 1 / 1; opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.car-frame.active { opacity: 1; pointer-events: auto; }
.car-frame img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
/* Grid (not wrap) so the 4 layout buttons fall into even rows — 4, then 2+2,
   then 1·1·1·1 — never an uneven 3+1 break. */
.dots {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 10px; justify-content: center; margin-top: 26px;
}
@media (max-width: 720px) { .dots { grid-template-columns: repeat(2, auto); } }
@media (max-width: 380px) { .dots { grid-template-columns: 1fr; } }
.dot {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tile); border: 1px solid var(--line); color: var(--txt-dim);
  padding: 9px 16px; border-radius: 12px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.dot .k { font-weight: 800; color: var(--accent-2); }
.dot:hover { color: var(--txt); }
.dot.active { border-color: var(--accent); color: var(--txt); background: rgba(41,151,255,.1); }
.dot.active .k { color: #fff; }

/* ---- Bands & showcases ---- */
.band { background: var(--band); border-block: 1px solid var(--line); }
.band-inner, .showcase {
  max-width: 1080px; margin: 0 auto; padding: 100px 22px;
}
.centered { text-align: center; }
h2 {
  font-size: 44px; line-height: 1.1; letter-spacing: -.025em; font-weight: 700;
}
.sub {
  font-size: 20px; color: var(--txt-dim); margin-top: 14px;
  max-width: 960px; margin-inline: auto;
}

/* ---- Feature / tool / oss grid ---- */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px;
}
/* Four-tile sections (Safety, Privacy): 4 across when wide so they never
   break to an ugly 3+1, then 2×2, then a single column. */
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } }
.tile {
  background: var(--tile); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; text-align: left;
  transition: transform .15s, border-color .15s;
}
.tile:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.2); }
.tile .ic {
  font-size: 22px; color: var(--accent-2); margin-bottom: 14px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tile h3 { font-size: 18px; margin-bottom: 9px; letter-spacing: -.01em; }
.tile p { color: var(--txt-dim); font-size: 14.5px; }
/* inline code inside paragraphs (distinct from the block install commands) */
.tile p code {
  display: inline; margin: 0; padding: 1px 6px; white-space: nowrap;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  border-radius: 6px; font-size: .88em; color: var(--accent-2);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
}

/* ---- Release notes ---- */
.release {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px;
  text-align: left;
}
.rel-block {
  background: var(--tile); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.rel-block h3 { font-size: 16px; margin-bottom: 14px; color: var(--accent-2); }
.rel-block ul { list-style: none; display: grid; gap: 10px; }
.rel-block li { color: var(--txt-dim); font-size: 14.5px; padding-left: 18px; position: relative; }
.rel-block li::before { content: "›"; position: absolute; left: 0; color: var(--accent-2); }
.rel-block li code {
  display: inline; padding: 1px 6px; background: rgba(255,255,255,.06);
  border: 1px solid var(--line); border-radius: 6px; font-size: .88em; color: var(--accent-2);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
}
@media (max-width: 720px) { .release { grid-template-columns: 1fr; } }

/* ---- Showcase shots ---- */
.shot { margin: 52px auto 0; max-width: 880px; }
.shot.wide { max-width: 1080px; }
.shot img {
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.ticks {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin: 40px auto 0; text-align: left; width: fit-content; align-items: flex-start;
}
.ticks li { color: var(--txt-dim); font-size: 16px; padding-left: 28px; position: relative; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 700;
}

/* ---- Tools ---- */
.tile code {
  display: block; margin-top: 16px; padding: 10px 13px;
  background: #15191f; border: 1px solid rgba(148, 163, 184, .32);
  border-radius: 10px; font-size: 12.5px; color: var(--accent-2);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  overflow-x: auto; white-space: nowrap;
}
.tile-link { display: block; color: inherit; }
.tile-link h3 { color: var(--txt); }
.note { color: var(--txt-faint); font-size: 14px; margin-top: 30px; }

/* tools row (fd · ripgrep · 알한글) — align the install rows at the bottom */
.tools-grid { grid-template-columns: repeat(3, 1fr); }
.tools-grid .tile { display: flex; flex-direction: column; }
.tools-grid .cmd { margin-top: auto; }

/* One-shot install command */
.install-all { max-width: 840px; margin: 40px auto 0; }
.install-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--txt-faint);
  margin-bottom: 10px; text-align: left;
}
.install-row { position: relative; cursor: pointer; }
.install-row code {
  display: block; text-align: left; padding: 14px 48px 14px 16px;
  background: #15191f; border: 1px solid rgba(148, 163, 184, .32); border-radius: 12px;
  color: var(--accent-2); font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 13.5px; overflow-x: auto; white-space: nowrap;
}
/* Copy = a slate icon in the corner of the command box; the whole cell copies. */
.copy-btn {
  position: absolute; top: 50%; right: 8px; z-index: 2;
  transform: translateY(-50%); /* single-line: vertically centred on the text */
  padding: 7px; border-radius: 8px; border: none; background: transparent;
  color: #8b95a5; /* slate */
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color .15s, background .15s, transform .1s;
}
.copy-btn svg { display: block; }
.cmd:hover .copy-btn { color: #c3cbd6; background: rgba(255,255,255,.07); }
.copy-btn:active { transform: translateY(calc(-50% + 1px)); }
.copy-btn.copied { color: #30d158; background: transparent; }
/* Multi-line command: keep the icon near the top, aligned to the first line. */
.cmd.multiline .copy-btn { top: 16px; transform: none; }
.cmd.multiline .copy-btn:active { transform: translateY(1px); }

/* Command box — the whole cell is clickable to copy. */
.cmd { position: relative; margin-top: 16px; cursor: pointer; }
.cmd code {
  display: block; margin-top: 0; padding: 14px 48px 14px 16px;
  background: #11151b; border: 1px solid rgba(148, 163, 184, .26);
  border-radius: 12px;
  color: #c2c6cd;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 13.5px; overflow-x: auto;
}
.copy-btn.mini { padding: 6px; top: 6px; right: 6px; }

/* Install section — framed as a card (like the tool tiles) so the slate command
   boxes inside clearly pop against it. */
.install-box {
  max-width: 660px; margin: 44px auto 0; text-align: left;
  background: #1c2029; border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.install-box .cmd:first-of-type { margin-top: 0; }
.install-box .cmd code {
  white-space: pre; line-height: 1.7; padding: 18px 48px 18px 18px; overflow-x: auto;
}
.install-box .note { margin-top: 16px; color: var(--txt-dim); font-size: 13.5px; }
.install-box .note a { color: var(--accent); }
.install-box .note code {
  display: inline; padding: 1px 6px; white-space: nowrap; font-size: .9em;
}

/* Palette duo (empty state + live search) */
.duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px;
}
.duo.trio { grid-template-columns: repeat(3, 1fr); }
.duo.quad { grid-template-columns: repeat(2, 1fr); }
.duo-item { display: flex; flex-direction: column; gap: 14px; }
.duo-item img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.duo-item figcaption { color: var(--txt-dim); font-size: 14.5px; text-align: center; }
@media (max-width: 880px) { .duo, .duo.trio, .duo.quad { grid-template-columns: 1fr; } }

/* ---- Open source ---- */
.oss-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 9px;
}
.oss-name { font-weight: 600; font-size: 15px; }
.oss-lic {
  font-size: 11px; color: var(--accent-2); border: 1px solid var(--line);
  padding: 2px 9px; border-radius: 20px; white-space: nowrap;
}
a.tile:hover { border-color: var(--accent); }

/* ---- Shortcuts ---- */
.keys {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 36px;
  max-width: 940px; margin: 52px auto 0;
}
.key-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 4px; border-bottom: 1px solid var(--line); text-align: left;
}
.key-row .ks { display: inline-flex; gap: 5px; flex: 0 0 auto; }
.key-row .kd { color: var(--txt-dim); font-size: 14.5px; }
kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 27px; padding: 0 8px;
  border-radius: 7px; border: 1px solid var(--line);
  background: var(--tile); color: var(--txt);
  font-size: 12.5px; font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  box-shadow: 0 1px 0 rgba(0,0,0,.45);
}
@media (max-width: 880px) { .keys { grid-template-columns: 1fr; } }

/* ---- Closing CTA ---- */
.closing { max-width: 1080px; margin: 0 auto; padding: 110px 22px; text-align: center; }
.closing .cta { margin-top: 32px; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line); }
.footer .heart { color: #ff5ea8; }
.footer-inner {
  max-width: 1080px; margin: 0 auto; padding: 30px 22px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--txt-faint); font-size: 14px;
}
.footer-inner a:hover { color: var(--txt); }
.footer-links { display: flex; align-items: center; gap: 18px; }
.footer-icon { display: inline-flex; align-items: center; gap: 7px; color: var(--txt-dim); }
.footer-icon:hover { color: var(--txt); }
.footer-heart {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); color: var(--txt-dim);
  padding: 7px 15px; border-radius: 999px; font-weight: 600;
}
.footer-heart:hover { border-color: #ff5ea8; color: #ff8fc0; }

/* ---- Responsive ---- */
@media (max-width: 880px) {
  .hero { padding-top: 56px; }
  .hero h1 { font-size: 38px; white-space: normal; }
  .lead { font-size: 19px; }
  h2 { font-size: 32px; }
  .grid:not(.grid-4) { grid-template-columns: 1fr; }   /* grid-4 has its own breakpoints */
  .band-inner, .showcase { padding: 64px 22px; }
  /* Mobile nav keeps only the essentials: language switcher + sponsor */
  .nav-links a:not(:last-child):not(.nav-lang) { display: none; }
  /* Footer: stack vertically and let the links wrap, or the space-padding Korean
     "개인정보처리방침" gets squeezed into one char per line. */
  .footer-inner {
    flex-direction: column; align-items: flex-start; gap: 14px; text-align: left;
  }
  .footer-links { flex-wrap: wrap; gap: 10px 18px; }
  /* CTA buttons: stack full-width on phones so labels never wrap unevenly
     or overflow the row. */
  .closing .cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .closing .cta .btn { text-align: center; }
}

/* 1.0 version pill in the hero eyebrow */
.ver-pill {
  display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 12px;
  font-weight: 800; color: #fff; letter-spacing: 0; vertical-align: middle;
  background: linear-gradient(90deg, #2997ff, #7c5cff 60%, #ff5ea8);
}

/* ---- Vault flagship section ---- */
.vault-band {
  position: relative;
  background:
    radial-gradient(900px 380px at 50% -120px, rgba(124,92,255,.16), transparent 70%),
    radial-gradient(700px 320px at 80% 120%, rgba(41,151,255,.12), transparent 70%);
  border-block: 1px solid var(--line);
}
.vault-badge {
  display: inline-block; margin: 0 auto 18px; padding: 6px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: #fff;
  background: linear-gradient(90deg, #2997ff, #7c5cff 55%, #ff5ea8);
  box-shadow: 0 6px 20px rgba(124,92,255,.35);
}
.vault-band .centered, .vault-band .vault-badge { text-align: center; }
.vault-band { text-align: center; }
.vault-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1000px; margin: 52px auto 0; text-align: left;
}
.vault-step {
  background: var(--tile); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
}
.vault-num {
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 16px;
  background: linear-gradient(135deg, #2997ff, #7c5cff);
}
.vault-step h3 { font-size: 17px; margin-bottom: 10px; }
.vault-step p { color: var(--txt-dim); font-size: 14.5px; line-height: 1.6; }
.vault-band .ticks { margin-top: 30px; }
@media (max-width: 880px) { .vault-grid { grid-template-columns: 1fr; } }

/* ---- Download (.dmg) install ---- */
.dl-row {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; margin-top: 44px;
}
.dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 16px; color: #fff;
  background: linear-gradient(90deg, #2997ff, #7c5cff 60%, #ff5ea8);
  box-shadow: 0 10px 30px rgba(124,92,255,.32); transition: filter .15s, transform .12s;
}
.dl-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.dl-ic { font-size: 26px; line-height: 1; }
.dl-txt { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.dl-txt b { font-size: 17px; font-weight: 700; }
.dl-txt small { font-size: 12px; opacity: .8; }
.dl-alt { color: var(--txt-dim); font-size: 14px; font-weight: 600; }
.dl-alt:hover { color: var(--txt); }
.install-more {
  max-width: 660px; margin: 28px auto 0; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--tile); overflow: hidden;
}
.install-more > summary {
  cursor: pointer; padding: 16px 22px; font-size: 14.5px; font-weight: 600;
  color: var(--txt-dim); list-style: none;
}
.install-more > summary::-webkit-details-marker { display: none; }
.install-more > summary::before { content: "▸ "; color: var(--txt-faint); }
.install-more[open] > summary::before { content: "▾ "; }
.install-more > summary:hover { color: var(--txt); }
.install-more .install-box { margin: 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; }

/* Hero install CTA */
.hero-cta {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-top: 30px; flex-wrap: wrap;
}
.hero-dl {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 12px; color: #fff;
  font-weight: 700; font-size: 15px;
  background: linear-gradient(90deg, #2997ff, #7c5cff 60%, #ff5ea8);
  box-shadow: 0 8px 24px rgba(124,92,255,.3); transition: filter .15s, transform .12s;
}
.hero-dl:hover { filter: brightness(1.07); transform: translateY(-1px); }
.hero-dl .dl-ic { font-size: 18px; }
.hero-dl.is-soon { filter: grayscale(.35) brightness(.92); }
.hero-hint { margin-top: 12px; font-size: 13.5px; color: var(--txt-faint); }
.hero-hint a { color: var(--txt-dim); text-decoration: underline; text-underline-offset: 2px; }
.hero-hint a:hover { color: var(--txt); }
.hero-specs {
  margin-top: 18px; font-size: 14px; color: var(--txt-faint);
  letter-spacing: .01em;
}
.hero-specs strong {
  color: var(--txt); font-weight: 700;
  background: linear-gradient(90deg, #2997ff, #7c5cff 60%, #ff5ea8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-btn {
  padding: 12px 22px; border-radius: 12px; font-weight: 600;
  border: 1px solid var(--line); color: var(--txt-dim); background: var(--tile);
}
.hero-btn:hover { color: var(--txt); border-color: var(--txt-faint); }

/* Korean sub-headline under the English hero */
.hero-ko {
  margin-top: 14px; font-size: 24px; font-weight: 650; letter-spacing: -.01em;
  color: var(--txt-dim);
}
@media (max-width: 880px) { .hero-ko { font-size: 19px; } }

/* ---- Performance table ---- */
.perf-wrap {
  max-width: 880px; margin: 44px auto 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.perf-table {
  width: 100%; border-collapse: collapse; font-size: 14.5px;
}
.perf-table th, .perf-table td {
  text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line);
  color: var(--txt-dim); vertical-align: top;
}
.perf-table th {
  color: var(--txt-faint); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .07em;
}
.perf-table .num { color: var(--txt); font-weight: 650; white-space: nowrap; }
.perf-caption {
  max-width: 880px; margin: 0 auto 48px; color: var(--txt-faint);
  font-size: 12.5px; text-align: center; padding: 0 8px;
}
.perf-caption a { color: var(--accent); }
@media (max-width: 720px) {
  .perf-table { font-size: 13px; }
  .perf-table th, .perf-table td { padding: 9px 8px; }
  /* Drop the notes column on phones — item + number must never overflow. */
  .perf-table th:nth-child(3), .perf-table td:nth-child(3) { display: none; }
}

.closing .sub a { color: var(--accent); }
.closing .sub a:hover { text-decoration: underline; }
