@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* =========================================================
   OnlyModel — "Talent Index"
   Light porcelain · Bricolage display · mono data · cool auras
   ========================================================= */

:root {
  /* ground / surfaces */
  --paper:   #EBEEF2;   /* cool porcelain ground */
  --paper-2: #F5F7F9;
  --card:    #FFFFFF;
  --ink:     #141619;   /* near-black */
  --ink-2:   #3A414B;
  --ink-3:   #727B88;   /* muted */
  --line:    #E2E6EC;
  --line-2:  #EDF0F4;

  /* brand + accent (brand blue) */
  --blue:    #1EBFFF;
  --blue-2:  #12A6E0;   /* darker (hover) */
  --blue-3:  #8FE3FF;   /* light blue on dark */
  --blue-tint: #E3F7FF; /* soft blue fill */

  /* aura hues (blue family) */
  --aura-a: #6FD8FF;
  --aura-b: #9CE6FF;
  --aura-c: #4FC8FF;

  --r:    24px;
  --r-sm: 14px;
  --r-lg: 32px;
  --pill: 999px;

  /* soft, diffuse shadows */
  --sh-1: 0 1px 2px rgba(20,22,26,.04), 0 8px 24px -10px rgba(20,22,26,.10);
  --sh-2: 0 2px 6px rgba(20,22,26,.05), 0 18px 44px -14px rgba(20,22,26,.16);
  --sh-3: 0 30px 70px -24px rgba(20,22,26,.28);

  --maxw: 1180px;

  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body);
  color: var(--ink); background: var(--paper);
  line-height: 1.5; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--blue); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 8vw, 112px); position: relative; }
.section--tight { padding-block: clamp(32px, 5vw, 64px); }
.center { text-align: center; }

/* signature aura */
.aura { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .55; pointer-events: none; z-index: 0; }
.aura--a { background: radial-gradient(circle, var(--aura-a), transparent 68%); }
.aura--b { background: radial-gradient(circle, var(--aura-b), transparent 68%); }
.aura--c { background: radial-gradient(circle, var(--aura-c), transparent 68%); }

/* eyebrow (mono label) */
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow b { color: var(--ink); font-weight: 700; }
.eyebrow--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(30,191,255,.22); }

.display { font-size: clamp(30px, 4.6vw, 56px); letter-spacing: -0.035em; }
.h2 { font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -0.035em; }
.lead { font-size: clamp(15px, 1.35vw, 18px); color: var(--ink-2); max-width: 56ch; line-height: 1.55; }

.mono { font-family: var(--font-mono); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: var(--pill); padding: 13px 22px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  transition: transform .14s ease, background .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; box-shadow: 0 10px 26px -10px rgba(20,22,26,.7); transform: translateY(-1px); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-2); }
.btn--lime { background: var(--blue); color: #fff; }
.btn--lime:hover { background: var(--blue-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: #fff; border-color: #d3d9e2; box-shadow: var(--sh-1); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--sh-1); }
.btn--light:hover { box-shadow: var(--sh-2); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 28px; font-size: 15px; }

/* round icon button */
.iconbtn {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 0; flex: 0 0 auto; transition: background .2s, transform .14s;
}
.iconbtn:hover { background: #000; }
.iconbtn:active { transform: scale(.94); }
.iconbtn svg { width: 19px; height: 19px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(235,238,242,.72); backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.nav.scrolled { border-color: var(--line); background: rgba(235,238,242,.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; font-size: 20px; color: var(--ink); }
.brand__mark { width: 32px; height: 32px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 17px; position: relative; }
.brand__mark::after { content: ""; position: absolute; right: -2px; top: -2px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); border: 2px solid var(--paper); }
.brand__logo { width: 34px; height: 34px; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 8px 13px; border-radius: var(--pill); transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--ink); background: rgba(20,22,26,.05); }
.nav__links a[aria-current="page"] { color: var(--ink); background: #fff; box-shadow: var(--sh-1); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 22px 16px; box-shadow: var(--sh-2); display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 8px; }
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; }
.hero__block {
  position: relative; overflow: hidden; border-radius: var(--r-lg); color: #fff;
  min-height: clamp(500px, 66vh, 700px); display: flex; align-items: center;
  margin-top: 12px; box-shadow: var(--sh-2);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__block::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,13,16,.92) 0%, rgba(11,13,16,.66) 42%, rgba(11,13,16,.12) 80%, rgba(11,13,16,.35) 100%),
    linear-gradient(0deg, rgba(11,13,16,.6) 0%, rgba(11,13,16,0) 40%);
}
.hero__content { position: relative; z-index: 2; padding: clamp(28px, 4.6vw, 62px); max-width: 660px; }
.hero__eyebrow { margin-bottom: 18px; color: rgba(255,255,255,.7); }
.hero h1 { font-size: clamp(38px, 5.8vw, 74px); letter-spacing: -0.04em; font-weight: 700; line-height: 1.0; }
.hero h1 .hl { color: var(--blue-3); }
.hero__lead { margin: 20px 0 0; color: rgba(255,255,255,.82); max-width: 46ch; font-size: clamp(15px,1.4vw,18px); line-height: 1.55; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 24px; font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,.8); letter-spacing: -0.01em; }
.hero__stats > span { display: inline-flex; align-items: center; gap: 8px; }
.hero__stats > span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-3); }
.hero__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .hero__block { min-height: 580px; } }

