/* =========================================================
   ServiceLink — design system v2
   Dark + bold + opaque. Brand-committed. Tinted neutrals.
   No glass. No Inter. No AI slop.
   ========================================================= */

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

:root {
  /* ---------- color, tinted toward brand blue ---------- */
  --brand:        #4A90E2;
  --brand-deep:   #2563EB;
  --brand-darker: #1E3A8A;
  --brand-soft:   #DBEAFE;
  --brand-glow:   rgba(74, 144, 226, 0.22);

  --accent:       #F59E0B;          /* warm orange, echoes the logo's left arc */
  --accent-deep:  #B45309;
  --accent-soft:  #FEF3C7;
  --moss:         #16A34A;          /* echoes the logo's right arc */

  --success:      #15803D;
  --error:        #B91C1C;
  --warn:         #B45309;

  /* never #FFF or #000 — tinted toward brand blue */
  --bg:           #F4F6FB;
  --surface:      #FFFFFE;
  --surface-2:    #ECEFF6;
  --surface-3:    #DDE3EE;

  --ink:          #0A1421;          /* deep, slightly cool, not pure black */
  --ink-2:        #1F2C40;
  --ink-3:        #455467;
  --ink-4:        #6B7A8E;
  --ink-5:        #94A3B8;

  --border:       #DCE2ED;
  --border-strong:#BDC7D6;
  --border-dark:  #1F2C40;

  /* ---------- type ---------- */
  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* ---------- radii ---------- */
  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* ---------- elevation, tinted ---------- */
  --shadow-sm: 0 1px 2px rgba(10, 20, 33, 0.05), 0 1px 1px rgba(10, 20, 33, 0.04);
  --shadow:    0 14px 32px -16px rgba(10, 20, 33, 0.22);
  --shadow-lg: 0 36px 80px -34px rgba(10, 20, 33, 0.34);

  /* ---------- motion ---------- */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms;
  --t-med:  280ms;
  --t-slow: 520ms;

  --container: 1560px;
  --gap: 18px;
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 450;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  min-height: 100dvh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 3px solid var(--brand-glow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------- typography ---------------- */
.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--inv { color: var(--brand-soft); }
.eyebrow--no-line::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(3rem, 6.6vw, 5.6rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  font-weight: 800;
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 800;
}
h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.018em;
  line-height: 1.15;
  font-weight: 700;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  font-weight: 700;
  line-height: 1.25;
}
p  {
  color: var(--ink-2);
  max-width: 65ch;
  font-weight: 450;
}
.lede {
  font-size: clamp(1.15rem, 1.5vw, 1.32rem);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 32ch;
  font-weight: 450;
}
small, .meta { font-size: 13px; color: var(--ink-3); font-weight: 500; }
strong { font-weight: 700; }

/* dark section overrides */
.dark, .dark p, .dark li {
  color: #E2E8F0;
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: #FFFFFE; }
.dark .eyebrow { color: var(--brand-soft); }

/* ---------------- layout helpers ---------------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 3vw, 2.75rem);
}
section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  position: relative;
}

/* drenched section variants */
.sec--dark {
  background: var(--ink);
  color: #E2E8F0;
}
.sec--dark h1, .sec--dark h2, .sec--dark h3, .sec--dark h4, .sec--dark strong { color: #FFFFFE; }
.sec--dark p { color: #94A3B8; }
.sec--dark .eyebrow { color: var(--brand-soft); }

.sec--brand {
  background: var(--brand-deep);
  color: #FFFFFE;
}
.sec--brand h1, .sec--brand h2, .sec--brand h3 { color: white; }
.sec--brand p { color: rgba(255, 255, 254, 0.82); }
.sec--brand .eyebrow { color: var(--brand-soft); }

.sec--surface { background: var(--surface); }
.sec--surface-2 { background: var(--surface-2); }

/* ---------------- announcement strip ---------------- */
.strip {
  background: var(--ink);
  color: #FFFFFE;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border-bottom: 1px solid var(--border-dark);
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.strip__inner::before, .strip__inner::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(255,255,254,0.3);
}
.strip strong { font-weight: 700; color: var(--brand-soft); margin-right: 4px; }
.strip a { color: var(--brand-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- nav (solid, not transparent) ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background-color var(--t-med);
}
.nav.is-scrolled {
  background: var(--surface);
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand img { width: 42px; height: 42px; }
.brand--lg img { width: 52px; height: 52px; }
.brand--lg { font-size: 1.65rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 16px;
  font-weight: 550;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--brand-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -8px 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out-quart);
}
.nav__links a:hover::after { transform: scaleX(1); }

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

@media (max-width: 920px) {
  .nav__links { display: none; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  font-family: var(--body);
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast) var(--ease-out-quart),
    box-shadow var(--t-med),
    border-color var(--t-fast);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--ink);
  color: #FFFFFE;
}
.btn--primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 18px 38px -16px var(--brand-glow);
}
.btn--brand {
  background: var(--brand-deep);
  color: white;
}
.btn--brand:hover {
  background: var(--brand-darker);
  box-shadow: 0 18px 38px -16px var(--brand-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  padding: 12px 18px;
  font-weight: 600;
}
.btn--ghost:hover { color: var(--ink); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #FFFFFE; }
.btn--lg { padding: 16px 28px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--white { background: #FFFFFE; color: var(--ink); }
.btn--white:hover { background: var(--surface-2); }
.btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: white; color: var(--ink); border-color: white; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--bg);
}
.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.hero__top h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--brand-deep);
}
.hero__rt {
  padding-top: clamp(0px, 4vw, 60px);
  position: relative;
}
.hero__rt p {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 36ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2.2rem;
}

/* an editorial "feature card" on the right side of the hero */
.hero__feature {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-dark);
}
.hero__feature__brand-mark {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand) 0%, transparent 60%);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero__feature > * { position: relative; z-index: 1; }
.hero__feature h3 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.hero__feature h3 strong {
  font-style: normal;
  font-weight: 700;
  color: white;
}
.hero__feature p { color: #94A3B8; margin-top: 18px; max-width: 42ch; font-size: 16px; }

.hero__live {
  background: #131F33;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__live__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.hero__live__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4ADE80;
}
.hero__live__pulse::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 1.6s var(--ease-out-quart) infinite;
}
@keyframes pulse {
  to { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
}
.hero__live__main {
  display: flex; align-items: center; gap: 14px;
}
.hero__live__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  flex-shrink: 0;
}
.hero__live__name { color: white; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.018em; line-height: 1.05; }
.hero__live__role { color: var(--ink-5); font-size: 13px; margin-top: 4px; font-weight: 500; }
.hero__live__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px dashed var(--border-dark);
  font-size: 13px;
  color: var(--ink-5);
  font-weight: 500;
}
.hero__live__row strong {
  color: white;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

@media (max-width: 980px) {
  .hero__top { grid-template-columns: 1fr; }
  .hero__rt { padding-top: 0; }
  .hero__feature { grid-template-columns: 1fr; }
}

/* hero proof bar */
.proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 2rem;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.proof small { color: var(--ink-3); font-size: 13.5px; }
.proof__row { display: flex; flex-direction: column; line-height: 1.1; }
.proof__row + .proof__row {
  padding-left: 22px;
  border-left: 1px solid var(--border);
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars span {
  display: block;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 3px solid var(--surface);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.avatars span + span { margin-left: -12px; }
.avatars span:nth-child(1) { background-image: url('https://i.pravatar.cc/120?img=33'); }
.avatars span:nth-child(2) { background-image: url('https://i.pravatar.cc/120?img=12'); }
.avatars span:nth-child(3) { background-image: url('https://i.pravatar.cc/120?img=47'); }
.avatars span:nth-child(4) { background-image: url('https://i.pravatar.cc/120?img=23'); }
.avatars span:nth-child(5) {
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--display);
}
.avatars span:nth-child(5)::before { content: '+8K'; }

/* ---------------- marquee strip ---------------- */
.marquee {
  background: var(--ink);
  color: #FFFFFE;
  padding: 28px 0;
  overflow: hidden;
  border-block: 1px solid var(--border-dark);
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-left 48s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.marquee__track span {
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee__track span::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}
@keyframes scroll-left {
  to { transform: translateX(-50%); }
}

/* ---------------- stats band ---------------- */
.stats {
  background: var(--surface);
}
.stats__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.stats__head h2 { letter-spacing: -0.04em; }
.stats__head p { font-size: 17px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.stat {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.6rem, 6.4vw, 5.8rem);
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat__num small {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--ink-3);
  font-family: var(--body);
  letter-spacing: 0;
}
.stat__label {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 550;
  max-width: 22ch;
  line-height: 1.4;
}
.stat--accent .stat__num { color: var(--brand-deep); }

@media (max-width: 920px) {
  .stats__head { grid-template-columns: 1fr; gap: 1.4rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ---------------- services (drenched dark) ---------------- */
.services {
  background: var(--ink);
  color: #FFFFFE;
}
.services h2 { color: white; }
.services p { color: #94A3B8; }
.services .section__head { color: #94A3B8; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.section__head h2 { max-width: 22ch; }
.section__head p { max-width: 36ch; font-size: 17px; }

.svc-list {
  border-top: 1px solid var(--border-dark);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.7fr) auto;
  gap: 2rem;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: center;
  transition: background var(--t-fast);
  cursor: pointer;
}
.svc-row:hover { background: rgba(74, 144, 226, 0.06); }
.svc-row__num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-5);
  letter-spacing: 0.04em;
}
.svc-row__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: white;
  letter-spacing: -0.025em;
  line-height: 1;
}
.svc-row__desc {
  color: #94A3B8;
  font-size: 15px;
  font-weight: 450;
  max-width: 50ch;
  line-height: 1.45;
}
.svc-row__price {
  font-family: var(--display);
  font-weight: 600;
  color: var(--brand-soft);
  font-size: 16px;
  letter-spacing: -0.005em;
}
.svc-row__price small {
  display: block;
  color: var(--ink-5);
  font-family: var(--body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-row__cta {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.svc-row:hover .svc-row__cta {
  background: var(--brand);
  color: white;
  transform: rotate(-25deg);
}

@media (max-width: 920px) {
  .svc-row {
    grid-template-columns: 60px 1fr auto;
    gap: 1.2rem;
    padding: 22px 0;
  }
  .svc-row__desc { display: none; }
  .svc-row__price { grid-column: 2; font-size: 14px; }
}

/* ---------------- how it works ---------------- */
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 2px solid var(--ink);
}
@media (max-width: 920px) { .how__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .how__grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: 0; padding-right: 0; }
.step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.step__num::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-deep);
  margin-bottom: 14px;
}
.step h3 { margin-top: 14px; font-size: 1.5rem; }
.step p { margin-top: 12px; font-size: 15.5px; line-height: 1.55; }
.step__detail {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step__detail svg { color: var(--brand-deep); }

/* ---------------- features (drenched dark hero + 4-up no-card row) ---------------- */
.feat {
  background: var(--ink);
  color: #E2E8F0;
}
.feat .section__head h2 { color: white; max-width: 18ch; }
.feat .section__head p  { color: #94A3B8; }

/* big editorial trust block */
.feat__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  margin-top: 3rem;
}
.feat__hero h3 {
  color: white;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
}
.feat__hero p {
  color: #94A3B8;
  font-size: 17px;
  max-width: 42ch;
  line-height: 1.55;
}
.feat__hero__nums {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}
.feat__hero__nums div { line-height: 1; }
.feat__hero__nums strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}
.feat__hero__nums small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .feat__hero { grid-template-columns: 1fr; }
}

/* the 4-up row of features — no cards, separated by vertical lines */
.feat__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feat__col {
  padding: 4rem clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat__col:first-child { padding-left: 0; }
.feat__col:last-child  { padding-right: 0; border-right: 0; }
.feat__col__metric {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.feat__col h4 {
  color: white;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.feat__col p {
  color: #94A3B8;
  font-size: 15px;
  line-height: 1.55;
  max-width: 30ch;
}

@media (max-width: 980px) {
  .feat__row { grid-template-columns: 1fr 1fr; }
  .feat__col { border-right: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); padding: 2.4rem 1.4rem; }
  .feat__col:nth-child(2n) { border-right: 0; padding-right: 0; }
  .feat__col:nth-child(2n+1) { padding-left: 0; }
  .feat__col:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .feat__row { grid-template-columns: 1fr; }
  .feat__col { border-right: 0; padding: 2rem 0; }
  .feat__col:not(:last-child) { border-bottom: 1px solid var(--border-dark); }
}

/* ---------------- pros (full-width rows, no card boxes) ---------------- */
.pros {
  background: var(--surface);
}
.pros__list {
  border-top: 2px solid var(--ink);
  margin-top: 2.5rem;
}
.pro-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.4fr) minmax(0, 2fr) minmax(0, 1fr) auto;
  gap: 1.8rem;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast);
}
.pro-row:hover { background: var(--surface-2); }
.pro-row__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-soft);
  flex-shrink: 0;
}
.pro-row__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.pro-row__role {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
}
.pro-row__bio {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 50ch;
}
.pro-row__rate {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pro-row__rate small {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pro-row__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.pro-row__stat__star {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-deep);
}
.pro-row__stat__jobs {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
}

@media (max-width: 980px) {
  .pro-row {
    grid-template-columns: 56px 1fr auto;
    gap: 1.2rem;
    padding: 20px 0;
  }
  .pro-row__bio { display: none; }
  .pro-row__rate { display: none; }
  .pro-row__avatar { width: 52px; height: 52px; }
}

/* ---------------- pricing transparent ---------------- */
.pricing {
  background: var(--surface);
}
.pricing__rows {
  border-top: 2px solid var(--ink);
  margin-top: 2.5rem;
}
.pricing__row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.pricing__row__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pricing__row__desc {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.45;
}
.pricing__row__rate {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pricing__row__rate small {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.pricing__row__visit {
  font-family: var(--display);
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .pricing__row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .pricing__row__desc { grid-column: 1 / -1; order: 3; }
  .pricing__row__visit { grid-column: 1 / -1; order: 4; padding-top: 6px; }
}

/* ---------------- testimonials (multiple, varied) ---------------- */
.testi {
  background: var(--ink);
  color: #FFFFFE;
}
.testi h2 { color: white; max-width: 22ch; }
.testi__big {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-top: 2.4rem;
  max-width: 26ch;
  color: white;
}
.testi__big::before { content: '"'; color: var(--brand); margin-right: 6px; }
.testi__big::after  { content: '"'; color: var(--brand); margin-left: 6px; }
.testi__by {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.testi__by .pro__avatar { width: 56px; height: 56px; }
.testi__name { font-family: var(--display); font-weight: 700; color: white; font-size: 1.15rem; letter-spacing: -0.015em; }
.testi__loc { color: var(--ink-5); font-size: 14px; margin-top: 4px; }

.testi__minis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-dark);
}
@media (max-width: 920px) { .testi__minis { grid-template-columns: 1fr; padding-top: 2.5rem; } }
.mini-q {
  padding: 0 2rem 0 2rem;
  border-right: 1px solid var(--border-dark);
}
.mini-q:first-child { padding-left: 0; }
.mini-q:last-child  { padding-right: 0; border-right: 0; }
@media (max-width: 920px) {
  .mini-q { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--border-dark); }
  .mini-q:first-child { padding-top: 0; }
  .mini-q:last-child  { padding-bottom: 0; border-bottom: 0; }
}
.mini-q p, .mini-q-quote {
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.mini-q__by {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
}
.mini-q__by .pro__avatar { width: 38px; height: 38px; }
.mini-q__name { color: white; font-weight: 700; font-size: 14.5px; }
.mini-q__loc { color: var(--ink-5); font-size: 12.5px; }
.mini-q__star { color: var(--accent); font-weight: 700; font-size: 14px; margin-bottom: 16px; letter-spacing: 0.06em; }

/* ---------------- cities ---------------- */
.cities {
  background: var(--bg);
}
.cities__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 2px solid var(--ink);
}
@media (max-width: 760px) { .cities__list { grid-template-columns: 1fr; } }
.city {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--border);
}
.city:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 36px; }
.city:last-child, .city:nth-last-child(2) { border-bottom: 0; }
.city__num {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-5);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.city__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.city__pros {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 500;
}
.city__count {
  font-family: var(--display);
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.city__count small {
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink-3);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.city--soon .city__name { color: var(--ink-3); }
.city--soon .city__count { color: var(--ink-3); }
.city__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-left: 10px;
}

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--surface-2);
}
.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 920px) {
  .faq__layout { grid-template-columns: 1fr; gap: 2rem; }
}
.faq__intro h2 { letter-spacing: -0.04em; }
.faq__intro p { font-size: 16.5px; margin-top: 1.2rem; }

