/* ═══════════════════════════════════════════════════════════════
   HATCH LRI™ — Results Page Visual System
═══════════════════════════════════════════════════════════════ */

.results-page {
  background-color: #06060A;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,241,53,0.055) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.r-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(200,241,53,0.60);
  margin-bottom: 18px;
}

.r-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.10;
  color: var(--text);
  margin-bottom: 24px;
}

.r-section-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 52ch;
}

.r-section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.70;
  max-width: 58ch;
  margin-top: -8px;
}

.r-title-dim {
  color: rgba(255,255,255,0.36);
}

.r-section {
  padding: 100px 0;
}

.r-section--alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012) 0%, transparent 100%),
    var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.r-section-header {
  margin-bottom: 60px;
}

/* ══════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════ */
.r-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.r-hero-glow {
  position: absolute;
  top: -120px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,241,53,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.r-hero-inner {
  max-width: 820px;
}

.r-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.044em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 36px;
}

.r-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  max-width: 64ch;
}

/* ══════════════════════════════════════════════════════
   2. PROOF — Split grid + metric cards
══════════════════════════════════════════════════════ */
.r-section--proof {
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,241,53,0.04) 0%, transparent 65%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.r-proof-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 80px;
  align-items: center;
}

.r-proof-left .r-section-title {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  max-width: 22ch;
}

.r-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.r-metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.r-metric-card:hover {
  border-color: rgba(200,241,53,0.22);
  background: rgba(200,241,53,0.04);
  transform: translateY(-2px);
}

.r-metric-val {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.r-metric-val--white {
  color: var(--text);
}

.r-metric-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════
   3. FINDINGS
══════════════════════════════════════════════════════ */
.r-findings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.r-finding {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  gap: 20px;
  transition: background 0.2s ease;
}

.r-finding:hover {
  background: var(--surface2);
}

.r-finding-num {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(200,241,53,0.50);
  flex-shrink: 0;
  padding-top: 4px;
}

.r-finding-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.30;
}

.r-finding-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════════
   4. QUOTES
══════════════════════════════════════════════════════ */
.r-section--quotes {
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(130,90,255,0.04) 0%, transparent 60%),
    var(--bg);
}

.r-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.r-quote {
  background: var(--surface);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease;
}

.r-quote:hover {
  background: var(--surface2);
}

.r-quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(200,241,53,0.30);
  margin: 0;
}

.r-quote-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.r-quote-attr {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════════════════════
   5. SHIFT
══════════════════════════════════════════════════════ */
.r-shift-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 100px;
  align-items: start;
}

.r-shift-anchor {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.r-shift-anchor p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.70;
}

.r-shift-anchor p + p {
  margin-top: 4px;
}

.r-shift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 52px;
}

.r-shift-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.50;
}

.r-shift-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.r-shift-dash {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════
   6. DELIVERABLES
══════════════════════════════════════════════════════ */
.r-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.r-deliverable {
  background: var(--surface2);
  padding: 44px 36px;
  display: flex;
  gap: 20px;
  transition: background 0.2s ease;
}

.r-deliverable:hover {
  background: var(--surface3);
}

.r-deliverable-num {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(200,241,53,0.50);
  flex-shrink: 0;
  padding-top: 4px;
}

.r-deliverable-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--text);
  margin-bottom: 10px;
}

.r-deliverable-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════════
   7. STAGES
══════════════════════════════════════════════════════ */
.r-stages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.r-stage {
  display: grid;
  grid-template-columns: 60px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.r-stage-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.30);
  white-space: nowrap;
}

.r-stage-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.r-stage-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 0, 0.12, 1);
}

.r-stage-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.44);
}

/* ══════════════════════════════════════════════════════
   8. CTA
══════════════════════════════════════════════════════ */
.r-cta {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}

.r-cta-glow {
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.r-cta-inner {
  max-width: 680px;
}

.r-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 28px;
}

.r-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255,255,255,0.50);
  line-height: 1.70;
  max-width: 50ch;
  margin-bottom: 44px;
}

.r-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .r-proof-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .r-proof-left .r-section-title {
    max-width: 100%;
  }
  .r-shift-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .r-shift-list {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .r-hero { padding: 100px 0 72px; }
  .r-section { padding: 72px 0; }
  .r-cta { padding: 100px 0 80px; }
  .r-findings,
  .r-quotes,
  .r-deliverables {
    grid-template-columns: 1fr;
  }
  .r-metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .r-stage {
    grid-template-columns: 56px 1fr;
  }
  .r-stage-name {
    display: none;
  }
}

@media (max-width: 480px) {
  .r-metric-grid {
    grid-template-columns: 1fr;
  }
  .r-finding,
  .r-quote,
  .r-deliverable {
    padding: 28px 24px;
  }
}
