/* ===========================================================
   MIFTA — Design System
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Core palette */
  --bg: #FFFDF7;
  --bg-warm: #F4EFE0;
  --bg-warm-soft: #FDF5E8;
  --ink: #1A1A1A;
  --ink-soft: #2A2A2A;
  --ink-muted: #4A4A4A;
  --ink-faint: #6B5D48;
  --ink-trace: #8B7E68;
  --border: #E8E2D0;
  --border-soft: #F0EADC;

  /* Accents */
  --yellow: #FFD25C;
  --yellow-deep: #4A3F1A;
  --coral: #FF7849;
  --coral-soft: #FFE0D0;
  --coral-deep: #C44A2F;
  --green: #1D9E75;
  --green-deep: #2A5F3C;
  --neon-green: #5CFF8A;

  /* Data canvas (live stats / ticker) */
  --data-bg: #0F1410;
  --data-bg-2: #0A0E0A;
  --data-text: #E8F5EC;
  --data-text-soft: #8FA89A;
  --data-divider: #1A2A1F;

  /* Type */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', Menlo, monospace;

  /* Spacing rhythm */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Page container */
  --page-max: 1240px;
  --page-pad: clamp(20px, 4vw, 40px);
}

/* ===========================================================
   Reset + Base
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; }

/* ===========================================================
   Layout primitives
   =========================================================== */