.faq__list { border-top: 2px solid var(--ink); }
details.q {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
details.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after {
  content: '';
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 14px 2px, 2px 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--t-med) var(--ease-out-quart);
  color: var(--ink);
}
details.q[open] summary::after {
  background-size: 14px 2px, 0 14px;
  transform: rotate(180deg);
}
details.q[open] summary { color: var(--brand-deep); }
details.q p {
  margin-top: 18px;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------------- final cta ---------------- */
.final {
  background: var(--ink);
  color: #FFFFFE;
}
.final__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.final__inner h2 {
  color: white;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.final__inner p { color: #94A3B8; margin-top: 1.4rem; font-size: 17px; max-width: 38ch; }
.final__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }

.final__bullets {
  display: flex; flex-direction: column; gap: 18px;
  border-left: 2px solid var(--border-dark);
  padding-left: 32px;
}
.final__bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; font-weight: 500;
  color: #CBD5E1;
  line-height: 1.4;
}
.final__bullets li strong {
  display: block;
  color: white;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.final__bullets .check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}

@media (max-width: 920px) {
  .final__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .final__bullets { padding-left: 20px; }
}

/* ---------------- footer ---------------- */
.foot {
  background: var(--ink);
  color: #94A3B8;
  border-top: 1px solid var(--border-dark);
  padding-block: 4rem 2rem;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 920px) { .foot__top { grid-template-columns: 1fr 1fr; } }

.foot__brand .brand { color: white; font-size: 1.5rem; }
.foot__brand p { font-size: 15px; max-width: 32ch; margin-top: 18px; color: #94A3B8; }
.foot__brand .meta { margin-top: 24px; color: var(--ink-5); font-size: 13px; }

.foot__top h4 {
  color: white;
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.foot__top ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #CBD5E1;
  font-weight: 500;
}
.foot__top a:hover { color: white; }

.foot__bot {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-5);
}
.foot__bot strong {
  color: white;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* =========================================================
   AUTH PAGES — solid, no glass
   ========================================================= */
.auth {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}
@media (max-width: 980px) { .auth { grid-template-columns: 1fr; } }

.auth__form-side {
  display: flex;
  flex-direction: column;
  padding: 32px clamp(1.5rem, 4vw, 3.5rem) 36px;
  background: var(--bg);
}
.auth__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4vh;
}
.auth__back {
  font-size: 14px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.auth__back:hover { color: var(--ink); }

.auth__inner {
  width: 100%;
  max-width: 460px;
  margin: auto;
  padding-block: 2rem;
}
.auth__inner h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 14px;
}
.auth__inner > p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
}

