/* ==========================================================================
   GoodTip — Design System
   Footy tipping, for good.
   Brand kept faithful to client: deep forest + electric lime + cream.
   Signature: the "ladder" (footy ladder + live charity tally) and the Wall.
   ========================================================================== */

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

:root {
  /* ---- Brand palette (from client) ---- */
  --deep:    #0F2E22;   /* deep forest */
  --deep-2:  #0B2319;   /* darker panel */
  --panel:   #152B1E;   /* raised panel on deep */
  --panel-2: #1A3D2B;   /* highlighted panel on deep */
  --forest:  #2D7A3A;   /* mid green */
  --lime:    #C8F135;   /* electric lime — the spark */
  --lime-dk: #A9D11C;   /* lime pressed */
  --cream:   #E8E4D5;   /* warm paper */
  --cream-2: #F2EFE6;   /* lighter paper */
  --white:   #FFFFFF;
  --ink:     #0F2E22;   /* body text on light */
  --muted:   #6B7A6E;   /* sage grey */
  --line:    rgba(15,46,34,0.12);
  --line-d:  rgba(255,255,255,0.12);

  /* ---- Type ---- */
  --display: 'Archivo Black', system-ui, sans-serif;     /* headlines */
  --body:    'Archivo', system-ui, sans-serif;           /* prose */
  --mark:    'Barlow Condensed', system-ui, sans-serif;  /* wordmark / labels */
  --score:   'Barlow Semi Condensed', system-ui, sans-serif; /* scoreboard numerals */

  /* ---- Type scale ---- */
  --fs-eyebrow: 12px;
  --fs-small:   13px;
  --fs-body:    16px;
  --fs-lead:    19px;
  --fs-h3:      22px;
  --fs-h2:      clamp(28px, 4vw, 46px);
  --fs-h1:      clamp(46px, 7.5vw, 86px);

  /* ---- Space ---- */
  --gutter: 5vw;
  --section-y: clamp(64px, 9vw, 112px);
  --maxw: 1180px;

  /* ---- Misc ---- */
  --radius: 2px;          /* angular, sporty — almost no rounding */
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* Tabular figures everywhere numbers carry meaning */
.tnum, .stat-num, .ladder *, .price-num, .tally-num, .step-num-big {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--deep);
  border-bottom: 1px solid var(--line-d);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); height: 66px;
}
.wordmark {
  font-family: var(--mark); font-weight: 900;
  font-size: 27px; letter-spacing: .01em; line-height: 1;
  color: var(--white); text-decoration: none; text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 1px;
}
.wordmark span { color: var(--lime); }
.wordmark .dot { color: var(--lime); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 14px; font-weight: 600; opacity: .82;
  transition: opacity .15s var(--ease); position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--lime);
}
.btn-nav {
  background: var(--lime); color: var(--deep) !important; opacity: 1 !important;
  font-family: var(--display); font-size: 13px; padding: 11px 20px;
  text-decoration: none; letter-spacing: .03em; text-transform: uppercase;
  transition: filter .15s var(--ease), transform .1s var(--ease);
  border-radius: var(--radius);
}
.btn-nav:hover { filter: brightness(1.06); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: .2s var(--ease); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--deep); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px var(--gutter) 20px;
    border-bottom: 1px solid var(--line-d);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: .2s var(--ease);
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-d); }
  .nav-links .btn-nav { text-align: center; margin-top: 12px; }
  .nav[data-open="true"] .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav[data-open="true"] .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav[data-open="true"] .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   BUTTONS / PILLS / EYEBROWS
   ========================================================================== */
.btn-primary, .btn-ghost, .btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 900; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: 16px 30px; border: 0; cursor: pointer; border-radius: var(--radius);
  transition: filter .15s var(--ease), transform .1s var(--ease), background .15s var(--ease);
}
.btn-primary { background: var(--lime); color: var(--deep); }
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); background: var(--lime-dk); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(232,228,213,.4); }
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-dark { background: var(--deep); color: var(--lime); }
.btn-dark:hover { filter: brightness(1.25); transform: translateY(-2px); }
.on-dark .btn-ghost { color: var(--cream); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,241,53,.12); border: 1px solid rgba(200,241,53,.32);
  color: var(--lime); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px;
  border-radius: 100px;
}
.pill .dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 0 rgba(200,241,53,.6); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(200,241,53,.5);} 70%,100% { box-shadow: 0 0 0 9px rgba(200,241,53,0);} }

.eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 16px;
}
.on-dark .eyebrow { color: var(--lime); opacity: .8; }

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
.section { padding: var(--section-y) var(--gutter); }
.section > .wrap { max-width: var(--maxw); margin: 0 auto; }
.section.on-dark { background: var(--deep); color: var(--cream); }
.section.on-cream { background: var(--cream); }
.section.on-paper { background: var(--cream-2); }

.section-heading {
  font-family: var(--display); font-size: var(--fs-h2);
  letter-spacing: -.02em; line-height: 1.04; color: var(--ink);
  max-width: 720px; margin-bottom: 18px;
}
.on-dark .section-heading { color: var(--white); }
.section-heading em { color: var(--forest); font-style: normal; }
.on-dark .section-heading em { color: var(--lime); }
.section-sub {
  font-size: var(--fs-lead); color: var(--muted); max-width: 600px;
  line-height: 1.6; margin-bottom: 44px;
}
.on-dark .section-sub { color: var(--cream); opacity: .82; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(200,241,53,.10), transparent 60%),
    var(--deep);
  padding: clamp(72px,11vw,116px) var(--gutter) clamp(56px,8vw,84px);
  text-align: center; position: relative; overflow: hidden;
}
.hero .pill { margin-bottom: 34px; }
.hero h1 {
  font-family: var(--display); font-size: var(--fs-h1); line-height: .98;
  color: var(--white); letter-spacing: -.02em; max-width: 880px; margin: 0 auto 26px;
}
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-sub {
  font-size: clamp(16px,2vw,20px); color: var(--cream); opacity: .86;
  max-width: 560px; margin: 0 auto 40px; line-height: 1.6;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.cta-subtext { font-size: 13px; color: var(--lime); opacity: .72; letter-spacing: .02em; }

/* Stat scoreboard */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 64px; border-top: 1px solid var(--line-d); padding-top: 42px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.stat { padding: 0 14px; }
.stat + .stat { border-left: 1px solid var(--line-d); }
.stat-num {
  font-family: var(--score); font-weight: 900; font-size: clamp(34px,5vw,52px);
  color: var(--lime); line-height: 1; letter-spacing: -.01em;
}
.stat-label { font-size: var(--fs-small); color: var(--cream); opacity: .72; margin-top: 8px; }

@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; gap: 22px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-d); padding-top: 22px; }
}

/* ==========================================================================
   THE LADDER — signature element (footy ladder + live charity tally)
   ========================================================================== */
.ladder-band { background: var(--deep); color: var(--cream); padding: var(--section-y) var(--gutter); }
.ladder-shell {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch;
}
.ladder {
  background: var(--panel); border: 1px solid var(--line-d); border-radius: var(--radius);
  overflow: hidden;
}
.ladder-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line-d);
  background: var(--deep-2);
}
.ladder-head .label { font-family: var(--mark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 15px; color: var(--white); }
.ladder-head .round { font-size: 12px; color: var(--lime); letter-spacing: .08em; text-transform: uppercase; }
.ladder-row {
  display: grid; grid-template-columns: 34px 1fr auto auto;
  align-items: center; gap: 14px; padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s var(--ease);
}
.ladder-row:hover { background: rgba(255,255,255,.03); }
.ladder-row .rank { font-family: var(--score); font-weight: 900; font-size: 20px; color: var(--muted); }
.ladder-row.top .rank { color: var(--lime); }
.ladder-row .who { font-weight: 600; color: var(--cream); }
.ladder-row .who small { display: block; font-weight: 400; font-size: 12px; color: var(--muted); }
.ladder-row .form { display: flex; gap: 3px; }
.ladder-row .form i { width: 8px; height: 8px; border-radius: 2px; background: rgba(255,255,255,.18); }
.ladder-row .form i.w { background: var(--lime); }
.ladder-row .pts { font-family: var(--score); font-weight: 900; font-size: 20px; color: var(--white); min-width: 42px; text-align: right; }

.tally {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid rgba(200,241,53,.25); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; justify-content: center;
}
.tally .eyebrow { color: var(--lime); opacity: .8; }
.tally-num {
  font-family: var(--score); font-weight: 900; font-size: clamp(48px,7vw,76px);
  color: var(--lime); line-height: 1; letter-spacing: -.02em;
}
.tally-cap { font-size: var(--fs-small); color: var(--cream); opacity: .8; margin-top: 10px; line-height: 1.6; }
.tally-bar { height: 8px; background: rgba(255,255,255,.1); border-radius: 100px; margin-top: 22px; overflow: hidden; }
.tally-bar > i { display: block; height: 100%; width: 0; background: var(--lime); border-radius: 100px; transition: width 1.4s var(--ease); }
.tally-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 10px; }

@media (max-width: 820px) { .ladder-shell { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMPARISON (them vs us)
   ========================================================================== */
.compare-frame { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-col { padding: 30px 28px; }
.col-them { background: var(--cream-2); }
.col-us { background: var(--deep); color: var(--cream); }
.compare-header { margin-bottom: 18px; }
.compare-header .lab { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.col-us .compare-header .lab { color: var(--lime); }
.compare-header h3 { font-family: var(--display); font-size: var(--fs-h3); line-height: 1.1; margin-top: 6px; color: var(--ink); }
.col-us .compare-header h3 { color: var(--white); }
.compare-cell { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; font-size: 15px; border-top: 1px solid var(--line); }
.col-us .compare-cell { border-top: 1px solid rgba(255,255,255,.08); color: var(--cream); }
.cell-icon { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 900; margin-top: 1px; }
.icon-no { background: rgba(15,46,34,.08); color: var(--muted); }
.icon-yes { background: var(--lime); color: var(--deep); }
.compare-callout { margin-top: 28px; background: var(--deep); color: var(--cream); padding: 30px 32px; border-radius: var(--radius); display: flex; gap: 18px; align-items: flex-start; }
.compare-callout .mark { font-family: var(--display); font-size: 56px; line-height: .6; color: var(--lime); }
.compare-callout p { font-size: var(--fs-lead); line-height: 1.6; }
.compare-callout strong { color: var(--lime); }
@media (max-width: 700px) { .compare-frame { grid-template-columns: 1fr; } }

/* ==========================================================================
   STEPS (real sequence — numbering justified)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--cream-2); padding: 32px 28px; }
.step-num { font-family: var(--mark); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; color: var(--forest); }
.step-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; margin: 18px 0 16px; }
.step h3 { font-family: var(--display); font-size: var(--fs-h3); line-height: 1.12; margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 15px; color: var(--muted); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* big numbered step blocks (how-it-works page) */
.step-block { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding: 36px 0; border-top: 1px solid var(--line); }
.step-block:first-of-type { border-top: 0; }
.step-num-big { font-family: var(--score); font-weight: 900; font-size: 64px; color: var(--lime); line-height: .9; -webkit-text-stroke: 1px var(--forest); }
.step-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); }
.step-block h2 { font-family: var(--display); font-size: clamp(24px,3vw,34px); line-height: 1.06; margin: 8px 0 12px; color: var(--ink); }
.step-detail { font-size: 15px; color: var(--muted); max-width: 620px; }
@media (max-width: 600px) { .step-block { grid-template-columns: 1fr; gap: 8px; } .step-num-big { font-size: 48px; } }

/* ==========================================================================
   CARD GRIDS (who it's for / ambassadors / charities)
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.for-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.for-tag { align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); background: var(--lime); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.for-card h3 { font-family: var(--display); font-size: var(--fs-h3); line-height: 1.12; margin-bottom: 10px; }
.for-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.for-link { margin-top: auto; color: var(--forest); font-weight: 700; text-decoration: none; font-size: 14px; }
.for-link:hover { color: var(--deep); }

.amb-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.amb-photo { aspect-ratio: 1/1; background: var(--deep); display: grid; place-items: center; }
.amb-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.amb-photo .ph { text-align: center; color: rgba(200,241,53,.55); }
.amb-photo .ph .ring { width: 64px; height: 64px; border-radius: 50%; border: 2px dashed rgba(200,241,53,.4); margin: 0 auto 10px; }
.amb-photo .ph span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.amb-body { padding: 18px 20px; }
.amb-body .name { font-family: var(--display); font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.amb-body .role { font-size: 12px; color: var(--forest); font-weight: 700; margin-bottom: 8px; }
.amb-body .quote { font-size: 13px; color: var(--muted); line-height: 1.5; }

.charity-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; }
.charity-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); margin: 0 auto 12px; display: grid; place-items: center; color: var(--lime); font-family: var(--display); font-size: 16px; }
.charity-icon.alt { background: var(--deep); }
.charity-card h4 { font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.charity-card p { font-size: 12px; color: var(--muted); }
.charity-card .tagx { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--forest); font-weight: 700; }
.cat-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); margin: 8px 0 16px; }

/* ==========================================================================
   QUOTE BREAK
   ========================================================================== */
.quote-break { background: var(--lime); padding: clamp(48px,7vw,84px) var(--gutter); text-align: center; }
.quote-break blockquote { font-family: var(--display); font-size: clamp(26px,4vw,46px); line-height: 1.08; color: var(--deep); max-width: 880px; margin: 0 auto; letter-spacing: -.02em; }
.quote-break blockquote em { font-style: normal; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.quote-attr { margin-top: 18px; font-family: var(--mark); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 14px; color: var(--forest); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { background: var(--deep); color: var(--cream); border-color: var(--lime); }
.price-badge { position: absolute; top: -12px; left: 24px; background: var(--lime); color: var(--deep); font-family: var(--display); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.price-tier { font-family: var(--display); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.price-card.featured .price-tier { color: var(--white); }
.price-size { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.price-card.featured .price-size { color: var(--cream); opacity: .7; }
.price-num { font-family: var(--score); font-weight: 900; font-size: 46px; color: var(--ink); line-height: 1; }
.price-card.featured .price-num { color: var(--lime); }
.price-period { font-size: 13px; color: var(--muted); margin: 2px 0 4px; }
.price-per { font-size: 12px; color: var(--forest); font-weight: 700; margin-bottom: 16px; }
.price-card.featured .price-per { color: var(--lime); opacity: .85; }
.price-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.price-card.featured .price-desc { color: var(--cream); opacity: .82; }
.pricing-footnote { margin-top: 28px; font-size: 14px; color: var(--muted); }
.pricing-footnote a { color: var(--forest); font-weight: 700; }

/* tier table (pricing page) */
.tier-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tier-table th, .tier-table td { padding: 18px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.tier-table thead th { background: var(--deep); color: var(--cream); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.tier-table tbody tr:hover { background: var(--cream-2); }
.tier-table .tname { font-family: var(--display); font-size: 16px; color: var(--ink); }
.tier-table .tsize { font-size: 12px; color: var(--muted); }
.tier-table .tprice { font-family: var(--score); font-weight: 900; font-size: 24px; color: var(--ink); }
.tier-table .tprice span { font-size: 12px; color: var(--muted); font-family: var(--body); font-weight: 400; }
.tier-table .tper { font-size: 12px; color: var(--forest); font-weight: 700; }
.tier-badge { display: inline-block; margin-left: 8px; background: var(--lime); color: var(--deep); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; }

/* feature grid (no gates) */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 820px){ .feature-grid { grid-template-columns: 1fr; } }
.feature { padding: 22px; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); }
.feature .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--deep); display: grid; place-items: center; font-weight: 900; margin-bottom: 12px; }
.feature h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   MONEY-FLOW (numbered, on dark)
   ========================================================================== */
.flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.06); max-width: 920px; }
@media (max-width: 760px){ .flow { grid-template-columns: 1fr; } }
.flow-cell { background: var(--panel); padding: 34px 28px; }
.flow-cell.hot { background: var(--panel-2); }
.flow-num { font-family: var(--score); font-weight: 900; font-size: 38px; color: var(--lime); line-height: 1; margin-bottom: 12px; }
.flow-cell h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.flow-cell p { font-size: 13px; color: var(--cream); opacity: .72; line-height: 1.7; }
.flow-note { margin-top: 36px; max-width: 700px; border-left: 3px solid var(--lime); padding-left: 26px; font-size: var(--fs-lead); color: var(--cream); line-height: 1.7; }

/* ==========================================================================
   FOUNDING BAND
   ========================================================================== */
.founding { background: var(--lime); padding: clamp(44px,6vw,72px) var(--gutter); }
.founding-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 820px){ .founding-inner { grid-template-columns: 1fr; } }
.founding .eyebrow { color: var(--deep); opacity: .65; }
.founding h2 { font-family: var(--display); font-size: clamp(28px,4vw,44px); line-height: 1.04; color: var(--deep); letter-spacing: -.02em; margin-bottom: 14px; }
.founding p { color: var(--deep); opacity: .82; font-size: 15px; max-width: 560px; }
.founding-cta { display: flex; flex-direction: column; gap: 12px; }
.founding-deadline { font-size: 13px; color: var(--deep); font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 17px; color: var(--ink); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; font-family: var(--display); color: var(--forest); font-size: 22px; transition: transform .2s var(--ease); }
.faq-item[data-open="true"] .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .28s var(--ease), padding .28s var(--ease); }
.faq-item[data-open="true"] .faq-a { max-height: 320px; padding-bottom: 20px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 880px; }
@media (max-width: 760px){ .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-info { color: var(--cream); font-size: 15px; line-height: 2; opacity: .8; }
.contact-info .dot { color: var(--lime); }
.form-col { display: flex; flex-direction: column; gap: 12px; }
.form-col input, .form-col select, .form-col textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); color: var(--white);
  font-family: var(--body); font-size: 14px; border-radius: var(--radius); outline: none;
}
.form-col input::placeholder, .form-col textarea::placeholder { color: rgba(255,255,255,.5); }
.form-col input:focus, .form-col select:focus, .form-col textarea:focus { border-color: var(--lime); }
.form-col select { -webkit-appearance: none; appearance: none; color: rgba(255,255,255,.7); }
.form-col button { background: var(--lime); color: var(--deep); font-family: var(--display); font-size: 14px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; padding: 16px 28px; border: 0; cursor: pointer; border-radius: var(--radius); transition: filter .15s var(--ease); }
.form-col button:hover { filter: brightness(1.07); }

