/* ================================================================
   WELLIE INVESTOR WEBSITE — STYLES
   Brand colors extracted directly from wellie.in CSS
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,600;0,700;1,400&family=Fraunces:ital,wght@0,100;0,300;1,100;1,300&display=swap');

:root {
  --teal:        #014E4E;
  --teal-dark:   #0A3535;
  --teal-mid:    #025A60;
  --teal-light:  rgba(1, 78, 78, 0.07);
  --teal-border: rgba(1, 78, 78, 0.18);
  --pink:        #FFB3CF;
  --pink-light:  rgba(255, 179, 207, 0.12);
  --pink-dark:   #ff7aaa;
  --cream:       #F9F3F1;
  --peach:       #FAF1EC;
  --dark:        #3A3A3E;
  --muted:       #7B7B7B;
  --white:       #FFFFFF;
  --border:      rgba(58, 58, 62, 0.1);
  --font:        'Cabin', sans-serif;
  --font-accent: 'Fraunces', serif;
  --max:         1200px;
  --r:           12px;
  --r-sm:        8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
p { margin: 0; }

.w { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ---- NAV ---- */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--teal);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-cta {
  background: var(--pink); color: #1A1A1A;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  padding: 9px 24px; border-radius: 100px; border: none; cursor: pointer;
  transition: background 0.2s; white-space: nowrap; display: inline-block;
}
.nav-cta:hover { background: var(--pink-dark); }

/* ---- HERO ---- */
#hero {
  background: var(--teal);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  overflow: hidden;
}
.hero-text {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(249,243,241,0.55); margin-bottom: 20px;
}
.hero-h1 {
  font-size: 52px; font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 24px; font-family: var(--font);
}
.hero-body {
  font-size: 18px; color: rgba(249,243,241,0.75); line-height: 1.75;
  margin-bottom: 40px; max-width: 480px;
}
.hero-subheader {
  font-size: 16px !important; font-weight: 700 !important;
  color: var(--pink) !important; line-height: 1.5 !important;
  margin-bottom: 40px !important; max-width: 480px;
  padding: 12px 18px; border-radius: var(--r-sm);
  background: rgba(255,179,207,0.1);
  border-left: 3px solid var(--pink);
  letter-spacing: 0.01em;
}
.hero-proof {
  display: flex; gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(249,243,241,0.15);
  margin-top: 8px;
}
.hero-proof-group {
  flex: 1;
  border: 1px solid rgba(249,243,241,0.15); border-radius: var(--r);
  overflow: hidden;
  background: rgba(249,243,241,0.03);
}
.hero-proof-channel {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(249,243,241,0.35); padding: 8px 16px 6px;
  border-bottom: 1px solid rgba(249,243,241,0.1);
}
.hero-proof-items { display: flex; }
.hero-proof-item {
  flex: 1; padding: 14px 16px; border-right: 1px solid rgba(249,243,241,0.1);
  background: transparent;
}
.hero-proof-item:last-child { border-right: none; }
.hero-proof-number { font-size: 40px; font-weight: 700; color: var(--pink); line-height: 1; }
.hero-proof-label { font-size: 11px; color: rgba(249,243,241,0.5); margin-top: 4px; font-weight: 600; }

/* ---- INTRO stat groups ---- */
.istat-group { margin-bottom: 2px; display: flex; flex-direction: column; }
.istat-group-items { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.istat-channel {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(249,243,241,0.4); padding: 8px 20px 6px;
  background: rgba(1,78,78,0.5);
}

/* ---- METRICS channel groups ---- */
.metrics-groups { display: flex; flex-direction: column; gap: 24px; }
.metrics-channel-group {}
.metrics-channel-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(249,243,241,0.4); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(249,243,241,0.1);
}
.hero-image {
  position: relative; overflow: hidden;
  background: var(--teal-dark);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- INTRO ---- */
#intro {
  position: relative;
  background: var(--teal);
  display: flex; flex-direction: column;
  padding: 0;
}
.intro-bg-overlay {
  display: none;
}
.intro-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 60px 40px 60px;
}
.intro-header { margin-bottom: 36px; }
.intro-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px;
}
.intro-moment {
  font-size: 42px; font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 40px; max-width: 700px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.intro-lead {
  font-size: 30px; font-weight: 700; color: var(--white); line-height: 1.35;
  max-width: 600px;
}
.intro-context {
  display: block; margin-top: 18px;
  font-size: 16px; font-weight: 400; font-style: italic;
  color: rgba(249,243,241,0.72); line-height: 1.6;
  border-left: 2px solid var(--pink); padding-left: 14px;
  max-width: 520px;
}
.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(249,243,241,0.1); border-radius: var(--r); overflow: hidden;
}
.istat {
  background: rgba(1,78,78,0.72); backdrop-filter: blur(10px);
  padding: 22px 20px; align-self: stretch;
}
.istat-number { font-size: 32px; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 4px; }
.istat-label { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.istat-detail { font-size: 11px; color: rgba(249,243,241,0.55); line-height: 1.5; }

/* ---- PRODUCTS ---- */
#products {
  background: var(--teal);
  padding: 90px 40px;
}
.products-head {
  max-width: var(--max); margin: 0 auto 48px;
}
.products-head h2 { font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.products-head p { font-size: 16px; color: rgba(249,243,241,0.6); max-width: 560px; }
.products-grid {
  max-width: var(--max); margin: 0 auto 28px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  padding-top: 18px; /* room for badge above focus cards */
}
.product-card {
  background: var(--cream); border-radius: var(--r); overflow: visible;
  transition: transform 0.2s ease; display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); }
