:root {
  --ink: #071018;
  --navy: #0b1f3a;
  --navy-2: #123056;
  --navy-3: #1a3d66;
  --gold: #c9a227;
  --gold-2: #e4c25a;
  --teal: #149c8c;
  --teal-2: #1db8a6;
  --cream: #f6f1e8;
  --paper: #fffcf7;
  --sand: #ede4d4;
  --chip: #fff8ee;
  --text: #1a2433;
  --muted: #5c6673;
  --line: #d9d0c2;
  --star: #e0b423;
  --good: #1b8a4a;
  --mid: #c47b12;
  --bad: #b42318;
  --shadow: 0 18px 50px rgba(7, 16, 24, 0.12);
  --shadow-sm: 0 8px 24px rgba(7, 16, 24, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body { overflow-x: clip; }

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--font);
  line-height: 1.65;
  font-size: 16.5px;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 8px 12px;
  z-index: 80;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: #071018;
  border-bottom-color: rgba(201, 162, 39, 0.22);
  box-shadow: 0 10px 28px rgba(7, 16, 24, 0.28);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.brand-name span { color: var(--gold-2); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold-2); }
.nav .btn-gold {
  color: #1a1203;
  text-shadow: none;
}
.nav .btn-gold:hover { color: #1a1203; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  position: relative;
  overflow: hidden;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: linear-gradient(180deg, #f3d56a 0%, #c89a1c 100%);
  color: #1a1203;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 10px 24px rgba(201, 162, 39, 0.36);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-gold:hover {
  background: linear-gradient(180deg, #f8de7c 0%, #d4a824 100%);
  color: #1a1203;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 12px 28px rgba(201, 162, 39, 0.48);
}
.btn-gold:hover::after { left: 120%; transition: left .45s ease; }
.btn-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a1203;
  color: #f3d56a;
  flex: none;
}
.btn-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

.btn-line {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border-radius: 12px;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media picture,
.hero-media source { width: 100%; height: 100%; object-fit: cover; }

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,24,0.22) 0%, rgba(7,16,24,0.28) 32%, rgba(7,16,24,0.92) 100%),
    linear-gradient(90deg, rgba(11,31,58,0.45), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 118px 0 56px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,156,140,0.18);
  border: 1px solid rgba(20,156,140,0.4);
  color: #b7f3ea;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}
.kicker-light {
  background: rgba(20,156,140,0.1);
  border-color: rgba(20,156,140,0.28);
  color: #0d5c53;
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 14px 0 12px;
}

.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 16ch; }

.lede {
  max-width: 58ch;
  color: #d7deea;
  font-size: 1.08rem;
}

.search-card {
  margin-top: 28px;
  background: rgba(255,252,247,0.96);
  color: var(--text);
  border-radius: 20px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  box-shadow: var(--shadow);
  max-width: 680px;
}

.search-card input {
  border: 0;
  background: transparent;
  padding: 12px 16px;
  outline: none;
}

.search-suggest {
  display: none;
  position: absolute;
  margin-top: 8px;
  width: min(680px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 5;
}

.search-wrap { position: relative; }

.search-suggest a {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--sand);
}

.search-suggest a:hover { background: var(--cream); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.stat {
  position: relative;
  overflow: hidden;
  padding: 20px 18px 18px;
  border-radius: 18px;
  background: rgba(7, 16, 24, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.stat::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 28px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal));
}
.stat:hover {
  transform: translateY(-3px);
  background: rgba(7, 16, 24, 0.5);
  border-color: rgba(228, 194, 90, 0.35);
}

.stat b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-2);
}