.auth__form { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.field input {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--body);
}
.field input::placeholder { color: var(--ink-4); font-weight: 450; }
.field input:hover { border-color: var(--border-strong); }
.field input:focus {
  outline: 0;
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 4px var(--brand-glow);
}

.field__row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px;
}
.field__hint { color: var(--ink-3); font-size: 13px; font-weight: 500; }

.flash {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
}
.flash--show { display: flex; align-items: center; gap: 10px; }
.flash--error {
  background: #FEE2E2;
  border: 1.5px solid #FCA5A5;
  color: #991B1B;
}
.flash--success {
  background: #DCFCE7;
  border: 1.5px solid #86EFAC;
  color: #166534;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
}
.checkbox input { accent-color: var(--brand-deep); width: 17px; height: 17px; }

.creds-hint {
  margin-top: 2rem;
  padding: 18px 20px;
  background: var(--ink);
  border-radius: 14px;
  font-size: 13.5px;
  color: #CBD5E1;
  font-weight: 500;
}
.creds-hint strong { display: block; font-weight: 700; margin-bottom: 8px; color: white; font-family: var(--display); font-size: 14px; letter-spacing: -0.005em; }
.creds-hint code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: rgba(74, 144, 226, 0.18);
  color: var(--brand-soft);
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 500;
}

