/* ============================================================
   FullFarm — Marketing Site Stylesheet
   ============================================================ */

:root {
  /* Brand palette — sampled directly from the FullFarm app & logo */
  --forest: #2f5d2c;
  --forest-deep: #1f4220;
  --forest-bright: #3b6939;
  --leaf: #80cd0d;
  --leaf-deep: #5a9c0a;
  --mint: #a1d39a;
  --sage: #dee5d8;
  --sage-soft: #eef2e9;
  --orange: #ffab40;
  --orange-deep: #e0852a;

  --cream: #f7f6f2;
  --cream-card: #ffffff;
  --dark: #0e0f0e;
  --dark-card: #1c1f1c;
  --dark-card-2: #242824;

  --text-dark: #1c211b;
  --text-muted: #5c655a;
  --text-on-dark: #f3f5ef;
  --text-on-dark-muted: #aab3a4;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 20px 60px -20px rgba(31, 66, 32, 0.25);
  --shadow-card: 0 12px 30px -12px rgba(28, 33, 27, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(128, 205, 13, 0.18);
  animation: blink-dot 2.4s ease-in-out infinite;
}
.eyebrow.on-dark { color: var(--mint); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--text-dark);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--text-muted); line-height: 1.6; }
.section-head.centered { margin-inline: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--leaf);
  color: #16330a;
  box-shadow: 0 14px 30px -10px rgba(128, 205, 13, 0.55);
  animation: pulse-cta 3s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -10px rgba(128, 205, 13, 0.65); animation: none; }
.btn-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}
.btn-dark:hover { transform: translateY(-3px); background: #1d211c; }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(28, 33, 27, 0.18);
  color: var(--text-dark);
}
.btn-outline:hover { border-color: var(--forest-bright); background: rgba(59, 105, 57, 0.06); }
.btn-outline.on-dark { border-color: rgba(255, 255, 255, 0.25); color: var(--text-on-dark); }
.btn-outline.on-dark:hover { border-color: var(--mint); background: rgba(255, 255, 255, 0.06); }
.btn-block { width: 100%; }

/* ---------- Decorative blobs / leaves ---------- */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  filter: saturate(1.1);
  z-index: 0;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(247, 246, 242, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 30px -16px rgba(28, 33, 27, 0.25);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand img { height: 34px; width: auto; transition: filter 0.4s var(--ease); }
.brand span.brand-name { color: var(--text-on-dark); transition: color 0.4s var(--ease); font-family: var(--font-display); }
.navbar.scrolled .brand span.brand-name { color: var(--text-dark); }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--leaf);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--mint); }
.navbar.scrolled .nav-links a:hover { color: var(--forest-bright); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 210;
}
.burger span { height: 2px; width: 100%; background: var(--text-on-dark); border-radius: 2px; transition: 0.3s var(--ease); }
.navbar.scrolled .burger span { background: var(--text-dark); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 8, 0.55) 0%, rgba(10, 14, 9, 0.55) 35%, rgba(7, 10, 7, 0.92) 100%),
              linear-gradient(90deg, rgba(6, 9, 6, 0.75) 0%, rgba(6, 9, 6, 0.15) 55%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-copy .logo-badge {
  width: 86px; height: 86px;
  margin-bottom: 28px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.4));
  animation: float-soft 6s ease-in-out infinite;
}
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: var(--text-on-dark);
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--mint);
  position: relative;
}
.hero-copy p.lead {
  font-size: 19px;
  color: var(--text-on-dark-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pills span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-pills span::before { content: "✓"; color: var(--leaf); font-weight: 800; }

/* Hero phone mock cluster */
.hero-visual { position: relative; height: 600px; }
.phone {
  position: absolute;
  width: 230px;
  border-radius: 32px;
  background: #0b0c0b;
  padding: 10px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone img { border-radius: 22px; width: 100%; display: block; }
.phone.phone-back {
  right: 40px;
  top: 10px;
  width: 215px;
  opacity: 0.85;
  transform: rotate(7deg);
  animation: float-a 7s ease-in-out infinite;
  z-index: 1;
}
.phone.phone-front {
  right: 150px;
  top: 95px;
  width: 250px;
  transform: rotate(-6deg);
  animation: float-b 8s ease-in-out infinite;
  z-index: 2;
}
@keyframes float-a { 0%,100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-16px); } }
@keyframes float-b { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-20px); } }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pop-in { 0% { transform: scale(0.6); opacity: 0; } 70% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
@keyframes pulse-cta { 0%,100% { box-shadow: 0 14px 30px -10px rgba(128,205,13,0.55); } 50% { box-shadow: 0 14px 44px -6px rgba(128,205,13,0.75); } }
@keyframes slide-in-left { from { opacity:0; transform:translateX(-52px); } to { opacity:1; transform:translateX(0); } }
@keyframes slide-in-right { from { opacity:0; transform:translateX(52px); } to { opacity:1; transform:translateX(0); } }
@keyframes blink-dot { 0%,100% { box-shadow: 0 0 0 4px rgba(128,205,13,0.18); } 50% { box-shadow: 0 0 0 7px rgba(128,205,13,0.08); } }
@keyframes icon-bounce { 0%,100%{transform:translateY(0) scale(1);} 30%{transform:translateY(-6px) scale(1.12);} 60%{transform:translateY(2px) scale(0.96);} }
@keyframes hero-fade-up { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-on-dark-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--mint), transparent); animation: pulse-line 2s ease-in-out infinite; }
@keyframes pulse-line { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--forest-deep);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee {
  display: flex;
  width: max-content;
  animation: scroll-marquee 26s linear infinite;
}
.marquee span {
  color: var(--sage-soft);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.marquee span::after { content: "•"; color: var(--leaf); }
@keyframes scroll-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 130px 0 100px; background: var(--cream); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid rgba(28,33,27,0.05);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -18px rgba(28,33,27,0.22); }
.feature-card:hover .feature-icon { animation: icon-bounce 0.55s var(--ease); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
}
.feature-card h3 { font-size: 21px; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.feature-card .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest-bright);
}
.fc-milk .feature-icon { background: #e3f0e1; }
.fc-health .feature-icon { background: #fde3e3; }
.fc-expense .feature-icon { background: #eafcd6; }
.fc-events .feature-icon { background: #fff1da; }
.fc-cows .feature-icon { background: #e6e9fb; }
.fc-reports .feature-icon { background: #def5ee; }

/* ============================================================
   SHOWCASE (zig-zag)
   ============================================================ */
.showcase { padding: 100px 0; background: var(--cream); }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
}
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }
.showcase-row + .showcase-row { border-top: 1px solid rgba(28,33,27,0.08); }

.showcase-text .eyebrow { margin-bottom: 14px; }
.showcase-text h3 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.showcase-text p { color: var(--text-muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 26px; }
.showcase-text ul { display: flex; flex-direction: column; gap: 12px; }
.showcase-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-dark); font-weight: 500;
}
.showcase-text ul li .dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  color: #16330a;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  margin-top: 1px;
}

.showcase-visual { display: flex; justify-content: center; position: relative; }
.phone-frame {
  width: 280px;
  border-radius: 38px;
  background: #0c0d0c;
  padding: 12px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(28,33,27,0.06);
  position: relative;
  transition: transform 0.6s var(--ease);
}
.phone-frame:hover { transform: rotate(0deg) translateY(-6px) scale(1.015); }
.phone-frame img { border-radius: 28px; width: 100%; }
.phone-frame.tilt-l { transform: rotate(-3deg); }
.phone-frame.tilt-r { transform: rotate(3deg); }
.showcase-visual::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128,205,13,0.16), transparent 70%);
  z-index: -1;
  filter: blur(6px);
}