.product-card { outline: 2.5px solid var(--pink); }
.product-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #1A1A1A;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap; z-index: 2;
  box-shadow: 0 2px 10px rgba(228,64,108,0.35);
}
.badge-volume {
  background: var(--pink); color: #1A1A1A;
  box-shadow: 0 2px 10px rgba(228,64,108,0.35);
}
.product-card.has-badge { margin-top: 14px; }
.product-img {
  width: 100%; aspect-ratio: 1; background: white;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding: 8px; border-radius: var(--r) var(--r) 0 0;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; }
.product-info { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.tag-pink { background: var(--pink-light); color: var(--pink-dark); }
.tag-teal { background: var(--teal-light); color: var(--teal); }
.product-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 10px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-price { font-size: 15px; font-weight: 700; color: var(--teal); }
.product-cm1 {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-size: 13px; font-weight: 800; color: #fff;
  background: var(--teal); border: none;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(1,78,78,0.25);
  letter-spacing: 0.01em;
}
.product-detail { font-size: 11px; color: var(--muted); }
.products-cert {
  max-width: var(--max); margin: 0 auto;
  background: rgba(249,243,241,0.08); border-radius: var(--r-sm);
  padding: 14px 20px; font-size: 13px; color: rgba(249,243,241,0.6);
  font-weight: 600; letter-spacing: 0.03em;
}

/* ---- MARKET ---- */
#market { background: var(--cream); padding: 110px 40px; }
.section-h {
  font-size: 38px; font-weight: 700; font-family: var(--font);
  color: var(--dark); margin-bottom: 40px; line-height: 1.15;
}
.section-h.light { color: var(--white); }
.market-intro {
  font-size: 17px; color: var(--muted); margin-top: 8px; margin-bottom: 40px; max-width: 760px; line-height: 1.75;
}
.market-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px;
}
.compare-card {
  border-radius: var(--r); padding: 28px 28px 24px; position: relative; overflow: hidden;
}
.compare-card.cream { background: var(--peach); }
.compare-card.teal  { background: var(--teal); }
.compare-era {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.compare-card.cream .compare-era { color: var(--pink); }
.compare-card.teal  .compare-era { color: rgba(249,243,241,0.55); }
.compare-points { display: flex; flex-direction: column; gap: 10px; }
.compare-point {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5;
}
.compare-card.cream .compare-point { color: var(--dark); }
.compare-card.teal  .compare-point { color: rgba(249,243,241,0.85); }
.compare-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.compare-card.cream .compare-dot { background: var(--pink); }
.compare-card.teal  .compare-dot { background: var(--pink); }
.market-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px;
}
.mstat {
  background: var(--peach); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 6px;
  border-top: 3px solid var(--teal);
}
.mstat-n { font-size: 32px; font-weight: 700; color: var(--teal); line-height: 1; }
.mstat-l { font-size: 13px; color: var(--muted); font-weight: 600; }
.market-closer {
  background: var(--teal); color: var(--white); border-radius: var(--r);
  padding: 24px 28px; font-size: 17px; font-weight: 700; line-height: 1.6;
}
.market-post-chart-h {
  font-size: 26px; font-weight: 800; color: var(--dark);
  background: var(--cream); border-radius: var(--r);
  padding: 20px 28px; margin: 40px 0 24px; line-height: 1.3;
}

/* BPC growth curve visual */
.bpc-curve-vis {
  background: var(--peach); border-radius: var(--r); border: 1px solid var(--border);
  padding: 28px 28px 24px; margin-bottom: 32px; overflow-x: auto;
}
.bpc-vis-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.bpc-track {
  display: flex; align-items: center; min-width: 640px;
}
.bpc-segment {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center; flex-shrink: 0;
}
.bpc-seg-year {
  font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em;
}
.bpc-seg-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin: 4px 0;
}
.bpc-dot-bpc { background: var(--pink); }
.bpc-dot-here {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(228,64,108,0.18);
  animation: bpc-pulse 2s ease-in-out infinite;
}
.bpc-dot-future { background: var(--muted); opacity: 0.35; }
@keyframes bpc-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(228,64,108,0.18); }
  50% { box-shadow: 0 0 0 9px rgba(228,64,108,0.08); }
}
.bpc-seg-val { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.1; }
.bpc-seg-name { font-size: 11px; color: var(--muted); font-weight: 600; }
.bpc-here-badge {
  font-size: 9px; font-weight: 700; color: #1A1A1A;
  background: var(--pink); padding: 3px 9px; border-radius: 100px;
  white-space: nowrap; margin-top: 4px;
}
/* arrow between segments */
.bpc-arrow-wrap {
  flex: 1; min-width: 110px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 0;
  padding: 0 6px;
}
.bpc-arrow-line {
  grid-row: 1; grid-column: 1;
  height: 3px; background: rgba(58,58,62,0.18);
  border-radius: 2px; position: relative; overflow: hidden;
}
.bpc-arrow-fill {
  position: absolute; inset: 0;
  background: var(--pink); border-radius: 2px;
}
.bpc-arrow-head {
  grid-row: 1; grid-column: 2;
  font-size: 20px; color: var(--pink); line-height: 1;
  padding-left: 2px; margin-top: -2px;
}
.bpc-arrow-label {
  grid-row: 2; grid-column: 1 / 3;
  font-size: 10px; color: var(--muted); font-weight: 600;
  text-align: center; line-height: 1.45;
}
.bpc-arrow-dashed {
  background: repeating-linear-gradient(
    90deg, rgba(58,58,62,0.2) 0, rgba(58,58,62,0.2) 5px,
    transparent 5px, transparent 11px
  );
  overflow: visible;
}
.bpc-arrow-dashed .bpc-arrow-fill { display: none; }
.bpc-head-proj { color: var(--teal); opacity: 0.7; }
/* vertical divider between BPC era and Pet Supplements */
.bpc-divider-line {
  width: 1px; height: 70px; background: var(--border);
  flex-shrink: 0; margin: 0 20px; position: relative;
}
.bpc-divider-line::before {
  content: 'TODAY';
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: 8px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--muted); white-space: nowrap;
}
/* Pet supplements opportunity visual (dark variant of bpc-curve-vis) */
.pet-supp-vis {
  background: var(--teal); border-radius: var(--r);
  padding: 28px 28px 24px; margin-bottom: 32px; overflow-x: auto;
}
.pet-supp-vis .bpc-vis-label { color: rgba(249,243,241,0.45); }
.pet-supp-vis .bpc-seg-year  { color: rgba(249,243,241,0.5); }
.pet-supp-vis .bpc-seg-val   { color: var(--white); }
.pet-supp-vis .bpc-seg-name  { color: rgba(249,243,241,0.6); }
.pet-supp-vis .bpc-arrow-label { color: rgba(249,243,241,0.55); }
.pet-supp-vis .bpc-arrow-dashed {
  background: repeating-linear-gradient(
    90deg, rgba(249,243,241,0.25) 0, rgba(249,243,241,0.25) 5px,
    transparent 5px, transparent 11px
  );
}
.pet-supp-vis .bpc-head-proj { color: var(--pink); opacity: 1; }