.auth__alt {
  margin-top: 2.4rem;
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 500;
}
.auth__alt a { color: var(--brand-deep); font-weight: 700; }

/* visual side — solid dark, no glass */
.auth__viz {
  position: relative;
  background: var(--ink);
  color: #FFFFFE;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 980px) { .auth__viz { display: none; } }

.auth__viz .brand { color: white; }
.auth__viz .brand img { filter: drop-shadow(0 4px 12px rgba(74, 144, 226, 0.4)); }

.auth__hero {
  margin-top: 3rem;
}
.auth__hero h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 14ch;
}
.auth__hero p {
  color: #CBD5E1;
  margin-top: 1.4rem;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.5;
}

.auth__panel {
  background: #131F33;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 2.5rem;
}
.auth__panel__head {
  display: flex; align-items: center; gap: 14px;
}
.auth__panel__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background-image: url('https://i.pravatar.cc/120?img=12');
  background-size: cover;
}
.auth__panel__avatar--alt { background-image: url('https://i.pravatar.cc/120?img=68'); }
.auth__panel__name { color: white; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.015em; }
.auth__panel__role { color: var(--brand-soft); font-size: 13.5px; margin-top: 2px; font-weight: 500; }

.auth__panel__divider { height: 1px; background: var(--border-dark); margin: 22px 0 18px; }

