/* best-crm.org : Apple-grade design system
   Type: system stack, size-specific tracking. Motion: springs via CSS approximations,
   pointer-down feedback, reduced-motion fallbacks. Materials: translucent chrome. */

:root {
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --blue-press: #0060c2;
  --gold: #b8860b;
  --radius: 18px;
  --spring: cubic-bezier(0.32, 0.72, 0, 1); /* settle, no overshoot */
  font-optical-sizing: auto;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font: 400 100%/1.5 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(0, 113, 227, 0.18); }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 61.25rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nav::after { /* scroll edge effect, not a hard divider */
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
@media (prefers-reduced-transparency: reduce) {
  .nav { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 3.25rem;
}
.wordmark {
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em;
}
.wordmark .dot { color: var(--blue); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem; color: var(--ink-2);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 0.875rem; font-weight: 500; color: #fff !important;
  background: var(--blue);
  padding: 0.375rem 0.875rem; border-radius: 980px;
  transition: transform 100ms ease-out, background 160ms ease;
}
.nav-cta:active { transform: scale(0.96); background: var(--blue-press); }
@media (max-width: 640px) {
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .wordmark { white-space: nowrap; }
}

/* ---------------------------------------------------------------- hero */
.hero { padding: 5.5rem 0 3.5rem; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
h1.display {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2.5rem, 6.4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin: 0 auto;
}
.hero .sub {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 42ch;
  margin: 1.25rem auto 0;
}
.hero .sub strong { color: var(--ink); font-weight: 500; }
.hero-ctas { margin-top: 2rem; display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 1.0625rem; font-weight: 500;
  padding: 0.75rem 1.5rem; border-radius: 980px;
  border: none; cursor: pointer;
  transition: transform 100ms ease-out, background 160ms ease, color 160ms ease;
  will-change: transform;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0077ed; }
.btn-primary:active { background: var(--blue-press); }
.btn-ghost { background: transparent; color: var(--blue); }
.btn-ghost:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- leaderboard */
.board { padding: 2.5rem 0 5rem; }
.board-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.board-head h2 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.015em; }
.board-head .updated {
  display: inline-flex; align-items: center; gap: 0.4375rem;
  font-size: 0.8125rem; color: var(--ink-3);
}
.live {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #30d158;
  animation: livepulse 2.4s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4); }
  70% { box-shadow: 0 0 0 0.4375rem rgba(48, 209, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0); }
}
@media (prefers-reduced-motion: reduce) { .live { animation: none; } }

/* shared price block */
.claim-price { display: flex; flex-direction: column; align-items: flex-end; }
.heldlab {
  font-size: 0.6563rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-3);
}
.heldval {
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.014em;
  font-variant-numeric: tabular-nums; color: var(--ink);
  line-height: 1.25;
}

