/* ==========================================================================
   BRIGHT GROWTH AGENCY — Design System
   Signature concept: the "SERP card" — literal Google-result styling used
   as a recurring motif (hero, stats, testimonials) because this agency's
   entire premise is "we get you found first."
   Palette: matched directly to the brand logo — navy blue + lime green,
   sampled from the logo artwork (buildings = blue, growth arrow = green).
   ========================================================================== */

:root {
  /* Color tokens — sampled from the logo */
  --paper: #F6F9F7;
  --paper-deep: #E9EFF0;
  --ink: #16273D;
  --ink-soft: #4A5C70;
  --ink-faint: #7E8CA0;
  --gold: #8BC53F;
  --gold-deep: #6BA023;
  --gold-pale: #EAF4D8;
  --pine: #22487B;
  --pine-deep: #16324F;
  --pine-pale: #DCE6F0;
  --denim: #5B7290;
  --clay: #8A8F94;
  --white: #FFFFFF;
  --line: rgba(22, 39, 61, 0.14);
  --line-soft: rgba(22, 39, 61, 0.08);
  --shadow: 0 20px 40px -20px rgba(16, 40, 65, 0.25);
  --shadow-sm: 0 8px 20px -10px rgba(16, 40, 65, 0.22);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;

  /* Layout */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.12; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-soft); max-width: 640px; }
.mono-stat { font-family: var(--font-mono); font-weight: 600; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-pine { background: var(--pine); color: var(--paper); }
.section-pine h2, .section-pine h3 { color: var(--white); }
.section-pine p { color: rgba(244,246,240,0.82); }
.section-pine .eyebrow { color: var(--gold); }
.section-pine .eyebrow::before { background: var(--white); }
.section-paper-deep { background: var(--paper-deep); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; transition: background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--pine-deep); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-sm); animation: bga-jelly 0.55s ease; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); animation: bga-jelly 0.55s ease; }
.section-pine .btn-outline { border-color: var(--paper); color: var(--paper); }
.section-pine .btn-outline:hover { background: var(--paper); color: var(--pine-deep); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; background: rgba(244,246,240,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft);
  height: var(--nav-h); display: flex; align-items: center;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--pine-deep); }
.logo-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--pine); position: relative; flex-shrink:0; }
.logo-mark::after { content: ""; position: absolute; left: 7px; top: 13px; width: 16px; height: 10px; border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg); }
.logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 500; }
.nav-links .has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 130%; left: 0; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 10px; min-width: 240px; display: none; border: 1px solid var(--line-soft);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 6px; font-size: 14px; color: var(--ink-soft); }
.dropdown a:hover { background: var(--paper-deep); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero / SERP signature component ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; font-size: 13.5px; color: var(--ink-faint); margin-top: 18px; flex-wrap: wrap; }
.hero-trust strong { color: var(--ink); }

.serp-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; border: 1px solid var(--line-soft);
}
.serp-searchbar {
  display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line);
  border-radius: 999px; padding: 12px 18px; font-family: var(--font-body); font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px;
}
.serp-searchbar svg { flex-shrink: 0; opacity: 0.5; }
.serp-typed::after { content: "|"; animation: blink 1s step-start infinite; color: var(--pine); }
@keyframes blink { 50% { opacity: 0; } }
.serp-result { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
.serp-result:last-child { border-bottom: none; }
.serp-url { font-size: 12.5px; color: #1a5a3a; display: flex; align-items: center; gap: 6px; }
.serp-badge { background: var(--pine-pale); color: var(--pine-deep); font-family: var(--font-mono); font-size: 10.5px; padding: 2px 7px; border-radius: 4px; font-weight: 600; }
.serp-title { font-size: 16.5px; color: #1a0dab; margin: 3px 0 4px; font-weight: 500; }
.serp-title.is-client { color: var(--pine-deep); font-weight: 700; }
.serp-desc { font-size: 13.5px; color: var(--ink-faint); margin: 0; }
.serp-stars { color: var(--gold-deep); font-size: 12.5px; margin-bottom: 3px; }
.serp-tag { position: absolute; }
.serp-wrap { position: relative; }
.serp-pin { position: absolute; top: -14px; right: -14px; background: var(--gold); color: var(--pine-deep); font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; padding: 7px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); transform: rotate(4deg); }

/* ---------- Stats strip ---------- */
.stats-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--paper-deep); }
.stats-row { display: flex; justify-content: space-between; padding: 30px 0; flex-wrap: wrap; gap: 20px; }
.stat { flex: 1; min-width: 140px; }
.stat .num { font-family: var(--font-mono); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 700; color: var(--pine-deep); }
.stat .label { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px; transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 24px 48px -18px rgba(139,197,63,0.4), var(--shadow-sm); }
.card:nth-child(even):hover { transform: translateY(-6px) rotate(1deg); }
.card-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--pine-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card a.card-link { color: var(--pine-deep); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.card a.card-link:hover { color: var(--gold-deep); }
.tag { display: inline-block; background: var(--pine-pale); color: var(--pine-deep); font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px; margin-bottom: 10px; }
.tag-gold { background: var(--gold-pale); color: var(--gold-deep); }

/* Icons "draw themselves" on card hover */
.card-icon svg path, .card-icon svg circle:not([fill]) {
  stroke-dasharray: 120; stroke-dashoffset: 120; transition: stroke-dashoffset 0.7s ease;
}
.card:hover .card-icon svg path, .card:hover .card-icon svg circle:not([fill]) { stroke-dashoffset: 0; }

/* ---------- Process (real sequence → numbering justified) ---------- */
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line-soft); }
.process-item:first-child { border-top: none; }
.process-num { font-family: var(--font-mono); font-size: 32px; color: var(--gold-deep); font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--line-soft); }
.testimonial-quote { font-family: var(--font-display); font-size: 18px; line-height: 1.5; color: var(--ink); margin-bottom: 18px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--pine); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
.testimonial-meta { font-size: 13px; color: var(--ink-faint); }
.placeholder-note { font-size: 11.5px; color: var(--ink-faint); font-family: var(--font-mono); margin-top: 14px; display: block; }