/* BPC overlay chart */
.bpc-overlay-card {
  background: #fff;
  border: 1.5px solid var(--teal-border);
  border-radius: var(--r);
  padding: 28px 32px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(1,78,78,0.08);
}
.bpc-overlay-header {
  margin-bottom: 14px;
}
.bpc-ol-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); opacity: 0.5;
}
.bpc-overlay-chart-wrap {
  height: 360px;
  position: relative;
  margin-bottom: 20px;
}
.bpc-overlay-legend {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: flex-start;
}
.bpc-ol-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.bpc-ol-item strong {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--dark);
}
.bpc-ol-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
.bpc-ol-line {
  width: 36px; height: 3px;
  border-radius: 2px; flex-shrink: 0; margin-top: 2px;
}
.bpc-ol-solid {
  background: #C8465F;
}
.bpc-ol-petcare {
  background: #A5CC3A;
}
.bpc-ol-dashed {
  background: repeating-linear-gradient(
    90deg, #014E4E 0 7px, transparent 7px 13px
  );
}
.bpc-ol-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  line-height: 1.55;
}

/* Market section eyebrow */
.market-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(1,78,78,0.45);
  margin-bottom: 10px;
}

/* BPC chart year labels */
.bpc-ol-year-labels {
  display: flex; gap: 20px; margin-top: 6px;
}
.bpc-ol-year-labels span {
  font-size: 10px; color: rgba(1,78,78,0.45); font-weight: 600;
}
.bpc-ol-year-labels span:first-child::before { content: '●'; color: #C8465F; margin-right: 5px; }
.bpc-ol-year-labels span:last-child::before  { content: '●'; color: #A5CC3A; margin-right: 5px; }

/* You are here annotation */
.bpc-you-are-here {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  z-index: 10;
}
.bpc-yah-star {
  font-size: 20px; color: #A5CC3A; line-height: 1;
  filter: drop-shadow(0 0 4px rgba(197,135,42,0.5));
}
.bpc-yah-text {
  background: #A5CC3A; color: #fff;
  font-size: 9px; font-weight: 700; font-family: var(--font);
  padding: 3px 7px; border-radius: 100px; white-space: nowrap; text-align: center;
  line-height: 1.4;
}
.bpc-yah-text small { font-size: 8px; opacity: 0.85; }

/* Market trends grid */
.market-trends-section {
  margin: 36px 0 32px;
}
.market-trends-head {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(1,78,78,0.5);
  margin-bottom: 20px;
}
.market-humanisation {
  font-size: 17px; font-weight: 600; color: var(--dark);
  line-height: 1.65; margin-bottom: 24px;
  padding: 22px 28px;
  background: var(--peach); border-radius: var(--r);
  border-left: 3px solid var(--teal);
  box-shadow: 0 2px 12px rgba(1,78,78,0.07);
}
.market-trends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--teal-border);
  border-radius: var(--r);
  overflow: hidden;
}
.market-trend-card {
  background: var(--white);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.2s ease;
}
.market-trend-card:hover { transform: translateY(-2px); }
.market-trend-number {
  font-size: 26px; font-weight: 700; color: var(--teal); line-height: 1;
}
.market-trend-label {
  font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.35;
}
.market-trend-detail {
  font-size: 12px; color: var(--muted); line-height: 1.5; flex: 1;
}
.market-trend-source {
  font-size: 10px; color: rgba(1,78,78,0.4); font-weight: 600;
  margin-top: 4px;
}

