/* ── Navigation (landing-specific overrides) ─────────────────────── */
.logo-icon {
  color: var(--primary-500);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--neutral-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.625rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.active {
  color: var(--neutral-900);
  border-bottom-color: var(--primary-500);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-donate { display: none; }
}


/* ── Hero Section ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-500);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--neutral-200);
}

.hero-title {
  font-size: 4.5rem;
  letter-spacing: -3px;
  margin-bottom: 1.5rem;
  line-height: 1.0;
  color: var(--neutral-900);
  font-weight: 800;
  text-transform: lowercase;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 0.975rem;
  color: var(--neutral-600);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

/* Direct 1→2→3 flow strip — sits between hero CTAs and trust badges so
   skimmers grok what tinkskin does without scrolling to the "How it works"
   section further down. */
.hero-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-md, 14px);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-800, #2a2620);
}
.hero-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}
.hero-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-500);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-flow-arrow {
  color: var(--neutral-400, #9c958a);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .hero-flow-arrow { display: none; }
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  color: var(--neutral-500);
  font-size: 0.8rem;
  font-weight: 400;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-badges svg {
  color: var(--primary-500);
  flex-shrink: 0;
}

/* Stat tiles */
.hero-stats {
  display: flex;
  gap: 0;
  border: 2px solid var(--neutral-900);
}

.stat-tile {
  flex: 1;
  padding: 1rem;
  background: var(--bg-card);
  text-align: center;
}

.stat-tile + .stat-tile {
  border-left: 2px solid var(--neutral-900);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--neutral-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.62rem;
  color: var(--neutral-500);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Hero Visual ─────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
}

.scan-card {
  position: relative;
  padding: 1.5rem;
  overflow: visible;
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  box-shadow: var(--shadow-pop);
  transition: box-shadow var(--duration-base) var(--ease-out);
}

.scan-card:hover {
  box-shadow: var(--shadow-pop);
}

.demo-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  background: var(--bg-secondary);
}

.scan-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  pointer-events: none;
}

/* Scan points */
.scan-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary-400);
  background: rgba(245, 88, 142, 0.20);
}

.scan-point::before,
.scan-point::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--primary-400);
  opacity: 0;
  animation: scan-ring 2.5s ease-out infinite;
}

.scan-point::after {
  inset: -12px;
  animation-delay: 0.7s;
}

@keyframes scan-ring {
  0%   { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0;   transform: scale(2.2); }
}

.p1 { top: 30%; left: 30%; }
.p2 { top: 50%; right: 40%; }
.p3 { bottom: 30%; left: 40%; }

.p1::before { animation-delay: 0s; }
.p1::after  { animation-delay: 0.7s; }
.p2::before { animation-delay: 0.8s; }
.p2::after  { animation-delay: 1.5s; }
.p3::before { animation-delay: 1.6s; }
.p3::after  { animation-delay: 2.3s; }

.scan-results {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: calc(100% - 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-md, 14px);
  box-shadow: var(--shadow-pop);
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--neutral-800);
}

.dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.dot.warning { background: var(--peach-500); }
.dot.success { background: var(--mint-500); }

/* ── Shared section spacing ──────────────────────────────────────── */
.page-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -1.5px;
  margin-bottom: 0.75rem;
  color: var(--neutral-900);
  font-weight: 800;
  text-transform: lowercase;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--neutral-500);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── What is tinkskin? (value-prop 3-column) ───────────────────────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.value-prop {
  text-align: left;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.value-prop:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}
/* Per-card pastel tint that matches the icon — gives each card its own vibe
   without going wild. */
.value-prop:nth-child(1) { background: linear-gradient(180deg, rgba(245,88,142,0.08) 0%, var(--bg-card) 60%); }
.value-prop:nth-child(2) { background: linear-gradient(180deg, rgba(160,124,255,0.08) 0%, var(--bg-card) 60%); }
.value-prop:nth-child(3) { background: linear-gradient(180deg, rgba(90,216,163,0.10) 0%, var(--bg-card) 60%); }

