/* Homepage — Friendly Rounded + letter layout + wide showcase band */

.hero-letter {
  padding: var(--space-5) 0 var(--space-3);
  text-align: left;
}

.hero-letter p {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  max-width: 36rem;
  margin: 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin: var(--space-4) 0;
  padding: var(--space-3);
  background: var(--sky);
  border-radius: var(--radius-card);
}

.trust-strip span {
  display: flex;
  flex-direction: column;
  min-width: 7rem;
}

.trust-strip strong {
  font-size: 1.35rem;
  color: var(--coral);
  font-weight: 800;
}

.updated {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
}

/* Wide showcase band */
.showcase-band {
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
  padding: var(--space-5) 0;
  margin: var(--space-4) 0;
  border-radius: 0;
}

.showcase-band .band-title {
  text-align: center;
  margin-bottom: var(--space-2);
}

.showcase-band .band-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-4);
  color: var(--muted);
}

.showcase-table {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px double var(--navy);
}

.showcase-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.5s ease forwards;
}

.showcase-row:nth-child(1) { animation-delay: 0.05s; }
.showcase-row:nth-child(2) { animation-delay: 0.12s; }
.showcase-row:nth-child(3) { animation-delay: 0.19s; }
.showcase-row:nth-child(4) { animation-delay: 0.26s; }
.showcase-row:nth-child(5) { animation-delay: 0.33s; }
.showcase-row:nth-child(6) { animation-delay: 0.4s; }
.showcase-row:nth-child(7) { animation-delay: 0.47s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showcase-row:last-child {
  border-bottom: 0;
}

.showcase-row.is-featured {
  grid-template-columns: 1fr;
  background: var(--white);
  padding: 0;
  border-bottom: 3px double var(--coral);
}

.featured-card {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.featured-head {
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 800;
  padding: 0.65rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: var(--radius-header);
}

.featured-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
}

@media (max-width: 700px) {
  .featured-body,
  .showcase-row:not(.is-featured) {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .row-action {
    justify-self: start;
  }
}

.logo-box {
  width: 72px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  border-radius: 0.75rem;
  padding: 0.35rem;
}

.logo-box img {
  max-height: 40px;
  max-width: 64px;
  object-fit: contain;
}

.logo-fallback {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--navy);
  text-align: center;
}

.row-meta h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.row-meta p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.match-score {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--coral);
}

.row-action {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: stretch;
  min-width: 9.5rem;
}

.tc-note {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.aff-near {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: var(--white);
  border-radius: var(--radius-card);
  border: 3px double var(--rule);
}

/* Operator rows — bordered, logo left, action right */
.ops-section {
  padding: var(--space-5) 0;
}

.ops-section h2 {
  text-align: center;
}

.op-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.45s ease forwards;
}

.op-row:nth-child(1) { animation-delay: 0.05s; }
.op-row:nth-child(2) { animation-delay: 0.1s; }
.op-row:nth-child(3) { animation-delay: 0.15s; }
.op-row:nth-child(4) { animation-delay: 0.2s; }
.op-row:nth-child(5) { animation-delay: 0.25s; }
.op-row:nth-child(6) { animation-delay: 0.3s; }

.op-row-accent {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  margin: calc(-1 * var(--space-4)) calc(-1 * var(--space-4)) var(--space-3);
  border-radius: var(--radius-header);
}

@media (max-width: 700px) {
  .op-row {
    grid-template-columns: 1fr;
  }
}

/* Comparison table */
.compare-section {
  padding: var(--space-5) 0;
}

.compare-section h2 {
  text-align: center;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 3px double var(--navy);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  min-width: 52rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  position: sticky;
  top: 0;
}

.compare-table tr:nth-child(even) td {
  background: var(--sky);
}

.compare-table .yes {
  color: #1a7a4c;
  font-weight: 800;
}

/* Methodology */
.method-section {
  padding: var(--space-5) 0;
}

.method-section .method-box {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 3px double var(--navy);
  padding: var(--space-4);
}

/* Texture in exactly one section — methodology */
.method-section .method-box {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
}

/* Safety cards */
.safety-section {
  padding: var(--space-5) 0;
  text-align: center;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 2px solid var(--rule);
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 800;
  min-height: 8rem;
  justify-content: center;
  transition: border-color 0.15s ease;
}

.safety-card:hover {
  border-color: var(--coral);
}

.safety-card img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* FAQ */
.faq-section {
  padding: var(--space-5) 0;
}

.faq-section h2 {
  text-align: center;
}

.myth-fact {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-4);
}

@media (max-width: 640px) {
  .myth-fact {
    grid-template-columns: 1fr;
  }
}

.myth-card,
.fact-card {
  border-radius: var(--radius-card);
  padding: var(--space-4);
  border: 3px double var(--navy);
}

.myth-card {
  background: #fff5f3;
}

.myth-card .label {
  font-family: var(--font-ui);
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.fact-card {
  background: var(--sky);
}

.fact-card .label {
  font-family: var(--font-ui);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.faq-list details {
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--radius-card);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
}

.faq-list summary {
  font-family: var(--font-ui);
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}

.faq-list details[open] summary {
  margin-bottom: var(--space-2);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  padding: var(--space-4) 0 var(--space-5);
}

.hero-art {
  margin: var(--space-4) auto 0;
  max-width: 28rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 3px double var(--navy);
}

.hero-art img {
  width: 100%;
}

.section-art {
  margin: var(--space-4) auto;
  max-width: 40rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  opacity: 0.95;
}