.auth__panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.auth__panel__stats > div {
  padding: 0 14px;
  border-right: 1px solid var(--border-dark);
}
.auth__panel__stats > div:first-child { padding-left: 0; }
.auth__panel__stats > div:last-child { border-right: 0; padding-right: 0; }
.auth__panel__stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: white;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1;
}
.auth__panel__stats small {
  display: block;
  color: var(--ink-5);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.auth__quote {
  margin-top: auto;
  padding-top: 2rem;
}
.auth__quote blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.018em;
  line-height: 1.3;
  max-width: 30ch;
}
.auth__quote .attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.4rem;
  color: var(--ink-5);
  font-size: 14px;
}
.auth__quote .attribution span {
  display: block;
  width: 36px; height: 36px;
  border-radius: 50%;
  background-image: url('https://i.pravatar.cc/100?img=22');
  background-size: cover;
}
.auth__quote .attribution strong { color: white; font-weight: 700; }

/* =========================================================
   SECURE / DASHBOARD (solid panels)
   ========================================================= */
.dash {
  min-height: 100dvh;
  background: var(--bg);
}
.dash__nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.dash__main { padding-block: 2.5rem 5rem; }
.dash__hello {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.dash__hello h1 { font-size: clamp(2.2rem, 3.6vw, 3.2rem); }
.dash__hello p { margin-top: 12px; color: var(--ink-2); font-size: 17px; }

.dash__flash {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: #DCFCE7;
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-lg);
  color: #166534;
  font-weight: 600;
  margin-bottom: 2rem;
}
.dash__flash .ic {
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--success);
  flex-shrink: 0;
}
.dash__flash p {
  color: #166534;
  max-width: none;
  font-size: 14.5px;
  font-weight: 500;
  margin-top: 4px;
}
.dash__flash strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--display);
  letter-spacing: -0.015em;
}