/* --- podium: the throne (rank 1) --- */
.pod { cursor: pointer; will-change: transform; }
.pod-1 {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 1.75rem;
  background:
    radial-gradient(52rem 22rem at 80% -35%, rgba(212, 175, 55, 0.24), transparent 62%),
    linear-gradient(180deg, #141416, #1d1d1f);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 350ms var(--spring), box-shadow 350ms var(--spring);
}
.pod-1:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 26px 64px rgba(0, 0, 0, 0.22); }
.pod-1:active { transform: scale(0.995); transition-duration: 100ms; }
.pod-logo {
  width: 4.5rem; height: 4.5rem; border-radius: 18px; flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.pod-logo img { padding: 0.5625rem; }
.pod-who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.pod-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.09em;
  color: #e8c766;
  margin-bottom: 0.5rem;
}
.pod-name {
  font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
}
.pod-tag { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.55); margin-top: 0.3125rem; }
.pod-claim { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; flex-shrink: 0; }
.pod-1 .heldlab { color: rgba(255, 255, 255, 0.45); }
.pod-1 .heldval { color: #fff; font-size: 1.75rem; letter-spacing: -0.022em; }
.pod-1 .claim-btn {
  background: #fff; color: var(--ink);
  font-size: 0.9375rem; font-weight: 500;
  padding: 0.625rem 1.25rem;
}
.pod-1:hover .pod-btn { background: var(--blue); color: #fff; }

/* --- podium: silver and bronze, full-width horizontal rows --- */
.pod-row {
  position: relative;
  display: flex; align-items: center; gap: 1.375rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 350ms var(--spring), box-shadow 350ms var(--spring);
}
.pod-row.silver {
  background:
    radial-gradient(42rem 16rem at 85% -45%, rgba(150, 150, 162, 0.15), transparent 60%),
    linear-gradient(180deg, #fbfbfd, #f5f5f7);
  border-color: rgba(0, 0, 0, 0.09);
}
.pod-row.bronze {
  background:
    radial-gradient(42rem 16rem at 85% -45%, rgba(196, 146, 88, 0.14), transparent 60%),
    linear-gradient(180deg, #fbfbfd, #f6f4f1);
  border-color: rgba(169, 124, 79, 0.24);
}
.pod-row:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 16px 40px rgba(0, 0, 0, 0.09); }
.pod-row:active { transform: scale(0.995); transition-duration: 100ms; }
.pod-medal {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 700; font-variant-numeric: tabular-nums;
  color: #5c5c61;
  background: linear-gradient(145deg, #fafafa, #d9d9de);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.pod-medal.bronze {
  color: #7a5b3a;
  background: linear-gradient(145deg, #f7ece0, #e2c8a7);
  border-color: rgba(122, 91, 58, 0.18);
}
.pod-pill.side { letter-spacing: 0.08em; }
.pod-pill.side.silver { color: #86868b; }
.pod-pill.side.bronze { color: #a87c4f; }
.pod-row-logo { width: 3.75rem; height: 3.75rem; border-radius: 15px; flex-shrink: 0; }
.pod-row .pod-name { font-size: 1.3125rem; letter-spacing: -0.016em; }
.pod-row .pod-tag { color: var(--ink-2); margin-top: 0.1875rem; }
.pod-row .heldval { font-size: 1.375rem; letter-spacing: -0.018em; }
.pod-row:hover .claim-btn { background: var(--blue); color: #fff; }

/* --- ranks 4 to 20: the list --- */
.list {
  margin-top: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.row {
  display: grid;
  grid-template-columns: 2.75rem 3rem 1fr auto;
  gap: 1.125rem;
  align-items: center;
  padding: 1.0625rem 1.5rem;
  transition: background 200ms ease;
  cursor: pointer;
}
.row + .row { border-top: 1px solid rgba(0, 0, 0, 0.055); }
.row:hover { background: var(--bg-soft); }
.row:active .who .name { opacity: 0.7; }

.rank {
  font-size: 1.0625rem; font-weight: 600; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  text-align: center;
  transition: color 200ms ease;
}
.row:hover .rank { color: var(--ink); }

.logo {
  width: 3rem; height: 3rem; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.125rem; font-weight: 600; color: #fff;
  letter-spacing: -0.01em;
  user-select: none;
}
.logo.tile {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.logo.tile img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.375rem;
  box-sizing: border-box;
}

.who .name {
  font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.5rem;
}
.who .tag { font-size: 0.9375rem; color: var(--ink-2); margin-top: 0.0625rem; }
.pill {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--gold);
  background: rgba(184, 134, 11, 0.1);
  padding: 0.125rem 0.5rem; border-radius: 980px;
}

/* --- "best for" + positives micro-tags --- */
.tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.6875rem; }
.mtag {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.3125rem 0.625rem; border-radius: 980px;
  background: rgba(0, 0, 0, 0.045); color: var(--ink-2);
  white-space: nowrap;
}
.mtag.best b { font-weight: 600; color: var(--ink); margin-left: 0.3em; }
.mtag.plus { background: rgba(52, 199, 89, 0.13); color: #1d7d41; }
.mtag.plus::before { content: "+"; font-weight: 700; margin-right: 0.35em; }
.pod-1 .mtag { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.66); }
.pod-1 .mtag.best b { color: #fff; }
.pod-1 .mtag.plus { background: rgba(48, 209, 88, 0.2); color: #86e3a4; }

.claim { display: flex; align-items: center; gap: 1.125rem; }
.claim-btn {
  font-size: 0.875rem; font-weight: 500;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  border: none; cursor: pointer;
  padding: 0.4375rem 0.9375rem; border-radius: 980px;
  transition: transform 100ms ease-out, background 160ms ease, color 160ms ease;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.row:hover .claim-btn { background: var(--blue); color: #fff; }
.claim-btn:active { transform: scale(0.95); }

@media (max-width: 760px) {
  .pod-1 { flex-wrap: wrap; gap: 1.125rem; padding: 1.625rem 1.5rem; }
  .pod-1 .pod-claim {
    flex-direction: row; align-items: center; justify-content: space-between;
    width: 100%; gap: 1rem;
  }
  .pod-1 .claim-price { align-items: flex-start; }
  .pod-1 .heldval { font-size: 1.5rem; }
  .pod-row { flex-wrap: wrap; gap: 1rem; padding: 1.375rem 1.25rem; }
  .pod-row .pod-medal { position: absolute; top: 1.25rem; right: 1.25rem; }
  .pod-row .pod-claim {
    flex-direction: row; align-items: center; justify-content: space-between;
    width: 100%; gap: 1rem;
  }
  .pod-row .claim-price { align-items: flex-start; }
  .row { grid-template-columns: 1.75rem 2.5rem 1fr; padding: 1rem 1.125rem; }
  .logo { width: 2.5rem; height: 2.5rem; border-radius: 10px; font-size: 1rem; }
  .claim { grid-column: 2 / -1; justify-content: space-between; }
  .claim .claim-price { align-items: flex-start; }
}

/* entrance: opacity + small rise, settles with no overshoot */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 500ms ease, transform 600ms var(--spring);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; }
  .reveal.in { transition: opacity 250ms ease; }
}

/* ---------------------------------------------------------------- how it works */
.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-soft); }
.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.018em; line-height: 1.1;
  text-align: center;
}
.section .lead {
  font-size: 1.0625rem; color: var(--ink-2); text-align: center;
  max-width: 46ch; margin: 0.875rem auto 0;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg); border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
}
.step .n {
  font-size: 0.8125rem; font-weight: 600; color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.1875rem; font-weight: 600; letter-spacing: -0.012em; margin-top: 0.625rem; }
.step p { font-size: 0.9375rem; color: var(--ink-2); margin-top: 0.5rem; line-height: 1.55; }

/* ---------------------------------------------------------------- includes strip */
.includes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem;
  margin-top: 3rem; text-align: center;
}
@media (max-width: 720px) { .includes { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.inc .ic { height: 1.75rem; display: flex; align-items: center; justify-content: center; }
.inc h4 { font-size: 0.9375rem; font-weight: 600; margin-top: 0.625rem; letter-spacing: -0.008em; }
.inc p { font-size: 0.8125rem; color: var(--ink-3); margin-top: 0.25rem; line-height: 1.5; }

/* ---------------------------------------------------------------- faq */
.faq { max-width: 40rem; margin: 2.5rem auto 0; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.125rem 0;
}
.faq summary {
  font-size: 1.0625rem; font-weight: 500; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.008em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.25rem; font-weight: 300; color: var(--ink-3);
  transition: transform 300ms var(--spring);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 0.9375rem; color: var(--ink-2); margin-top: 0.75rem; line-height: 1.6; max-width: 56ch; }

/* ---------------------------------------------------------------- footer */
footer { padding: 3rem 0 4rem; }
.foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 2rem;
  font-size: 0.8125rem; color: var(--ink-3);
}
.foot a { color: var(--ink-2); }
.foot a:hover { color: var(--ink); }
.foot .cats { display: flex; gap: 1.25rem; }
.soon { color: var(--ink-3); }
.soon em { font-style: normal; font-size: 0.6875rem; background: var(--bg-soft); padding: 0.125rem 0.4375rem; border-radius: 980px; margin-left: 0.25rem; }

/* ---------------------------------------------------------------- profile page */
.crumb { font-size: 0.8125rem; color: var(--ink-3); padding-top: 1.75rem; }
.crumb a { color: var(--blue); }
.profile-hero {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2.5rem 0 2rem;
}
.profile-hero .logo { width: 4.5rem; height: 4.5rem; border-radius: 18px; font-size: 1.75rem; }
.profile-hero h1 {
  font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
}
.profile-hero .standing { font-size: 1rem; color: var(--ink-2); margin-top: 0.375rem; }
.profile-hero .standing b { color: var(--gold); font-weight: 600; }

.facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin: 1.5rem 0 2.5rem;
}
@media (max-width: 720px) { .facts { grid-template-columns: repeat(2, 1fr); } }
.fact { background: var(--bg); padding: 1.25rem; }
.fact .k { font-size: 0.75rem; color: var(--ink-3); }
.fact .v { font-size: 1.0625rem; font-weight: 600; margin-top: 0.25rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

.prose { max-width: 40rem; }
.prose h2 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.014em; margin: 2.25rem 0 0.75rem; text-align: left; }
.prose p { font-size: 1.0625rem; line-height: 1.65; color: var(--ink-2); }
.prose p + p { margin-top: 1rem; }
.prose ul { margin: 0.75rem 0 0 1.125rem; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.8; }

.visit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 1.0625rem; font-weight: 500; color: var(--blue);
}
.visit:hover { text-decoration: underline; }

.dethrone {
  margin: 3.5rem 0 4rem;
  background: var(--ink); color: #fff;
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.dethrone h2 { font-size: 1.625rem; font-weight: 700; letter-spacing: -0.016em; text-align: left; }
.dethrone p { font-size: 0.9375rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; max-width: 40ch; }
.dethrone .btn-primary { white-space: nowrap; }

/* ------------------------------------------- profile page v2 components */
.profile-hero { flex-wrap: wrap; align-items: flex-start; padding-bottom: 1.5rem; }
.logo.tile.xl {
  width: 5.5rem; height: 5.5rem; border-radius: 22px; flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 6px 20px rgba(0,0,0,0.05);
}
.logo.tile.xl img { padding: 0.75rem; }
.ph-main { flex: 1; min-width: 16rem; }
.ph-main h1 { display: flex; align-items: center; gap: 0.625rem; flex-wrap: wrap; }
.ph-main h1 .pill { transform: translateY(0.2rem); }
.ph-tag {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--ink-2); margin-top: 0.375rem; letter-spacing: -0.01em;
}
.ph-ctas {
  display: flex; flex-direction: column; align-items: stretch; gap: 0.625rem;
  padding-top: 0.375rem;
}
.ph-ctas .btn { justify-content: center; font-size: 0.9375rem; padding: 0.625rem 1.25rem; }
.btn-quiet { background: var(--bg-soft); color: var(--ink); }
.btn-quiet:hover { background: #ebebee; }
@media (max-width: 720px) {
  .ph-ctas { flex-direction: row; flex-wrap: wrap; width: 100%; }
}

.statband {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin: 1.25rem 0 1.5rem;
}
@media (max-width: 720px) { .statband { grid-template-columns: repeat(2, 1fr); } .statband .stat:last-child { grid-column: 1 / -1; } }
.stat { background: var(--bg); padding: 1.375rem 1.25rem; text-align: center; }
.stat .v {
  font-size: clamp(1.125rem, 2.4vw, 1.5rem); font-weight: 700;
  letter-spacing: -0.018em; font-variant-numeric: tabular-nums;
}
.stat .k { font-size: 0.8125rem; color: var(--ink-3); margin-top: 0.25rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.chip {
  font-size: 0.8125rem; font-weight: 500; color: var(--ink-2);
  background: var(--bg-soft);
  padding: 0.375rem 0.875rem; border-radius: 980px;
}

.psec { padding: 2.25rem 0 0.5rem; }
.psec-title {
  font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: 700;
  letter-spacing: -0.018em; text-align: left; margin-bottom: 1.5rem;
}
.psec .prose h2 { margin-top: 0; font-size: clamp(1.5rem, 3.4vw, 2rem); letter-spacing: -0.018em; }

.bigquote {
  margin: 2rem 0 0;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  max-width: 40rem;
}
.bigquote p {
  font-size: clamp(1.1875rem, 2.6vw, 1.5rem); font-weight: 600;
  letter-spacing: -0.016em; line-height: 1.3; color: var(--ink);
}

.featgrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 860px) { .featgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featgrid { grid-template-columns: 1fr; } }
.feat {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform 350ms var(--spring), box-shadow 350ms var(--spring);
}
.feat:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feat .fic { margin-bottom: 0.875rem; }
.feat h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; }
.feat p { font-size: 0.9375rem; color: var(--ink-2); margin-top: 0.375rem; line-height: 1.55; }

.plangrid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr)); gap: 1rem;
}
.plan {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform 350ms var(--spring), box-shadow 350ms var(--spring), border-color 200ms ease;
}
.plan:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: rgba(0,113,227,0.35); }
.plan .pname { font-size: 0.8125rem; font-weight: 600; color: var(--blue); letter-spacing: 0.01em; }
.plan .pprice {
  font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em;
  margin-top: 0.375rem; font-variant-numeric: tabular-nums;
}
.plan .pprice span { font-size: 0.8125rem; font-weight: 400; color: var(--ink-3); letter-spacing: 0; }
.plan p { font-size: 0.875rem; color: var(--ink-2); margin-top: 0.5rem; line-height: 1.5; flex: 1; }
.plan .plink {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 500; color: var(--blue); margin-top: 1rem;
}
.fineprint { font-size: 0.8125rem; color: var(--ink-3); margin-top: 1rem; max-width: 60ch; }
.fineprint a { color: var(--ink-2); text-decoration: underline; }

.resgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 720px) { .resgrid { grid-template-columns: 1fr; } }
.res {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  transition: transform 350ms var(--spring), box-shadow 350ms var(--spring), border-color 200ms ease;
}
.res:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: rgba(0,113,227,0.35); }
.res h3 { font-size: 1rem; font-weight: 600; letter-spacing: -0.008em; }
.res p { font-size: 0.875rem; color: var(--ink-2); margin-top: 0.25rem; line-height: 1.5; }
.res .rarrow { color: var(--blue); flex-shrink: 0; }

.rank-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 0 0 4rem;
}
.rank-nav-slot {
  display: flex; flex-direction: column; gap: 0.375rem;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.125rem 1.375rem;
  transition: background 200ms ease, transform 350ms var(--spring);
}
a.rank-nav-slot:hover { background: var(--bg-soft); transform: translateY(-1px); }
span.rank-nav-slot { border-color: transparent; }
.rank-nav-slot.next { text-align: right; align-items: flex-end; }
.rank-nav-slot .hint { font-size: 0.75rem; color: var(--ink-3); }
.rank-nav-slot .nn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.008em;
}
.rank-nav-slot .nn img {
  width: 1.375rem; height: 1.375rem; object-fit: contain;
  border-radius: 6px; border: 1px solid var(--line); background: #fff; padding: 2px;
}
.dethrone .claim-btn {
  font-size: 1.0625rem; font-weight: 500;
  background: #fff; color: var(--ink);
  padding: 0.75rem 1.5rem; border-radius: 980px;
  white-space: nowrap;
}
.dethrone .claim-btn:hover { background: rgba(255,255,255,0.9); }