/* ==========================================================================
   THE WALL — net-new social layer (the competitive gap)
   ========================================================================== */
.wall-shell { display: grid; grid-template-columns: 280px 1fr 300px; gap: 24px; align-items: start; }
@media (max-width: 1040px){ .wall-shell { grid-template-columns: 1fr; } .wall-side { display: none; } }

.wall-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.wall-card { background: var(--panel); border: 1px solid var(--line-d); border-radius: var(--radius); padding: 18px; }
.wall-card h4 { font-family: var(--mark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 14px; color: var(--white); margin-bottom: 12px; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.06); }
.mini-row:first-of-type { border-top: 0; }
.mini-row .r { font-family: var(--score); font-weight: 900; color: var(--lime); width: 22px; }
.mini-row .n { font-size: 14px; color: var(--cream); flex: 1; }
.mini-row .p { font-family: var(--score); font-weight: 900; color: var(--white); }

.composer { background: var(--panel); border: 1px solid var(--line-d); border-radius: var(--radius); padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; }
.composer .av { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: var(--lime); display: grid; place-items: center; font-family: var(--display); font-size: 15px; flex: none; }
.composer .grow { flex: 1; }
.composer textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--white); border-radius: var(--radius); padding: 10px 12px; font-family: var(--body); font-size: 14px; resize: none; outline: none; }
.composer textarea::placeholder { color: rgba(255,255,255,.45); }
.composer-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.composer-actions .hint { font-size: 12px; color: var(--muted); }

.post { background: var(--panel); border: 1px solid var(--line-d); border-radius: var(--radius); padding: 18px; margin-top: 16px; }
.post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.post-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--deep-2); color: var(--lime); display: grid; place-items: center; font-family: var(--display); font-size: 14px; }
.post-head .meta { line-height: 1.2; }
.post-head .meta b { color: var(--white); font-size: 14px; }
.post-head .meta small { color: var(--muted); font-size: 12px; }
.post-head .tag { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--deep); background: var(--lime); padding: 3px 10px; border-radius: 100px; }
.post-head .tag.sys { background: rgba(200,241,53,.15); color: var(--lime); }
.post-body { font-size: 15px; color: var(--cream); line-height: 1.6; }
.post-body .pick { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 3px 10px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--lime); margin: 0 2px; }
.post-foot { display: flex; gap: 8px; margin-top: 14px; }
.react { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--cream); border-radius: 100px; padding: 6px 12px; font-size: 13px; cursor: pointer; transition: .15s var(--ease); user-select: none; }
.react:hover { background: rgba(200,241,53,.14); border-color: rgba(200,241,53,.4); }
.react[data-on="true"] { background: var(--lime); color: var(--deep); border-color: var(--lime); }
.react .c { font-variant-numeric: tabular-nums; }

.wall-tally { background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid rgba(200,241,53,.25); border-radius: var(--radius); padding: 20px; text-align: center; }
.wall-tally .tally-num { font-size: clamp(34px,5vw,46px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--deep-2); color: var(--cream); padding: clamp(48px,6vw,72px) var(--gutter) 32px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; color: var(--cream); opacity: .7; margin-top: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 520px){ .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: var(--mark); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; color: var(--lime); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--cream); opacity: .75; text-decoration: none; font-size: 14px; }
.footer-col a:hover { opacity: 1; color: var(--lime); }
.footer-bottom { max-width: var(--maxw); margin: 36px auto 0; padding-top: 24px; border-top: 1px solid var(--line-d); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { font-size: 12px; color: var(--cream); opacity: .6; line-height: 1.6; }
.footer-disclaimer { font-size: 12px; color: var(--lime); opacity: .7; }

/* ==========================================================================
   SCROLL REVEAL + MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .pill .dot { animation: none; }
}

/* focus visibility */
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

/* small helpers */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.note { font-size: 14px; color: var(--muted); }
.note a { color: var(--forest); font-weight: 700; text-decoration: none; }

/* ==========================================================================
   ============ v2 ENHANCEMENTS — "push it to a 10" =========================
   Sport loader · animated hero · interactive 3D cards · dark Wall · motion
   ========================================================================== */

@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

/* ---------- PAGE LOADER (sport-themed, alternates per load) ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background:
    radial-gradient(900px 500px at 50% 12%, rgba(200,241,53,.10), transparent 60%),
    var(--deep-2);
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}
.loader.out { opacity: 0; visibility: hidden; }
html:not(.js) .loader { display: none; }
body.loading { overflow: hidden; }

.loader-inner { text-align: center; transform: translateY(-6px); }
.pitch { position: relative; width: 240px; height: 150px; margin: 0 auto 26px; }
.pitch .posts { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.pitch .ground {
  position: absolute; left: 8%; right: 8%; bottom: 16px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,241,53,.5), transparent);
}
.ball {
  position: absolute; left: 50%; top: 50%; width: 26px; height: 40px; margin: -20px 0 0 -13px;
  will-change: transform; animation: kick 1.25s var(--ease) infinite;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.45));
}
.ball.oval {
  background: radial-gradient(120% 120% at 35% 30%, #F2EFE6, #cfcab6);
  border-radius: 50% / 42%;
  border: 1.5px solid rgba(15,46,34,.25);
}
.ball.oval::before { content: ""; position: absolute; left: 50%; top: 14%; bottom: 14%; width: 2px; margin-left: -1px; background: var(--forest); }
.ball.oval::after { content: ""; position: absolute; left: 50%; top: 26%; width: 10px; height: 1.5px; margin-left: -5px; box-shadow: 0 5px var(--forest), 0 10px var(--forest), 0 15px var(--forest); }
.ball.round {
  width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #0f1a14 0 18%, transparent 19%),
    radial-gradient(circle at 18% 70%, #0f1a14 0 9%, transparent 10%),
    radial-gradient(circle at 82% 70%, #0f1a14 0 9%, transparent 10%),
    radial-gradient(120% 120% at 35% 30%, #ffffff, #d8d8d0);
  border: 1px solid rgba(15,46,34,.2);
}
@keyframes kick {
  0%   { transform: translate(-96px, 48px) rotate(0deg);  opacity: 0; }
  12%  { opacity: 1; }
  50%  { transform: translate(0px, -58px) rotate(360deg); }
  88%  { opacity: 1; }
  100% { transform: translate(96px, 48px) rotate(720deg); opacity: 0; }
}
.loader-word { font-family: var(--mark); font-weight: 900; font-size: 34px; letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.loader-word span { color: var(--lime); }
.loader-sport { font-family: var(--mark); font-weight: 600; letter-spacing: .28em; text-transform: uppercase; font-size: 12px; color: var(--lime); opacity: .85; margin-top: 8px; }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.12); border-radius: 100px; margin: 22px auto 0; overflow: hidden; }
.loader-bar > i { display: block; height: 100%; width: 0; background: var(--lime); border-radius: 100px; animation: barFill 1.45s var(--ease) forwards; }
@keyframes barFill { 0% { width: 4%; } 60% { width: 72%; } 100% { width: 100%; } }

/* ---------- HERO: ambient motion + staggered intro ---------- */
.hero::after {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 140%;
  background:
    radial-gradient(420px 220px at 18% 24%, rgba(200,241,53,.10), transparent 60%),
    radial-gradient(520px 260px at 84% 10%, rgba(45,122,58,.30), transparent 60%);
  filter: blur(2px); animation: meshDrift 16s ease-in-out infinite alternate; pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
@keyframes meshDrift { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-3%,2%,0) scale(1.06); } }

.js .hero .pill,
.js .hero h1,
.js .hero .hero-sub,
.js .hero .hero-ctas,
.js .hero .cta-subtext,
.js .hero .hero-stats { opacity: 0; transform: translateY(16px); }
.js body.ready .hero .pill,
.js body.ready .hero h1,
.js body.ready .hero .hero-sub,
.js body.ready .hero .hero-ctas,
.js body.ready .hero .cta-subtext,
.js body.ready .hero .hero-stats {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js body.ready .hero h1 { transition-delay: .08s; }
.js body.ready .hero .hero-sub { transition-delay: .18s; }
.js body.ready .hero .hero-ctas { transition-delay: .28s; }
.js body.ready .hero .cta-subtext { transition-delay: .36s; }
.js body.ready .hero .hero-stats { transition-delay: .46s; }
.hero .stat-num { transition: transform .3s var(--ease); }
.hero .stat:hover .stat-num { transform: translateY(-3px) scale(1.04); }

/* ---------- BUTTONS: shine sweep ---------- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .55s var(--ease);
}
.btn-primary:hover::after { left: 150%; }

/* ---------- INTERACTIVE 3D CARDS (applied via JS: .card-pro) ---------- */
.card-pro {
  position: relative; isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  transform: perspective(1000px) rotateX(0) rotateY(0);
}
.card-pro::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .28s var(--ease);
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(200,241,53,.16), transparent 42%);
}
.card-pro > * { position: relative; z-index: 1; }
@media (hover: hover) and (pointer: fine) {
  .card-pro:hover {
    transform: perspective(1000px) rotateX(var(--rx,0)) rotateY(var(--ry,0)) translateY(-6px);
    box-shadow: 0 26px 60px -28px rgba(0,0,0,.55);
    border-color: rgba(200,241,53,.5);
    z-index: 3;
  }
  .card-pro:hover::before { opacity: 1; }
  /* animated top accent */
  .card-pro::after {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 3;
    background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
  }
  .card-pro:hover::after { transform: scaleX(1); }
  .for-card:hover .for-tag, .feature:hover .tick, .step:hover .step-icon { transform: translateY(-2px) scale(1.06); }
  .for-tag, .tick, .step-icon { transition: transform .25s var(--ease); }
  .charity-card:hover .charity-icon { transform: rotate(-6deg) scale(1.1); transition: transform .25s var(--ease); }
}

/* featured pricing: rotating conic glow border */
.price-card.featured { overflow: visible; }
.price-card.featured::after {
  content: ""; position: absolute; inset: -1.5px; z-index: 0; border-radius: inherit;
  background: conic-gradient(from var(--ang), transparent 0 12%, var(--lime) 22%, rgba(200,241,53,.2) 32%, transparent 48% 100%);
  animation: spinBorder 5s linear infinite; transform: none !important; opacity: .9;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; padding: 1.5px;
}
.price-card.featured > * { position: relative; z-index: 1; }
@keyframes spinBorder { to { --ang: 360deg; } }

/* count-up emphasis */
.tally-num, .stat-num { transition: text-shadow .3s var(--ease); }
.ladder-band .tally:hover .tally-num { text-shadow: 0 0 26px rgba(200,241,53,.45); }