/* Market sneak peek callout */
.market-sneak { margin-top: 24px; }
.sneak-inner {
  background: var(--teal); border-radius: var(--r);
  padding: 22px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sneak-arrow { font-size: 36px; color: var(--pink); line-height: 1; flex-shrink: 0; }
.sneak-body { flex: 1; min-width: 160px; }
.sneak-number { font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.sneak-label { font-size: 13px; color: rgba(249,243,241,0.55); font-weight: 600; margin-top: 4px; }
.sneak-cta {
  display: inline-flex; align-items: center;
  background: var(--pink); color: #1A1A1A;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s;
}
.sneak-cta:hover { background: var(--pink-dark); }

/* Sneak peek inside intro section — slightly elevated on solid teal */
#intro .sneak-inner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---- STATEMENT ---- */
#statement {
  background: var(--pink);
  padding: 80px 40px;
  text-align: center;
}
.statement-text {
  max-width: 800px; margin: 0 auto;
  font-size: 32px; font-weight: 700; color: #1A1A1A; line-height: 1.4;
}

/* ---- TEAM ---- */
#team { background: var(--peach); padding: 110px 40px; }
.team-inner { max-width: var(--max); margin: 0 auto; }
.team-inner .section-h { margin-bottom: 56px; }

/* Tiered rails layout */
.team-tiers { display: flex; flex-direction: column; }
.team-tier {
  display: flex; align-items: flex-start; gap: 0;
}

/* Label column */
.tier-label-col {
  width: 120px; flex-shrink: 0;
  padding-top: 20px; text-align: right; padding-right: 20px;
}
.tier-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* Spine column */
.tier-spine-col {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 24px; padding-top: 20px;
}
.tier-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; z-index: 1;
}
.tier-dot-primary { background: var(--teal); }
.tier-dot-lime    { background: #A5CC3A; }
.tier-dot-sm      { width: 8px; height: 8px; background: var(--pink); margin-top: 2px; }
.tier-spine-line  { width: 2px; flex: 1; min-height: 32px; background: rgba(1,78,78,0.15); margin-top: 6px; }
.team-tier-last .tier-spine-col { padding-bottom: 0; }

/* Cards column */
.tier-cards-col {
  flex: 1; display: flex; gap: 16px; flex-wrap: wrap; align-items: stretch;
  padding: 12px 0 32px 20px;
}
.team-tier-last .tier-cards-col { padding-bottom: 0; }

/* Leadership cards — solid teal */
.t-lead-card {
  flex: 1; min-width: 220px; max-width: 320px;
  background: var(--teal); border-radius: var(--r); padding: 22px 24px;
  position: relative; overflow: hidden;
}
.t-lead-card::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(165,204,58,0.12);
}
.t-lead-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #A5CC3A; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--teal-dark);
}
.t-lead-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.t-lead-name  { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.t-lead-role  { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A5CC3A; margin-bottom: 10px; }
.t-lead-bio   { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.6; }

/* Force 3+3 wrap on the 6-card team tier */
.team-tier-rows .t-team-card {
  flex: 1 1 260px; min-width: 260px; max-width: none;
}

/* Team cards — Tier 2: teal-mid, slightly lighter */
.t-team-card {
  flex: 1; min-width: 180px; max-width: 300px;
  background: var(--teal-mid); border-radius: var(--r); padding: 18px 20px;
  position: relative; overflow: hidden;
}
.t-team-card::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,179,207,0.1);
}

/* Support cards — Tier 3a: lightest teal */
.t-supp-card {
  flex: 1; min-width: 180px; max-width: 300px;
  background: #0A6B6B; border-radius: var(--r); padding: 18px 20px;
  position: relative; overflow: hidden;
}
.t-supp-card::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