.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.section { padding-block: clamp(48px, 7vw, 80px); }
.section-sm { padding-block: clamp(32px, 5vw, 56px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-trace);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #000; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #FFCB47; }
.btn-large { padding: 18px 32px; font-size: 16px; }

/* ===========================================================
   Live ticker
   =========================================================== */
.ticker {
  background: var(--data-bg);
  color: var(--data-text);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 50s linear infinite;
  will-change: transform;
}
.ticker-item { padding-inline: 22px; }
.ticker-item .pulse { color: var(--neon-green); margin-right: 4px; animation: pulse 2s ease-in-out infinite; }
.ticker-item.green { color: var(--neon-green); }
.ticker-item.coral { color: var(--coral); }
.ticker-divider { padding-inline: 12px; color: var(--data-text-soft); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 18px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand svg { height: 24px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.nav-link {
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  cursor: pointer;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 500; }
.nav-cta {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-cta .nav-link { font-size: 13.5px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }

/* Mobile menu trigger */
.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 56px 0 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 32px var(--page-pad);
  gap: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  text-align: center;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.hero-partners {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0.9;
}
.partner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  line-height: 1.1;
}
.partner-mark { flex-shrink: 0; }
.partner-logo { height: 28px; width: auto; object-fit: contain; flex-shrink: 0; }
.partner-logo.logo-sm { height: 22px; }
.partner-logo.logo-lg { height: 32px; }
.partner-text { font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.partner-text .sub { font-weight: 400; opacity: 0.6; display: block; }

.hero-title {
  font-size: clamp(40px, 7.5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0 auto 24px;
  max-width: 14ch;
}
.highlight {
  background: var(--yellow);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  font-size: 12px;
  color: var(--ink-trace);
  letter-spacing: 0.3px;
}

/* ===========================================================
   Live stats
   =========================================================== */
.live-stats-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.live-stats-label .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.live-stats-label .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.live-stats {
  background: var(--data-bg);
  color: var(--data-text);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding-inline: clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--data-divider);
}
.stat:last-child { border-right: none; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-green);
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.stat-label.coral { color: var(--coral); }
.stat-value {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .unit { font-size: 0.5em; color: var(--data-text-soft); }
.stat-note {
  font-size: 11px;
  color: var(--data-text-soft);
  margin-top: 8px;
}

/* ===========================================================
   "Second job" checklist
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.split-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.split-lede {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.checklist {
  background: var(--bg-warm-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  padding-block: 6px;
}
.checklist-item .ex { color: var(--coral-deep); font-weight: 500; flex-shrink: 0; }
.checklist-item .check { color: var(--green); font-weight: 500; flex-shrink: 0; }
.checklist-item .strike {
  text-decoration: line-through;
  color: var(--ink-trace);
}
.checklist-divider {
  border-top: 1px dashed #E0D5BF;
  margin-block: 12px 0;
  padding-top: 14px;
}
.checklist-divider .text { font-weight: 500; color: var(--ink); }

/* ===========================================================
   Audience fork (homepage)
   =========================================================== */
.fork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fork-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.fork-card:hover { transform: translateY(-3px); }
.fork-card .icon { font-size: 28px; line-height: 1; }
.fork-card .title { font-weight: 500; font-size: 19px; margin-top: 16px; margin-bottom: 6px; letter-spacing: -0.01em; }
.fork-card .desc { font-size: 13.5px; line-height: 1.6; }
.fork-card .cta { font-size: 12px; margin-top: 20px; font-weight: 500; }

.fork-renter { background: var(--ink); color: var(--bg); }
.fork-renter .icon, .fork-renter .cta { color: var(--yellow); }
.fork-renter .desc { color: #B8B8B8; }
.fork-landlord { background: var(--yellow); color: var(--ink); }
.fork-landlord .desc { color: var(--yellow-deep); }
.fork-landlord .cta { color: var(--ink); text-decoration: underline; }
.fork-broker { background: var(--coral); color: var(--bg); }
.fork-broker .desc { color: var(--coral-soft); }
.fork-broker .cta { color: var(--bg); text-decoration: underline; }

/* ===========================================================
   How it works
   =========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--border);
}
.step .when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
}
.step .title {
  font-weight: 500;
  font-size: 17px;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.step .desc {
  font-size: 12.5px;
  line-height: 1.55;
}
.step-1 { background: var(--bg-warm); }
.step-1 .when { color: var(--ink-trace); }
.step-1 .desc { color: var(--ink-muted); }
.step-2 { background: var(--yellow); border-color: var(--yellow); }
.step-2 .when { color: var(--yellow-deep); }
.step-2 .desc { color: var(--ink-soft); }
.step-3 { background: var(--coral); color: var(--bg); border-color: var(--coral); }
.step-3 .when { color: var(--coral-soft); }
.step-3 .desc { color: var(--coral-soft); }
.step-4 { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.step-4 .when { color: #8B8B8B; }
.step-4 .desc { color: #B8B8B8; }

/* ===========================================================
   Testimonial
   =========================================================== */
.testimonial {
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.testimonial-quote { position: relative; }
.testimonial-quote .mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 8px;
  display: block;
}
.testimonial-quote .body {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial-quote .body em { font-style: italic; }
.testimonial-quote .by { font-size: 13px; color: var(--ink-muted); }
.testimonial-side { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.testimonial-card .stars { font-size: 11px; color: var(--green); font-weight: 500; }
.testimonial-card .text { font-size: 13px; color: var(--ink); margin-top: 6px; line-height: 1.5; }

/* ===========================================================
   Final CTA
   =========================================================== */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--bg);
}
.final-cta p { font-size: 15px; color: #C8C5BD; max-width: 420px; line-height: 1.55; }
.final-cta .btn { font-size: 17px; padding: 20px 36px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { padding-block: 48px 32px; border-top: 0.5px solid var(--border); }
.footer-logos {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--border);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-trace);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a { font-size: 13.5px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-brand-line { font-size: 12.5px; color: var(--ink-faint); line-height: 1.6; max-width: 280px; margin-top: 10px; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 11.5px;
  color: var(--ink-trace);
  letter-spacing: 0.3px;
}

/* ===========================================================
   Sub-page hero variants
   =========================================================== */
.subpage-hero {
  padding-block: clamp(40px, 6vw, 72px);
}
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.subpage-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-weight: 500;
}
.subpage-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.subpage-hero .sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
}
.subpage-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Visual side panel on sub-pages */
.hero-visual {
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 380px;
  position: relative;
}

/* Listing card preview (used on /rent) */
.listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.listing-card .photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C8D4E0 0%, #A8B8CC 100%);
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.listing-card .badge {
  font-size: 10px;
  background: var(--bg);
  color: var(--green);
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.listing-card .title { font-weight: 500; font-size: 14px; }
.listing-card .meta { font-size: 11.5px; color: var(--ink-trace); }
.listing-card .price { font-size: 16px; font-weight: 500; color: var(--coral); }

/* Generic feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.feature .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: var(--bg-warm);
}
.feature h3 { font-size: 16px; margin-bottom: 6px; font-weight: 500; }
.feature p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }

/* Pricing / commission card */
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card .price-tag {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-card .price-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 20px; }
.price-card.featured .price-sub { color: #B8B8B8; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li {
  font-size: 13.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card li::before { content: '✓'; color: var(--green); font-weight: 500; }

/* ===========================================================
   Section titles
   =========================================================== */
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.section-lede {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .nav-link { display: none; }
  .nav-burger { display: flex; }

  .live-stats { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat { padding: 16px; border-right: 1px solid var(--data-divider); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--data-divider); padding-bottom: 24px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 24px; }

  .split { grid-template-columns: 1fr; gap: 24px; }
  .fork-grid { grid-template-columns: 1fr; gap: 12px; }
  .fork-card { min-height: 160px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testimonial { grid-template-columns: 1fr; gap: 24px; }
  .final-cta { padding: 36px 28px; }
  .final-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-meta { flex-direction: column; gap: 8px; align-items: flex-start; }

  .subpage-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: 280px; }
  .feature-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --page-pad: 18px; }
  .nav { gap: 16px; padding-block: 14px; }
  .nav-brand svg { height: 20px; }
  .nav-cta .btn { padding: 8px 14px; font-size: 12px; }

  .hero-partners { gap: 16px; }
  .partner-text { font-size: 10px; }

  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 10px; }

  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-logos { gap: 18px; }

  .checklist { padding: 20px; }
  .checklist-item { font-size: 13px; }

  .final-cta { padding: 28px 22px; flex-direction: column; align-items: flex-start; }
}

/* Reveal-on-load (light, used sparingly) */
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.6s ease-out backwards; }
.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.15s; }
.rise-3 { animation-delay: 0.25s; }
.rise-4 { animation-delay: 0.35s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
