/* escort.zone — hi-fi mock site
   palette: rose · fonts: Permanent Marker + Caveat · tone: bold */

:root {
  --accent:    #c2185b;
  --accent-2:  #8e0e43;
  --ink:       #1f1015;
  --ink-2:     #4a2c37;
  --paper:     #fbf3f5;
  --paper-2:   #f2e6ea;
  --paper-3:   #e6d3da;
  --highlight: #ffd1dc;
  --soft:      #f4cbd8;
  --line:      #d8b8c4;
  --green:     #2f7a4a;
  --amber:     #d49a2e;
  --red:       #c0392b;

  --hand-bold: 'Permanent Marker', 'Impact', cursive;
  --hand:      'Caveat', cursive;
  --sans:      'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--hand);
  font-size: 18px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ----- typography ----- */
.display { font-family: var(--hand-bold); letter-spacing: 0.5px; line-height: 1; }
.hand { font-family: var(--hand); }
.sans { font-family: var(--sans); }
.tiny { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.muted { color: var(--ink-2); opacity: 0.75; }
.lead { font-size: 22px; line-height: 1.45; }
h1, h2, h3 { margin: 0; font-family: var(--hand-bold); font-weight: 400; letter-spacing: 0.5px; }
h1 { font-size: 56px; line-height: 0.95; }
h2 { font-size: 36px; line-height: 1; }
h3 { font-size: 22px; }

/* ----- layout ----- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; width: 100%; }

/* ----- header ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 28px;
  max-width: 1280px; margin: 0 auto;
}
.logo {
  font-family: var(--hand-bold);
  font-size: 26px;
  color: var(--accent);
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.logo-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-3px);
}
.nav-links { display: flex; gap: 22px; align-items: center; flex: 1; font-size: 19px; }
.nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.lang-switch { display: inline-flex; border: 1.5px solid var(--ink); border-radius: 8px; overflow: hidden; background: var(--paper); }
.lang-switch button { padding: 6px 10px; font-family: var(--sans); font-size: 12px; font-weight: 600; border-right: 1.5px solid var(--ink); background: var(--paper); color: var(--ink); }
.lang-switch button:last-child { border-right: none; }
.lang-switch button.on { background: var(--ink); color: var(--paper); }
.lang-switch button:hover:not(.on) { background: var(--paper-2); }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--hand-bold);
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 11px 20px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  transition: transform .08s, box-shadow .08s;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--ink); }
.btn-ghost { background: transparent; box-shadow: none; border-color: transparent; }
.btn-ghost:hover { box-shadow: none; transform: none; color: var(--accent); }
.btn-sm { padding: 7px 14px; font-size: 14px; box-shadow: 2px 2px 0 var(--ink); }
.btn-sm:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn-outline { background: var(--paper); color: var(--ink); }

/* ----- hero ----- */
.hero {
  position: relative;
  background: var(--accent);
  color: #fff;
  padding: 70px 0 90px;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,209,220,0.18) 0, transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 84px; color: #fff; }
.hero h1 .scribble { color: var(--highlight); position: relative; display: inline-block; }
.hero h1 .scribble::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: -6px; height: 8px;
  background: var(--ink); transform: rotate(-1deg) skewX(-5deg);
  border-radius: 2px;
}
.hero p { font-size: 26px; max-width: 520px; margin: 24px 0 32px; line-height: 1.4; }
.hero-search {
  display: flex; gap: 0; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 8px; padding: 6px; box-shadow: 5px 5px 0 var(--ink);
  max-width: 580px;
}
.hero-search input, .hero-search select {
  font-family: var(--hand); font-size: 19px;
  background: transparent; border: none; padding: 12px 14px; color: var(--ink);
  outline: none; flex: 1; min-width: 0;
}
.hero-search select { flex: 0 0 130px; border-right: 2px dashed var(--line); }
.hero-search .btn-primary { border-radius: 6px; }

.hero-stats { display: flex; gap: 30px; margin-top: 32px; }
.hero-stat .num { font-family: var(--hand-bold); font-size: 38px; color: var(--highlight); }
.hero-stat .lbl { font-size: 16px; opacity: 0.85; font-family: var(--sans); }

.hero-art {
  position: relative; height: 420px;
}
.hero-card {
  position: absolute; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 10px; box-shadow: 6px 6px 0 var(--ink);
  padding: 14px; width: 220px;
  font-family: var(--hand); color: var(--ink);
}
.hero-card-img {
  background: var(--paper-3); height: 200px; border-radius: 6px;
  border: 1.5px dashed var(--line);
  position: relative; overflow: hidden; margin-bottom: 10px;
  background-image:
    repeating-linear-gradient(135deg, var(--paper-3) 0, var(--paper-3) 8px, var(--paper-2) 8px, var(--paper-2) 16px);
}
.hero-card-img .ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 11px; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.hero-card-name { font-family: var(--hand-bold); font-size: 19px; }
.hero-card-meta { font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.hero-card-1 { top: 10px; left: 30px; transform: rotate(-3deg); }
.hero-card-2 { top: 60px; right: 10px; transform: rotate(4deg); }
.hero-card-3 { bottom: 10px; left: 90px; transform: rotate(-1deg); }

/* badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}
.badge.verified { background: var(--green); color: #fff; border-color: var(--ink); }
.badge.id-verified { background: var(--accent); color: #fff; }
.badge.online { background: var(--green); color: #fff; }
.badge.online::before { content: "●"; color: #fff; font-size: 9px; }
.badge.new { background: var(--highlight); color: var(--ink); }
.badge.featured { background: var(--ink); color: var(--highlight); }

/* sections */
.section { padding: 70px 0; }
.section.alt { background: var(--paper-2); border-block: 2px solid var(--ink); }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 32px; gap: 20px; flex-wrap: wrap; }
.section-head h2 .underline { background: var(--highlight); padding: 0 6px; box-decoration-break: clone; }
.kicker { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }

/* browse layout */
.browse-grid { display: grid; grid-template-columns: 280px 1fr; gap: 36px; }
.filters {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 22px 20px; box-shadow: 4px 4px 0 var(--ink);
  align-self: start; position: sticky; top: 90px;
}
.filter-group { padding: 14px 0; border-bottom: 1.5px dashed var(--line); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-family: var(--hand-bold); font-size: 17px;
  margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  padding: 5px 10px; border: 1.5px solid var(--ink); border-radius: 999px;
  background: var(--paper); cursor: pointer; transition: all .1s;
}
.chip:hover { background: var(--soft); }
.chip.active { background: var(--accent); color: #fff; }
.range-row { display: flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; }
.range-row input { width: 70px; padding: 6px 8px; border: 1.5px solid var(--ink); border-radius: 4px; font: inherit; background: var(--paper); }
.checkbox-row { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; font-size: 16px; }
.checkbox-row .cbx {
  width: 18px; height: 18px; border: 2px solid var(--ink); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper); flex: none;
}
.checkbox-row.checked .cbx { background: var(--accent); }
.checkbox-row.checked .cbx::after { content: "✓"; color: #fff; font-family: var(--hand-bold); font-size: 14px; }

/* result toolbar */
.result-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; gap: 16px; flex-wrap: wrap;
}
.toolbar-left { display: flex; gap: 14px; align-items: baseline; }
.toolbar-left .count { font-family: var(--hand-bold); font-size: 24px; }
.toolbar-left .where { color: var(--ink-2); font-size: 18px; }
.view-toggle { display: inline-flex; border: 2px solid var(--ink); border-radius: 6px; overflow: hidden; }
.view-toggle button { padding: 6px 12px; font-family: var(--sans); font-size: 12px; font-weight: 600; background: var(--paper); }
.view-toggle button.active { background: var(--ink); color: var(--paper); }

/* profile cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  overflow: hidden; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  cursor: pointer; position: relative;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.card-img {
  aspect-ratio: 3 / 4; background: var(--paper-3); position: relative;
  background-image: repeating-linear-gradient(135deg, var(--paper-3) 0, var(--paper-3) 10px, var(--paper-2) 10px, var(--paper-2) 20px);
  border-bottom: 2px solid var(--ink);
}
.card-img .ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 11px; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.15em; text-align: center; padding: 0 12px;
}
.card-img .badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.card-img .price-tag {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--ink); color: var(--paper);
  font-family: var(--hand-bold); padding: 5px 12px; font-size: 16px;
  border-radius: 4px; transform: rotate(-2deg);
}
.card-body { padding: 14px 16px; }
.card-name { font-family: var(--hand-bold); font-size: 22px; display: flex; justify-content: space-between; align-items: baseline; }
.card-name .age { color: var(--ink-2); font-size: 16px; }
.card-meta { display: flex; gap: 8px; font-family: var(--sans); font-size: 12px; color: var(--ink-2); margin-top: 4px; flex-wrap: wrap; }
.card-meta span { display: inline-flex; align-items: center; gap: 3px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.card-tags .t {
  font-family: var(--sans); font-size: 11px; padding: 2px 7px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper-2);
}
.card-foot {
  border-top: 1px dashed var(--line);
  padding: 8px 16px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 12px; color: var(--ink-2);
}

/* featured strip */
.featured-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.featured-card { position: relative; }
.featured-card .featured-tag {
  position: absolute; top: -10px; left: -10px; z-index: 2;
  background: var(--ink); color: var(--highlight);
  font-family: var(--hand-bold); padding: 5px 12px; font-size: 13px;
  border-radius: 4px; transform: rotate(-4deg);
  letter-spacing: 0.5px;
}

/* footer */
.foot {
  background: var(--ink); color: var(--paper);
  padding: 50px 0 28px; margin-top: auto;
  border-top: 2px solid var(--ink);
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.foot h4 { font-family: var(--hand-bold); margin-bottom: 14px; font-size: 18px; color: var(--highlight); }
.foot ul li { padding: 4px 0; font-size: 16px; }
.foot ul li a:hover { color: var(--highlight); }
.foot-tag { font-family: var(--hand); color: var(--paper-3); margin-top: 8px; max-width: 360px; line-height: 1.5; }
.foot-bottom {
  border-top: 1px dashed var(--paper-3); padding-top: 18px;
  display: flex; justify-content: space-between; font-family: var(--sans); font-size: 12px; color: var(--paper-3);
  flex-wrap: wrap; gap: 10px;
}

/* trust strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  padding: 32px 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hand-bold); font-size: 22px;
  border: 2px solid var(--ink); flex: none;
}
.trust-item h4 { font-family: var(--hand-bold); font-size: 18px; margin-bottom: 2px; }
.trust-item p { font-size: 15px; margin: 0; color: var(--ink-2); }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--paper);
  padding: 56px 40px; border-radius: 12px;
  display: grid; grid-template-columns: 2fr 1fr; align-items: center; gap: 40px;
  border: 2px solid var(--ink); position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  border-radius: 50%; background: var(--accent); opacity: 0.18;
}
.cta-banner h2 { color: var(--paper); font-size: 44px; }
.cta-banner h2 .hl { color: var(--highlight); }
.cta-banner p { color: var(--paper-3); font-size: 19px; margin: 10px 0 0; max-width: 540px; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

/* profile detail */
.profile-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.profile-gallery { display: grid; grid-template-columns: 3fr 1fr; gap: 10px; }
.profile-gallery .main {
  aspect-ratio: 3/4; background: var(--paper-3); border-radius: 10px;
  border: 2px solid var(--ink); position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(135deg, var(--paper-3) 0, var(--paper-3) 12px, var(--paper-2) 12px, var(--paper-2) 24px);
}
.profile-gallery .thumb {
  aspect-ratio: 1; background: var(--paper-3); border-radius: 6px;
  border: 1.5px solid var(--ink); position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(135deg, var(--paper-3) 0, var(--paper-3) 8px, var(--paper-2) 8px, var(--paper-2) 16px);
}
.profile-gallery .thumb-col { display: flex; flex-direction: column; gap: 10px; }
.profile-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.profile-name { font-family: var(--hand-bold); font-size: 56px; line-height: 1; }
.profile-loc { font-family: var(--sans); color: var(--ink-2); font-size: 15px; margin-top: 4px; display: flex; gap: 14px; flex-wrap: wrap; }
.profile-bio { font-size: 19px; line-height: 1.55; margin-top: 18px; }
.profile-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.stat-card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 8px;
  padding: 12px 14px; box-shadow: 3px 3px 0 var(--ink);
}
.stat-card .lbl { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); }
.stat-card .val { font-family: var(--hand-bold); font-size: 22px; margin-top: 2px; }