.stat span {
  display: block;
  color: #d5dde8;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Sections */
.section { padding: 78px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head .kicker { margin-bottom: 10px; }

.section h2,
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.muted { color: var(--muted); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile img { transition: transform .6s ease; }
.tile:hover img { transform: scale(1.06); }
::selection { background: rgba(20,156,140,.25); }

.tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,24,0.05), rgba(7,16,24,0.82));
}
.tile-body {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.tile h3 { margin: 0 0 4px; font-size: 1.25rem; }
.tile p { margin: 0; color: #d7deea; font-size: 0.92rem; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.company-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  border-color: #e4d8c4;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.company-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal), var(--gold));
}
.company-card:hover {
  transform: translateY(-5px);
  border-color: #d4b56a;
  box-shadow: 0 22px 40px rgba(11, 31, 58, 0.14);
}

.company-top {
  display: flex;
  gap: 14px;
  align-items: center;
}
.company-card .company-top {
  padding: 18px 18px 0;
}

.company-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.company-card h3 a {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}
.company-card:hover h3 a { background-size: 100% 1px; }

.company-card .company-top .muted {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--sand);
  color: #5a5040;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mark {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: none;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 10px 18px rgba(7,16,24,0.16);
}
.mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-card .score-row {
  margin: 16px 18px 0;
  padding: 6px 6px 6px 12px;
  border-radius: 999px;
  background: #f3ead8;
  width: fit-content;
  gap: 10px;
}
.company-card > p.muted {
  margin: 10px 18px 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7264;
}
.company-card > p:not(.muted) {
  margin: 8px 18px 0;
  color: #3a4452;
  font-size: 0.93rem;
  line-height: 1.55;
  flex: 1;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 18px 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.card-cta:hover {
  background: #123056;
  transform: translateY(-1px);
}

.score-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.score {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  min-width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-2);
}

.stars {
  display: inline-flex;
  align-items: center;
  height: 28px;
  color: var(--star);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  line-height: 1;
}
.stars .empty {
  color: #d8d0c2;
  line-height: 1;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--sand);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.review-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: #e4d8c4;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-2), var(--teal));
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: #d4b56a;
  box-shadow: 0 20px 36px rgba(11, 31, 58, 0.12);
}

.review-card .rev-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 16px 18px 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  flex: none;
  overflow: hidden;
  background: #c4b39a;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.22), 0 8px 16px rgba(7,16,24,0.16);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 18px 18px 0 22px;
}
.review-head strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.review-head .muted {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.rev-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sand);
  color: #5a5040;
  font-size: 0.7rem;
  font-weight: 800;
}
.rev-chip-ok {
  background: #d9f3ee;
  color: #0d5c53;
}