/* ---------- Pricing ---------- */
.price-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 28px; position: relative; }
.price-card.is-popular { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.price-popular-badge { position: absolute; top: -14px; right: 24px; background: var(--gold); color: var(--pine-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price-amount { font-family: var(--font-mono); font-size: 34px; font-weight: 700; color: var(--pine-deep); margin: 14px 0 4px; }
.price-amount span { font-size: 14px; color: var(--ink-faint); font-weight: 500; }
.price-feats { margin: 22px 0; padding: 0; list-style: none; }
.price-feats li { padding: 9px 0; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; }
.price-feats li:first-child { border-top: none; }
.price-feats li::before { content: "✓"; color: var(--pine); font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-size: 17px; color: var(--ink); gap: 20px; }
.faq-q .plus { font-family: var(--font-mono); font-size: 20px; color: var(--gold-deep); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 20px; }
.faq-item.is-open .faq-a { max-height: 400px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; background: var(--paper); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--pine); outline: none; }
.form-note { font-size: 12px; color: var(--ink-faint); margin-top: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--pine-deep); color: rgba(244,246,240,0.85); padding: 64px 0 24px; }
.footer h4 { color: var(--white); font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer a { color: rgba(244,246,240,0.75); font-size: 14px; display: block; padding: 6px 0; }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-bottom { border-top: 1px solid rgba(244,246,240,0.15); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 12px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; background: rgba(244,246,240,0.1); display: flex; align-items: center; justify-content: center; padding: 0; }

/* ---------- Sticky mobile CTA + WhatsApp float ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--white); border-top: 1px solid var(--line); padding: 12px 16px; display: none; gap: 10px; box-shadow: 0 -8px 20px -10px rgba(0,0,0,0.15); }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 68px; } }
.wa-float {
  position: fixed; bottom: 90px; right: 20px; z-index: 65; width: 56px; height: 56px; border-radius: 50%;
  background: #22C35E; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .wa-float { bottom: 84px; } }

/* ---------- Exit-intent modal ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(18,40,32,0.55); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.is-visible { display: flex; }
.modal-box { background: var(--paper); border-radius: var(--radius); max-width: 460px; width: 100%; padding: 36px; position: relative; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; color: var(--ink-faint); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: var(--ink-faint); padding: 20px 0 0; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--pine); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Portfolio device-frame placeholders ---------- */
.portfolio-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--white); }
.portfolio-frame-bar { background: var(--paper-deep); padding: 9px 12px; display: flex; gap: 6px; }
.portfolio-frame-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); display: inline-block; }
.portfolio-frame-body {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; text-align: center; padding: 24px; color: var(--pine-deep);
}
.pf-derma { background: linear-gradient(135deg, var(--pine-pale), var(--gold-pale)); }
.pf-dental { background: linear-gradient(135deg, var(--paper-deep), var(--pine-pale)); }
.pf-ecom { background: linear-gradient(135deg, var(--gold-pale), var(--paper-deep)); }
.portfolio-meta { padding: 18px 20px 20px; }
.stat-arrow { font-family: var(--font-mono); font-weight: 700; color: var(--pine-deep); font-size: 18px; display: inline-flex; align-items: center; gap: 8px; }
.stat-arrow .arrow { color: var(--gold-deep); }