/* ---------- THE WALL — true dark app surface ---------- */
.wall-stage {
  background:
    radial-gradient(700px 360px at 84% -8%, rgba(200,241,53,.08), transparent 60%),
    radial-gradient(600px 320px at 8% 4%, rgba(45,122,58,.16), transparent 60%),
    linear-gradient(180deg, #070908, #0a0d0b);
  position: relative; color: var(--cream);
}
.wall-stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: radial-gradient(800px 600px at 50% 0%, #000, transparent 75%);
}
.wall-stage .section-heading { color: var(--white); }
.wall-stage .post, .wall-stage .composer, .wall-stage .wall-card, .wall-stage .wall-tally {
  background: linear-gradient(180deg, #11161300, #0000) , #0e1311;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 16px 36px -24px rgba(0,0,0,.9);
  border-radius: 10px;
}
.wall-stage .wall-tally { background: linear-gradient(180deg, #12180f, #0d120f); border-color: rgba(200,241,53,.22); }
.wall-stage .post { transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.wall-stage .post:hover { transform: translateY(-3px); border-color: rgba(200,241,53,.35); box-shadow: 0 24px 50px -28px rgba(0,0,0,.9); }
.wall-stage .composer textarea, .wall-stage .composer { background: #0c100e; }
.wall-stage .react { background: #141a17; border-color: rgba(255,255,255,.1); }
.wall-stage .react:hover { background: rgba(200,241,53,.14); }
.wall-stage .mini-row { border-top-color: rgba(255,255,255,.06); }
.wall-stage .wall-card h4 { color: #fff; }

/* new-post entrance + tally pulse + reaction pop */
.post.new { animation: postIn .5s var(--ease); }
@keyframes postIn { from { opacity: 0; transform: translateY(-10px) scale(.99); } to { opacity: 1; transform: none; } }
.post.flash { box-shadow: 0 0 0 1px var(--lime), 0 0 30px -6px rgba(200,241,53,.5); }
.tally-num.bump { animation: bump .5s var(--ease); }
@keyframes bump { 30% { transform: scale(1.08); color: #e9ff6b; } }
.react { transition: transform .12s var(--ease), background .15s var(--ease), border-color .15s var(--ease); }
.react:active { transform: scale(.92); }
.react.pop { animation: pop .32s var(--ease); }
@keyframes pop { 40% { transform: scale(1.18); } }
.float-heart { position: absolute; pointer-events: none; font-size: 16px; animation: floatUp .9s var(--ease) forwards; }
@keyframes floatUp { to { transform: translateY(-34px) scale(1.3); opacity: 0; } }

/* typing indicator */
.typing { display: inline-flex; gap: 4px; align-items: center; color: var(--muted); font-size: 13px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); opacity: .6; animation: blink 1s infinite; }
.typing i:nth-child(2){ animation-delay: .15s; } .typing i:nth-child(3){ animation-delay: .3s; }
@keyframes blink { 0%,100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }

/* live dot */
.live-dot { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); font-weight: 700; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200,241,53,.7); animation: ping 1.8s var(--ease) infinite; }

/* ---------- REDUCED MOTION: calm everything ---------- */
@media (prefers-reduced-motion: reduce) {
  .ball, .loader-bar > i, .hero::after, .price-card.featured::after,
  .post.new, .tally-num.bump, .react.pop, .typing i, .live-dot::before { animation: none !important; }
  .js .hero .pill, .js .hero h1, .js .hero .hero-sub, .js .hero .hero-ctas,
  .js .hero .cta-subtext, .js .hero .hero-stats { opacity: 1 !important; transform: none !important; }
  .card-pro { transform: none !important; }
}

/* ==========================================================================
   ============ v3 — card colours · scoreboard · scroll · images ============
   ========================================================================== */

:root {
  /* tinted card surfaces (greener than cream, low-sat, harmonised) */
  --card-1: #E3EBDA;  --acc-1: #2D7A3A;   /* sage / forest    */
  --card-2: #D9E8E1;  --acc-2: #1F7A63;   /* mint / teal      */
  --card-3: #DFE6CE;  --acc-3: #6E8B2E;   /* stone / olive    */
  --card-4: #DEE7E7;  --acc-4: #2E6E7A;   /* sky-sage / teal-blue */
}

/* ---------- TINTED CARDS (replace the flat cream) ---------- */
.for-card, .price-card, .feature, .charity-card, .step {
  background: var(--card-1);
  border-color: rgba(15,46,34,.10);
  border-left: 3px solid var(--acc-1);
}
/* rotate tints + accents across grid children for gentle variety */
.grid-3 > *:nth-child(3n+1), .feature-grid > *:nth-child(3n+1), .steps > *:nth-child(3n+1) { background: var(--card-1); border-left-color: var(--acc-1); }
.grid-3 > *:nth-child(3n+2), .feature-grid > *:nth-child(3n+2), .steps > *:nth-child(3n+2) { background: var(--card-2); border-left-color: var(--acc-2); }
.grid-3 > *:nth-child(3n+3), .feature-grid > *:nth-child(3n+3), .steps > *:nth-child(3n+3) { background: var(--card-3); border-left-color: var(--acc-3); }
.grid-4 > *:nth-child(4n+1) { background: var(--card-1); border-left-color: var(--acc-1); }
.grid-4 > *:nth-child(4n+2) { background: var(--card-2); border-left-color: var(--acc-2); }
.grid-4 > *:nth-child(4n+3) { background: var(--card-3); border-left-color: var(--acc-3); }
.grid-4 > *:nth-child(4n+4) { background: var(--card-4); border-left-color: var(--acc-4); }
.pricing-grid > *:nth-child(1) { background: var(--card-1); border-left-color: var(--acc-1); }
.pricing-grid > *:nth-child(2) { } /* featured: keep dark, set below */
.pricing-grid > *:nth-child(3) { background: var(--card-3); border-left-color: var(--acc-3); }
.pricing-grid > *:nth-child(4) { background: var(--card-4); border-left-color: var(--acc-4); }
.price-card.featured { background: var(--deep) !important; border-left-color: var(--lime) !important; }

/* category chips inherit the card's accent so each card "owns" a colour */
.for-card .for-tag { background: var(--acc-2); color: #fff; }
.grid-3 > *:nth-child(3n+1) .for-tag { background: var(--acc-1); }
.grid-3 > *:nth-child(3n+3) .for-tag { background: var(--acc-3); }
.charity-card .charity-icon { background: var(--acc-1); color: #fff; }
.grid-4 > *:nth-child(4n+2) .charity-icon { background: var(--acc-2); }
.grid-4 > *:nth-child(4n+3) .charity-icon { background: var(--acc-3); }
.grid-4 > *:nth-child(4n+4) .charity-icon { background: var(--acc-4); }
.charity-card .charity-icon.alt { background: var(--deep); color: var(--lime); }

/* ---------- WALL chat cards: tinted, not flat black ---------- */
.wall-stage .post { background: #111814; border-left: 3px solid rgba(200,241,53,.35); }
.wall-stage .post:has(.tag.sys) { background: linear-gradient(180deg, #14180c, #10140b); border-left-color: var(--lime); }
.wall-stage .post:has(.tag.sys.is-ladder) { background: linear-gradient(180deg, #0e1717, #0c1413); border-left-color: var(--acc-4); }
.wall-stage .composer { background: #0f1512; border-left: 3px solid var(--acc-2); }
.wall-stage .wall-card { background: #0f1513; }
.wall-stage .post-head .av { background: var(--acc-1); color: #fff; }
.wall-stage .post:has(.tag.sys) .post-head .av { background: rgba(200,241,53,.18); color: var(--lime); }

/* ---------- ANIMATED SCOREBOARD (replaces basic hero stats) ---------- */
.scoreboard {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(200,241,53,.16); border: 1px solid rgba(200,241,53,.22);
  border-radius: 16px; overflow: hidden; max-width: 720px; margin: 58px auto 0;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.8);
}
.sb-cell { background: rgba(7,20,14,.72); backdrop-filter: blur(8px); padding: 26px 16px 22px; text-align: center; }
.sb-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); opacity: .68; margin-top: 12px; }
.sb-num { font-family: var(--score); font-weight: 900; font-size: clamp(32px,4.6vw,48px); color: var(--lime); line-height: 1; }
.sb-ring { width: 86px; height: 86px; margin: 0 auto; position: relative; }
.sb-ring svg { width: 86px; height: 86px; transform: rotate(-90deg); }
.sb-ring .track { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 7; }
.sb-ring .bar { fill: none; stroke: var(--lime); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 226.2; stroke-dashoffset: 226.2; transition: stroke-dashoffset 1.5s var(--ease); }
.sb-ring.lit .bar { stroke-dashoffset: 0; }
.sb-ring .pct { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--score); font-weight: 900; font-size: 21px; color: var(--lime); }
.sb-pips { display: flex; gap: 3px; justify-content: center; margin-top: 14px; height: 16px; align-items: center; }
.sb-pips i { width: 5px; height: 8px; background: rgba(255,255,255,.16); border-radius: 2px; transition: height .25s var(--ease), background .25s var(--ease); }
.sb-pips i.on { background: var(--lime); height: 16px; }
.sb-chips { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; margin-top: 14px; min-height: 22px; }
.sb-chip { font-family: var(--mark); font-weight: 600; font-size: 11px; letter-spacing: .06em; padding: 3px 9px; border: 1px solid rgba(200,241,53,.4); color: var(--lime); border-radius: 100px; opacity: 0; transform: translateY(6px); }
.sb-chip.lit { opacity: 1; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
@media (max-width: 560px) { .scoreboard { grid-template-columns: 1fr; } }

/* ---------- HERO image backdrop + crossfade ---------- */
.hero.has-shots { background: var(--deep-2); }
.hero.has-shots::after { display: none; }            /* drop the mesh; photo carries texture */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .shot {
  position: absolute; inset: 0; background-size: cover; background-position: center 35%;
  opacity: 0; transition: opacity 1.6s var(--ease); transform: scale(1.06);
}
.hero-bg .shot.active { opacity: 1; }
.hero.has-shots .hero-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(200,241,53,.12), transparent 60%),
    linear-gradient(180deg, rgba(8,21,14,.82), rgba(8,21,14,.74) 55%, rgba(8,21,14,.92));
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg .shot.active { animation: kenburns 14s ease-in-out infinite alternate; }
}
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14) translateY(-1.5%); } }
.js .hero .scoreboard { opacity: 0; transform: translateY(16px); }
.js body.ready .hero .scoreboard { opacity: 1; transform: none; transition: opacity .7s var(--ease) .5s, transform .7s var(--ease) .5s; }

/* ---------- IMAGE BAND (players) ---------- */
.image-band { position: relative; min-height: 360px; display: grid; place-items: center; padding: var(--section-y) var(--gutter); overflow: hidden; color: var(--white); }
.image-band .shot { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.04); }
.image-band .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,21,14,.92), rgba(8,21,14,.55) 60%, rgba(8,21,14,.3)); }
.image-band .wrap { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.image-band blockquote { font-family: var(--display); font-size: clamp(24px,3.4vw,40px); line-height: 1.08; max-width: 640px; letter-spacing: -.02em; }
.image-band .src { margin-top: 14px; font-family: var(--mark); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: var(--lime); }

/* ambassador photo cover */
.amb-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ---------- NAV: hover underline + scroll-reactive ---------- */
.nav { transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.nav .nav-inner { transition: height .3s var(--ease); }
.nav.scrolled { background: rgba(9,18,13,.72); backdrop-filter: blur(14px) saturate(1.2); border-bottom-color: rgba(200,241,53,.28); box-shadow: 0 12px 34px -20px rgba(0,0,0,.85); }
.nav.scrolled .nav-inner { height: 56px; }
@media (min-width: 861px) {
  .nav-links a:not(.btn-nav) { position: relative; }
  .nav-links a:not(.btn-nav)::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
    background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease);
  }
  .nav-links a:not(.btn-nav):hover { color: var(--lime); opacity: 1; transform: translateY(-1px); }
  .nav-links a:not(.btn-nav):hover::before { transform: scaleX(1); }
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9998; pointer-events: none; }
.scroll-progress > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--forest), var(--lime)); box-shadow: 0 0 12px rgba(200,241,53,.55); transition: width .08s linear; }

/* ---------- STAGGERED CARD REVEAL ON SCROLL ---------- */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: .07s; }
.stagger.in > *:nth-child(3) { transition-delay: .14s; }
.stagger.in > *:nth-child(4) { transition-delay: .21s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .35s; }
.stagger.in > *:nth-child(7) { transition-delay: .42s; }
.stagger.in > *:nth-child(8) { transition-delay: .49s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg .shot { transition: none; }
  .sb-ring .bar { transition: none; stroke-dashoffset: 0; }
  .stagger > * { opacity: 1 !important; transform: none !important; }
  .scroll-progress > i { transition: none; }
  .js .hero .scoreboard { opacity: 1 !important; transform: none !important; }
}

/* ambassador spotlight layout */
.amb-spot { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
.amb-spot .amb-card { max-width: 300px; border-left: 3px solid var(--acc-2); }
.amb-spot .section-heading em { color: var(--forest); }
@media (max-width: 760px) { .amb-spot { grid-template-columns: 1fr; } .amb-spot .amb-card { max-width: 360px; } }

/* ==========================================================================
   ============ v4 — flows · carousels · split heroes · elegance ===========
   ========================================================================== */

/* refined reveals with direction modifiers */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.zoom       { transform: scale(.95); }
.reveal.in { opacity: 1; transform: none; }

/* icon helpers */
.cic { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sic { width: 20px; height: 20px; fill: currentColor; }

/* ---------- SPLIT HERO (other pages) ---------- */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; min-height: clamp(440px, 62vh, 620px); background: var(--deep); }
.hero-split .hs-left {
  padding: clamp(40px,6vw,76px) clamp(28px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(700px 360px at 16% 0%, rgba(200,241,53,.10), transparent 60%), var(--deep);
  position: relative;
}
.hero-split .hs-left h1 { font-family: var(--display); font-size: clamp(36px,5vw,62px); line-height: .98; color: var(--white); letter-spacing: -.02em; margin-bottom: 20px; }
.hero-split .hs-left h1 em { color: var(--lime); font-style: normal; }
.hero-split .hs-left .hero-sub { margin: 0 0 30px; max-width: 460px; }
.hero-split .hs-right { position: relative; overflow: hidden; min-height: 320px; }
.hero-split .hero-bg .shot { background-position: center 40%; }
.hero-split .hs-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--deep) 0%, rgba(15,46,34,.35) 22%, transparent 55%); }
.hero-split .hs-tagstrip { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 22px; background: linear-gradient(0deg, rgba(7,18,12,.88), transparent); display: flex; align-items: center; gap: 10px; }
.hero-split .hs-tagstrip .live-dot { font-size: 11px; }
@media (max-width: 820px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .hs-right { min-height: 240px; order: -1; }
  .hero-split .hs-veil { background: linear-gradient(0deg, var(--deep) 0%, transparent 60%); }
}

