/* ═══════════════════════════════════════════════════════════
   SNAPTACT — Homepage (index.html) Styles
   Page-specific CSS only — common.css loaded first
   ═══════════════════════════════════════════════════════════ */

/* ── SECTION 1: HERO ───────────────────────────────────── */
.hero {
  padding: 140px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-glow);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 32px;
  animation: fadeDown 0.6s ease both;
}
.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2.5s ease infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  max-width: 800px;
  margin: 0 auto 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  color: var(--gray-mid);
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-warm);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
  margin-bottom: 56px;
}

/* Trusted by */
.hero-trust {
  animation: fadeUp 0.7s ease 0.45s both;
  padding-bottom: 80px;
}
.hero-trust .trust-label {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 16px;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-light);
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--gray-warm); }

/* ── SECTION 2: LIVE STATS BAR ─────────────────────────── */
.stats-bar {
  background: var(--ink);
  color: var(--dark-text);
  padding: 28px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1;
}
.stat-number.green { color: var(--green-bright); }
.stat-label {
  font-size: 13px;
  color: var(--dark-text-dim);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

/* ── SECTION 3: INTERACTIVE DEMO ───────────────────────── */
.demo-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center top, rgba(22,163,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.demo-label {
  text-align: center;
  margin-bottom: 48px;
}
.demo-label .overline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.demo-label h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.demo-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: center;
}

/* Email compose side */
.email-compose {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.email-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--dark-surface-2);
  border-bottom: 1px solid var(--dark-border);
}
.email-topbar .dot-row { display: flex; gap: 6px; }
.email-topbar .dot-row span { width: 10px; height: 10px; border-radius: 50%; background: var(--dark-surface-3); }
.email-topbar .title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text-dim);
}
.email-body { padding: 20px; }
.email-field {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 13px;
}
.email-field:last-of-type { border-bottom: none; }
.email-field .field-label {
  font-weight: 600;
  color: var(--dark-text-dim);
  width: 56px;
  flex-shrink: 0;
}
.email-field .field-value {
  color: var(--dark-text);
  font-family: var(--font-mono);
  font-size: 12px;
}
.email-field .field-value.green { color: var(--green-bright); }
.email-body-text {
  padding: 16px 0;
  font-size: 13px;
  color: var(--dark-text-dim);
  line-height: 1.6;
}
.email-body-text .note {
  color: var(--dark-text);
  font-style: italic;
}

/* Arrow */
.demo-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--green);
}
.demo-arrow .arrow-line {
  width: 2px;
  height: 0;
  background: var(--green);
  animation: arrowGrow 1.5s ease 1.5s both;
}
.demo-arrow .arrow-head {
  font-size: 14px;
  opacity: 0;
  animation: fadeIn 0.4s ease 2.2s both;
}
.demo-arrow .arrow-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  opacity: 0;
  animation: fadeIn 0.4s ease 2s both;
}

/* Extraction side */
.extraction-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.extraction-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--dark-surface-2);
  border-bottom: 1px solid var(--dark-border);
}
.extraction-header .badge {
  background: var(--green-dim);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.extraction-header .badge .check { font-size: 10px; }
.extraction-header .title {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text-dim);
}
.extraction-body { padding: 20px; }
.extracted-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
  opacity: 0;
}
.extracted-row:last-child { border-bottom: none; }
.extracted-row .ex-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.extracted-row .ex-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
}
.extracted-row .ex-value.mono {
  font-family: var(--font-mono);
  font-size: 13px;
}
.auth-badges {
  display: flex;
  gap: 6px;
  padding-top: 16px;
  opacity: 0;
}
.auth-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.auth-badge.pass {
  background: rgba(22,163,74,0.1);
  color: var(--green-bright);
}

@media (max-width: 768px) {
  .demo-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .demo-arrow {
    writing-mode: initial;
    flex-direction: row;
    padding: 8px 0;
  }
  .demo-arrow .arrow-line { width: 0; height: 2px; }
  .demo-arrow .arrow-label { writing-mode: initial; }
}

/* ── SECTION 4: THE FORK ───────────────────────────────── */
.fork-section {
  padding: var(--section-pad) 0;
  text-align: center;
}
.fork-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.fork-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.fork-sub {
  font-size: 17px;
  color: var(--gray-warm);
  margin-bottom: 48px;
}

.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.fork-card {
  background: var(--white);
  border: 2px solid var(--gray-whisper);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.fork-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}