.vp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.25rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.vp-icon-pink     { background: var(--primary-500); }
.vp-icon-lavender { background: var(--accent-500); }
.vp-icon-mint     { background: #2a8a64; }

.value-prop h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--neutral-900);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.value-prop p {
  font-size: 0.92rem;
  color: var(--neutral-700);
  line-height: 1.65;
  margin: 0;
}

/* ── How It Works (3 steps) ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.step-card {
  padding: 2.5rem 2rem;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}

/* Filled chunky number circles with a hard drop shadow — feels stickered
   on instead of just outlined. */
.step-number {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  background: var(--neutral-900);
}

.step-number-1 { background: var(--primary-500); }
.step-number-2 { background: var(--accent-500); }
.step-number-3 { background: #2a8a64; }

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neutral-900);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--neutral-700);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Features Grid (6 cards 3×2) ─────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-md, 14px);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
}

/* Filled square icon tile (rounded). Color matches the original accent. */
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.fi-pink  { background: var(--primary-500); }
.fi-lav   { background: var(--accent-500); }
.fi-mint  { background: #2a8a64; }
.fi-peach { background: #d97706; }

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 0.86rem;
  color: var(--neutral-700);
  line-height: 1.6;
  margin: 0;
}

/* ── Sample Analysis Preview ─────────────────────────────────────── */
.preview-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.preview-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-700);
  background: rgba(245, 88, 142, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: lowercase;
}

.preview-concerns {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
}

.preview-concern {
  background: var(--bg-card);
  border-bottom: 1px solid var(--neutral-200);
  padding: 1rem 1.25rem;
}

.preview-concern:last-child { border-bottom: none; }

.preview-concern-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--neutral-800);
}

.preview-bar-track {
  height: 4px;
  background: var(--neutral-200);
  overflow: hidden;
}

.preview-bar-fill { height: 100%; }
.bar-pink  { background: var(--primary-500); width: 65%; }
.bar-peach { background: var(--peach-500); width: 40%; }
.bar-mint  { background: var(--mint-500); width: 20%; }

.preview-product {
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.preview-product-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neutral-500);
  margin-bottom: 0.4rem;
  text-transform: lowercase;
}

.preview-product-name {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.preview-rationale {
  padding: 0.85rem 1rem;
  background: rgba(160, 124, 255, 0.08);
  border-left: 3px solid var(--accent-500);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--neutral-700);
  line-height: 1.55;
}

.preview-rationale strong {
  color: var(--accent-700, #5b3da8);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* ── FAQ Accordion ───────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass, rgba(0,0,0,0.06));
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
}

details.faq-item {
  background: var(--bg-card);
  border-bottom: 1px solid var(--neutral-200);
  overflow: hidden;
}

details.faq-item:last-child { border-bottom: none; }

details.faq-item[open] {
  border-bottom: 2px solid var(--primary-500);
}

summary.faq-q {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neutral-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: background var(--duration-fast);
}

summary.faq-q:hover { background: var(--neutral-50); }
summary.faq-q::-webkit-details-marker { display: none; }

summary.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-500);
  flex-shrink: 0;
  line-height: 1;
}

details.faq-item[open] summary.faq-q::after { content: '−'; }

.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.75;
}