.dash__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 980px) { .dash__grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.panel__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
}
.panel__head h3 { font-size: 1.3rem; }
.panel__head a { color: var(--brand-deep); font-size: 14px; font-weight: 700; }

.req {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  align-items: center;
}
.req:first-of-type { border-top: 0; padding-top: 4px; }
.req__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand-deep);
  flex-shrink: 0;
}
.req__title { font-weight: 700; font-size: 15.5px; color: var(--ink); font-family: var(--display); letter-spacing: -0.015em; }
.req__meta { font-size: 13px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }
.req__pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.req__pill--accepted { background: #DCFCE7; color: var(--success); }
.req__pill--pending  { background: var(--accent-soft); color: var(--accent-deep); }
.req__pill--done     { background: var(--surface-2); color: var(--ink-3); }

.kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.kpi__cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.kpi__label { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.kpi__val {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.kpi__delta { font-size: 13px; color: var(--success); margin-top: 8px; font-weight: 600; }

.tip {
  background: var(--ink);
  color: #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 1.5rem;
}
.tip h3 { color: white; font-size: 1.3rem; }
.tip p { color: #CBD5E1; margin-top: 10px; font-size: 14.5px; max-width: 32ch; }
.tip .btn { margin-top: 1.4rem; }

/* small icons inline */
.i-arrow { width: 14px; height: 14px; }
.icon { width: 22px; height: 22px; stroke-width: 1.6; }

/* small reveal-on-load */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* user mini in dashboard */
.user-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.user-mini .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-image: url('https://i.pravatar.cc/80?img=33');
  background-size: cover;
  border: 1.5px solid var(--surface);
}