.review-card .score-row {
  margin: 14px 18px 0 22px;
  padding: 5px 5px 5px 12px;
  border-radius: 999px;
  background: #f3ead8;
  width: max-content;
  gap: 10px;
}
.review-card .rev-score {
  min-width: 32px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.review-card h3 {
  margin: 14px 18px 0 22px;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.review-card > p {
  margin: 8px 18px 18px 22px;
  color: #3a4452;
  font-size: 0.94rem;
  line-height: 1.6;
}
.review-card > p.muted {
  margin-top: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}

.method {
  background:
    radial-gradient(900px 280px at 10% 20%, rgba(201,162,39,0.08), transparent 60%),
    #fffaf2;
  border-block: 1px solid var(--line);
}
.method .kicker {
  background: rgba(20,156,140,0.1);
  border-color: rgba(20,156,140,0.28);
  color: #0d5c53;
  margin-bottom: 10px;
}
.method-copy h2 {
  margin: 0 0 12px;
  max-width: 16ch;
}
.method-lede {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 48ch;
}
.method .btn { margin-top: 8px; }

.board {
  background:
    radial-gradient(700px 220px at 90% 0%, rgba(20,156,140,0.08), transparent 55%),
    var(--paper);
  border-block: 1px solid var(--line);
}
.board .section-head { max-width: 62ch; }
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.board-col {
  background: #fffdf8;
  border: 1px solid #e4d8c4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.board-col h3 {
  margin: 0;
  padding: 16px 18px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.board-high h3 { background: var(--navy); }
.board-low h3 { background: #4a1c18; }
.board-col h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal));
}
.board-low h3::after { background: linear-gradient(90deg, #f0a090, var(--gold-2)); }
.board-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid #efe4d2;
  color: inherit;
  transition: background .18s ease;
}
.board-row:hover { background: #fff6e6; }
.board-row .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.72rem;
}
.board-name {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.board-meta {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.board-row b {
  min-width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 0.88rem;
}
.board-low .board-row b {
  background: #4a1c18;
  color: #f6c6b8;
}

.argue .section-head { max-width: 62ch; }
.argue-card {
  position: relative;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  border: 1px solid #e4d8c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.argue-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal));
}
.argue-tag {
  display: inline-flex;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: #5a5040;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.argue-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.argue-card p {
  margin: 0;
  color: #3a4452;
  font-size: 0.94rem;
}

.pay {
  background:
    radial-gradient(800px 240px at 0% 100%, rgba(201,162,39,0.1), transparent 55%),
    #fffaf2;
  border-block: 1px solid var(--line);
}
.pay .section-head { max-width: 62ch; }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 0 20px 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  border: 1px solid #e4d8c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pay-card::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  margin: 0 -20px 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal), var(--gold));
}
.pay-card:hover {
  transform: translateY(-5px);
  border-color: #d4b56a;
  box-shadow: 0 22px 40px rgba(11, 31, 58, 0.14);
}
.pay-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-2);
  box-shadow: 0 10px 18px rgba(7, 16, 24, 0.16);
}
.pay-ico svg { width: 22px; height: 22px; display: block; }
.pay-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: #5a5040;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pay-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}
.pay-card p {
  margin: 0;
  color: #3a4452;
  font-size: 0.92rem;
}

.guide .section-head { max-width: 62ch; }
.guide-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide;
}
.guide-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #efe4d2;
  counter-increment: guide;
}
.guide-list li::before {
  content: counter(guide);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.guide-list strong { display: block; margin-bottom: 4px; }
.guide-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.guide-cta { margin-top: 22px; }

.desk {
  background:
    radial-gradient(900px 280px at 90% 20%, rgba(201,162,39,0.08), transparent 60%),
    #fffaf2;
  border-block: 1px solid var(--line);
}
.desk .kicker { margin-bottom: 10px; }
.desk .method-copy h2 { max-width: 14ch; }
.desk .method-copy p { color: #3a4452; }
.desk .btn { margin-top: 8px; }

.care {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #d5dde8;
}
.care-media,
.care-shade {
  position: absolute;
  inset: 0;
}
.care-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 28%;
}
.care-shade {
  background:
    linear-gradient(180deg, rgba(7,16,24,0.42) 0%, rgba(7,16,24,0.68) 46%, rgba(7,16,24,0.88) 100%),
    linear-gradient(90deg, rgba(7,16,24,0.55), rgba(7,16,24,0.28) 42%, rgba(7,16,24,0.62));
}
.care-inner { position: relative; z-index: 2; }
.care h2 { color: #fff; max-width: 16ch; }
.care > .wrap > p,
.care-inner > p {
  max-width: 58ch;
  margin: 0 0 26px;
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.care-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 16, 24, 0.48);
  border: 1px solid rgba(228,194,90,0.22);
  backdrop-filter: blur(8px);
}
.care-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.08rem;
}
.care-grid p { margin: 0; font-size: 0.92rem; }

.media-frame {
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7,16,24,0.72));
  pointer-events: none;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.steps {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  opacity: 0.45;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #efe4d2;
}
.step strong { display: block; margin-bottom: 4px; }
.step .muted { margin: 0; font-size: 0.9rem; }
.num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}