/* ---------- AMBASSADOR CAROUSEL ---------- */
.amb-carousel { position: relative; }
.amb-stage { position: relative; min-height: 320px; }
.amb-slide {
  position: absolute; inset: 0; display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.amb-slide.on { opacity: 1; visibility: visible; transform: none; position: relative; }
.amb-portrait { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; background: linear-gradient(145deg, var(--panel-2), var(--deep)); position: relative; }
.amb-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.amb-portrait .pinitials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-size: 64px; color: rgba(200,241,53,.55); }
.amb-portrait .pbadge { position: absolute; left: 14px; bottom: 14px; background: var(--lime); color: var(--deep); font-family: var(--mark); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
.amb-quote { }
.amb-quote .qmark { font-family: var(--display); font-size: 60px; line-height: .5; color: var(--lime); }
.amb-quote blockquote { font-family: var(--display); font-size: clamp(20px,2.6vw,30px); line-height: 1.16; color: var(--ink); letter-spacing: -.01em; margin: 12px 0 18px; }
.on-dark .amb-quote blockquote { color: var(--white); }
.amb-quote .who { font-weight: 700; color: var(--ink); }
.on-dark .amb-quote .who { color: var(--white); }
.amb-quote .role { font-size: 13px; color: var(--forest); font-weight: 700; }
.amb-controls { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.amb-dots { display: flex; gap: 8px; }
.amb-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(15,46,34,.18); border: 0; cursor: pointer; padding: 0; transition: .2s var(--ease); }
.on-dark .amb-dot { background: rgba(255,255,255,.2); }
.amb-dot.on { background: var(--forest); width: 26px; border-radius: 100px; }
.on-dark .amb-dot.on { background: var(--lime); }
.amb-pausebtn { display: inline-flex; align-items: center; gap: 7px; background: none; border: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; cursor: pointer; }
.on-dark .amb-pausebtn { border-color: var(--line-d); color: var(--cream); }
.amb-pausebtn:hover { border-color: var(--forest); color: var(--forest); }
.on-dark .amb-pausebtn:hover { border-color: var(--lime); color: var(--lime); }
.amb-hint { font-size: 12px; color: var(--muted); margin-left: auto; }
@media (max-width: 700px) {
  .amb-slide { grid-template-columns: 1fr; gap: 22px; }
  .amb-portrait { max-width: 220px; }
}

/* ---------- CHARITY ICON CARDS ---------- */
.charity-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.charity-card { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.charity-card .charity-icon { width: 48px; height: 48px; }
.charity-card .cgive { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--forest); opacity: 0; transform: translateY(4px); transition: .25s var(--ease); }
.charity-card:hover .cgive { opacity: 1; transform: none; }

/* ---------- ANIMATED DONATION FLOW (left -> right, expand/contract) ---------- */
.flow-seq { display: flex; gap: 14px; align-items: stretch; }
.flow-seq .flow-arrow { align-self: center; color: rgba(255,255,255,.25); flex: 0 0 auto; transition: color .4s var(--ease), transform .4s var(--ease); }
.flow-step {
  flex: 1 1 0; min-width: 0; position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line-d);
  transition: flex-grow .6s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.flow-step .fs-img { height: 0; opacity: 0; background-size: cover; background-position: center; transition: height .55s var(--ease), opacity .55s var(--ease); }
.flow-step .fs-body { padding: 26px 24px; position: relative; z-index: 1; }
.flow-step .fs-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(200,241,53,.14); color: var(--lime); font-family: var(--score); font-weight: 900; font-size: 20px; margin-bottom: 14px; }
.flow-step h4 { font-family: var(--display); font-size: 18px; color: var(--white); margin-bottom: 10px; }
.flow-step .fs-lead { font-size: 14px; color: var(--cream); opacity: .8; }
.flow-step .fs-detail { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .55s var(--ease), opacity .45s var(--ease), margin .45s var(--ease); }
.flow-step .fs-detail p { font-size: 13px; color: var(--cream); opacity: .72; line-height: 1.7; }
/* colour-coded steps */
.flow-step.c1 { border-top: 3px solid var(--acc-1); } .flow-step.c1 .fs-num { background: rgba(45,122,58,.22); color: #8fe07a; }
.flow-step.c2 { border-top: 3px solid var(--acc-2); } .flow-step.c2 .fs-num { background: rgba(31,122,99,.22); color: #6fe0c0; }
.flow-step.c3 { border-top: 3px solid var(--lime); } .flow-step.c3 .fs-num { background: rgba(200,241,53,.18); color: var(--lime); }
/* active (expanded) */
.flow-step.active { flex-grow: 2.4; box-shadow: 0 30px 70px -34px rgba(0,0,0,.8); border-color: rgba(200,241,53,.45); transform: translateY(-4px); }
.flow-step.active .fs-img { height: 150px; opacity: 1; }
.flow-step.active .fs-detail { max-height: 220px; opacity: 1; margin-top: 14px; }
.flow-step.active .fs-num { box-shadow: 0 0 0 6px rgba(200,241,53,.10); }
.flow-seq .flow-arrow.lit { color: var(--lime); transform: translateX(3px); }
.flow-progress { display: flex; gap: 6px; justify-content: center; margin-top: 22px; }
.flow-progress i { width: 28px; height: 4px; border-radius: 100px; background: rgba(255,255,255,.16); transition: background .3s var(--ease); }
.flow-progress i.on { background: var(--lime); }
.flow-hint { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }
.on-dark .flow-hint { color: var(--cream); opacity: .6; }
@media (max-width: 820px) {
  .flow-seq { flex-direction: column; }
  .flow-seq .flow-arrow { transform: rotate(90deg); align-self: center; }
  .flow-seq .flow-arrow.lit { transform: rotate(90deg) translateX(3px); }
  .flow-step.active { flex-grow: 1; }
}

/* ---------- PREMIUM FOUNDING BAND ---------- */
.founding-pro { position: relative; overflow: hidden; background: var(--deep-2); color: var(--cream); padding: clamp(54px,7vw,90px) var(--gutter); }
.founding-pro::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 88% 12%, rgba(200,241,53,.14), transparent 58%), radial-gradient(600px 360px at 0% 100%, rgba(45,122,58,.30), transparent 60%); }
.founding-pro::after { content: "2026"; position: absolute; right: 2%; bottom: -6%; font-family: var(--display); font-size: clamp(140px,22vw,300px); color: rgba(255,255,255,.03); letter-spacing: -.04em; pointer-events: none; }
.fp-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px){ .fp-inner { grid-template-columns: 1fr; gap: 30px; } }
.fp-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(200,241,53,.12); border: 1px solid rgba(200,241,53,.4); color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 22px; }
.fp-badge .live-dot::before { width: 7px; height: 7px; }
.founding-pro h2 { font-family: var(--display); font-size: clamp(30px,4.2vw,52px); line-height: 1.02; color: var(--white); letter-spacing: -.02em; margin-bottom: 16px; }
.founding-pro h2 em { color: var(--lime); font-style: normal; }
.founding-pro > .fp-inner p.lead { font-size: var(--fs-lead); color: var(--cream); opacity: .82; max-width: 560px; }
.fp-benefits { list-style: none; margin: 24px 0 0; display: grid; gap: 12px; }
.fp-benefits li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--cream); }
.fp-benefits .bk { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--lime); color: var(--deep); display: grid; place-items: center; font-weight: 900; font-size: 12px; }
.fp-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(200,241,53,.25); border-radius: 16px; padding: 30px; backdrop-filter: blur(6px); }
.fp-deadline { font-family: var(--score); font-weight: 900; font-size: 40px; color: var(--lime); line-height: 1; }
.fp-card .dl-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); opacity: .7; margin-bottom: 8px; }
.fp-card .dl-sub { font-size: 13px; color: var(--cream); opacity: .72; margin: 14px 0 22px; line-height: 1.6; }