.fork-card:hover {
  border-color: var(--green-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.fork-card:hover::before { transform: scaleX(1); }
.fork-card .fork-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.fork-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.fork-card .fork-pain {
  font-size: 15px;
  color: var(--gray-warm);
  line-height: 1.6;
  margin-bottom: 24px;
}
.fork-card .fork-pain strong {
  color: var(--ink);
  font-weight: 600;
}
.fork-card .fork-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.fork-card:hover .fork-link { gap: 10px; }

@media (max-width: 640px) {
  .fork-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 5: THE INBOX ADVANTAGE ────────────────────── */
.inbox-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

.inbox-label {
  text-align: center;
  margin-bottom: 56px;
}
.inbox-label .overline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.inbox-label h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.inbox-label p {
  font-size: 17px;
  color: var(--dark-text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.inbox-compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.inbox-path {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.inbox-path.old .path-header { color: var(--red); }
.inbox-path.new .path-header { color: var(--green-bright); }
.path-header {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.path-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.path-step:last-child { margin-bottom: 0; }
.path-step .step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.inbox-path.old .step-dot { background: rgba(239,68,68,0.1); color: var(--red); }
.inbox-path.new .step-dot { background: rgba(22,163,74,0.1); color: var(--green-bright); }
.path-step .step-text {
  font-size: 14px;
  line-height: 1.55;
}
.path-step .step-text strong {
  display: block;
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 2px;
}
.path-step .step-text span {
  color: var(--dark-text-dim);
  font-size: 13px;
}

.inbox-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inbox-vs span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text-muted);
  font-style: italic;
}

.inbox-stat {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-border);
}
.inbox-stat .big-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--green-bright);
  letter-spacing: -3px;
  line-height: 1;
}
.inbox-stat .big-label {
  font-size: 17px;
  color: var(--dark-text-dim);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .inbox-compare { grid-template-columns: 1fr; gap: 16px; }
  .inbox-vs {
    padding: 8px 0;
  }
}

/* ── SECTION 6: HOW IT WORKS ───────────────────────────── */
.how-section {
  padding: var(--section-pad) 0;
  text-align: center;
}
.how-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.how-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.how-sub {
  font-size: 16px;
  color: var(--gray-warm);
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--green-wash);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray-warm);
  line-height: 1.65;
}
.step-detail {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-detail .icon { font-size: 14px; }

/* Aha moment */
.aha-block {
  margin-top: 48px;
  background: var(--white);
  border: 2px solid var(--green-wash);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.aha-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 4px;
}
.aha-block h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.aha-block h4 em {
  font-style: italic;
  color: var(--green);
}
.aha-block p {
  font-size: 15px;
  color: var(--gray-warm);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .aha-block { flex-direction: column; padding: 28px; }
}

/* ── SECTION 7: SOCIAL PROOF ───────────────────────────── */
.proof-section {
  padding: 0 0 var(--section-pad);
}
.proof-section .container { max-width: 900px; }

.proof-quote {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--gray-whisper);
  border-bottom: 1px solid var(--gray-whisper);
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 24px;
}
.proof-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
}
.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.proof-title {
  font-size: 13px;
  color: var(--gray-warm);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-card .stars {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.proof-card p {
  font-size: 14px;
  color: var(--gray-warm);
  line-height: 1.6;
  margin-bottom: 16px;
}
.proof-card .card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-card .card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--gray-warm);
}
.proof-card .card-name { font-size: 13px; font-weight: 600; }
.proof-card .card-role { font-size: 12px; color: var(--gray-mid); }

@media (max-width: 768px) {
  .proof-cards { grid-template-columns: 1fr; }
}

/* ── SECTION 8: TRY IT NOW (LIVE DEMO PREVIEW) ────────── */
.try-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
}
.try-label {
  text-align: center;
  margin-bottom: 48px;
}
.try-label .overline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.try-label h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.try-label p {
  font-size: 16px;
  color: var(--dark-text-dim);
}

.try-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

/* Tact page mockup */
.tact-mock {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.tact-mock .tact-brand {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-display);
}
.tact-mock h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tact-mock .tact-sub {
  font-size: 13px;
  color: var(--gray-warm);
  margin-bottom: 24px;
  line-height: 1.5;
}
.tact-cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}
.tact-cta-btn:hover { background: var(--green-bright); }
.tact-webmail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.tact-webmail .or-text {
  font-size: 12px;
  color: var(--gray-mid);
}
.webmail-btn {
  padding: 6px 12px;
  border: 1px solid var(--gray-whisper);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-warm);
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}
.webmail-btn:hover { border-color: var(--gray-light); background: var(--cream); }
.tact-privacy {
  font-size: 11px;
  color: var(--gray-mid);
  line-height: 1.5;
}
.tact-powered {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-whisper);
  font-size: 11px;
  color: var(--gray-light);
}
.tact-powered strong { color: var(--green); font-weight: 600; }

/* Live feed */
.live-feed {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark-border);
}
.feed-header .left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}
.feed-header .live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
.feed-header .right {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dark-text-muted);
}

.feed-items { padding: 8px 0; position: relative; min-height: 300px; }
.feed-items::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--dark-surface));
  pointer-events: none;
}
.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(-8px);
}
.feed-item .fi-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feed-item .fi-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(22,163,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.feed-item .fi-email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dark-text-dim);
}
.feed-item .fi-domain {
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  color: var(--dark-text-dim);
  margin-left: 8px;
}
.feed-item .fi-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feed-item .fi-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(22,163,74,0.1);
  color: var(--green-bright);
}
.feed-item .fi-time {
  font-size: 11px;
  color: var(--dark-text-muted);
  min-width: 28px;
  text-align: right;
}

.feed-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.feed-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.feed-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .try-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 9: FINAL CTA (homepage overrides) ─────────── */
.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
}
.final-cta .cta-sub {
  font-size: 17px;
  color: var(--gray-warm);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta .final-note {
  font-size: 13px;
}

/* ── HOMEPAGE KEYFRAMES ────────────────────────────────── */
@keyframes arrowGrow {
  from { height: 0; }
  to { height: 40px; }
}
@keyframes slideInFeed {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes extractReveal {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