.spec-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; margin-top: 18px; }
.spec-row .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 16px; }
.spec-row .lbl { color: var(--ink-2); font-family: var(--sans); font-size: 14px; }
.spec-row .val { font-family: var(--hand-bold); }

.contact-card {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 10px;
  padding: 22px; box-shadow: 4px 4px 0 var(--ink); margin-top: 22px;
}
.contact-card h3 { font-size: 24px; margin-bottom: 12px; }
.contact-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 17px; }
.contact-row:last-child { border-bottom: none; }

/* sign-up */
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.signup-card {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 12px;
  padding: 36px; box-shadow: 6px 6px 0 var(--ink);
}
.field { display: block; margin-bottom: 18px; }
.field label { display: block; font-family: var(--hand-bold); font-size: 17px; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--hand); font-size: 18px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 6px;
  padding: 11px 14px; outline: none;
  transition: box-shadow .1s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 3px 3px 0 var(--accent);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-help { font-family: var(--sans); font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.tier-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.tier {
  border: 2px solid var(--ink); border-radius: 8px; padding: 14px;
  background: var(--paper); cursor: pointer; transition: all .1s;
}
.tier.active { background: var(--accent); color: #fff; box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px, -2px); }
.tier h4 { font-family: var(--hand-bold); font-size: 18px; }
.tier .price { font-family: var(--hand-bold); font-size: 26px; margin-top: 4px; }
.tier ul { font-family: var(--sans); font-size: 12px; margin-top: 8px; line-height: 1.6; }
.tier ul li::before { content: "✓ "; }

/* dashboard */
.dash-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.side-nav {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 16px; box-shadow: 4px 4px 0 var(--ink);
  align-self: start; position: sticky; top: 90px;
}
.side-nav .item { display: flex; gap: 10px; padding: 10px 12px; border-radius: 6px; cursor: pointer; font-size: 17px; }
.side-nav .item:hover { background: var(--paper-2); }
.side-nav .item.active { background: var(--accent); color: #fff; font-family: var(--hand-bold); }
.side-nav .divider { height: 1px; background: var(--line); margin: 10px 4px; }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.kpi {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 18px; box-shadow: 4px 4px 0 var(--ink);
}
.kpi .lbl { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); }
.kpi .val { font-family: var(--hand-bold); font-size: 36px; margin-top: 6px; line-height: 1; }
.kpi .trend { font-family: var(--sans); font-size: 13px; margin-top: 4px; color: var(--green); font-weight: 600; }
.kpi .trend.down { color: var(--red); }

.panel {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 10px;
  padding: 22px; box-shadow: 4px 4px 0 var(--ink); margin-bottom: 22px;
}
.panel h3 { margin-bottom: 16px; }

.ad-row {
  display: grid; grid-template-columns: 70px 2fr 1fr 1fr 1fr 100px; gap: 14px;
  align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.ad-row .ad-thumb { width: 60px; height: 80px; border: 1.5px solid var(--ink); border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.ad-row .ad-thumb svg { width: 100%; height: 100%; display: block; }
.ad-row .ad-name { font-family: var(--hand-bold); font-size: 19px; }
.ad-row .ad-meta { font-family: var(--sans); font-size: 12px; color: var(--ink-2); }
.ad-row .stat-mini .v { font-family: var(--hand-bold); font-size: 20px; }
.ad-row .stat-mini .l { font-family: var(--sans); font-size: 11px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; }

/* chart placeholder */
.chart {
  height: 220px; border: 1.5px dashed var(--line); border-radius: 8px;
  position: relative; padding: 14px; background:
    repeating-linear-gradient(0deg, transparent 0, transparent 35px, var(--paper-2) 35px, var(--paper-2) 36px);
  display: flex; align-items: end; gap: 10px;
}
.chart .bar {
  flex: 1; background: var(--accent); border: 1.5px solid var(--ink);
  border-radius: 4px 4px 0 0; position: relative;
}
.chart .bar::after {
  content: attr(data-day); position: absolute; bottom: -22px; left: 0; right: 0;
  text-align: center; font-family: var(--sans); font-size: 11px; color: var(--ink-2);
}

/* misc */
.divider {
  height: 2px; background: var(--ink); margin: 0; border: none;
}
.scribble-line {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M2 4 Q 25 1 50 4 T 100 4 T 150 4 T 200 4' stroke='%231f1015' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x; height: 8px; background-size: 200px 8px;
}

/* responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 56px; }
  .browse-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
}