/* ---------- FAQ v2 ---------- */
.faq-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px){ .faq-grid { grid-template-columns: 1fr; gap: 22px; } }
.faq-aside { position: sticky; top: 96px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: var(--card-1); transition: border-color .25s var(--ease), background .25s var(--ease); }
.faq-item:nth-child(3n+2){ background: var(--card-2); } .faq-item:nth-child(3n){ background: var(--card-3); }
.faq-item[data-open="true"] { border-color: var(--forest); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--ink); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .qn { font-family: var(--score); font-weight: 900; color: var(--forest); margin-right: 4px; }
.faq-q .qx { position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .qx::before, .faq-q .qx::after { content: ""; position: absolute; background: var(--forest); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.faq-q .qx::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-q .qx::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item[data-open="true"] .qx::after { transform: scaleY(0); opacity: 0; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); padding: 0 20px; }
.faq-item[data-open="true"] .faq-a { max-height: 320px; padding: 0 20px 20px; }

/* ---------- CONTACT v2 + SOCIALS ---------- */
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 820px){ .contact-shell { grid-template-columns: 1fr; gap: 32px; } }
.email-cta { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(200,241,53,.3); border-radius: 14px; padding: 18px 22px; text-decoration: none; transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease); margin-bottom: 12px; }
.email-cta:hover { border-color: var(--lime); transform: translateY(-2px); background: rgba(200,241,53,.08); }
.email-cta .ec-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--lime); color: var(--deep); display: grid; place-items: center; flex: none; }
.email-cta .ec-ic svg { width: 24px; height: 24px; }
.email-cta .ec-txt small { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); opacity: .8; }
.email-cta .ec-txt b { font-size: 18px; color: var(--white); font-family: var(--body); }
.contact-meta { font-size: 14px; color: var(--cream); opacity: .8; line-height: 1.9; margin-bottom: 26px; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.05); border: 1px solid var(--line-d); color: var(--cream); border-radius: 100px; padding: 10px 16px; text-decoration: none; font-size: 13px; font-weight: 600; transition: .2s var(--ease); }
.social-btn svg { width: 17px; height: 17px; fill: currentColor; }
.social-btn:hover { transform: translateY(-2px); color: var(--deep); }
.social-btn.s-email:hover    { background: var(--lime); border-color: var(--lime); }
.social-btn.s-linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.social-btn.s-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-btn.s-instagram:hover{ background: #E1306C; border-color: #E1306C; color: #fff; }
.social-btn.s-whatsapp:hover { background: #25D366; border-color: #25D366; color: #042; }
.social-btn.s-tiktok:hover   { background: #fff; border-color: #fff; color: #111; }
.social-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* elegant form: floating labels */
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 22px 16px 10px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14); color: var(--white); font-family: var(--body);
  font-size: 15px; border-radius: 12px; outline: none; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field label { position: absolute; left: 16px; top: 16px; color: rgba(255,255,255,.55); font-size: 15px; pointer-events: none; transition: .18s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); background: rgba(200,241,53,.05); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select[data-filled="true"] + label { top: 7px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--lime); }
.field select { color: var(--white); -webkit-appearance: none; appearance: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .col-span { grid-column: 1 / -1; }
.form-submit { background: var(--lime); color: var(--deep); font-family: var(--display); font-size: 15px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; padding: 16px 30px; border: 0; cursor: pointer; border-radius: 12px; transition: filter .15s var(--ease), transform .1s var(--ease); width: 100%; position: relative; overflow: hidden; }
.form-submit:hover { filter: brightness(1.07); transform: translateY(-2px); }
@media (max-width: 520px){ .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   ============ v5 — pricing tiers · how-it-works flow · scoring ===========
   ========================================================================== */

/* shaded tier cards (replace the table) */
.tier-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: stretch; }
@media (max-width: 1040px){ .tier-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .tier-cards { grid-template-columns: 1fr; } }
.tier {
  position: relative; border-radius: 14px; padding: 26px 20px; display: flex; flex-direction: column;
  border: 1px solid rgba(15,46,34,.10); border-top: 4px solid var(--acc-1); overflow: hidden;
}
/* graduated shades that match the cream backdrop, deepening across the row */
.tier:nth-child(1){ background:#F0EDDF; border-top-color:#6E8B2E; }
.tier:nth-child(2){ background:#E7EDD8; border-top-color:#4E8A3A; }
.tier:nth-child(3){ background:#DDEAD7; border-top-color:#2D7A3A; }
.tier:nth-child(4){ background:#D3E6D3; border-top-color:#1F7A63; }
.tier:nth-child(5){ background:#C7E0CE; border-top-color:#176B57; }
.tier.featured { background: var(--deep); border: 1px solid var(--lime); border-top: 4px solid var(--lime); color: var(--cream); }
.tier-name { font-family: var(--display); font-size: 17px; color: var(--ink); }
.tier.featured .tier-name { color: #fff; }
.tier-for { font-size: 12px; color: var(--muted); margin: 4px 0 16px; }
.tier.featured .tier-for { color: var(--cream); opacity: .75; }
.tier-price { font-family: var(--score); font-weight: 900; font-size: 40px; color: var(--ink); line-height: 1; }
.tier.featured .tier-price { color: var(--lime); }
.tier-price span { font-size: 13px; font-family: var(--body); font-weight: 400; color: var(--muted); }
.tier.featured .tier-price span { color: var(--cream); opacity: .7; }
.tier-per { font-size: 12px; font-weight: 700; color: var(--forest); margin: 6px 0 16px; }
.tier.featured .tier-per { color: var(--lime); opacity: .85; }
.tier-cta { margin-top: auto; text-align: center; font-family: var(--display); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 11px; border-radius: 8px; text-decoration: none; background: rgba(15,46,34,.08); color: var(--deep); transition: .2s var(--ease); }
.tier-cta:hover { background: var(--forest); color: #fff; }
.tier.featured .tier-cta { background: var(--lime); color: var(--deep); }
.tier.featured .tier-cta:hover { filter: brightness(1.08); }
.tier-flag { position: absolute; top: 14px; right: -30px; transform: rotate(45deg); background: var(--lime); color: var(--deep); font-family: var(--mark); font-weight: 700; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 36px; }

/* feature v2 */
.feature-grid2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 820px){ .feature-grid2 { grid-template-columns: 1fr; } }
.feat2 { position: relative; padding: 26px 24px 26px; border-radius: 14px; border: 1px solid rgba(15,46,34,.10); border-left: 3px solid var(--acc-1); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.feat2:nth-child(6n+1){ background: var(--card-1); border-left-color: var(--acc-1); } .feat2:nth-child(6n+1) .feat-ic{ color: var(--acc-1); }
.feat2:nth-child(6n+2){ background: var(--card-2); border-left-color: var(--acc-2); } .feat2:nth-child(6n+2) .feat-ic{ color: var(--acc-2); }
.feat2:nth-child(6n+3){ background: var(--card-3); border-left-color: var(--acc-3); } .feat2:nth-child(6n+3) .feat-ic{ color: var(--acc-3); }
.feat2:nth-child(6n+4){ background: var(--card-4); border-left-color: var(--acc-4); } .feat2:nth-child(6n+4) .feat-ic{ color: var(--acc-4); }
.feat2:nth-child(6n+5){ background: var(--card-1); border-left-color: var(--forest); } .feat2:nth-child(6n+5) .feat-ic{ color: var(--forest); }
.feat2:nth-child(6n+6){ background: var(--card-2); border-left-color: var(--acc-2); } .feat2:nth-child(6n+6) .feat-ic{ color: var(--acc-2); }
.feat-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.6); display: grid; place-items: center; margin-bottom: 16px; }
.feat-ic svg { width: 24px; height: 24px; }
.feat2 h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.feat2 p { font-size: 13px; color: var(--muted); }

/* ---------- HOW-IT-WORKS vertical flow timeline ---------- */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 31px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(var(--forest), var(--lime)); opacity: .5; }
@media (max-width: 620px){ .timeline::before { left: 23px; } }
.tl-step { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 18px 0; }
.tl-marker { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-family: var(--score); font-weight: 900; font-size: 26px; color: #fff; position: relative; z-index: 1; box-shadow: 0 12px 28px -14px rgba(0,0,0,.4); }
.tl-step:nth-child(1) .tl-marker { background: linear-gradient(145deg, #3a8f49, var(--acc-1)); }
.tl-step:nth-child(2) .tl-marker { background: linear-gradient(145deg, #2a9079, var(--acc-2)); }
.tl-step:nth-child(3) .tl-marker { background: linear-gradient(145deg, var(--lime), var(--lime-dk)); color: var(--deep); }
.tl-card { border-radius: 14px; padding: 26px 28px; border: 1px solid rgba(15,46,34,.10); border-left: 3px solid var(--acc-1); }
.tl-step:nth-child(1) .tl-card { background: var(--card-1); border-left-color: var(--acc-1); }
.tl-step:nth-child(2) .tl-card { background: var(--card-2); border-left-color: var(--acc-2); }
.tl-step:nth-child(3) .tl-card { background: var(--card-3); border-left-color: var(--acc-3); }
.tl-tag { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); }
.tl-card h2 { font-family: var(--display); font-size: clamp(22px,3vw,30px); line-height: 1.05; margin: 8px 0 12px; color: var(--ink); }
.tl-card p { font-size: 15px; color: var(--muted); max-width: 560px; }
@media (max-width: 620px){ .tl-step { grid-template-columns: 48px 1fr; gap: 16px; } .tl-marker { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; } }

/* scoring cards (separated, distinct) */
.score-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 760px){ .score-cards { grid-template-columns: 1fr; } }
.score-card { border-radius: 16px; padding: 30px 26px; position: relative; overflow: hidden; color: #fff; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; }
.score-card:nth-child(1){ background: linear-gradient(160deg, #2f8a49, #1c5e30); }
.score-card:nth-child(2){ background: linear-gradient(160deg, #2a9079, #134f42); }
.score-card:nth-child(3){ background: linear-gradient(160deg, #b9e72e, #7fa019); color: var(--deep); }
.score-pts { position: absolute; top: 18px; right: 22px; font-family: var(--score); font-weight: 900; font-size: clamp(56px,8vw,84px); line-height: .8; opacity: .35; }
.score-card h3 { font-family: var(--display); font-size: 20px; margin-bottom: 8px; position: relative; }
.score-card p { font-size: 14px; opacity: .9; position: relative; }
.score-card .pts-lab { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .8; margin-bottom: auto; position: relative; }

/* roles & ladder distinct */
.roles-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px){ .roles-2 { grid-template-columns: 1fr; } }
.role-card { border-radius: 16px; padding: 30px; border: 1px solid var(--line-d); position: relative; overflow: hidden; background: var(--panel); color: var(--cream); }
.role-card.r1 { border-top: 3px solid var(--lime); }
.role-card.r2 { border-top: 3px solid var(--acc-2); }
.role-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: var(--lime); background: rgba(200,241,53,.12); margin-bottom: 16px; }
.role-card.r2 .role-ic { color: #6fe0c0; background: rgba(31,122,99,.18); }
.role-ic svg { width: 26px; height: 26px; }
.role-card h3 { font-family: var(--display); font-size: 20px; color: #fff; margin-bottom: 8px; }
.role-card p { font-size: 14px; color: var(--cream); opacity: .8; }
.role-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); background: var(--lime); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.role-card.r2 .role-tag { background: #6fe0c0; }

.ladder-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 820px){ .ladder-3 { grid-template-columns: 1fr; } }
.ladder-card { border-radius: 14px; padding: 26px; border: 1px solid rgba(15,46,34,.10); position: relative; overflow: hidden; }
.ladder-card:nth-child(1){ background: var(--card-1); border-left: 3px solid var(--acc-1); }
.ladder-card:nth-child(2){ background: var(--card-2); border-left: 3px solid var(--acc-2); }
.ladder-card:nth-child(3){ background: var(--card-4); border-left: 3px solid var(--acc-4); }
.ladder-card .lrank { font-family: var(--score); font-weight: 900; font-size: 40px; color: rgba(15,46,34,.12); line-height: 1; }
.ladder-card h3 { font-family: var(--display); font-size: 18px; color: var(--ink); margin: 6px 0 8px; }
.ladder-card p { font-size: 14px; color: var(--muted); }

/* big closing CTA */
.cta-pro { position: relative; overflow: hidden; background: var(--lime); padding: clamp(48px,7vw,84px) var(--gutter); text-align: center; }
.cta-pro::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 120%, rgba(15,46,34,.18), transparent 60%); }
.cta-pro .wrap { position: relative; z-index: 1; }
.cta-pro h2 { font-family: var(--display); font-size: clamp(30px,4.6vw,56px); line-height: 1.02; color: var(--deep); letter-spacing: -.02em; margin-bottom: 14px; }
.cta-pro p { color: var(--deep); opacity: .8; font-size: var(--fs-lead); max-width: 560px; margin: 0 auto 28px; }
.cta-pro .btn-dark { background: var(--deep); color: var(--lime); }

@media (prefers-reduced-motion: reduce) {
  .flow-step .fs-img, .flow-step .fs-detail { transition: none; }
  .amb-slide { transition: none; }
}

/* flow-step icon illustration (no stock photos needed) */
.flow-step .fs-illus { height: 0; opacity: 0; display: grid; place-items: center; transition: height .55s var(--ease), opacity .55s var(--ease); }
.flow-step.active .fs-illus { height: 132px; opacity: 1; }
.flow-step .fs-illus svg { width: 54px; height: 54px; stroke: rgba(255,255,255,.92); fill: none; stroke-width: 1.5; }
.flow-step.c1 .fs-illus { background: linear-gradient(140deg, #2f8a49, #1c5e30); }
.flow-step.c2 .fs-illus { background: linear-gradient(140deg, #2a9079, #134f42); }
.flow-step.c3 .fs-illus { background: linear-gradient(140deg, #b9e72e, #7fa019); }
.flow-step.c3 .fs-illus svg { stroke: var(--deep); }

/* small icon chip for homepage price tiers */
.price-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(15,46,34,.07); display: grid; place-items: center; color: var(--forest); margin-bottom: 14px; }
.price-card.featured .price-ic { background: rgba(200,241,53,.14); color: var(--lime); }
.price-ic svg { width: 22px; height: 22px; }

/* neutralise the legacy FAQ "+" pseudo (v2 uses the .qx morph instead) */
.faq-q::after { content: none !important; }

/* ==========================================================================
   ============ v6 — The Good List (public leaderboard) ====================
   ========================================================================== */

.preseason { display: inline-flex; gap: 8px; align-items: center; background: rgba(200,241,53,.12); border: 1px solid rgba(200,241,53,.4); color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; }
.preseason .live-dot::before { width: 7px; height: 7px; }

/* hero figure block */
.lb-herostat { margin-top: 30px; }
.lb-herostat .big { font-family: var(--score); font-weight: 900; font-size: clamp(44px,7vw,72px); color: var(--lime); line-height: 1; }
.lb-herostat .lab { font-size: 13px; color: var(--cream); opacity: .7; margin-top: 8px; }

/* ---------- TABS ---------- */
.tabs { position: sticky; top: 0; z-index: 40; background: rgba(232,228,213,.88); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(15,46,34,.12); }
.tabs-inner { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 6px; padding: 12px var(--gutter); overflow-x: auto; scrollbar-width: none; }
.tabs-inner::-webkit-scrollbar { display: none; }
.tab-btn { border: 1px solid transparent; background: none; font-family: var(--body); font-weight: 600; font-size: 14px; color: var(--muted); padding: 10px 20px; border-radius: 100px; cursor: pointer; white-space: nowrap; transition: color .2s var(--ease), background .2s var(--ease), transform .1s var(--ease); }
.tab-btn:hover { color: var(--deep); background: rgba(15,46,34,.06); }
.tab-btn.active { color: var(--deep); background: var(--lime); box-shadow: 0 8px 20px -10px rgba(200,241,53,.7); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelIn .45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- PODIUM (top 3) ---------- */
.podium { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: end; margin-bottom: 20px; }
.pod { border-radius: 18px; padding: 28px 22px; text-align: center; position: relative; border: 1px solid rgba(15,46,34,.10); overflow: hidden; }
.pod .medal { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--score); font-weight: 900; font-size: 20px; margin: 0 auto 14px; }
.pod .pod-name { font-family: var(--display); font-size: 17px; color: var(--ink); line-height: 1.1; }
.pod .pod-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.pod .pod-chip { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; background: rgba(15,46,34,.08); color: var(--forest); }
.pod .pod-amt { font-family: var(--score); font-weight: 900; font-size: clamp(26px,3.4vw,38px); margin-top: 16px; color: var(--ink); line-height: 1; }
.pod.first  { order: 2; background: var(--deep); color: var(--cream); border-color: var(--lime); padding: 40px 24px 30px; box-shadow: 0 34px 70px -34px rgba(0,0,0,.55); }
.pod.first .pod-name { color: #fff; } .pod.first .pod-amt { color: var(--lime); }
.pod.first .pod-chip { background: rgba(200,241,53,.14); color: var(--lime); }
.pod.first .medal { background: var(--lime); color: var(--deep); }
.pod.first .crown { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); color: var(--lime); }
.pod.first .crown svg { width: 22px; height: 22px; }
.pod.second { order: 1; background: var(--card-2); } .pod.second .medal { background: var(--acc-2); color: #fff; }
.pod.third  { order: 3; background: var(--card-3); } .pod.third .medal { background: var(--acc-3); color: #fff; }
@media (max-width: 720px){ .podium { grid-template-columns: 1fr; } .pod, .pod.first, .pod.second, .pod.third { order: 0; } }

/* ---------- LEADERBOARD ROWS ---------- */
.lb { display: flex; flex-direction: column; gap: 8px; }
.lb-row { display: grid; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px; background: #FCFBF5; border: 1px solid rgba(15,46,34,.09); transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease); }
.lb--orgs .lb-row   { grid-template-columns: 46px 1fr auto auto; }
.lb--metric .lb-row { grid-template-columns: 46px 1fr 90px 130px; }
.lb-row:hover { transform: translateX(4px); border-color: rgba(200,241,53,.6); box-shadow: 0 16px 34px -24px rgba(0,0,0,.4); }
.lb-row.t3 { background: linear-gradient(90deg, rgba(200,241,53,.12), rgba(200,241,53,.04)); border-color: rgba(200,241,53,.35); }
.lb-rank { font-family: var(--score); font-weight: 900; font-size: 18px; color: var(--muted); text-align: center; }
.lb-row.t3 .lb-rank { color: var(--forest); }
.lb-name b { font-weight: 700; color: var(--ink); font-size: 15px; }
.lb-name small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.lb-chip { justify-self: start; font-size: 12px; font-weight: 700; color: var(--forest); background: rgba(45,122,58,.10); padding: 5px 12px; border-radius: 100px; white-space: nowrap; }
.lb-count { font-family: var(--score); font-weight: 800; font-size: 16px; color: var(--muted); text-align: right; }
.lb-amt { font-family: var(--score); font-weight: 900; font-size: 18px; color: var(--ink); text-align: right; white-space: nowrap; }
.lb-row.t3 .lb-amt { color: var(--forest); }
@media (max-width: 620px){
  .lb--orgs .lb-row { grid-template-columns: 38px 1fr auto; }
  .lb--orgs .lb-chip { display: none; }
  .lb--metric .lb-row { grid-template-columns: 38px 1fr auto; }
  .lb--metric .lb-count { display: none; }
}

/* ---------- FEATURED SPOTLIGHT ---------- */
.lb-featured { display: grid; grid-template-columns: 1fr 1.15fr; border-radius: 18px; overflow: hidden; background: var(--deep); color: var(--cream); border: 1px solid var(--line-d); margin-bottom: 40px; }
.lb-shot { position: relative; min-height: 300px; background-size: cover; background-position: center; }
.lb-shot .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,14,.3), rgba(8,21,14,.75)); }
.lb-shot .spot-badge { position: absolute; left: 20px; bottom: 20px; z-index: 1; background: var(--lime); color: var(--deep); font-family: var(--mark); font-weight: 700; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; }
.lb-copy { padding: 42px 46px; display: flex; flex-direction: column; justify-content: center; }
.lb-copy .eyebrow { color: var(--lime); opacity: .85; }
.lb-copy h3 { font-family: var(--display); color: #fff; font-size: clamp(22px,3vw,32px); margin: 10px 0 12px; }
.lb-copy p { color: var(--cream); opacity: .8; font-size: 15px; max-width: 52ch; }
.lb-figure { font-family: var(--score); font-weight: 900; color: var(--lime); font-size: clamp(30px,4vw,44px); margin-top: 20px; line-height: 1; }
.lb-figure small { display: block; font-family: var(--body); font-weight: 400; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); opacity: .6; margin-top: 8px; }
@media (max-width: 760px){ .lb-featured { grid-template-columns: 1fr; } .lb-shot { min-height: 200px; } }

/* section head row */
.lb-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.lb-head h2 { font-family: var(--display); font-size: clamp(22px,2.8vw,30px); color: var(--ink); }
.lb-head .note { font-size: 13px; color: var(--muted); max-width: 40ch; }
.lb-colhead { display: grid; gap: 16px; padding: 0 20px 8px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.lb--orgs .lb-colhead   { grid-template-columns: 46px 1fr auto auto; }
.lb--metric .lb-colhead { grid-template-columns: 46px 1fr 90px 130px; }
.lb-colhead .r-amt { text-align: right; }
@media (max-width: 620px){ .lb-colhead { display: none; } }

/* ==========================================================================
   ============ v7 — nav auth · calmer flow · wave · pricing table · mobile =
   ========================================================================== */

/* ---------- KILL HORIZONTAL SCROLL (no stray side-space on mobile) -------- */
html, body { overflow-x: clip; }              /* clip keeps sticky nav working */
img, svg, video { max-width: 100%; }
.wrap, .nav-inner, .section > .wrap { width: 100%; }

/* ---------- NAV: login link + sign-up, tidy on mobile --------------------- */
.nav-login { font-weight: 700 !important; }
@media (min-width: 861px) {
  .nav-auth { margin-left: 6px; padding-left: 16px; border-left: 1px solid var(--line-d); }
}
@media (max-width: 860px) {
  /* make sure every item — including Home / Log in / Sign up — is visible */
  .nav-links { max-height: calc(100vh - 66px); overflow-y: auto; }
  .nav-auth { border-top: 1px solid var(--line-d); }
}

/* ---------- CALMER DONATION FLOW (large cards, gentle pop, no shake) ------- */
.flow-seq { align-items: stretch; gap: 16px; }
/* equal widths at all times → sibling text never reflows → nothing "shakes" */
.flow-step { flex: 1 1 0; transition: box-shadow .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease); }
/* illustration + detail are always shown, so cards stay a fixed large size */
.flow-step .fs-illus,
.flow-step.active .fs-illus { height: 92px; opacity: 1; }
.flow-step .fs-detail,
.flow-step.active .fs-detail { max-height: none; opacity: 1; overflow: visible; margin-top: 14px; }
/* the "flow" is just a gentle highlight sweeping left → right */
.flow-step.active {
  flex-grow: 1;                 /* cancel the old 2.4 width jump */
  transform: scale(1.035); z-index: 2;
  box-shadow: 0 26px 58px -30px rgba(0,0,0,.7);
  border-color: rgba(200,241,53,.5);
}
@media (max-width: 820px) { .flow-step.active { transform: scale(1.02); } }
@media (prefers-reduced-motion: reduce) { .flow-step.active { transform: none; } }

/* ---------- WAVING HAND (next to "Email us") ------------------------------ */
.wave { display: inline-block; transform-origin: 70% 70%; animation: wave 2.5s var(--ease) infinite; }
@keyframes wave {
  0%,65%,100% { transform: rotate(0); }
  10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); } 60% { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) { .wave { animation: none; } }

/* ---------- HOME "HOW IT WORKS": left → right connected flow --------------- */
.step-flow { display: flex; align-items: stretch; gap: 0; }
.step-flow .step { flex: 1 1 0; min-width: 0; border-radius: 14px; border-left: 3px solid var(--acc-1); }
.step-flow .step.s1 { background: var(--card-1); border-left-color: var(--acc-1); }
.step-flow .step.s2 { background: var(--card-2); border-left-color: var(--acc-2); }
.step-flow .step.s3 { background: var(--card-3); border-left-color: var(--acc-3); }
.step-flow .flow-conn { flex: 0 0 auto; align-self: center; display: grid; place-items: center; width: 44px; color: var(--forest); }
.step-flow .flow-conn svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 760px) {
  .step-flow { flex-direction: column; }
  .step-flow .flow-conn { width: auto; height: 34px; transform: rotate(90deg); }
}

/* ==========================================================================
   PRICING TABLE — shaded columns that blend with the cream section
   ========================================================================== */
.tier-table-wrap { border-radius: 16px; overflow: hidden; border: 1px solid rgba(15,46,34,.14); box-shadow: 0 24px 56px -38px rgba(0,0,0,.4); }
.tier-table { width: 100%; border-collapse: collapse; background: var(--cream-2); }
.tier-table thead th {
  background: var(--deep); color: var(--cream);
  font-family: var(--mark); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-size: 12px; padding: 16px 22px; text-align: left; white-space: nowrap;
}
.tier-table thead th.ta-r { text-align: right; }
.tier-table td { padding: 22px; vertical-align: top; border-top: 1px solid rgba(15,46,34,.10); font-size: 14px; color: var(--muted); line-height: 1.6; }
/* the four columns, each its own shade — deepening left → right, all keyed to cream */
.tier-table td:nth-child(1) { background: #EFEBDC; }
.tier-table td:nth-child(2) { background: #E7ECDB; }
.tier-table td:nth-child(3) { background: #DFEAD9; }
.tier-table td:nth-child(4) { background: #D6E6D6; }
/* gentle row highlight that keeps the column tints underneath */
.tier-table tbody tr:hover td { box-shadow: inset 0 0 0 999px rgba(200,241,53,.07); }
/* the popular row gets a lime edge */
.tier-table tr.is-popular td:first-child { box-shadow: inset 4px 0 0 var(--lime); }
.tier-table tr.is-popular:hover td:first-child { box-shadow: inset 4px 0 0 var(--lime), inset 0 0 0 999px rgba(200,241,53,.07); }
/* cell contents */
.tt-tier .tt-name { display: block; font-family: var(--display); font-size: 16px; color: var(--ink); line-height: 1.15; }
.tt-tier .tt-sub { display: block; margin-top: 5px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--forest); }
.tier-table .tier-badge { display: inline-block; margin-left: 6px; background: var(--lime); color: var(--deep); font-family: var(--mark); font-weight: 700; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; vertical-align: middle; }
.tt-priced { text-align: right; white-space: nowrap; }
.tt-priced .tt-price { display: block; font-family: var(--score); font-weight: 900; font-size: 28px; color: var(--ink); line-height: 1; }
.tt-priced .tt-price span { font-size: 12px; font-weight: 400; font-family: var(--body); color: var(--muted); }
.tt-priced .tt-per { display: block; margin-top: 4px; font-size: 12px; font-weight: 700; color: var(--forest); white-space: normal; }

/* responsive: each tier becomes its own stacked card (no side-scroll) */
@media (max-width: 800px) {
  .tier-table, .tier-table tbody, .tier-table tr, .tier-table td { display: block; width: 100%; }
  .tier-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .tier-table tr { border-top: 4px solid var(--forest); }
  .tier-table tr:first-child { border-top: 0; }
  .tier-table td { border-top: 1px solid rgba(15,46,34,.10); padding: 12px 20px; display: flex; gap: 16px; justify-content: space-between; align-items: baseline; }
  .tier-table td::before { content: attr(data-label); flex: 0 0 38%; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); }
  .tier-table td.tt-tier, .tier-table td.tt-priced { text-align: right; }
  /* per-tier shade on mobile so each card still has its own tone */
  .tier-table tbody tr:nth-of-type(1) td { background: #EFEBDC; }
  .tier-table tbody tr:nth-of-type(2) td { background: #E7ECDB; }
  .tier-table tbody tr:nth-of-type(3) td { background: #DFEAD9; }
  .tier-table tbody tr:nth-of-type(4) td { background: #D8E7D7; }
  .tier-table tbody tr:nth-of-type(5) td { background: #CFE3D0; }
  .tt-priced, .tt-priced .tt-per { text-align: right; }
}

/* ==========================================================================
   ================= APP (authenticated product) — shell + UI ==============
   The marketing site's calmer working cousin: same palette/type, denser.
   ========================================================================== */
:root { --app-bg:#EBE7DA; --app-card:#FCFBF5; --app-card-2:#F4F1E6; --app-line:rgba(15,46,34,.12); --app-line-2:rgba(15,46,34,.07); }

.app { background: var(--app-bg); min-height: 100vh; color: var(--ink); font-family: var(--body); }
.app-main { max-width: 1160px; margin: 0 auto; padding: 26px 20px 72px; }
.app-h1 { font-family: var(--display); font-size: clamp(22px,2.8vw,30px); color: var(--ink); letter-spacing: -.01em; }
.app-sub { color: var(--muted); font-size: 15px; margin-top: 4px; }
.app-eyebrow { font-family: var(--mark); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; color: var(--forest); }
.num { font-family: var(--score); font-weight: 900; font-variant-numeric: tabular-nums; }
.mono { font-variant-numeric: tabular-nums; }

/* charity strip */
.charity-strip { background: var(--deep-2); color: var(--cream); }
.charity-strip .cs-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 14px; padding: 8px 20px; font-size: 12px; }
.charity-strip .cs-label { display: flex; align-items: center; gap: 8px; font-family: var(--mark); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.charity-strip svg { width: 15px; height: 15px; fill: var(--lime); flex: none; }
.charity-strip .cs-amt { font-family: var(--score); font-weight: 800; color: #fff; }
.charity-strip .cs-bar { flex: 1; max-width: 240px; height: 5px; border-radius: 100px; background: rgba(255,255,255,.14); overflow: hidden; }
.charity-strip .cs-bar > i { display: block; height: 100%; background: var(--lime); border-radius: 100px; }
.charity-strip .cs-right { margin-left: auto; opacity: .65; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.charity-strip.nopledge .cs-amt { color: var(--lime); }
@media (max-width: 680px){ .charity-strip .cs-bar { display: none; } .charity-strip .cs-right { display: none; } }

/* app nav */
.app-nav { position: sticky; top: 0; z-index: 50; background: var(--deep); border-bottom: 1px solid rgba(255,255,255,.08); }
.app-nav .an-inner { max-width: 1160px; margin: 0 auto; height: 60px; display: flex; align-items: center; gap: 16px; padding: 0 20px; }
.an-brand { font-family: var(--mark); font-weight: 900; font-size: 20px; color: #fff; text-transform: uppercase; letter-spacing: .02em; text-decoration: none; }
.an-brand span { color: var(--lime); }
.an-org { font-size: 13px; color: var(--cream); opacity: .7; padding-left: 14px; border-left: 1px solid rgba(255,255,255,.15); white-space: nowrap; }
.an-links { display: flex; gap: 2px; margin-left: 10px; }
.an-links a { font-size: 14px; font-weight: 600; color: var(--cream); opacity: .72; padding: 8px 14px; border-radius: 8px; text-decoration: none; transition: opacity .15s var(--ease), background .15s var(--ease); }
.an-links a:hover { opacity: 1; background: rgba(255,255,255,.06); }
.an-links a.on { color: var(--lime); opacity: 1; background: rgba(200,241,53,.10); }
.an-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.an-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--deep); display: grid; place-items: center; font-weight: 800; font-family: var(--mark); font-size: 15px; text-decoration: none; }
.an-logout { color: var(--cream); opacity: .65; display: inline-grid; place-items: center; }
.an-logout:hover { opacity: 1; color: var(--lime); }
.an-logout svg { width: 19px; height: 19px; }
.an-burger { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 6px; }
.an-burger svg { width: 24px; height: 24px; }
@media (max-width: 760px){
  .an-links, .an-org { display: none; }
  .an-burger { display: inline-grid; }
}
/* mobile sheet */
.app-sheet { position: fixed; inset: 0; z-index: 60; background: rgba(7,18,12,.6); opacity: 0; visibility: hidden; transition: .25s var(--ease); }
.app-sheet.open { opacity: 1; visibility: visible; }
.app-sheet .sheet-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(300px,84vw); background: var(--deep); padding: 22px; transform: translateX(100%); transition: transform .28s var(--ease); display: flex; flex-direction: column; gap: 6px; }
.app-sheet.open .sheet-panel { transform: none; }
.app-sheet a { color: var(--cream); text-decoration: none; padding: 13px 14px; border-radius: 10px; font-weight: 600; }
.app-sheet a:hover { background: rgba(255,255,255,.06); color: var(--lime); }

/* flash */
.flash { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 14px; border: 1px solid; }
.flash.success { background: rgba(45,122,58,.12); border-color: rgba(45,122,58,.4); color: #1c5e30; }
.flash.error { background: rgba(178,52,52,.10); border-color: rgba(178,52,52,.4); color: #9a2b2b; }
.flash.info { background: rgba(46,110,122,.10); border-color: rgba(46,110,122,.4); color: #245b66; }

/* cards */
.card { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 14px; padding: 22px; }
.card.pad-lg { padding: 28px; }
.card-h { font-family: var(--display); font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.card-lead { color: var(--muted); font-size: 14px; }
.grid-app { display: grid; gap: 16px; }
.g-2 { grid-template-columns: 1fr 1fr; } .g-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 820px){ .g-2, .g-3 { grid-template-columns: 1fr; } }

/* stat cards */
.stat-card { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 14px; padding: 20px; position: relative; overflow: hidden; }
.stat-card .s-lab { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.stat-card .s-num { font-family: var(--score); font-weight: 900; font-variant-numeric: tabular-nums; font-size: clamp(30px,4vw,40px); color: var(--ink); line-height: 1; margin-top: 8px; }
.stat-card .s-sub { font-size: 13px; color: var(--muted); margin-top: 6px; }
.stat-card.accent { background: var(--deep); border-color: var(--deep); }
.stat-card.accent .s-lab { color: var(--cream); opacity: .7; } .stat-card.accent .s-num { color: var(--lime); } .stat-card.accent .s-sub { color: var(--cream); opacity: .7; }

/* app buttons (compact) */
.abtn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--body); font-weight: 700; font-size: 14px; padding: 11px 18px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform .1s var(--ease), filter .15s var(--ease), background .15s var(--ease), border-color .15s; white-space: nowrap; }
.abtn:active { transform: translateY(1px); }
.abtn-primary { background: var(--lime); color: var(--deep); }
.abtn-primary:hover { filter: brightness(1.06); }
.abtn-dark { background: var(--deep); color: var(--lime); }
.abtn-dark:hover { filter: brightness(1.12); }
.abtn-ghost { background: transparent; border-color: var(--app-line); color: var(--ink); }
.abtn-ghost:hover { border-color: var(--forest); color: var(--forest); }
.abtn-sm { padding: 8px 13px; font-size: 13px; }
.abtn-block { width: 100%; }

/* pills / badges */
.pill-role { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; background: rgba(15,46,34,.08); color: var(--forest); }
.pill-role.owner { background: var(--lime); color: var(--deep); }
.pill-role.manager { background: rgba(45,122,58,.16); color: #1c5e30; }
.pill-role.captain { background: rgba(46,110,122,.16); color: #245b66; }
.badge-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); }
.badge-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); animation: ping 1.8s var(--ease) infinite; }
.tag-need { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #9a2b2b; background: rgba(178,52,52,.10); padding: 4px 10px; border-radius: 100px; }

/* progress */
.pbar { height: 8px; border-radius: 100px; background: rgba(15,46,34,.10); overflow: hidden; }
.pbar > i { display: block; height: 100%; background: linear-gradient(90deg,var(--forest),var(--lime)); border-radius: 100px; }
.pbar.sm { height: 6px; }

/* app forms */
.fld { margin-bottom: 16px; }
.fld > label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.fld input, .fld select, .fld textarea { width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--app-line); border-radius: 10px; font-family: var(--body); font-size: 15px; color: var(--ink); outline: none; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,122,58,.12); }
.fld .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.fld .err { font-size: 12px; color: #9a2b2b; margin-top: 6px; font-weight: 600; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .fld-row { grid-template-columns: 1fr; } }
.pw-meter { height: 5px; border-radius: 100px; background: rgba(15,46,34,.10); overflow: hidden; margin-top: 8px; }
.pw-meter > i { display: block; height: 100%; width: 40%; background: var(--lime); border-radius: 100px; transition: width .2s var(--ease); }

/* live password-requirements checklist */
.pw-checks { list-style: none; margin: 10px 0 0; padding: 10px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; background: rgba(15,46,34,.04); border: 1px solid var(--app-line); border-radius: 10px; transition: border-color .2s var(--ease), background .2s var(--ease); }
.pw-checks li { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--muted); transition: color .2s var(--ease); }
.pw-checks .pwc-ic { flex: none; width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid rgba(15,46,34,.25); background: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s var(--ease), border-color .2s var(--ease); }
.pw-checks .pwc-ic svg { width: 9px; height: 9px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 12; stroke-dashoffset: 12; }
.pw-checks li.ok { color: #1c5e30; }
.pw-checks li.ok .pwc-ic { background: var(--forest); border-color: var(--forest); animation: pwc-pop .28s var(--ease); }
.pw-checks li.ok .pwc-ic svg { stroke-dashoffset: 0; transition: stroke-dashoffset .25s var(--ease) .08s; }
.pw-checks.all-ok { border-color: rgba(45,122,58,.45); background: rgba(45,122,58,.08); }
@keyframes pwc-pop { 0% { transform: scale(.7); } 60% { transform: scale(1.18); } 100% { transform: scale(1); } }
@media (max-width: 400px){ .pw-checks { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce){ .pw-checks li.ok .pwc-ic { animation: none; } .pw-checks .pwc-ic svg { transition: none; } }

/* app tables / lists */
.atable { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
.atable th { text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 0 16px 6px; }
.atable td { background: var(--app-card); padding: 14px 16px; border-top: 1px solid var(--app-line); border-bottom: 1px solid var(--app-line); vertical-align: middle; }
.atable td:first-child { border-left: 1px solid var(--app-line); border-radius: 10px 0 0 10px; }
.atable td:last-child { border-right: 1px solid var(--app-line); border-radius: 0 10px 10px 0; }
.atable tr.me td { background: linear-gradient(90deg, rgba(200,241,53,.14), rgba(200,241,53,.04)); border-color: rgba(200,241,53,.5); }
.atable .r-rank { font-family: var(--score); font-weight: 900; font-size: 17px; color: var(--muted); width: 44px; }
.atable tr.me .r-rank { color: var(--forest); }
.atable .r-num { font-family: var(--score); font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.atable .r-pts { font-family: var(--score); font-weight: 900; font-variant-numeric: tabular-nums; text-align: right; color: var(--ink); }

/* countdown */
.countdown { display: inline-flex; gap: 8px; }
.cd-cell { background: var(--deep); color: var(--lime); border-radius: 8px; padding: 8px 10px; text-align: center; min-width: 52px; }
.cd-cell b { font-family: var(--score); font-weight: 900; font-variant-numeric: tabular-nums; font-size: 22px; display: block; line-height: 1; }
.cd-cell small { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream); opacity: .6; }

/* tip pick control */
.match-row { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.match-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.match-meta .venue { margin-left: auto; }
.pick { display: grid; grid-template-columns: 1fr 44px 1fr; gap: 10px; align-items: stretch; }
.pick .team { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--app-line); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 700; color: var(--ink); transition: border-color .15s var(--ease), background .15s var(--ease), transform .1s var(--ease); user-select: none; }
.pick .team:hover { border-color: var(--forest); }
.pick .team.away { flex-direction: row-reverse; text-align: right; }
.pick .team.sel { border-color: var(--lime); background: rgba(200,241,53,.12); box-shadow: 0 0 0 3px rgba(200,241,53,.14); }
.pick .team .crest { width: 34px; height: 34px; border-radius: 9px; background: var(--card-1); display: grid; place-items: center; font-family: var(--mark); font-weight: 700; font-size: 13px; color: var(--forest); flex: none; }
.pick .vs { display: grid; place-items: center; font-family: var(--mark); font-weight: 700; font-size: 12px; color: var(--muted); }
.saved-tick { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--forest); margin-top: 10px; opacity: 0; transition: opacity .2s var(--ease); }
.saved-tick.show { opacity: 1; }
.saved-tick svg { width: 15px; height: 15px; }
.locked-banner { display: flex; align-items: center; gap: 10px; background: rgba(15,46,34,.06); border: 1px solid var(--app-line); border-radius: 12px; padding: 13px 16px; font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }

/* result badges (my tips) */
.res { font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.res.correct { background: rgba(45,122,58,.15); color: #1c5e30; }
.res.incorrect { background: rgba(178,52,52,.12); color: #9a2b2b; }
.res.pending { background: rgba(15,46,34,.08); color: var(--muted); }

/* section head with filter */
.app-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.inline-select { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.inline-select select { padding: 9px 12px; border-radius: 9px; border: 1px solid var(--app-line); background: #fff; font-family: var(--body); font-size: 14px; color: var(--ink); }

/* auth */
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; }
.auth-brand { background: radial-gradient(700px 380px at 20% 10%, rgba(200,241,53,.12), transparent 60%), var(--deep); color: var(--cream); padding: clamp(36px,5vw,64px); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-brand::after { content: ""; position: absolute; right: -8%; bottom: -12%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(45,122,58,.35), transparent 65%); }
.auth-brand .ab-top { font-family: var(--mark); font-weight: 900; font-size: 24px; color: #fff; text-transform: uppercase; }
.auth-brand .ab-top span { color: var(--lime); }
.auth-brand .ab-mid h2 { font-family: var(--display); font-size: clamp(28px,3.4vw,42px); color: #fff; line-height: 1.04; letter-spacing: -.02em; }
.auth-brand .ab-mid h2 em { color: var(--lime); font-style: normal; }
.auth-brand .ab-mid p { color: var(--cream); opacity: .8; margin-top: 14px; max-width: 40ch; position: relative; z-index: 1; }
.auth-brand .ab-foot { font-size: 12px; color: var(--cream); opacity: .55; position: relative; z-index: 1; }
.auth-main { background: var(--app-bg); display: grid; place-items: center; padding: 40px 24px; }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-family: var(--display); font-size: 28px; color: var(--ink); margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.auth-card .alt { text-align: center; font-size: 14px; color: var(--muted); margin-top: 22px; }
.auth-card .alt a, .fld .flink { color: var(--forest); font-weight: 700; text-decoration: none; }
.auth-card .alt a:hover, .fld .flink:hover { text-decoration: underline; }
.fld-labelrow { display: flex; justify-content: space-between; align-items: baseline; }
@media (max-width: 860px){ .auth-shell { grid-template-columns: 1fr; } .auth-brand { display: none; } }

/* donation breakdown */
.dbreak { display: grid; gap: 10px; margin: 16px 0; }
.dbreak .row { display: flex; justify-content: space-between; font-size: 14px; }
.dbreak .row b { font-variant-numeric: tabular-nums; font-family: var(--score); }
.dbreak .row.total { border-top: 1px solid var(--app-line); padding-top: 10px; font-weight: 800; }

/* ==========================================================================
   ================= APP v2 — stronger picks, news, ladder, dropdowns ======
   ========================================================================== */

/* ---- STRONG selected-team state (was too light) ---- */
.pick .team { border-width: 2px; }
.pick .team.sel {
  background: linear-gradient(135deg, #2f8a49, #1a5a2f);
  border-color: #123f24;
  color: #fff; box-shadow: 0 14px 30px -14px rgba(20,70,40,.65);
}
.pick .team.sel span { color: #fff; }
.pick .team.sel .crest { background: var(--lime); color: var(--deep); }
.pick .team { position: relative; }
.pick .team.sel::before { content: ""; position: absolute; inset: 0; border-radius: 9px; box-shadow: inset 0 0 0 2px rgba(200,241,53,.55); pointer-events: none; }
.match-row:has(.team.sel) { border-color: rgba(45,122,58,.4); }

/* ---- Custom dropdown (replaces native select look) ---- */
.dd { position: relative; display: inline-block; min-width: 170px; }
.dd-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dd-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--app-line); border-radius: 10px; padding: 10px 14px; font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.dd-btn:hover { border-color: var(--forest); }
.dd.open .dd-btn { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,122,58,.12); }
.dd-btn .dd-chev { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; transition: transform .2s var(--ease); }
.dd.open .dd-btn .dd-chev { transform: rotate(180deg); }
.dd-menu { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid var(--app-line); border-radius: 12px; box-shadow: 0 22px 48px -22px rgba(0,0,0,.4); padding: 6px; z-index: 30; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s; max-height: 280px; overflow: auto; }
.dd.open .dd-menu { opacity: 1; visibility: visible; transform: none; }
.dd-opt { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; background: none; border: 0; padding: 10px 12px; border-radius: 8px; font-family: var(--body); font-size: 14px; color: var(--ink); cursor: pointer; transition: background .12s var(--ease); }
.dd-opt:hover { background: var(--card-1); }
.dd-opt.on { background: rgba(200,241,53,.18); font-weight: 700; }
.dd-opt.on::after { content: "✓"; color: var(--forest); font-weight: 900; }

/* ---- Footy news feed (ESPN-style) ---- */
.hub-grid { display: grid; grid-template-columns: 1.35fr .95fr; gap: 16px; align-items: start; }
@media (max-width: 940px){ .hub-grid { grid-template-columns: 1fr; } }
.news-lead { border-radius: 14px; overflow: hidden; border: 1px solid var(--app-line); background: var(--app-card); }
.news-lead .thumb { height: 190px; background-size: cover; background-position: center 30%; position: relative; }
.news-lead .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,21,14,.55)); }
.news-lead .sport-tag { position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--lime); color: var(--deep); font-family: var(--mark); font-weight: 700; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }
.news-lead .body { padding: 18px 20px 20px; }
.news-lead h4 { font-family: var(--display); font-size: 19px; color: var(--ink); line-height: 1.12; margin-bottom: 8px; }
.news-lead p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.news-lead .date { font-size: 12px; color: var(--muted); margin-top: 12px; font-weight: 600; }
.news-list { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 14px; padding: 6px 18px; }
.news-item { display: flex; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--app-line-2); align-items: flex-start; }
.news-item:last-child { border-bottom: 0; }
.news-item .ntag { font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; padding: 3px 8px; border-radius: 6px; flex: none; margin-top: 1px; }
.ntag.afl { background: var(--forest); } .ntag.nrl { background: var(--acc-2); } .ntag.aflw { background: var(--acc-3); } .ntag.nrlw { background: var(--acc-4); }
.news-item .nt { font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.3; }
.news-item .nd { font-size: 12px; color: var(--muted); margin-top: 3px; }
.hub-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hub-h .k { font-family: var(--mark); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; color: var(--forest); }
.hub-h a { font-size: 13px; color: var(--forest); font-weight: 700; text-decoration: none; }

/* ---- Team ladder / standings widget ---- */
.standings { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 14px; padding: 16px 16px 12px; }
.st-head { display: grid; grid-template-columns: 26px 1fr 42px 46px auto; gap: 8px; padding: 0 10px 8px; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.st-row { display: grid; grid-template-columns: 26px 1fr 42px 46px auto; gap: 8px; align-items: center; padding: 8px 10px; border-radius: 8px; font-size: 13px; }
.st-row:nth-child(even) { background: var(--app-card-2); }
.st-row.finals { position: relative; }
.st-rank { font-family: var(--score); font-weight: 900; color: var(--muted); }
.st-row.finals .st-rank { color: var(--forest); }
.st-team { font-weight: 700; color: var(--ink); font-family: var(--mark); letter-spacing: .02em; }
.st-pts { font-family: var(--score); font-weight: 900; text-align: right; }
.st-fa { font-family: var(--score); font-weight: 700; text-align: right; color: var(--muted); font-size: 12px; }
.streak { display: flex; gap: 3px; justify-content: flex-end; }
.streak i { width: 9px; height: 9px; border-radius: 2px; }
.streak i.w { background: var(--forest); } .streak i.l { background: rgba(15,46,34,.16); }
.st-divider { height: 0; border-top: 1px dashed rgba(200,241,53,.6); margin: 4px 10px; position: relative; }
.st-divider::after { content: "Finals line"; position: absolute; right: 10px; top: -8px; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); background: var(--app-card); padding: 0 6px; }

/* ---- per-comp mini stats (ESPN-style) ---- */
.comp-stats { display: flex; gap: 22px; margin-top: 12px; flex-wrap: wrap; }
.comp-stats .cs .k { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.comp-stats .cs .v { font-family: var(--score); font-weight: 900; font-variant-numeric: tabular-nums; font-size: 17px; color: var(--ink); }
.comp-stats .cs .v small { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ---- dashboard hero banner polish ---- */
.dash-banner { position: relative; overflow: hidden; border-radius: 16px; padding: 26px 28px; color: var(--cream); margin-bottom: 18px; }
.dash-banner .bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; }
.dash-banner .veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,35,25,.94) 30%, rgba(11,35,25,.6) 70%, rgba(11,35,25,.35)); }
.dash-banner > * { position: relative; z-index: 1; }

/* ---- AUTH: imagery in brand panel ---- */
.auth-brand { padding: 0; }
.auth-brand .ab-bg { position: absolute; inset: 0; z-index: 0; }
.auth-brand .ab-bg .shot { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); transform: scale(1.05); }
.auth-brand .ab-bg .shot.on { opacity: 1; }
.auth-brand .ab-veil { position: absolute; inset: 0; z-index: 0; background: radial-gradient(600px 340px at 18% 12%, rgba(200,241,53,.14), transparent 60%), linear-gradient(180deg, rgba(8,21,14,.7), rgba(8,21,14,.9)); }
.auth-brand .ab-content { position: relative; z-index: 1; padding: clamp(36px,5vw,60px); display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.auth-brand::after { display: none; }
.ab-stat { display: inline-flex; align-items: baseline; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(200,241,53,.28); border-radius: 12px; padding: 14px 18px; margin-top: 22px; }
.ab-stat .n { font-family: var(--score); font-weight: 900; font-size: 30px; color: var(--lime); }
.ab-stat .t { font-size: 13px; color: var(--cream); opacity: .85; }

/* ==========================================================================
   ================= APP v3 — auth green side, banner crossfade, nav ========
   ========================================================================== */

/* auth form side: bring green in (was flat cream) */
.auth-main {
  position: relative; overflow: hidden;
  background:
    radial-gradient(620px 420px at 108% -6%, rgba(45,122,58,.16), transparent 58%),
    radial-gradient(520px 420px at -8% 108%, rgba(200,241,53,.12), transparent 58%),
    var(--app-bg);
}
.auth-main::before { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(45,122,58,.20), transparent 68%); filter: blur(6px); pointer-events: none; }
.auth-main::after { content: ""; position: absolute; left: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(200,241,53,.16), transparent 68%); filter: blur(6px); pointer-events: none; }
.auth-card { position: relative; z-index: 1; background: rgba(255,255,255,.55); backdrop-filter: blur(4px); border: 1px solid rgba(15,46,34,.10); border-top: 3px solid var(--forest); border-radius: 16px; padding: 34px 32px; box-shadow: 0 30px 70px -40px rgba(15,46,34,.4); }
.auth-card h1 { margin-top: 4px; }
.auth-foot-note { position: relative; z-index: 1; margin-top: 22px; text-align: center; font-size: 12px; color: var(--forest); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 7px; }
.auth-foot-note svg { width: 14px; height: 14px; fill: var(--forest); }

/* dashboard banner crossfade */
.dash-banner .bg { position: absolute; inset: 0; }
.dash-banner .bg .shot { position: absolute; inset: 0; background-size: cover; background-position: center 35%; opacity: 0; transition: opacity 1.5s var(--ease); }
.dash-banner .bg .shot.on { opacity: 1; }

/* nav: clearer profile + logout */
.an-profile { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; padding: 4px 6px 4px 4px; border-radius: 100px; transition: background .15s var(--ease); }
.an-profile:hover { background: rgba(255,255,255,.07); }
.an-avatar { box-shadow: 0 0 0 2px rgba(200,241,53,.4); }
.an-plabel { color: var(--cream); font-size: 13px; font-weight: 600; }
.an-divider { width: 1px; height: 22px; background: rgba(255,255,255,.16); }
.an-logout { display: inline-flex; align-items: center; gap: 7px; color: var(--cream); opacity: .95; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; padding: 7px 13px; font-size: 13px; font-weight: 600; text-decoration: none; transition: .15s var(--ease); }
.an-logout:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,241,53,.08); opacity: 1; }
.an-logout svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
@media (max-width: 760px){ .an-plabel, .an-llabel { display: none; } .an-logout { border: 0; padding: 6px; } .an-divider { display: none; } }

/* auto-generate / suggest button */
.gen-btn { background: rgba(45,122,58,.10); color: var(--forest); border: 1px solid rgba(45,122,58,.28); border-radius: 100px; font-size: 12px; font-weight: 700; padding: 4px 11px; cursor: pointer; transition: .15s var(--ease); display: inline-flex; align-items: center; gap: 5px; }
.gen-btn:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ---------- password generator UI + flash stack (integration additions) ---------- */
.flash-stack { margin-bottom: 6px; }
.fld-labelrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gen-row { display: flex; gap: 8px; }
.pw-toggle { background: none; border: 0; cursor: pointer; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 0; }
.pw-toggle.on { color: var(--forest); }
.pw-gen-out { display: none; align-items: center; gap: 10px; margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(45,122,58,.10); border: 1px solid rgba(45,122,58,.32); }
.pw-gen-out.show { display: flex; }
.pw-gen-out .pwo-lab { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #1c5e30; flex: none; }
.pw-gen-out .pwo-val { font-family: var(--score); font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: .04em; word-break: break-all; flex: 1; }
.pw-gen-out .pwo-copy { background: var(--forest); color: #fff; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 7px; flex: none; }
.pw-gen-out .pwo-copy:hover { filter: brightness(1.08); }
.fld-err { color: #9a2b2b; font-size: 12.5px; font-weight: 600; margin-top: 6px; }

/* ---------- generated club crests (monogram badges in club colours) ---------- */
.crest { width: 30px; height: 30px; border-radius: 8px; display: inline-grid; place-items: center;
  font-family: var(--mark); font-weight: 700; font-size: 12px; letter-spacing: .01em; flex: none;
  background: var(--crest-bg, var(--card-1)); color: var(--crest-fg, #fff); }
.team-cell { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
/* let picks use each team's colours, but keep the selected-state override winning */
.pick .team .crest { width: 34px; height: 34px; border-radius: 9px; font-size: 13px;
  background: var(--crest-bg, var(--card-1)); color: var(--crest-fg, #fff); }
.pick .team.sel .crest { background: var(--lime); color: var(--deep); }
.cd-locked { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mark); font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; font-size: 13px; color: var(--muted); }

/* ---------- misc app integration bits ---------- */
.sample-tag { display: inline-block; margin-left: 8px; font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: rgba(15,46,34,.08); padding: 2px 8px; border-radius: 100px; vertical-align: middle; }
.vs-mini { color: var(--muted); font-weight: 700; margin: 0 6px; font-size: 12px; }
.atable td .team-cell { font-size: 14px; }

/* ==========================================================================
   ================= APP v4 — onboarding, billing, admin ===================
   ========================================================================== */

/* selectable option cards (checkbox / radio) */
.opt-grid { display: grid; gap: 10px; }
.opt-grid.cols2 { grid-template-columns: 1fr 1fr; }
.opt-grid.cols3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 620px){ .opt-grid.cols2, .opt-grid.cols3 { grid-template-columns: 1fr; } }
.opt-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1.5px solid var(--app-line); border-radius: 12px; background: #fff; cursor: pointer; transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease); position: relative; }
.opt-card:hover { border-color: var(--forest); }
.opt-card:has(input:checked) { border-color: var(--lime); background: rgba(200,241,53,.10); box-shadow: 0 0 0 3px rgba(200,241,53,.14); }
.opt-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt-card .oc-box { width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--app-line); flex: none; display: grid; place-items: center; margin-top: 1px; transition: .15s var(--ease); }
.opt-card.radio .oc-box { border-radius: 50%; }
.opt-card:has(input:checked) .oc-box { background: var(--forest); border-color: var(--forest); }
.opt-card .oc-box svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 3; opacity: 0; }
.opt-card:has(input:checked) .oc-box svg { opacity: 1; }
.opt-card .oc-title { display: block; font-weight: 700; color: var(--ink); font-size: 15px; }
.opt-card .oc-sub { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.opt-card .oc-right { margin-left: auto; text-align: right; }

/* copy-link field */
.copy-field { display: flex; gap: 8px; }
.copy-field input { flex: 1; padding: 12px 14px; background: var(--app-card-2); border: 1px solid var(--app-line); border-radius: 10px; font-family: var(--body); font-size: 14px; color: var(--ink); }
.copy-field .abtn { flex: none; }

/* amount input with $ */
.amount-input { position: relative; }
.amount-input::before { content: "$"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 700; z-index: 1; }
.amount-input input { padding-left: 26px; }

/* conditional blocks */
[data-when] { display: none; }
[data-when].show { display: block; }

/* vote card + result */
.vote-card { border: 1.5px solid var(--app-line); border-radius: 12px; padding: 16px 18px; background: #fff; }
.vote-card.win { border-color: var(--lime); background: rgba(200,241,53,.10); }
.vote-result { margin-top: 10px; }
.vote-bar { height: 10px; border-radius: 100px; background: rgba(15,46,34,.10); overflow: hidden; }
.vote-bar > i { display: block; height: 100%; background: linear-gradient(90deg,var(--forest),var(--lime)); }

/* plan "current" marker (reuses marketing .tier) */
.tier.current { outline: 2px solid var(--forest); outline-offset: 2px; }
.tier .tier-current { position: absolute; top: 14px; left: 14px; background: var(--forest); color: #fff; font-family: var(--mark); font-weight: 700; font-size: 10px; letter-spacing: .05em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.tier-feats { list-style: none; margin: 14px 0; display: grid; gap: 8px; }
.tier-feats li { display: flex; gap: 8px; font-size: 13px; color: var(--ink); }
.tier.featured .tier-feats li { color: var(--cream); }
.tier-feats .tk { color: var(--forest); flex: none; font-weight: 900; }
.tier.featured .tier-feats .tk { color: var(--lime); }

/* receipt */
.receipt { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--app-line); border-radius: 14px; padding: clamp(24px,4vw,40px); }
.receipt-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--app-line); padding-bottom: 20px; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.receipt-head .r-brand { font-family: var(--mark); font-weight: 900; font-size: 22px; color: var(--deep); }
.receipt-head .r-brand span { color: var(--forest); }
.receipt-meta { text-align: right; font-size: 13px; color: var(--muted); }
.receipt-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink); }
.receipt-row .k { color: var(--muted); }
.receipt-total { border-top: 2px solid var(--deep); margin-top: 14px; padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.receipt-total .num { font-family: var(--score); font-weight: 900; font-size: 26px; color: var(--deep); }
.receipt-note { margin-top: 20px; font-size: 12px; color: var(--muted); }
@media print { .charity-strip, .app-nav, .no-print { display: none !important; } .app-main { padding: 0; } }

/* ---- ADMIN sub-layout ---- */
.admin { display: grid; grid-template-columns: 224px 1fr; min-height: 100vh; background: var(--app-bg); }
.admin-side { background: var(--deep-2); color: var(--cream); padding: 22px 16px; display: flex; flex-direction: column; gap: 4px; }
.admin-side .as-brand { font-family: var(--mark); font-weight: 900; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 6px; }
.admin-side .as-brand span { color: var(--lime); }
.admin-side .as-tag { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); opacity: .5; margin-bottom: 18px; }
.admin-side a { display: flex; align-items: center; gap: 10px; color: var(--cream); opacity: .75; padding: 11px 13px; border-radius: 9px; text-decoration: none; font-weight: 600; font-size: 14px; transition: .15s var(--ease); }
.admin-side a:hover { opacity: 1; background: rgba(255,255,255,.06); }
.admin-side a.on { background: rgba(200,241,53,.12); color: var(--lime); opacity: 1; }
.admin-side a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.admin-side .as-foot { margin-top: auto; font-size: 12px; }
.admin-side .as-foot a { opacity: .6; }
.admin-main { padding: 26px 30px 60px; max-width: 1100px; }
.admin-h1 { font-family: var(--display); font-size: 26px; color: var(--ink); }
@media (max-width: 820px){
  .admin { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; align-items: center; gap: 4px; overflow-x: auto; padding: 12px; }
  .admin-side .as-brand, .admin-side .as-tag, .admin-side .as-foot { display: none; }
  .admin-side a { white-space: nowrap; }
}
.tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width: 820px){ .tiles { grid-template-columns: 1fr 1fr; } }
.tile { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 18px; }
.tile .t-num { font-family: var(--score); font-weight: 900; font-size: 30px; color: var(--ink); }
.tile .t-lab { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 2px; }
.atable.compact td { padding: 10px 14px; }
.mini-form { background: var(--app-card); border: 1px solid var(--app-line); border-radius: 12px; padding: 20px; }
.status-pill { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.status-pill.open { background: rgba(45,122,58,.15); color: #1c5e30; }
.status-pill.locked { background: rgba(15,46,34,.1); color: var(--muted); }
.status-pill.draft { background: rgba(178,120,40,.14); color: #8a5a12; }

/* ==========================================================================
   ============ v8 — password toggle · copy feedback · ADMIN polish ========
   ========================================================================== */

/* copied-button feedback (invite links etc.) */
.abtn.is-copied { background: var(--forest) !important; color: #fff !important; border-color: var(--forest) !important; }

/* ---- ADMIN: richer tiles + shaded-column tables ---- */
.admin-main { max-width: 1120px; }

.tiles .tile { border-left: 4px solid var(--forest); position: relative; overflow: hidden; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.tiles .tile:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -24px rgba(0,0,0,.4); }
.tiles .tile::after { content: ""; position: absolute; right: -18px; top: -18px; width: 72px; height: 72px; border-radius: 50%; background: rgba(45,122,58,.08); }
.tiles .tile:nth-child(1){ background:#EFEBDC; border-left-color:#6E8B2E; }
.tiles .tile:nth-child(2){ background:#E7EDDB; border-left-color:#2D7A3A; }
.tiles .tile:nth-child(3){ background:#DEEADB; border-left-color:#1F7A63; }
.tiles .tile:nth-child(4){ background:#D8E7DB; border-left-color:#2E6E7A; }
.tiles .tile .t-num { color: var(--deep); position: relative; }
.tiles .tile .t-lab { color: var(--forest); opacity: .85; position: relative; }

.admin .card { box-shadow: 0 16px 38px -30px rgba(0,0,0,.32); }
.admin .card > .card-h { padding-bottom: 10px; border-bottom: 1px solid var(--app-line-2); }
.admin .atable { border-spacing: 0 7px; }
.admin .atable thead th { color: var(--forest); font-weight: 800; letter-spacing: .07em; padding-bottom: 8px; }
.admin .atable td { background: #F4F1E6; border-color: rgba(15,46,34,.08); }
/* graduated column shades — blend cream → sage across each row */
.admin .atable td:nth-child(1){ background:#F1EEDF; box-shadow: inset 3px 0 0 var(--forest); }
.admin .atable td:nth-child(2){ background:#EAEFDD; }
.admin .atable td:nth-child(3){ background:#E2ECDB; }
.admin .atable td:nth-child(4){ background:#DBE8DA; }
.admin .atable td:nth-child(5){ background:#D5E5D8; }
.admin .atable tbody tr:hover td { box-shadow: inset 0 0 0 999px rgba(200,241,53,.12); }
.admin .atable tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 var(--forest), inset 0 0 0 999px rgba(200,241,53,.12); }
.admin .atable td b, .admin .atable td a[style*="forest"] { color: var(--deep); }

/* ---- Sync provider status cards ---- */
.sync-providers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; max-width: 720px; }
@media (max-width: 640px){ .sync-providers { grid-template-columns: 1fr; } }
.prov { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 12px; border: 1px solid var(--app-line); background: var(--app-card); border-left: 3px solid var(--forest); }
.prov .prov-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(45,122,58,.12); color: var(--forest); display: grid; place-items: center; flex: none; }
.prov .prov-ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.prov h4 { font-size: 14px; color: var(--ink); margin: 0; }
.prov p { font-size: 12px; color: var(--muted); margin: 3px 0 0; line-height: 1.5; }
.prov .status-pill { margin-left: auto; flex: none; }