/* Board cards — Tier 3b: same depth as support but pink accent to signal governance */
.t-board-card {
  flex: 1; min-width: 180px; max-width: 300px;
  background: #0A6B6B; border-radius: var(--r); padding: 18px 20px;
  border-top: 3px solid var(--pink);
  position: relative;
}
.t-board-card::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,179,207,0.1);
}
.t-team-name  { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.t-team-role  { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #A5CC3A; margin-bottom: 8px; }
.t-team-bio   { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.55; }
.t-supp-tag  { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #A5CC3A; margin-bottom: 5px; }
.t-supp-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.t-supp-note { font-size: 12px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.t-board-name  { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.t-board-title { font-size: 12px; color: #A5CC3A; font-weight: 600; }

/* Logo strip inside team cards */
.t-card-logos {
  display: flex; gap: 8px; align-items: center;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.t-card-logo {
  height: 16px; width: auto; max-width: 72px;
  background: rgba(255,255,255,0.92);
  border-radius: 3px;
  padding: 2px 5px;
  box-sizing: content-box;
  object-fit: contain; flex-shrink: 0;
  filter: none; opacity: 1;
}
.t-card-logo-lg {
  height: 26px; max-width: 100px;
}
.t-card-logo-chip {
  font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6);
  padding: 3px 8px; border-radius: 100px; white-space: nowrap;
}

.mentor-banner {
  margin-top: 16px;
  border-radius: var(--r);
  padding: 20px 24px;
  background: var(--teal-dark);
  border-left: 3px solid #A5CC3A;
  position: relative; overflow: hidden;
}
.mentor-banner::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(165,204,58,0.12);
}
.mentor-banner-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #A5CC3A; margin-bottom: 5px;
}
.mentor-banner-headline {
  font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; line-height: 1.4;
}
.mentor-banner-sub {
  font-size: 12px; color: rgba(255,255,255,0.68); line-height: 1.5;
}

/* ---- METRICS ---- */
#metrics { background: var(--teal); padding: 90px 40px; }
.metrics-inner { max-width: var(--max); margin: 0 auto; }
.metrics-inner .section-h { margin-bottom: 48px; }
.metrics-groups { display: block; }
.metrics-flat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(249,243,241,0.1); border-radius: var(--r);
  overflow: hidden;
}
.metric {
  background: rgba(249,243,241,0.05); padding: 40px 32px;
}
.metric-channel-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(249,243,241,0.35); margin-bottom: 14px;
}
.metric-number { font-size: 56px; font-weight: 700; color: var(--pink); line-height: 1; margin-bottom: 8px; }
.metric-label { font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.metric-context { font-size: 13px; color: rgba(249,243,241,0.55); line-height: 1.55; }

/* ---- PRICE CHANGE ---- */
#price-change { background: var(--peach); padding: 110px 40px; }
.pc-header {
  display: flex; flex-direction: column; gap: 40px; align-items: stretch;
  margin-bottom: 40px;
}
#price-change .section-h { font-size: 52px; line-height: 1.1; font-family: var(--font); font-weight: 700; font-style: normal; }
.pc-date { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
.pc-sub { font-size: 22px; font-weight: 700; color: var(--teal); margin-top: 6px; margin-bottom: 0; line-height: 1.3; }
.pc-intro { font-size: 17px; color: var(--muted); line-height: 1.7; margin-top: 12px; margin-bottom: 8px; }
.pc-body { font-size: 15px; color: var(--dark); line-height: 1.7; }
.pc-big-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pc-big-stat {
  background: var(--teal); border-radius: var(--r); padding: 40px 40px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 4px 20px rgba(1,78,78,0.18);
}
.pc-big-stat-n { font-size: 68px; font-weight: 700; color: var(--pink); line-height: 1; }
.pc-big-stat-l { font-size: 14px; color: rgba(249,243,241,0.7); font-weight: 600; line-height: 1.4; }
.pc-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.pc-pull-block {
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.pc-pull {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  font-size: 22px; color: var(--teal); line-height: 1.6;
  border-left: 4px solid var(--pink); padding: 16px 24px;
  background: var(--cream); border-radius: 0 var(--r) var(--r) 0;
}
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.pricing-table th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); padding: 10px 16px;
  border-bottom: 2px solid var(--border);
}
.pricing-table td {
  padding: 18px 16px; font-size: 18px; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.pricing-table td:first-child { font-weight: 700; font-size: 20px; }
.pricing-table .price-from { color: var(--muted); text-decoration: line-through; }
.pricing-table .price-to { color: var(--teal); font-weight: 700; }
.pricing-table .price-note { color: var(--pink); font-size: 12px; font-weight: 700; }
.pc-closer {
  font-size: 16px; color: var(--dark); font-weight: 700; line-height: 1.6;
  background: var(--peach); padding: 20px 24px; border-radius: var(--r);
  border-left: 3px solid var(--teal); margin-top: 12px;
}

/* ---- PROJECTIONS ---- */
#projections { background: var(--teal); padding: 110px 40px; }
.proj-inner { max-width: var(--max); margin: 0 auto; }
.proj-inner .section-h { margin-bottom: 10px; }
.proj-sub { font-size: 14px; color: rgba(249,243,241,0.5); margin-bottom: 48px; font-weight: 600; }
.proj-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: start; }
.chart-card {
  background: rgba(249,243,241,0.07); border-radius: var(--r); padding: 28px;
  min-width: 0; overflow: hidden;
}
.chart-canvas-wrap {
  position: relative; height: 280px; width: 100%;
}
.chart-legend { display: flex; gap: 20px; margin-top: 14px; }
.leg { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(249,243,241,0.6); font-weight: 700; }
.leg-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.dot-a { background: var(--pink); }
.dot-p { background: rgba(249,243,241,0.3); }
.unit-econ { display: flex; flex-direction: column; gap: 0; }
.ue-heading { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(249,243,241,0.45); margin-bottom: 16px; }
.ue-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(249,243,241,0.1);
}
.ue-row:last-child { border-bottom: none; }
.ue-label { font-size: 14px; color: rgba(249,243,241,0.75); }
.ue-value { font-size: 14px; font-weight: 700; color: var(--white); }
.ue-row.highlight .ue-label,
.ue-row.highlight .ue-value { color: var(--pink); }
.ue-row.starred .ue-label { color: rgba(249,243,241,0.95); font-weight: 700; }
.ue-note { font-size: 11px; color: rgba(249,243,241,0.35); margin-top: 14px; font-style: italic; }
.ue-row.indent .ue-label { padding-left: 18px; color: rgba(249,243,241,0.5); font-size: 13px; }
.ue-row.indent .ue-value { color: rgba(249,243,241,0.5); font-size: 13px; font-weight: 600; }

/* ---- SKETCH HIGHLIGHT (projections) ---- */
.sketch-highlight {
  position: relative; display: inline-block;
}
.sketch-highlight::after {
  content: '';
  position: absolute;
  inset: -8px -14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' fill='none'%3E%3Cpath d='M 7,30 C 8,12 22,4 50,5 C 78,6 94,14 93,30 C 92,46 76,56 50,55 C 24,54 6,48 7,30 Z' stroke='%23FFB3CF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ---- PROJECTIONS ACHIEVEMENT CALLOUT ---- */
.proj-achievement {
  margin-top: 48px; padding: 0;
  background: transparent; border-radius: 0; border: none;
}
.proj-ach-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 20px;
}
.proj-ach-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.proj-ach-divider { display: none; }
.proj-ach-item {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(249,243,241,0.06); border-radius: var(--r);
  padding: 28px 32px; min-height: 120px;
  border: 1px solid rgba(249,243,241,0.1);
}
.proj-ach-number {
  font-size: 56px; font-weight: 700; color: var(--pink); line-height: 1;
  margin-bottom: 4px; display: inline-block;
  width: fit-content; align-self: flex-start;
}
.sketch-ring { position: relative; display: inline-block; }
.sketch-ring::after {
  content: '';
  position: absolute;
  inset: -12px -20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none'%3E%3Cpath d='M 8,40 C 9,16 28,4 60,5 C 92,6 113,18 112,40 C 111,62 90,76 60,75 C 30,74 7,64 8,40 Z' stroke='%23FFB3CF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 100% 100%;
  pointer-events: none;
}
.proj-ach-sub { font-size: 13px; font-weight: 700; color: rgba(249,243,241,0.8); }
.proj-ach-pct { font-size: 12px; color: rgba(249,243,241,0.5); }
.proj-ach-note { font-size: 12px; color: rgba(249,243,241,0.45); margin-top: 6px; line-height: 1.4; }

/* ---- TESTIMONIALS ---- */
#testimonials { background: #091414; padding: 110px 40px; }
.testi-inner { max-width: var(--max); margin: 0 auto; }
.testi-inner .section-h { color: var(--white); margin-bottom: 10px; }
.testi-sub { font-size: 15px; color: rgba(249,243,241,0.55); margin-bottom: 48px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.testi-card {
  background: #132020; border-radius: var(--r); padding: 44px 40px;
  display: flex; flex-direction: column; gap: 22px;
  border-top: 2px solid rgba(255,179,207,0.3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--pink); box-shadow: 0 8px 32px rgba(1,78,78,0.4); }
.testi-stars {
  font-size: 18px; color: #A5CC3A; letter-spacing: 3px; line-height: 1;
}
.testi-quote {
  font-family: var(--font-accent); font-style: italic; font-weight: 300;
  font-size: 22px; color: rgba(249,243,241,0.8); line-height: 1.8; flex: 1;
}
.testi-quote strong {
  font-weight: 700; font-style: normal;
  color: var(--pink); font-size: 1.15em;
}
.testi-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(249,243,241,0.08); }
.testi-author { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-product {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: #A5CC3A; background: rgba(165,204,58,0.12); border: 1px solid rgba(165,204,58,0.3);
  padding: 4px 10px; border-radius: 100px;
}

/* ---- ASK ---- */
#ask { background: var(--teal-dark); padding: 110px 40px; }
.ask-inner { max-width: var(--max); margin: 0 auto; }
.ask-h {
  font-size: 64px; font-weight: 700; font-family: var(--font);
  color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.ask-amount {
  font-size: 44px; font-weight: 700; font-family: var(--font);
  color: var(--pink); margin-bottom: 8px; line-height: 1.2;
}
.ask-type { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,241,0.4); margin-bottom: 40px; }
.ask-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.ask-terms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ask-term {
  background: rgba(249,243,241,0.08); border-radius: var(--r-sm); padding: 20px 22px;
  border: 1px solid rgba(249,243,241,0.1);
}
.ask-term-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,241,0.4); margin-bottom: 4px; }
.ask-term-val { font-size: 22px; font-weight: 700; color: var(--white); }
.ask-term-note { font-size: 11px; color: rgba(249,243,241,0.4); margin-top: 2px; }
.ask-right { display: flex; flex-direction: column; gap: 24px; }
.ask-alloc-h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,241,0.4); margin-bottom: 12px; }
.alloc-item { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(249,243,241,0.08); }
.alloc-item:last-child { border-bottom: none; padding-bottom: 0; }
.alloc-pct { font-size: 34px; font-weight: 700; color: var(--pink); line-height: 1; text-align: center; background: var(--pink-light); border-radius: var(--r-sm); padding: 8px 4px; }
.alloc-label { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.alloc-detail { font-size: 12px; color: rgba(249,243,241,0.55); line-height: 1.5; }
.ask-what-h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,241,0.4); margin-bottom: 12px; }
.ask-what-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(249,243,241,0.08); font-size: 14px;
  color: rgba(249,243,241,0.75); line-height: 1.6;
}
.ask-what-item:last-child { border-bottom: none; }
.ask-what-dot { color: var(--pink); font-size: 18px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ask-closing {
  font-size: 15px; color: rgba(249,243,241,0.7); line-height: 1.8;
  padding-top: 24px; border-top: 1px solid rgba(249,243,241,0.12);
}
.ask-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ask-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #A5CC3A; color: #1A1A1A;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 100px; transition: background 0.2s;
  width: 100%;
}
.ask-cta:hover { background: #8fb020; }
.ask-email { font-size: 14px; color: rgba(249,243,241,0.4); }

/* ---- FOOTER ---- */
footer {
  background: #0E0E0E; padding: 40px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.footer-l { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 2; }
.footer-r { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 400px; line-height: 1.65; text-align: right; }

/* ---- SPARKLE DECORATIONS ---- */
/* Shared setup: make sections position:relative so ::before/::after stay within bounds */
#hero, #metrics, #projections, #ask, #statement {
  position: relative;
}
#metrics, #projections, #ask, #statement { overflow: hidden; }

/* Lift all direct content wrappers above the sparkle layer */
.hero-text,
.metrics-inner,
.proj-inner,
.ask-inner,
.statement-text {
  position: relative;
  z-index: 1;
}

/* Shared pseudo-element base */
#hero::before, #hero::after,
#metrics::before, #metrics::after,
#projections::before, #projections::after,
#ask::before, #ask::after,
#statement::before, #statement::after {
  content: '';
  position: absolute;
  background-image: url('assets/sparkle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Hero — sparkles on the text side, clear of headline */
#hero::before {
  width: 52px; height: 52px;
  top: 4%; left: 5%;
  opacity: 0.65;
}
#hero::after {
  width: 30px; height: 30px;
  bottom: 7%; left: 42%;
  opacity: 0.45;
}