/* Company page */
.page-hero {
  position: relative;
  color: #fff;
  min-height: 340px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero .hero-copy { padding: 118px 0 36px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 18ch; }

.crumbs {
  color: #c9d2df;
  font-size: 0.86rem;
  margin-bottom: 8px;
}
.crumbs a { color: var(--gold-2); }

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.hero-cats a {
  color: #f6f1e8;
  border: 1px solid rgba(228, 194, 90, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.82rem;
}
.hero-cats a:hover { border-color: var(--gold-2); color: var(--gold-2); }

.cat-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 12px 0 0;
  font-size: 0.92rem;
}
.cat-jump a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-hero-card {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
}

.bars { display: grid; gap: 8px; }
.bar-row { display: grid; grid-template-columns: 52px 1fr 36px; gap: 8px; align-items: center; font-size: 0.85rem; }
.bar { height: 8px; background: var(--sand); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--teal)); }

.aside-card {
  padding: 0;
  overflow: hidden;
  border-color: #e4d8c4;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
}
.aside-card h3 {
  margin: 0;
  padding: 16px 18px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  background: var(--navy);
  color: #fff;
}
.aside-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal));
}
.aside-card > p {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid #efe4d2;
}
.aside-card > p strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8a7d68;
}
.aside-card > p:not(.warn) {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}
.aside-card .warn {
  margin: 14px 14px 16px;
  padding: 11px 12px;
  background: #fff1dc;
  border: 1px solid #e8c48a;
  color: #6a4a10;
  font-size: 0.8rem;
  line-height: 1.5;
}
.also-list {
  display: grid;
  padding: 10px;
  gap: 8px;
}
.also-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f6eee0;
  color: var(--navy);
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.also-item:hover {
  background: #efe2c8;
  transform: translateX(3px);
}
.also-item[aria-current="page"] {
  box-shadow: inset 0 0 0 1px #d4c4a4;
}
.also-item .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.62rem;
}
.also-name {
  min-width: 0;
  letter-spacing: -0.02em;
}
.also-score {
  min-width: 38px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 0.78rem;
}