/* verify chip (lime) */
.chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .02em; padding: 5px 10px; border-radius: var(--pill); }
.chip--verify { background: var(--blue); color: #fff; }
.chip--verify svg { width: 12px; height: 12px; }
.chip--ghost { background: rgba(20,22,26,.06); color: var(--ink-2); }
.chip--dark { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- filter bar ---------- */
.filterbar-wrap { position: relative; z-index: 5; }
.filterbar {
  background: #fff; border-radius: var(--r); box-shadow: var(--sh-2); border: 1px solid rgba(255,255,255,.7);
  padding: 10px; display: grid; grid-template-columns: repeat(3,1fr) auto; gap: 4px; margin-top: -34px;
}
.filterbar__field { display: flex; flex-direction: column; gap: 3px; padding: 11px 18px; border-radius: var(--r-sm); transition: background .15s; }
.filterbar__field + .filterbar__field { border-left: 1px solid var(--line-2); }
.filterbar__field:hover { background: var(--paper-2); }
.filterbar__field label { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.filterbar__field select { border: 0; background: transparent; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); padding: 2px 0; outline: none; cursor: pointer; -webkit-appearance: none; appearance: none; letter-spacing: -0.02em; }
.filterbar__submit { display: grid; place-items: center; padding: 4px; }
@media (max-width: 720px) {
  .filterbar { grid-template-columns: 1fr 1fr; }
  .filterbar__submit { grid-column: 1/-1; }
  .filterbar__submit .iconbtn { width: 100%; height: 50px; border-radius: var(--r-sm); }
  .filterbar__field + .filterbar__field { border-left: 0; }
}

/* ---------- section head ---------- */
.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }
.sechead__title { margin-top: 12px; }

/* ---------- model cards ---------- */
.grid-models { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 1040px){ .grid-models{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 760px) { .grid-models{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 440px) { .grid-models{ grid-template-columns: 1fr;} }

.card { display: block; background: var(--card); border-radius: var(--r); padding: 10px; box-shadow: var(--sh-1); border: 1px solid var(--line-2); transition: transform .18s ease, box-shadow .22s ease; position: relative; }
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.card__media { position: relative; aspect-ratio: 4/5; border-radius: 17px; overflow: hidden; background: var(--paper-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); color: var(--ink); font-family: var(--font-mono); font-size: 11px; font-weight: 500; padding: 5px 10px; border-radius: var(--pill); display: inline-flex; gap: 6px; align-items: center; box-shadow: var(--sh-1); }
.card__verified { position: absolute; top: 10px; right: 10px; z-index: 2; }
.card__body { padding: 14px 8px 8px; }
.card__country { display: none; }
.card__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.card__meta { margin-top: 8px; display: grid; gap: 5px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: -0.01em; }
.card__meta div { display: flex; justify-content: space-between; gap: 10px; }
.card__meta b { color: var(--ink-2); font-weight: 500; }
.card__foot { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.card__price { font-family: var(--font-mono); font-weight: 700; font-size: 16px; }
.card__go { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; transition: color .15s, gap .15s; }
.card:hover .card__go { color: var(--ink); gap: 9px; }
.card__go svg { width: 14px; height: 14px; }

/* ---------- band (CTA strips) ---------- */
.band { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--ink); color: #fff; border-radius: var(--r); padding: 22px 26px; }
.band__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.band__title { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.03em; margin-top: 6px; }
.band--surface { background: #fff; color: var(--ink); border: 1px solid var(--line-2); box-shadow: var(--sh-1); }
.band--surface .band__label { color: var(--ink-3); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; counter-reset: step; }
@media (max-width: 820px){ .steps{ grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px; box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: 16px; min-height: 210px; position: relative; overflow: hidden; }
.step__num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .1em; }
.step__ico { width: 46px; height: 46px; border-radius: 13px; background: var(--paper); display: grid; place-items: center; color: var(--ink); }
.step__ico svg { width: 22px; height: 22px; }
.step__title { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.03em; margin-top: auto; }
.step__text { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.step--accent { background: var(--ink); color: #fff; border-color: var(--ink); }
.step--accent .step__num { color: rgba(255,255,255,.55); }
.step--accent .step__ico { background: rgba(255,255,255,.1); color: #fff; }
.step--accent .step__text { color: rgba(255,255,255,.72); }
.step--accent::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(60px); opacity: .5; background: radial-gradient(circle, var(--aura-a), transparent 68%); bottom: -110px; right: -60px; }

/* ---------- testimonials / stat ---------- */
.testi { display: grid; grid-template-columns: .82fr 1.18fr; gap: 16px; }
@media (max-width: 860px){ .testi{ grid-template-columns: 1fr; } }
.statcard { position: relative; border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh-1); padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px; }
.statcard .aura--c { width: 320px; height: 320px; top: -90px; left: -60px; opacity: .7; }
.statcard .aura--b { width: 260px; height: 260px; bottom: -120px; right: -60px; opacity: .5; }
.statcard__inner { position: relative; z-index: 2; }
.statcard__num { font-family: var(--font-display); font-size: clamp(52px, 8vw, 76px); font-weight: 700; letter-spacing: -0.05em; line-height: .9; }
.statcard__label { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); margin-top: 10px; max-width: 26ch; letter-spacing: -0.01em; }
.quote { background: var(--ink); color: #fff; border-radius: var(--r); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; position: relative; overflow: hidden; }
.quote::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(70px); opacity: .28; background: radial-gradient(circle, var(--aura-a), transparent 68%); top: -120px; right: -80px; }
.quote__mark { font-family: var(--font-display); font-size: 60px; line-height: .6; color: var(--blue-3); position: relative; }
.quote p { font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; line-height: 1.35; letter-spacing: -0.02em; position: relative; }
.quote__author { position: relative; }
.quote__author strong { display: block; font-family: var(--font-body); font-size: 15px; font-weight: 600; }
.quote__author span { color: rgba(255,255,255,.6); font-size: 13px; }

/* ---------- footer ---------- */
.footcta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.footcta::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(90px); opacity: .3; background: radial-gradient(circle, var(--aura-b), transparent 66%); top: -220px; left: 30%; }
.footcta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 52px; flex-wrap: wrap; position: relative; z-index: 2; }
.footcta h2 { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 50px); font-weight: 700; letter-spacing: -0.04em; }
.footcta p { color: rgba(255,255,255,.6); font-family: var(--font-mono); font-size: 13px; margin-top: 12px; }

.footer { background: #0F1113; color: rgba(255,255,255,.55); padding-block: 54px 28px; }
.footer__top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 32px; }
@media (max-width: 820px){ .footer__top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__top{ grid-template-columns: 1fr; } }
.footer__brandcol .brand { color: #fff; margin-bottom: 14px; }
.footer__brandcol .brand__mark::after { border-color: #0F1113; }
.footer__brandcol p { font-size: 13.5px; max-width: 34ch; line-height: 1.6; }
.footer__apply { margin-top: 20px; }
.footer h4 { font-family: var(--font-mono); color: #fff; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 15px; font-weight: 500; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; transition: color .15s; }
.footer li a:hover { color: #fff; }
.footer__bar { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: -0.01em; }
.footer__age { display: inline-flex; align-items: center; gap: 8px; }
.tag18 { border: 1px solid rgba(255,255,255,.28); border-radius: 6px; padding: 1px 6px; font-weight: 700; color: #fff; font-size: 11px; }
.btn--ondark.btn--outline { color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ondark.btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- inner page header ---------- */
.pagehead { position: relative; overflow: hidden; background: var(--paper); padding-block: clamp(40px, 6vw, 76px) clamp(30px, 4vw, 44px); }
.pagehead .aura--a { width: 420px; height: 420px; top: -160px; right: -60px; opacity: .4; }
.pagehead .aura--c { width: 320px; height: 320px; top: -120px; left: -80px; opacity: .4; }
.pagehead__inner { position: relative; z-index: 2; }
.pagehead h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.04em; }
.pagehead p { color: var(--ink-2); margin-top: 14px; max-width: 56ch; font-size: 16px; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-bottom: 16px; letter-spacing: -0.01em; }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- toolbar (models) ---------- */
.toolbar { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 14px; display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; box-shadow: var(--sh-2); }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 130px; flex: 1; }
.field label { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.field select, .field input, .field textarea { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 13px; font-size: 14px; font-family: var(--font-body); color: var(--ink); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,191,255,.14); }
.field--check { flex-direction: row; align-items: center; gap: 9px; min-width: auto; flex: 0 0 auto; }
.field--check input { width: 18px; height: 18px; accent-color: var(--blue); }
.results-count { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); margin: 26px 0 18px; letter-spacing: -0.01em; }
.empty { text-align: center; padding: 64px 20px; color: var(--ink-3); }
.empty svg { width: 46px; height: 46px; color: var(--blue); margin-bottom: 12px; }

/* ---------- model detail ---------- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 920px){ .detail{ grid-template-columns: 1fr; gap: 28px; } }
.gallery__main { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; background: var(--paper-2); box-shadow: var(--sh-1); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 10px; }
.gallery__thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 11px; cursor: pointer; border: 2px solid transparent; transition: border-color .15s; }
.gallery__thumbs img.active { border-color: var(--ink); }
.detail__title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -0.04em; }
.detail__sub { font-family: var(--font-mono); color: var(--ink-3); margin: 8px 0 20px; font-size: 13px; letter-spacing: -0.01em; }
.attrs { border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; background: #fff; }
.attrs__row { display: grid; grid-template-columns: 42% 58%; padding: 13px 18px; font-size: 14px; }
.attrs__row:not(:last-child) { border-bottom: 1px solid var(--line-2); }
.attrs__row dt { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: -0.01em; align-self: center; }
.attrs__row dd { margin: 0; font-weight: 500; color: var(--ink); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--paper); color: var(--ink-2); font-family: var(--font-mono); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: var(--pill); }
.buybox { border: 1px solid var(--line-2); border-radius: var(--r); padding: 22px; margin-top: 18px; background: #fff; box-shadow: var(--sh-1); }
.buybox__price { display: flex; align-items: baseline; gap: 10px; }
.buybox__price strong { font-family: var(--font-mono); font-size: 36px; font-weight: 700; letter-spacing: -0.03em; }
.buybox__price span { color: var(--ink-3); font-family: var(--font-mono); font-size: 12px; }
.guarantee-badge { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); margin-top: 14px; letter-spacing: -0.01em; line-height: 1.5; }
.guarantee-badge svg { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; }

/* ---------- prose ---------- */
.prose { max-width: 700px; }
.prose h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin: 32px 0 12px; }
.prose p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.65; }
.prose ul.bullets { margin: 0 0 16px; }
.prose ul.bullets li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--ink-2); line-height: 1.55; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 6px; background: var(--blue); }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: clamp(20px, 3vw, 34px); box-shadow: var(--sh-1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px){ .form-grid{ grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1/-1; }
.checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
@media (max-width: 640px){ .checks{ grid-template-columns: 1fr; } }
.fieldset-title { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 14px 0 6px; }
.hint { font-size: 12px; color: var(--ink-3); }
.alert { border-radius: var(--r-sm); padding: 16px 18px; font-size: 14px; display: none; align-items: center; gap: 10px; }
.alert.show { display: flex; }
.alert--ok { background: var(--blue-tint); color: var(--blue-2); }
.alert--ok svg { flex: 0 0 auto; }

/* ---------- auth ---------- */
.auth { min-height: calc(100vh - 70px); display: grid; place-items: center; padding: 40px 20px; position: relative; overflow: hidden; }
.auth .aura--a { width: 460px; height: 460px; top: -120px; left: -80px; opacity: .4; }
.auth .aura--c { width: 380px; height: 380px; bottom: -140px; right: -60px; opacity: .4; }
.auth__card { position: relative; z-index: 2; width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-3); }
.auth__card h1 { font-family: var(--font-display); font-size: 27px; font-weight: 700; letter-spacing: -0.03em; margin-top: 18px; }
.auth__card .field { margin-top: 16px; }
.demo-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); background: var(--paper); border-radius: var(--r-sm); padding: 12px 14px; margin-top: 18px; line-height: 1.5; }

/* ---------- dashboard ---------- */
.dash { display: grid; grid-template-columns: 264px 1fr; gap: 26px; align-items: start; }
@media (max-width: 860px){ .dash{ grid-template-columns: 1fr; } }
.dash__side { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 20px; box-shadow: var(--sh-1); position: sticky; top: 88px; }
.dash__side .brand { margin-bottom: 16px; }
.dash__stat { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.dash__stat b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.dash__stat span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }
.dash__listings { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 1040px){ .dash__listings{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .dash__listings{ grid-template-columns: 1fr; } }
.uploader { border: 2px dashed var(--line); border-radius: var(--r-sm); padding: 24px; text-align: center; color: var(--ink-3); cursor: pointer; transition: border-color .15s, background .15s; }
.uploader:hover { border-color: var(--blue); background: var(--paper-2); }
.uploader input { display: none; }
.uploader__preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; justify-content: center; }
.uploader__preview img { width: 62px; height: 62px; object-fit: cover; border-radius: 10px; }

/* ---------- utilities ---------- */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.flex{display:flex}.between{justify-content:space-between}.aic{align-items:center}.gap-12{gap:12px}.gap-16{gap:16px}.wrap{flex-wrap:wrap}
.hide{display:none!important}