/* ---------- Animation keyframes ---------- */
@keyframes bga-slide-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bga-pulse { 0%, 100% { transform: rotate(4deg) scale(1); } 50% { transform: rotate(4deg) scale(1.06); } }
.serp-pin { animation: bga-pulse 2.6s ease-in-out infinite; }
@keyframes bga-jelly {
  0%, 100% { transform: scale(1, 1); }
  30% { transform: scale(1.08, 0.92); }
  50% { transform: scale(0.95, 1.06); }
  70% { transform: scale(1.02, 0.98); }
}
@media (prefers-reduced-motion: reduce) {
  .serp-pin { animation: none; }
  .btn-gold:hover, .btn-outline:hover { animation: none; }
}

/* Cursor sparkle particles (desktop only, spawned by JS) */
.bga-sparkle {
  position: fixed; width: 6px; height: 6px; border-radius: 50%; pointer-events: none; z-index: 200;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: bga-sparkle-fade 0.7s ease-out forwards;
}
@keyframes bga-sparkle-fade {
  0% { opacity: 0.9; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.2) translateY(-16px); }
}

/* ---------- Growing tree illustration ---------- */
/* Safe default: fully visible (no JS / no IntersectionObserver support = tree just shows, fully grown) */
.tree-illustration { max-width: 460px; margin: 0 auto; transform-origin: 50% 100%; }
.tree-illustration.is-grown { animation: bga-tree-sway 5s ease-in-out infinite; animation-delay: 2.3s; }
@keyframes bga-tree-sway { 0%, 100% { transform: rotate(-1deg); } 50% { transform: rotate(1deg); } }
@media (prefers-reduced-motion: reduce) { .tree-illustration.is-grown { animation: none; } }

.tree-trunk { fill: none; stroke: var(--pine); stroke-width: 7; stroke-linecap: round; }
.tree-branch { fill: none; stroke: var(--gold-deep); stroke-width: 4; stroke-linecap: round; }
.tree-leaf { transform-box: fill-box; transform-origin: center; }
.tree-leaf circle.leaf-badge { fill: var(--white); stroke: var(--gold); stroke-width: 2.5; }
.tree-leaf svg, .tree-leaf path, .tree-leaf line, .tree-leaf circle:not(.leaf-badge) { stroke: var(--pine); stroke-dasharray: 80; stroke-dashoffset: 0; }
.tree-leaf:hover path, .tree-leaf:hover line, .tree-leaf:hover circle:not(.leaf-badge) { animation: bga-icon-draw 0.6s ease; }
@keyframes bga-icon-draw { 0% { stroke-dashoffset: 80; } 100% { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .tree-leaf:hover path, .tree-leaf:hover line, .tree-leaf:hover circle:not(.leaf-badge) { animation: none; } }
.tree-leaf { cursor: default; }
.tree-illustration.is-grown .tree-leaf:hover,
.tree-illustration:not(.tree-pending) .tree-leaf:hover { transform: scale(1.12); }
.tree-leaf-label { font-family: var(--font-mono); font-size: 10.5px; fill: var(--ink-soft); text-anchor: middle; }

/* Animating state — only applied by JS when scroll-reveal is actually going to run */
.tree-illustration.tree-pending .tree-trunk { stroke-dasharray: 340; stroke-dashoffset: 340; transition: stroke-dashoffset 1.1s ease; }
.tree-illustration.tree-pending .tree-branch { stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 0.8s ease; }
.tree-illustration.tree-pending .tree-leaf { opacity: 0; transform: scale(0.25); transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1); }
.tree-illustration.tree-pending.is-grown .tree-trunk { stroke-dashoffset: 0; }
.tree-illustration.tree-pending.is-grown .tree-branch { stroke-dashoffset: 0; }
.tree-illustration.tree-pending.is-grown .tree-leaf { opacity: 1; transform: scale(1); }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(1) { transition-delay: 0.9s; }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(2) { transition-delay: 1.0s; }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(3) { transition-delay: 1.1s; }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(4) { transition-delay: 1.0s; }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(5) { transition-delay: 0.9s; }
.tree-illustration.tree-pending.is-grown .tree-branch:nth-of-type(6) { transition-delay: 0.8s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(1) { transition-delay: 1.5s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(2) { transition-delay: 1.65s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(3) { transition-delay: 1.8s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(4) { transition-delay: 1.65s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(5) { transition-delay: 1.5s; }
.tree-illustration.tree-pending.is-grown .tree-leaf:nth-of-type(6) { transition-delay: 1.35s; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.na { color: var(--ink-faint); font-style: italic; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.trust-logo { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-faint); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
