/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--gray-50);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1fr 340px; }
}

.hero__content {}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, .08);
  border: 1px solid rgba(200, 16, 46, .2);
  border-radius: 100px;
  padding: .3rem .75rem;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 2rem;
}
.hero__meta {
  font-size: .8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shield {
  width: 220px;
  height: auto;
  opacity: .9;
  filter: drop-shadow(0 12px 40px rgba(200, 16, 46, .15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Why-audit cards ─────────────────────────────────────── */
.why-audit {
  padding: 4.5rem 0;
  background: var(--gray-50);
}
.section-header {
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-top: .5rem; }

/* ── Methodology callout ─────────────────────────────────── */
.methodology-callout {
  padding: 4rem 0;
}
.method-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .method-block { grid-template-columns: 1fr 1fr; align-items: start; }
}
.method-block .callout { height: 100%; }
.method-criteria {
  list-style: none;
  padding: 0;
}
.method-criteria li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
}
.method-criteria li:last-child { border-bottom: none; }
.method-criteria__num {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 900;
  color: var(--red);
  background: rgba(200, 16, 46, .08);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.method-intro { font-size: .95rem; color: var(--gray-700); margin-bottom: 1.25rem; }
.method-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.25rem;
  text-decoration: none;
}
.method-link:hover { text-decoration: underline; }
.method-link svg { transition: transform .15s; }
.method-link:hover svg { transform: translateX(3px); }

/* ── Rating section ──────────────────────────────────────── */
.rating-section { padding: 5rem 0; }

.rating-table-wrap {
  margin-bottom: 3.5rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rating-table-wrap table { border-radius: 0; }
.rating-table-wrap thead th:first-child { width: 40px; min-width: 40px; text-align: center; }
.rating-table-wrap tbody td:first-child { text-align: center; }

td.rank-1 {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--red) !important;
  font-size: 1rem;
}

.company-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
  white-space: nowrap;
}
.company-tag--boutique {
  background: rgba(200, 16, 46, .08);
  color: var(--red);
}

/* ── Company cards ───────────────────────────────────────── */
.company-cards { display: flex; flex-direction: column; gap: 2rem; }

.company-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.company-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.company-card--top {
  border-color: var(--red);
  border-width: 2px;
}

.company-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
  flex-wrap: wrap;
}
.company-card__rank {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}
.company-card--top .company-card__rank { color: rgba(200, 16, 46, .15); }
.company-card__meta { flex: 1; }
.company-card__meta h3 {
  font-size: 1.25rem;
  margin-bottom: .3rem;
}
.company-card__meta h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color .15s;
}
.company-card__meta h3 a:hover { color: var(--red); }
.company-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

.company-card__body { padding: 1.25rem 1.5rem; }
.company-card__body p { font-size: .95rem; color: var(--gray-700); }
.company-card__services {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.company-card__services li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .9rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  margin: 0;
}
.company-card__services li:last-child { border-bottom: none; }
.company-card__services li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.company-card__footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  border-top: 1px solid var(--gray-100);
}
.company-card__fit {
  font-size: .85rem;
  color: var(--gray-500);
  font-style: italic;
  flex: 1;
}

/* Top card highlight box */
.company-card__why {
  background: rgba(200, 16, 46, .04);
  border-left: 3px solid var(--red);
  padding: .85rem 1rem;
  margin: 1rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .875rem;
  color: var(--gray-700);
}
.company-card__why strong {
  display: block;
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .3rem;
}
.company-card__cve a {
  font-size: .85rem;
  color: var(--red);
}

/* ── Criteria section ────────────────────────────────────── */
.criteria-section {
  padding: 4.5rem 0;
  background: var(--gray-50);
}
.criteria-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .criteria-list { grid-template-columns: repeat(2, 1fr); }
}
.criteria-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.criteria-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.criteria-item h3 { font-size: 1rem; margin-bottom: .35rem; }
.criteria-item p { font-size: .9rem; color: var(--gray-700); margin: 0; }

/* ── Regulatory section ──────────────────────────────────── */
.regulatory-section { padding: 4.5rem 0; }

/* ── Crypto section ──────────────────────────────────────── */
.crypto-section {
  padding: 4.5rem 0;
  background: #0D0D0D;
  color: var(--white);
}
.crypto-section h2 { color: var(--white); }
.crypto-section .section-label { color: rgba(200, 16, 46, .9); }
.crypto-section p { color: rgba(255,255,255,.75); }
.crypto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (min-width: 768px) {
  .crypto-grid { grid-template-columns: repeat(3, 1fr); }
}
.crypto-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.crypto-card__icon {
  color: var(--red);
  margin-bottom: 1rem;
}
.crypto-card h3 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: .5rem;
}
.crypto-card p { font-size: .875rem; color: rgba(255,255,255,.6); margin: 0; }
.crypto-card ul { padding-left: 1.25rem; }
.crypto-card li { font-size: .875rem; color: rgba(255,255,255,.6); }

.crypto-cta {
  background: rgba(200, 16, 46, .12);
  border: 1px solid rgba(200, 16, 46, .25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1rem;
}
.crypto-cta p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 4.5rem 0; }
.faq-list {
  max-width: 780px;
  margin-top: 2.5rem;
}
details {
  border-bottom: 1px solid var(--gray-100);
}
details:first-child { border-top: 1px solid var(--gray-100); }
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after {
  content: '−';
}
details[open] summary { color: var(--red); }
.faq-answer {
  padding: 0 0 1.5rem;
  font-size: .95rem;
  color: var(--gray-700);
  max-width: 680px;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  padding: 5rem 0;
  background: var(--gray-50);
  text-align: center;
  border-top: 1px solid var(--gray-100);
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p {
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