/* ── Final CTA banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg, 18px);
  color: #fff;
}
.cta-banner h2 {
  color: #fff;
  text-transform: lowercase;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary-700);
  border-color: #fff;
}
.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cta-banner p {
  font-size: 0.95rem;
  color: var(--neutral-400);
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

.cta-banner .btn-primary:hover {
  background: var(--primary-300);
  border-color: var(--primary-300);
  color: var(--neutral-900);
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--neutral-900);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.825rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 700;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--neutral-600);
  transition: color var(--duration-fast);
  display: inline-block;
  padding: 0.4rem 0;
  line-height: 1.4;
}

.footer-links a:hover { color: var(--neutral-900); }

.footer-disclaimer p {
  font-size: 0.775rem;
  color: var(--neutral-500);
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-200);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: var(--neutral-500);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 2px solid var(--neutral-900); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+3) { border-bottom: 2px solid var(--neutral-900); }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
    padding-top: 3rem;
    gap: 3rem;
  }

  .hero-title { font-size: 3rem; letter-spacing: -1.5px; }
  .hero-actions { flex-wrap: wrap; }
  .trust-badges { gap: 1rem; }

  .value-props { grid-template-columns: 1fr; }
  .value-prop { border-right: none; border-bottom: 2px solid var(--neutral-900); }
  .value-prop:last-child { border-bottom: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; border-bottom: 2px solid var(--neutral-900); }
  .step-card:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .scan-results { right: 0.5rem; bottom: 1rem; }
  .preview-section-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .feature-card:nth-last-child(-n+2) { border-bottom: 2px solid var(--neutral-900); }
  .feature-card:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .trust-badges  { flex-direction: column; gap: 0.75rem; }
  .hero-stats    { flex-wrap: wrap; }
  .stat-tile     { flex: 1 1 calc(50% - 1px); }
  .section-title { font-size: 2rem; }
  .cta-banner    { padding: 2.5rem 1rem; }
  .cta-banner h2 { font-size: 1.75rem; }
  .page-section  { padding: 3.5rem 0; }
  .scan-results  { position: static; margin-top: 1rem; }
}

/* ── How It Works (s1b: step-1 hero, rest demoted to pills) ─────────── */
.hiw-hero {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hiw-eyebrow {
  display: inline-block;
  background: rgba(245, 88, 142, 0.12);
  color: var(--primary-700);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.hiw-title {
  font-size: 2.75rem;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--neutral-900);
  font-weight: 800;
  text-transform: lowercase;
  text-wrap: balance;
}

.hiw-lede {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--neutral-700);
  margin: 0 0 2rem;
  text-wrap: balance;
}

.hiw-cta { margin-top: 0.5rem; }

.hiw-then {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hiw-rest {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hiw-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  background: var(--bg-primary);
  border-radius: 9999px;
  border: 1px solid var(--border, #e8e4dc);
}

.hiw-pill-num {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-900);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hiw-pill strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-900);
}

/* ── Features dark / scrapbook (s2a: brutalist asymmetric grid) ─────── */
.features-dark {
  padding: 5rem 0;
  background: var(--neutral-900);
  color: var(--bg-primary);
  /* Full-bleed: this section breaks the page rhythm intentionally */
}

.features-dark-header {
  margin-bottom: 3rem;
}

.features-dark-title {
  font-size: 2.75rem;
  letter-spacing: -1.5px;
  margin: 0 0 0.5rem;
  color: var(--bg-primary);
  font-weight: 800;
  text-transform: lowercase;
}

.features-dark-sub {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

.scrap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.scrap {
  background: var(--bg-primary);
  color: var(--neutral-900);
  padding: 1.5rem;
  transform: rotate(var(--rot, 0deg));
  border: 2px solid var(--neutral-900);
  box-shadow: 5px 5px 0 var(--primary-500);
  transition: transform var(--duration-base, 0.18s) ease;
}

.scrap:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 7px 7px 0 var(--primary-500);
}

.scrap--lg { grid-column: span 5; }
.scrap--md { grid-column: span 4; }
.scrap--sm { grid-column: span 3; }

.scrap-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-700);
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

.scrap strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--neutral-900);
}

.scrap p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--neutral-700);
  margin: 0;
}

@media (max-width: 900px) {
  .scrap--lg { grid-column: span 6; }
  .scrap--md { grid-column: span 6; }
  .scrap--sm { grid-column: span 6; }
}

@media (max-width: 600px) {
  .scrap--lg,
  .scrap--md,
  .scrap--sm { grid-column: span 12; }
  .scrap { transform: rotate(0deg); }
  .features-dark-title,
  .hiw-title { font-size: 2rem; }
}


/* ── Live online counter pill ────────────────────────────────────── */
.online-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.875rem;
  border: 2px solid var(--primary-500);
  background: var(--primary-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
}
