/* ══════════════════════════════════════════════════════════════
   KARA.EXE — stylesheet
   Y2K desktop chrome, modern readable body copy.
   ══════════════════════════════════════════════════════════════ */

:root {
  --blue:      #bfe0ff;
  --blue-deep: #6ea8e8;
  --lav:       #dcd0ff;
  --lav-deep:  #9b86e8;
  --pink:      #ffd4e7;
  --pink-deep: #f58fc0;
  --yellow:    #fff2c2;
  --mint:      #c9f2e2;

  --chrome:    #edecf3;
  --chrome-hi: #ffffff;
  --chrome-lo: #a9a6bb;
  --chrome-dk: #6f6b85;

  --ink:       #191725;
  --ink-soft:  #4c4860;
  --line:      #17161f;

  --shadow: 4px 4px 0 rgba(23,22,31,.85);
  --shadow-sm: 2px 2px 0 rgba(23,22,31,.85);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ui:   Tahoma, "MS Sans Serif", Geneva, Verdana, sans-serif;
  --mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;

  --bar-h: 46px;
}

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

/* Scrolling is driven from app.js, not by CSS: the native smooth-scroll
   animation stalls on this page and swallowed every anchor jump. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  background-color: #cfe4fb;
  background-image:
    radial-gradient(ellipse 60% 45% at 12% 0%,   rgba(255,212,231,.85), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 8%,   rgba(220,208,255,.9),  transparent 62%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(255,242,194,.85), transparent 60%),
    linear-gradient(180deg, #dff0ff 0%, #e8e2ff 48%, #ffeaf4 100%);
  -webkit-font-smoothing: antialiased;
}

body { position: relative; }
/* faint pixel grid over everything */
body::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 28px 28px;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(1140px, 100% - 32px); margin-inline: auto; position: relative; z-index: 1; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── MENU BAR ───────────────────────────────────────────────── */
.menubar {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, var(--chrome-hi), var(--chrome) 55%, #dedbe8);
  border-bottom: 2px solid var(--line);
  box-shadow: 0 3px 0 rgba(23,22,31,.18);
}
.menubar__in {
  width: min(1140px, 100% - 32px); margin-inline: auto;
  height: var(--bar-h); display: flex; align-items: center; gap: 14px;
}
.menubar__logo {
  font-family: var(--ui); font-weight: 700; font-size: 13px; letter-spacing: .5px;
  display: flex; align-items: center; gap: 7px; text-decoration: none; flex: none;
}
.menubar__logo .chip {
  width: 20px; height: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border: 1.5px solid var(--line); padding: 2px; background: #fff;
}
.menubar__logo .chip i { display: block; }
.menubar__logo .chip i:nth-child(1) { background: var(--pink-deep); }
.menubar__logo .chip i:nth-child(2) { background: var(--blue-deep); }
.menubar__logo .chip i:nth-child(3) { background: var(--lav-deep); }
.menubar__logo .chip i:nth-child(4) { background: #f2c832; }

.menubar nav {
  margin-left: auto; display: flex; gap: 2px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.menubar nav::-webkit-scrollbar { display: none; }
.menubar nav a {
  font-family: var(--ui); font-size: 12px; text-decoration: none; white-space: nowrap;
  padding: 6px 11px; border: 1.5px solid transparent; border-radius: 2px; color: var(--ink);
}
.menubar nav a:hover { background: #fff; border-color: var(--line); }
.menubar nav a.is-active { background: var(--lav); border-color: var(--line); font-weight: 700; }
.menubar nav a.hire { background: var(--yellow); border-color: var(--line); font-weight: 700; }
.menubar nav a.hire:hover { background: #ffe694; }

/* ── WINDOW CHROME ──────────────────────────────────────────── */
.win {
  background: var(--chrome);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 4px;
  overflow: hidden;
}
.win + .win { margin-top: 26px; }

.win__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  background: linear-gradient(180deg, var(--lav-deep), #7a63d6);
  border-bottom: 2px solid var(--line);
  color: #fff;
}
.win--blue  .win__bar { background: linear-gradient(180deg, #7cb6ef, #4a86d0); }
.win--pink  .win__bar { background: linear-gradient(180deg, #f79ec8, #e06fa8); }
.win--mint  .win__bar { background: linear-gradient(180deg, #7fd9ba, #46b795); }
.win--sun   .win__bar { background: linear-gradient(180deg, #f5cd5b, #dfa92c); }

.win__title {
  font-family: var(--ui); font-weight: 700; font-size: 12.5px; letter-spacing: .3px;
  text-shadow: 1px 1px 0 rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 7px; min-width: 0;
}
.win__title span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.win__dots { margin-left: auto; display: flex; gap: 4px; flex: none; }
.win__dots i {
  width: 16px; height: 14px; border: 1.5px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--chrome-lo));
  display: grid; place-items: center; font: 700 9px/1 var(--ui); color: var(--line);
}
.win__body { padding: 22px; }

/* ── SECTION HEADS ──────────────────────────────────────────── */
section { padding: 34px 0; scroll-margin-top: calc(var(--bar-h) + 12px); }
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.lede { color: var(--ink-soft); max-width: 62ch; }
h2.big {
  font-family: var(--ui); font-size: clamp(22px, 3.6vw, 32px); line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 8px;
}
h3 { font-family: var(--ui); font-size: 16px; letter-spacing: -.2px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui); font-weight: 700; font-size: 13px; letter-spacing: .4px;
  padding: 12px 20px; text-decoration: none; cursor: pointer;
  border: 2px solid var(--line); border-radius: 3px;
  background: linear-gradient(180deg, #fff, var(--chrome) 60%, #dcd9e6);
  box-shadow: var(--shadow-sm);
  transition: transform .1s ease, box-shadow .1s ease, filter .1s ease;
}
.btn:hover { filter: brightness(1.04); transform: translate(-1px,-1px); box-shadow: 3px 3px 0 rgba(23,22,31,.85); }
.btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 rgba(0,0,0,0); }
.btn--pri { background: linear-gradient(180deg, #ffe9f3, var(--pink) 55%, #f9b7d6); }
.btn--sec { background: linear-gradient(180deg, #eaf5ff, var(--blue) 55%, #97c7f2); }
.btn--sun { background: linear-gradient(180deg, #fffae0, var(--yellow) 55%, #ffdf85); }
.btn:focus-visible { outline: 3px solid #2b6fd6; outline-offset: 2px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { padding-top: 30px; }
.hero__grid { display: grid; grid-template-columns: 1fr 268px; gap: 24px; align-items: start; }
.hero__name {
  font-family: var(--ui); font-weight: 700;
  font-size: clamp(42px, 9vw, 92px); line-height: .92; letter-spacing: -2px;
  background: linear-gradient(180deg, #2c2544 0%, #5b4bb0 70%, #8f6fd6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
}
.hero__name::after {
  content: "_"; -webkit-text-fill-color: var(--lav-deep); color: var(--lav-deep);
  animation: caret 1.05s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.hero__role {
  font-family: var(--ui); font-size: clamp(15px, 2.3vw, 20px); font-weight: 700;
  margin-top: 10px; letter-spacing: -.2px;
}
.hero__tag { font-size: clamp(16px, 2.1vw, 20px); margin-top: 12px; max-width: 30ch; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.statusbar {
  margin-top: 22px; padding: 9px 12px;
  border: 2px solid var(--line); border-radius: 3px; background: #fff;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.led {
  width: 9px; height: 9px; border-radius: 50%; background: #35d07f; flex: none;
  box-shadow: 0 0 0 2px rgba(53,208,127,.3); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(53,208,127,0); } }
.statusbar .sep { color: var(--chrome-lo); }

/* desktop shortcut icons */
.shortcuts { display: grid; gap: 10px; }
.shortcut {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  padding: 11px 13px; background: rgba(255,255,255,.72);
  border: 2px solid var(--line); border-radius: 3px; box-shadow: var(--shadow-sm);
  transition: transform .1s ease, background .1s ease;
}
.shortcut:hover { background: #fff; transform: translate(-1px,-1px); }
.shortcut .ico { font-size: 22px; line-height: 1; filter: drop-shadow(1.5px 1.5px 0 rgba(23,22,31,.3)); }
.shortcut .nm { font-family: var(--ui); font-size: 12.5px; font-weight: 700; }
.shortcut .ds { font-family: var(--mono); font-size: 10.5px; color: var(--ink-soft); }

/* ── VIDEO GRID ─────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.filter {
  font-family: var(--ui); font-size: 12px; padding: 6px 12px; cursor: pointer;
  border: 2px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink);
  transition: background .1s ease;
}
.filter:hover { background: var(--blue); }
.filter[aria-pressed="true"] { background: var(--lav-deep); color: #fff; font-weight: 700; }

.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vcard {
  background: #fff; border: 2px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .12s ease, box-shadow .12s ease;
}
.vcard:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(23,22,31,.85); }
.vcard__bar {
  display: flex; align-items: center; gap: 6px; padding: 5px 7px;
  background: linear-gradient(180deg, #cfe4fb, #a8cbf0);
  border-bottom: 2px solid var(--line);
  font-family: var(--ui); font-size: 11px; font-weight: 700;
}
.vcard__bar .nm { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vcard__bar .dots { margin-left: auto; display: flex; gap: 3px; flex: none; }
.vcard__bar .dots i { width: 12px; height: 11px; border: 1.5px solid var(--line); background: var(--chrome); }



.vcard__meta { padding: 11px 12px 13px; display: grid; gap: 7px; }
.vcard__note { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .3px;
  padding: 3px 8px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--blue);
}
.chip--stat  { background: var(--yellow); font-weight: 700; }
.chip--brand { background: var(--mint); }

/* ── RECEIPTS ───────────────────────────────────────────────── */
.sysinfo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  border: 2px solid var(--line); background: var(--line); }
.sysinfo__cell { background: #fff; padding: 18px 16px; display: grid; gap: 3px;
}
.sysinfo__cell:nth-child(3n+1) { background: #fffdf4; }
.sysinfo__cell:nth-child(3n+2) { background: #f7fbff; }
.sysinfo__cell:nth-child(3n)   { background: #fdf7ff; }
.sysinfo__label {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--ink-soft);
}
.sysinfo__value {
  font-family: var(--ui); font-weight: 700; font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.05; letter-spacing: -1.5px;
}
.sysinfo__sub { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.footnote { margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }

/* ── SERVICES ───────────────────────────────────────────────── */
.folders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.folder {
  background: #fff; border: 2px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm); padding: 15px 16px; display: grid; gap: 6px;
  transition: transform .12s ease, background .12s ease;
}
.folder:hover { transform: translate(-2px,-2px); background: #fffdf6; }
.folder .ico {
  width: 38px; height: 38px; display: grid; place-items: center; font-size: 20px;
  border: 2px solid var(--line); border-radius: 3px;
  background: linear-gradient(180deg, var(--yellow), #ffe08a);
}
.folder:nth-child(3n+2) .ico { background: linear-gradient(180deg, #e6f2ff, var(--blue)); }
.folder:nth-child(3n)   .ico { background: linear-gradient(180deg, #f3ecff, var(--lav)); }
.folder p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ── BRANDS ─────────────────────────────────────────────────── */
.brandtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.brandtable th {
  text-align: left; font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 8px 12px; border-bottom: 2px solid var(--line); background: #fff;
}
.brandtable td { padding: 12px; border-bottom: 1px solid var(--chrome-lo); background: #fff; vertical-align: top; }
.brandtable tr:last-child td { border-bottom: 0; }
.brandtable .logo {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--ui); font-weight: 700;
}
.brandtable .logo b {
  width: 26px; height: 26px; display: grid; place-items: center; flex: none;
  border: 2px solid var(--line); border-radius: 3px; background: var(--lav); font-size: 12px;
}
.brandtable .res { color: #1d7a52; font-weight: 600; }
.tablewrap { overflow-x: auto; border: 2px solid var(--line); border-radius: 3px; }
.tablewrap table { min-width: 620px; }

/* ── WHY / ABOUT ────────────────────────────────────────────── */
.twoup { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel {
  background: #fff; border: 2px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm); padding: 18px 20px;
}
.panel h3 { margin-bottom: 8px; }
.panel p { color: var(--ink-soft); font-size: 15px; }
.checklist { list-style: none; display: grid; gap: 8px; margin-top: 12px; }
.checklist li { display: flex; gap: 9px; font-size: 14.5px; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: none; width: 19px; height: 19px; margin-top: 2px;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  border: 1.5px solid var(--line); border-radius: 3px; background: var(--mint);
}
.pullquote {
  font-family: var(--ui); font-size: clamp(17px, 2.4vw, 22px); line-height: 1.4;
  letter-spacing: -.3px; padding: 18px 20px; background: var(--yellow);
  border: 2px solid var(--line); border-radius: 3px; box-shadow: var(--shadow-sm);
}
.pullquote small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }

/* ── CONTACT ────────────────────────────────────────────────── */
.inbox { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; align-items: center; }
.inbox h2 { margin-bottom: 6px; }
.inbox .btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.card-lines { display: grid; gap: 9px; font-family: var(--mono); font-size: 13px; }
.card-lines div { display: flex; gap: 10px; padding-bottom: 8px; border-bottom: 1px dashed var(--chrome-lo); }
.card-lines b { color: var(--ink-soft); font-weight: 400; min-width: 74px; }
.card-lines a { text-decoration: none; border-bottom: 1.5px solid var(--lav-deep); }
.card-lines a:hover { background: var(--yellow); }

/* ── FOOTER TASKBAR ─────────────────────────────────────────── */
.taskbar {
  margin-top: 34px; border-top: 2px solid var(--line);
  background: linear-gradient(180deg, var(--chrome-hi), var(--chrome) 55%, #dad7e6);
  position: relative; z-index: 1;
}
.taskbar__in {
  width: min(1140px, 100% - 32px); margin-inline: auto;
  min-height: 44px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--ui); font-size: 11.5px; padding: 8px 0;
}
.taskbar .start {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700;
  padding: 5px 12px; border: 2px solid var(--line); border-radius: 3px;
  background: linear-gradient(180deg, #fff, var(--lav)); text-decoration: none;
}
.taskbar .clock {
  margin-left: auto; font-family: var(--mono); padding: 5px 11px;
  border: 2px solid var(--line); border-radius: 3px; background: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .shortcuts { grid-template-columns: repeat(2, 1fr); }
  .vgrid   { grid-template-columns: repeat(2, 1fr); }
  .sysinfo { grid-template-columns: repeat(2, 1fr); }
  .folders { grid-template-columns: repeat(2, 1fr); }
  .inbox   { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .wrap, .menubar__in, .taskbar__in { width: calc(100% - 20px); }
  section { padding: 24px 0; }
  .win__body { padding: 16px; }
  .win + .win { margin-top: 18px; }
  .hero__name { letter-spacing: -1px; }
  .shortcuts { grid-template-columns: 1fr 1fr; }
  .vgrid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .folders { grid-template-columns: 1fr; }
  .sysinfo { grid-template-columns: 1fr 1fr; }
  .twoup   { grid-template-columns: 1fr; }
  .menubar__logo .lbl { display: none; }
  .btn { padding: 11px 16px; font-size: 12.5px; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* ══ ADDITIONS ═══════════════════════════════════════════════ */

.hero__name .dotexe { -webkit-text-fill-color: var(--lav-deep); color: var(--lav-deep); }
.hero__side { display: grid; gap: 14px; }

/* ── HERO SYSTEM PERFORMANCE TILE ───────────────────────────── */
.bigstat {
  border: 2px solid var(--line); border-radius: 3px; background: #fff;
  box-shadow: var(--shadow); overflow: hidden;
}
.bigstat__bar {
  display: flex; align-items: center; gap: 7px; padding: 6px 9px;
  background: linear-gradient(180deg, #7cb6ef, #4a86d0); color: #fff;
  border-bottom: 2px solid var(--line);
  font-family: var(--ui); font-weight: 700; font-size: 11px; letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(0,0,0,.35);
}
.bigstat__body { padding: 14px 15px 15px; }
.bigstat__num {
  font-family: var(--ui); font-weight: 700; font-size: 46px; line-height: 1;
  letter-spacing: -2.5px;
}
.bigstat__unit { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.bigstat__list {
  list-style: none; margin-top: 12px; display: grid; gap: 5px;
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft);
}
.bigstat__list li::before { content: "› "; color: var(--lav-deep); font-weight: 700; }
.bigstat__foot {
  margin-top: 12px; padding-top: 9px; border-top: 1px dashed var(--chrome-lo);
  font-family: var(--mono); font-size: 11px; color: var(--ink-soft);
}
.bigstat__foot b { color: #1d7a52; }

/* ── TABS ───────────────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; margin: 20px 0 0; flex-wrap: wrap; }
.tab {
  font-family: var(--ui); font-size: 12.5px; font-weight: 700; cursor: pointer;
  padding: 9px 16px; border: 2px solid var(--line); border-bottom: 0;
  border-radius: 4px 4px 0 0; background: var(--chrome); color: var(--ink-soft);
  position: relative; top: 2px;
}
.tab:hover { background: #fff; }
.tab[aria-selected="true"] { background: #fff; color: var(--ink); top: 0; padding-bottom: 11px; }
.tab:focus-visible { outline: 3px solid #2b6fd6; outline-offset: 2px; }
.tabpanel {
  border: 2px solid var(--line); border-radius: 0 4px 4px 4px; background: #fff;
  padding: 16px;
}
.tabs--sm { margin-top: 22px; }
.tabs--sm .tab { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; padding: 8px 13px; }

.foldernote {
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
  padding: 8px 10px; background: var(--yellow); border: 1.5px solid var(--line);
  border-radius: 3px; margin-bottom: 14px;
}
.foldernote b { color: var(--ink); }

.emptynote {
  border: 2px dashed var(--chrome-dk); border-radius: 3px; background: #fbfaff;
  padding: 20px; display: grid; gap: 10px; justify-items: start;
  font-size: 14.5px; color: var(--ink-soft); max-width: 62ch;
}
.emptynote__title { font-family: var(--ui); font-weight: 700; font-size: 14px; color: var(--ink); }

/* ── VIDEO CARD EXTRAS ──────────────────────────────────────── */
.vcard__bar--ugc { background: linear-gradient(180deg, #ffe3f0, #f7b7d6); }
.viewtag {
  position: absolute; left: 8px; bottom: 8px; z-index: 2;
  font-family: var(--ui); font-weight: 700; font-size: 15px; letter-spacing: -.3px;
  padding: 4px 10px; background: var(--yellow); color: var(--ink);
  border: 2px solid var(--line); border-radius: 3px; box-shadow: var(--shadow-sm);
}
.vcard.is-playing .viewtag { opacity: 0; transition: opacity .15s ease; }
.chip--dim { background: var(--chrome); color: var(--ink-soft); }
.chip--org { background: var(--lav); font-weight: 700; }


/* ── RECEIPTS HEADLINE ──────────────────────────────────────── */
.headline { display: grid; grid-template-columns: minmax(180px, 250px) 1fr; gap: 22px; align-items: center; }
.headline__num {
  border: 2px solid var(--line); border-radius: 3px; background: var(--yellow);
  box-shadow: var(--shadow-sm); padding: 16px 18px; text-align: center;
}
.headline__big {
  display: block; font-family: var(--ui); font-weight: 700;
  font-size: clamp(40px, 7vw, 62px); line-height: 1; letter-spacing: -3px;
}
.headline__unit {
  display: block; font-family: var(--mono); font-size: 11.5px;
  color: var(--ink-soft); margin-top: 6px; letter-spacing: .5px;
}

/* ── SUBHEADS / LANES / TAGS / STEPS ────────────────────────── */
.subhead { margin: 26px 0 8px; font-size: 15px; }
.subhead::before { content: "// "; font-family: var(--mono); color: var(--lav-deep); }

.lanes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 12px; }
.lane {
  background: #fff; border: 2px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm); padding: 13px 14px;
}
.lane h3 { font-size: 13.5px; margin-bottom: 5px; }
.lane p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ui); font-size: 13px; font-weight: 700;
  padding: 8px 13px; background: #fff; border: 2px solid var(--line);
  border-radius: 3px; box-shadow: var(--shadow-sm);
  transition: transform .1s ease, background .1s ease;
}
.tag:hover { transform: translate(-1px,-1px); background: var(--yellow); }
.tag i { font-style: normal; font-size: 15px; }
.tags .tag:nth-child(3n+1):hover { background: var(--blue); }
.tags .tag:nth-child(3n+2):hover { background: var(--pink); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.step {
  background: #fff; border: 2px solid var(--line); border-radius: 3px;
  box-shadow: var(--shadow-sm); padding: 14px;
}
.step__n {
  display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 700;
  padding: 2px 7px; margin-bottom: 8px; background: var(--lav);
  border: 1.5px solid var(--line); border-radius: 3px;
}
.step h3 { font-size: 14px; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

/* ── DOCS / RATES ───────────────────────────────────────────── */
.docs { display: grid; grid-template-columns: 1fr 240px; gap: 22px; align-items: center; }
.docicons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.docicon {
  display: grid; justify-items: center; gap: 8px; text-align: center;
  font-family: var(--mono); font-size: 10.5px; color: var(--ink-soft);
  padding: 14px 8px; background: #fff; border: 2px solid var(--line);
  border-radius: 3px; box-shadow: var(--shadow-sm);
}
.docicon span { font-size: 30px; filter: drop-shadow(2px 2px 0 rgba(23,22,31,.28)); }
.ratespanel { margin-top: 22px; border-top: 2px dashed var(--chrome-lo); padding-top: 18px; }
.brandtable .price { font-family: var(--ui); font-weight: 700; font-size: 17px; white-space: nowrap; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────────── */
@media (max-width: 980px) {
  .lanes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .docs  { grid-template-columns: 1fr; }
  .docicons { max-width: 260px; }
  .headline { grid-template-columns: 1fr; }
  .headline__num { justify-self: start; min-width: 190px; }
}
@media (max-width: 620px) {
  .lanes, .steps { grid-template-columns: 1fr; }
  .tabpanel { padding: 12px; border-radius: 0 0 4px 4px; }
  .tab { padding: 8px 12px; font-size: 12px; }
  .bigstat__num { font-size: 38px; }
  .vgrid { grid-template-columns: 1fr; }
  .vcard__stage { aspect-ratio: 9 / 14; }
  .viewtag { font-size: 17px; }
  .docicons { grid-template-columns: 1fr 1fr; max-width: none; }
}



/* Instagram-embedded UGC cards */

.vcard__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tabpanel .vgrid--ugc { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }

@media (max-width: 620px) { .tabpanel .vgrid--ugc { grid-template-columns: 1fr; } }

/* rate tables live in half-width columns — don't force the 620px min-width */
.ratespanel .tablewrap table { min-width: 0; }
.ratespanel .tablewrap { overflow-x: visible; }

/* Mobile: get to the videos faster — the menu bar already covers the shortcuts,
   and the third CTA doesn't need to be a full-width slab. */
@media (max-width: 620px) {
  .shortcuts { display: none; }
  .hero__cta #kitBtn { flex: 0 1 auto; }
}

@media (max-width: 620px) {
  .tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .tab { text-align: center; padding: 9px 6px; }
  .tab[aria-selected="true"] { padding-bottom: 11px; }
}

/* display:grid/flex on a component beats the hidden attribute — don't let it */
[hidden] { display: none !important; }

/* ══ VIDEO CARD ANATOMY ══════════════════════════════════════
   .vcard__frame is the 9:16 box. The stage fills it, the view tag
   sits above the stage, and nothing overlaps the play control.
   ═══════════════════════════════════════════════════════════ */
.vcard__frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; }
.vcard--ugc .vcard__frame { aspect-ratio: 9 / 15; }

.vcard__stage {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; margin: 0; border: 0; display: block; overflow: hidden;
  background: #14131c; font: inherit; color: inherit;
}
button.vcard__stage { cursor: pointer; }
.vcard__poster, .vcard__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vcard__poster { z-index: 1; background: #14131c; }
.vcard__video  { z-index: 2; opacity: 0; }
.vcard.is-playing .vcard__video  { opacity: 1; }
.vcard.is-playing .vcard__poster { opacity: 0; }

.play {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(20,19,28,.06), rgba(20,19,28,.42));
  transition: opacity .15s ease;
}
.play i {
  width: 56px; height: 56px; border-radius: 50%; display: block; position: relative;
  background: rgba(255,255,255,.95); border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
/* pixel-ish play triangle, drawn rather than typed */
.play i::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-38%, -50%);
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--line);
}
.vcard.is-playing .play { opacity: 0; pointer-events: none; }
button.vcard__stage:hover .play { background: linear-gradient(180deg, rgba(20,19,28,.02), rgba(20,19,28,.3)); }
button.vcard__stage:hover .play i { transform: scale(1.06); }

/* No file yet. A finished-looking slot, with no instructions in it. */
.reserved {
  position: absolute; inset: 0; z-index: 5;
  display: none; place-content: center; justify-items: center; gap: 14px;
  padding: 18px; text-align: center;
  background: repeating-linear-gradient(45deg, #262233 0 14px, #1d1a28 14px 28px);
}
.vcard.is-unavailable .reserved { display: grid; }
.vcard.is-unavailable .play { display: none; }
.vcard.is-unavailable .vcard__stage { cursor: default; }
.vcard__stage--reserved {
  display: grid; place-content: center; justify-items: center; gap: 14px;
  padding: 18px; text-align: center; text-decoration: none;
  background: repeating-linear-gradient(45deg, #262233 0 14px, #1d1a28 14px 28px);
}
.reserved .reel, .vcard__stage--reserved .reel {
  display: grid; grid-template-columns: repeat(3, 12px); gap: 6px;
  padding: 9px; border: 2px solid #6f6a92; border-radius: 4px;
}
.reel i { width: 12px; height: 12px; background: #6f6a92; border-radius: 2px; }
.reserved__line {
  display: block; font-family: var(--mono); font-size: 11.5px; color: #cfc7ee; line-height: 1.5;
}
.vcard__stage--reserved:hover .reserved__line { color: #fff; }
.reserved__line a { color: #fff; border-bottom: 1.5px solid var(--lav-deep); text-decoration: none; }
.reserved__line a:hover { background: var(--lav-deep); }
.vcard.is-unavailable .vcard__poster,
.vcard.is-unavailable .vcard__video { display: none; }
.vcard.is-unavailable .vcard__stage { background: repeating-linear-gradient(45deg, #262233 0 14px, #1d1a28 14px 28px); }

.vcard__glyph {
  width: 13px; height: 11px; flex: none; border: 1.5px solid var(--line);
  background: repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 4px);
  background-clip: content-box; padding: 2px 0;
}

/* ══ UGC PITCH TILE ═════════════════════════════════════════ */
.vcard--pitch { background: linear-gradient(180deg, #fff, #fdf6ff); }
.pitch { padding: 18px 17px 20px; display: grid; gap: 9px; align-content: start; }
.pitch__kicker {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 2px;
  padding: 3px 9px; justify-self: start; background: var(--yellow);
  border: 1.5px solid var(--line); border-radius: 999px;
}
.pitch h3 { font-size: 17px; }
.pitch__body { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.pitch__list { list-style: none; display: grid; gap: 7px; margin-top: 2px; }
.pitch__list li {
  font-size: 13px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start;
}
.pitch__list li::before {
  content: ""; flex: none; width: 9px; height: 9px; margin-top: 6px;
  background: var(--lav-deep); border: 1.5px solid var(--line);
}
.pitch .btn { justify-self: start; margin-top: 6px; }

/* ══ FOCUS ══════════════════════════════════════════════════
   One thick offset ring everywhere, in the page's own ink.
   ═══════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--line);
  outline-offset: 3px;
  border-radius: 2px;
}
.menubar nav a:focus-visible { outline-offset: 1px; }
button.vcard__stage:focus-visible { outline-offset: -5px; outline-color: #fff; }
.vcard__stage--embed { background: #fff; }
.viewtag { z-index: 4; }

/* Hire me sits outside the scrolling nav strip so it is never scrolled
   off screen on a narrow viewport. */
.menubar .hire {
  flex: none; font-family: var(--ui); font-size: 12px; font-weight: 700;
  text-decoration: none; white-space: nowrap; color: var(--ink);
  padding: 6px 11px; border: 1.5px solid var(--line); border-radius: 2px;
  background: var(--yellow); margin-left: 4px;
}
.menubar .hire:hover { background: #ffe694; }
.menubar .hire.is-active { background: #ffe694; }

/* Fallback behind an Instagram embed, covered once the embed paints. */
.embedfall {
  position: absolute; inset: 0; z-index: 0; display: grid;
  place-content: center; justify-items: center; gap: 14px; padding: 18px;
  text-align: center; text-decoration: none;
  background: repeating-linear-gradient(45deg, #262233 0 14px, #1d1a28 14px 28px);
}
.vcard__embed { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; border: 0; background: #fff; }