/* Metrics — top-right and bottom-left */
#metrics::before {
  width: 68px; height: 68px;
  top: 6%; right: 3%;
  opacity: 0.55;
}
#metrics::after {
  width: 36px; height: 36px;
  bottom: 8%; left: 5%;
  opacity: 0.4;
}

/* Projections — subtle top-left */
#projections::before {
  width: 48px; height: 48px;
  top: 8%; left: 3%;
  opacity: 0.5;
}
#projections::after {
  width: 28px; height: 28px;
  bottom: 12%; right: 4%;
  opacity: 0.38;
}

/* Statement — on the pink banner, slightly more visible */
#statement::before {
  width: 48px; height: 48px;
  top: 18%; right: 8%;
  opacity: 0.65;
}
#statement::after {
  width: 28px; height: 28px;
  bottom: 16%; left: 5%;
  opacity: 0.55;
}

/* Ask — large faint one top-left, small bottom-right */
#ask::before {
  width: 72px; height: 72px;
  top: 5%; left: 48%;
  opacity: 0.38;
}
#ask::after {
  width: 40px; height: 40px;
  bottom: 6%; right: 6%;
  opacity: 0.45;
}

/* Price-change has a light background; sparkle not used there */

/* ---- YEAR 1 TRACKER ---- */
#year1-tracker {
  position: fixed;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(1, 55, 55, 0.96);
  border: 1px solid rgba(249,243,241,0.18);
  border-radius: 999px;
  padding: 7px 20px;
  display: none;
  align-items: center;
  gap: 14px;
  z-index: 200;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
}
#year1-tracker.visible { display: flex; }
.tracker-item {
  color: rgba(249,243,241,0.35);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  text-transform: uppercase;
}
.tracker-item.done { color: rgba(249,243,241,0.9); }
.tracker-check {
  font-size: 11px;
  color: #A5CC3A;
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 1;
}
.tracker-item.done .tracker-check { opacity: 1; }
.tracker-sep { color: rgba(249,243,241,0.2); font-size: 14px; user-select: none; }
@media (max-width: 480px) {
  #year1-tracker { font-size: 11px; padding: 6px 14px; gap: 10px; top: 52px; }
  .tracker-item { font-size: 11px; gap: 4px; }
}