.prose {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose p { margin: 0 0 1.05em; color: #3a4452; }
.prose h2 {
  margin: 1.6em 0 0.45em;
  padding-top: 0.2em;
  border-top: 1px solid transparent;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--serif); margin: 1.2em 0 0.4em; }
.prose ul { padding-left: 1.15em; }
.prose li { margin: 0.4em 0; color: #3a4452; }
.prose a { color: #0d5c53; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.how-intro {
  max-width: 62ch;
  margin-bottom: 26px;
}
.how-intro .kicker { margin-bottom: 10px; }
.how-intro h2 { margin: 0 0 10px; }
.how-intro p { margin: 0; color: var(--muted); }
.how-list { margin-bottom: 22px; }
.how-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #efe4d2;
  color: #3a4452;
  max-width: 72ch;
}
.how-desk {
  background:
    radial-gradient(800px 240px at 0% 0%, rgba(201,162,39,0.1), transparent 55%),
    #fffaf2;
  border-block: 1px solid var(--line);
}
.how-steps {
  display: grid;
  gap: 12px;
}
.how-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e4d8c4;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.how-step h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.how-step p { margin: 0; color: #3a4452; font-size: 0.95rem; }
.how-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 0 20px 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  border: 1px solid #e4d8c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.how-card::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  margin: 0 -20px 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), var(--teal), var(--gold));
}
.how-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.how-card p { margin: 0; color: #3a4452; font-size: 0.94rem; }
.how-card .pay-tag { margin-bottom: 10px; }
.how-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.form {
  display: grid;
  gap: 12px;
}

.form label { font-weight: 700; font-size: 0.88rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.form textarea { min-height: 140px; resize: vertical; }

.notice {
  background: #e8f7f3;
  border: 1px solid #b7e6dd;
  color: #0d5c53;
  padding: 12px 14px;
  border-radius: 12px;
}

.warn {
  background: #fff4e5;
  border: 1px solid #efd3a3;
  color: #6a4a10;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq summary { cursor: pointer; font-weight: 800; }

.site-footer {
  background: var(--ink);
  color: #c9d2df;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer a { color: #e8edf4; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }

.trust-bar {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-lead {
  margin: 0 0 12px;
  color: #c9d3df;
  max-width: 68ch;
  line-height: 1.55;
}
.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-links a { font-weight: 700; font-size: 0.88rem; }

.desk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 8px auto 36px;
}
.desk-card {
  background: #fffdf8;
  border: 1px solid #e4d8c4;
  border-radius: 18px;
  padding: 22px 22px 20px;
}
.desk-card h2,
.prose .desk-card h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.desk-role {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #149c8c;
}
.desk-card p { margin: 0 0 0.85em; color: #3a4452; }
.desk-card p:last-child { margin-bottom: 0; }
.desk-card a { color: #0d5c53; font-weight: 700; }

.aside-card.trust-note a { font-weight: 700; color: #0d5c53; }

.star-pick { display: flex; gap: 6px; }
.star-pick button {
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: #d8d0c2;
  cursor: pointer;
}
.star-pick button.on { color: var(--star); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}

.chip-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.84rem;
}

.chip-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.chip-btn:hover { border-color: #d4b56a; }

.company-bar {
  margin-bottom: 22px;
  padding: 20px 22px 16px;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
  border: 1px solid #e4d8c4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.company-bar-top {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 12px;
  margin-bottom: 16px;
}
.company-bar-top input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
}
.company-bar-top input:focus {
  border-color: #d4b56a;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}
.company-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.company-sort span {
  flex: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a7264;
}
.company-sort select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  outline: none;
}
.company-sort select:focus { border-color: #d4b56a; }
.company-bar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.company-bar-row .filter-row { margin: 0; }
.company-bar-label {
  min-width: 86px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a7264;
}
.company-count {
  margin: 14px 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
}
.company-empty {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff6e6;
  border: 1px solid #efd3a3;
  color: #6a4a10;
}

.hidden { display: none !important; }

@media (hover: none) {
  .btn:hover,
  .tile:hover,
  .review-card:hover,
  .also-item:hover,
  .stat:hover,
  .card-cta:hover { transform: none; }
  .tile:hover img { transform: none; }
}

@media (max-width: 980px) {
  .grid-4, .grid-3, .stats, .footer-grid, .split, .board-grid, .pay-grid, .care-grid, .desk-grid { grid-template-columns: 1fr 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: grid; place-items: center; }
  .site-header:has(.nav.open) { background: #071018; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    z-index: 45;
    background: #071018;
    padding: 8px 20px calc(22px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 18px 32px rgba(7, 16, 24, 0.35);
  }
  .nav.open { display: flex; }
  .nav a {
    min-height: 48px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav .btn-gold {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    border-bottom: 0;
  }
  .grid-4, .grid-3, .grid-2, .company-grid, .footer-grid, .split, .search-card,
  .board-grid, .pay-grid, .care-grid, .guide-list, .company-bar-top, .desk-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    width: min(var(--max), calc(100% - 24px));
    padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
  }
  .section { padding: 48px 0; }
  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .hero { min-height: 0; }
  .hero-copy { padding: 96px 0 32px; }
  .page-hero { min-height: 0; }
  .page-hero .hero-copy { padding: 96px 0 28px; }
  .hero h1, .page-hero h1 { max-width: none; }
  .company-hero-card { margin-top: -28px; }
  .company-bar { padding: 16px; }
  .chip-btn { min-height: 40px; padding: 8px 14px; }
  .trust-links { gap: 8px 14px; }
  .prose { font-size: 1rem; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .stat { padding: 14px 12px; }
  .stat b { font-size: 1.55rem; }
  .header-row { min-height: 64px; gap: 12px; }
  .brand-name { font-size: 1.28rem; }
}