/* ============================================================
   WORKSPACES
   ============================================================ */
.workspaces { padding: 110px 0; background: var(--dark); color: var(--text-on-dark); position: relative; overflow: hidden; }
.ws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.ws-card {
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.45s var(--ease);
}
.ws-card:hover { transform: translateY(-8px); }
.ws-card.farmer { background: linear-gradient(155deg, rgba(59,105,57,0.35), rgba(15,18,15,0.4)); }
.ws-card.receiver { background: linear-gradient(155deg, rgba(255,171,64,0.22), rgba(15,18,15,0.4)); }
.ws-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 26px;
}
.ws-card.farmer .ws-icon { background: var(--leaf); color: #16330a; }
.ws-card.receiver .ws-icon { background: var(--orange); color: #3a2304; }
.ws-card h3 { color: var(--text-on-dark); font-size: 25px; margin-bottom: 12px; }
.ws-card p { color: var(--text-on-dark-muted); font-size: 15.5px; line-height: 1.65; margin-bottom: 24px; }
.ws-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.ws-card ul li { font-size: 14.5px; color: var(--text-on-dark); display: flex; gap: 10px; align-items: center; }
.ws-card.farmer ul li::before { content: "🌱"; }
.ws-card.receiver ul li::before { content: "🚚"; }
.ws-pill {
  position: absolute; top: 30px; right: 32px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.ws-card.farmer .ws-pill { background: rgba(128,205,13,0.18); color: var(--mint); }
.ws-card.receiver .ws-pill { background: rgba(255,171,64,0.18); color: var(--orange); }

/* ============================================================
   THEME DEMO
   ============================================================ */
.theme-demo { padding: 120px 0; background: var(--sage-soft); overflow: hidden; }
.theme-demo .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.theme-toggle-row { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.theme-switch {
  width: 68px; height: 38px;
  border-radius: 999px;
  background: var(--dark);
  position: relative;
  padding: 4px;
  transition: background 0.4s var(--ease);
}
.theme-switch .knob {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.45s var(--ease);
}
.theme-switch.is-light { background: var(--sage); }
.theme-switch.is-light .knob { transform: translateX(30px); }
.theme-demo-frame { position: relative; display: flex; justify-content: center; }
.theme-demo-frame .phone-frame { width: 300px; }
.theme-demo-frame img { transition: opacity 0.5s var(--ease); }
.img-stack { position: relative; }
.img-stack img.dark-shot { position: absolute; inset: 0; opacity: 0; }
.img-stack.show-dark img.light-shot { opacity: 0; }
.img-stack.show-dark img.dark-shot { opacity: 1; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { padding: 110px 0; background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; position: relative; margin-top: 30px; }
.steps-grid::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(59,105,57,0.3) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: left; }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--cream-card);
  border: 2px solid var(--forest-bright);
  color: var(--forest-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.step:hover .step-num { transform: scale(1.12) rotate(-6deg); background: var(--forest-bright); color: #fff; }
.step.revealed .step-num { animation: pop-in 0.6s var(--ease) both; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 130px 0; background: var(--forest-deep); position: relative; overflow: hidden; text-align: center; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(128,205,13,0.18), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(161,211,154,0.15), transparent 45%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--text-on-dark); font-size: clamp(32px, 5vw, 50px); max-width: 720px; margin: 0 auto 20px; }
.cta p { color: var(--text-on-dark-muted); font-size: 18px; max-width: 540px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); color: var(--text-on-dark-muted); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--text-on-dark); font-size: 14px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-52px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(52px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Hero entrance stagger */
.hero-copy 