/* ---- ANIMATIONS ---- */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  /* Scale sparkles down at tablet — keep them in corners, away from content */
  #hero::before    { width: 36px !important; height: 36px !important; }
  #hero::after     { width: 22px !important; height: 22px !important; }
  #metrics::before { width: 44px !important; height: 44px !important; top: 4% !important; right: 2% !important; }
  #metrics::after  { width: 24px !important; height: 24px !important; }
  #projections::before { width: 32px !important; height: 32px !important; }
  #projections::after  { width: 20px !important; height: 20px !important; }
  #statement::before   { width: 32px !important; height: 32px !important; }
  #statement::after    { width: 20px !important; height: 20px !important; }
  #ask::before { width: 48px !important; height: 48px !important; top: 3% !important; left: 80% !important; }
  #ask::after  { width: 28px !important; height: 28px !important; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 64px 40px; }
  .hero-image { display: none; }
  .hero-proof { flex-direction: row; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .istat-group-items { grid-template-columns: repeat(2, 1fr); }
  .intro-content { padding: 48px 40px 48px; }
  .market-compare { grid-template-columns: 1fr; }
  .market-stats { grid-template-columns: repeat(2, 1fr); }
  .metrics-flat-row { grid-template-columns: repeat(2, 1fr); }
  .pc-header { grid-template-columns: 1fr; gap: 32px; }
  .pc-bottom { grid-template-columns: 1fr; }
  .proj-layout { grid-template-columns: 1fr; }
  .ask-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Sparkles at mobile — shrink and push to safe corners away from content */
  #hero::before    { width: 20px !important; height: 20px !important; top: 4% !important; left: auto !important; right: 4% !important; bottom: auto !important; opacity: 0.5 !important; }
  #hero::after     { width: 14px !important; height: 14px !important; bottom: 6% !important; left: 5% !important; right: auto !important; top: auto !important; opacity: 0.35 !important; }
  #metrics::before { width: 18px !important; height: 18px !important; top: 3% !important; right: 4% !important; opacity: 0.4 !important; }
  #metrics::after  { width: 12px !important; height: 12px !important; bottom: 4% !important; right: 6% !important; opacity: 0.3 !important; }
  #projections::before { width: 16px !important; height: 16px !important; top: 2% !important; right: 3% !important; opacity: 0.4 !important; }
  #projections::after  { width: 12px !important; height: 12px !important; bottom: 3% !important; right: 8% !important; opacity: 0.3 !important; }
  #ask::before { width: 18px !important; height: 18px !important; top: 3% !important; left: auto !important; right: 4% !important; opacity: 0.45 !important; }
  #ask::after  { width: 12px !important; height: 12px !important; bottom: 4% !important; right: 8% !important; opacity: 0.3 !important; }
  #statement::before { width: 16px !important; height: 16px !important; top: 4% !important; right: 5% !important; opacity: 0.4 !important; }
  #statement::after  { width: 12px !important; height: 12px !important; bottom: 4% !important; right: 10% !important; opacity: 0.3 !important; }

  .w { padding: 0 20px; }
  #nav { padding: 0 20px; }

  /* Hero */
  .hero-text { padding: 48px 20px; }
  .hero-h1 { font-size: 32px; }
  .hero-body { font-size: 16px; }
  #hero { padding: 0; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-proof-number { font-size: 32px; }

  /* Intro / What is Wellie */
  .intro-content { padding: 40px 20px 36px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .intro-lead { font-size: 20px; }
  .intro-moment { font-size: 26px; margin-bottom: 24px; }

  /* Section headings */
  .section-h { font-size: 28px; line-height: 1.25; }
  #price-change .section-h { font-size: 30px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  #products { padding-left: 20px; padding-right: 20px; }

  /* Market */
  .bpc-overlay-card { padding: 20px 20px 18px; }
  .bpc-overlay-chart-wrap { height: 220px; overflow: visible; }
  .bpc-overlay-legend { gap: 12px; flex-direction: column; }
  .market-trends-grid { grid-template-columns: repeat(2, 1fr); }
  .market-trend-number { font-size: 22px; }
  .bpc-curve-vis { padding: 20px 20px 18px; }

  /* Statement */
  .statement-text { font-size: 22px; }
  #statement { padding: 60px 20px; }

  /* Metrics */
  .metrics-flat-row { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 28px 20px; }
  .metric-number { font-size: 42px; }
  #metrics { padding: 60px 20px; }

  /* Price change */
  .pc-big-stats { grid-template-columns: repeat(2, 1fr); }
  .sneak-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  #price-change { padding: 60px 20px; }
  .pc-big-stat-n { font-size: 44px; }
  .pc-big-stat { padding: 28px 24px; }
  .pricing-table td { padding: 14px 10px; font-size: 15px; }
  .pricing-table td:first-child { font-size: 15px; }
  .pricing-table th { font-size: 10px; padding: 8px 10px; }

  /* Projections */
  .proj-layout { grid-template-columns: 1fr; }
  #projections { padding: 60px 20px; }
  .chart-canvas-wrap { height: 220px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  #testimonials { padding: 60px 20px; }

  /* Ask */
  .ask-terms-grid { grid-template-columns: 1fr 1fr; }
  #ask { padding: 60px 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-r { text-align: left; }
}

@media (max-width: 480px) {
  .hero-text { padding: 48px 20px 40px; }

  .hero-h1 { font-size: 26px; margin-bottom: 16px; }
  .hero-body { font-size: 15px; }
  .hero-proof { flex-direction: column; gap: 8px; }
  .hero-proof-group { width: 100%; }
  .hero-proof-items { display: flex; }
  .hero-proof-number { font-size: 28px; }
  .hero-proof-item { padding: 12px 12px; }
  .hero-subheader { font-size: 14px !important; padding: 10px 14px; margin-bottom: 24px !important; }

  /* Intro stat groups on mobile — 2 per row (2 stats per group, always side by side) */
  .istat-group-items { grid-template-columns: repeat(2, 1fr); }
  .intro-stats { grid-template-columns: 1fr; }
  .istat { padding: 16px 14px; }
  .istat-number { font-size: 24px; }
  .istat-label { font-size: 12px; }
  .istat-detail { font-size: 10px; }
  .istat-channel { font-size: 9px; padding: 6px 14px 5px; }

  /* Metrics groups on mobile */
  .metrics-flat-row { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials on mobile */
  .testi-card { padding: 30px 24px; }
  .testi-quote { font-size: 17px; }

  /* Intro */
  .intro-content { padding: 40px 16px 40px; }

  /* Intro */
  .intro-moment { font-size: 20px; margin-bottom: 24px; }
  .intro-lead { font-size: 16px; }
  .intro-stats { grid-template-columns: 1fr; }

  /* Section headings — prevent full-screen takeover */
  .section-h { font-size: 22px; }
  #price-change .section-h { font-size: 24px; }

  /* Products — single column on very small screens */
  .products-grid { grid-template-columns: 1fr; }
  .product-badge { font-size: 10px; }
  .products-head h2 { font-size: 24px; }

  /* Market — BPC chart */
  .bpc-you-are-here { display: none; }              /* hide HTML star pin; chart point star is sufficient */
  .bpc-overlay-card { padding: 14px 14px 12px; }
  .bpc-ol-year-labels { flex-direction: column; gap: 4px; }
  .bpc-ol-note { font-size: 11px; }
  .bpc-ol-eyebrow { font-size: 9px; letter-spacing: 0.05em; }

  /* Market trends grid — single column */
  .market-trends-grid { grid-template-columns: 1fr; }
  .market-trend-card { padding: 16px 14px; }
  .market-trend-number { font-size: 20px; }
  .market-humanisation { font-size: 15px; padding: 16px 18px; margin-bottom: 18px; }
  .market-trends-head { font-size: 11px; }

  /* Sneak peek callout */
  .sneak-number { font-size: 28px; }
  .sneak-inner { padding: 16px 14px; }

  /* Statement */
  .statement-text { font-size: 18px; }

  /* Metrics — single column, smaller numbers, tighter heading */
  .metrics-flat-row { grid-template-columns: repeat(2, 1fr); }
  .metric-number { font-size: 40px; }
  .metrics-inner .section-h { font-size: 17px; line-height: 1.4; margin-bottom: 28px; }

  /* Team — mobile tiered rails */
  .team-inner .section-h { margin-bottom: 28px; }
  .tier-label-col { width: 52px; padding-right: 8px; }
  .tier-label { font-size: 8px; letter-spacing: 0.08em; }
  .tier-cards-col { padding-left: 10px; gap: 10px; padding-bottom: 24px; }
  .t-lead-card { min-width: 0; max-width: 100%; flex: 1 1 100%; }
  /* Single column for team cards on mobile — 2-col is too cramped */
  .t-team-card { min-width: 0; max-width: 100%; flex: 1 1 100%; }
  .team-tier-rows .t-team-card { flex: 1 1 100%; min-width: 0; }
  .t-supp-card, .t-board-card { min-width: 0; max-width: 100%; flex: 1 1 calc(50% - 5px); }
  .mentor-banner { padding: 16px 18px; }

  /* Price change — full width table */
  .pc-bottom { grid-template-columns: 1fr; }
  .pc-header { grid-template-columns: 1fr; }
  .pc-big-stats { grid-template-columns: 1fr; }
  .pc-big-stat-n { font-size: 36px; }
  .pc-big-stat { padding: 22px 20px; }
  .pricing-table { display: block; overflow-x: auto; }
  .pc-sub { font-size: 18px; }
  .pricing-table td { padding: 12px 8px; font-size: 14px; }
  .pricing-table td:first-child { font-size: 14px; }

  /* Charts */
  .chart-canvas-wrap { height: 200px; }
  .bpc-overlay-chart-wrap { height: 180px; }

  /* Projections */
  .proj-layout { grid-template-columns: 1fr; }
  .proj-achievement { padding: 22px 18px; margin-top: 32px; }
  .proj-ach-metrics { grid-template-columns: 1fr; gap: 14px; }
  .proj-ach-item { padding: 22px 20px; min-height: 0; }
  .proj-ach-number { font-size: 44px; }
  .sketch-ring::after { inset: -10px -16px; }

  /* Ask */
  .ask-terms-grid { grid-template-columns: 1fr; }
  .ask-h { font-size: 30px !important; }
  .ask-amount { font-size: 26px !important; }

  /* Nav */
  .nav-cta { font-size: 13px; padding: 8px 16px; }

  /* General padding reduction */
  #metrics, #price-change, #projections, #testimonials, #ask, #team, #products, #market, #statement {
    padding-left: 16px; padding-right: 16px;
  }
  #metrics, #price-change, #projections, #testimonials, #ask, #team, #products, #market {
    padding-top: 52px; padding-bottom: 52px;
  }
}

