/* ==========================================================================
   SuperChar V2 — /assets/v2/css/app.css
   Modern CSS, no framework. Scoped under body.v2 so it can ship alongside
   the legacy Foundation build until cutover (brief §5.3, §8).
   ========================================================================== */

:root {
  /* Brand (brief §8 + wireframe sampling) */
  --sc-green:       #026837; /* brand green — buttons, links */
  --sc-green-hero:  #14532d; /* hero bands, dark stat tiles */
  --sc-green-ink:   #0e1f14; /* near-black green — footer, home hero, dark panels */
  --sc-lime:        #c8d400; /* accent — highlights, rules, dark-tile numerals */
  --sc-lime-soft:   #dce65a;
  --sc-paper:       #eff1f1; /* light section background (brief token) */
  --sc-paper-warm:  #eceee8;
  --sc-ink:         #303233; /* body text (brief token) */
  --sc-grey:        #8f8f90; /* muted text (brief token) */
  --sc-white:       #ffffff;
  --sc-line:        #dfe3dd;

  --sc-font-head: "Archivo", "Josefin Slab", system-ui, sans-serif;
  --sc-font-body: "Lato", system-ui, sans-serif;
  --sc-font-serif: "Lora", Georgia, serif;

  --sc-radius: 14px;
  --sc-radius-sm: 8px;
  --sc-shadow: 0 1px 2px rgba(14, 31, 20, .05), 0 6px 24px rgba(14, 31, 20, .06);
  --sc-shadow-lift: 0 2px 4px rgba(14, 31, 20, .08), 0 14px 40px rgba(14, 31, 20, .12);
  --sc-container: 1240px;
  --sc-gutter: clamp(1rem, 4vw, 2rem);
}

/* --------------------------------------------------------------------------
   Legacy coexistence — while the V2 template ships alongside the old build,
   {{COREopen}}/{{COREfooter}} still render the legacy chrome. Hide it under
   body.v2 and neutralise the legacy width wrapper. Verified against the
   live DOM on /v2/home (Aug 2026). Remove this block after cutover if the
   CORE regions are emptied for the V2 template.
   -------------------------------------------------------------------------- */
body.v2 > #bgvid,
body.v2 > footer.stripe,
body.v2 > #alertbox,
body.v2 .off-canvas-content > .grid-x.show-for-medium,
body.v2 #stickyTop,
body.v2 .loading-overlay { display: none !important; }
body.v2 main.grid-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
/* COREopen also wraps {{pageContent}} in Foundation grid-x/cell — flatten them */
body.v2 main.grid-container > .grid-x {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
body.v2 main.grid-container > .grid-x > .cell {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   Base (scoped)
   -------------------------------------------------------------------------- */
body.v2 {
  margin: 0;
  font-family: var(--sc-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sc-ink);
  background: var(--sc-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.v2 *, body.v2 *::before, body.v2 *::after { box-sizing: border-box; }

body.v2 img, body.v2 svg, body.v2 video { max-width: 100%; height: auto; display: block; }

body.v2 h1, body.v2 h2, body.v2 h3, body.v2 h4 {
  font-family: var(--sc-font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--sc-green-ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
body.v2 h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
body.v2 h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
body.v2 h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
body.v2 h4 { font-size: 1.05rem; }

body.v2 p { margin: 0 0 1em; }
body.v2 a { color: var(--sc-green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
body.v2 a:hover { color: var(--sc-green-hero); }

body.v2 :focus-visible {
  outline: 3px solid var(--sc-lime);
  outline-offset: 2px;
  border-radius: 2px;
}
body.v2 .skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--sc-lime); color: var(--sc-green-ink);
  padding: .6rem 1rem; z-index: 200; font-weight: 700; border-radius: 0 0 8px 0;
}
body.v2 .skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  body.v2 *, body.v2 *::before, body.v2 *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
body.v2 .container {
  width: min(100% - 2 * var(--sc-gutter), var(--sc-container));
  margin-inline: auto;
}
body.v2 .section { padding-block: clamp(3rem, 7vw, 5.5rem); }
body.v2 .section--white { background: var(--sc-white); }
body.v2 .section--paper { background: var(--sc-paper); }
body.v2 .section--dark  { background: var(--sc-green-ink); color: #e6ebe4; }
body.v2 .section--dark h2, body.v2 .section--dark h3 { color: var(--sc-white); }

body.v2 .eyebrow {
  display: block;
  font-family: var(--sc-font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sc-green);
  margin-bottom: .9rem;
}
body.v2 .section--dark .eyebrow, body.v2 .hero .eyebrow { color: var(--sc-lime); }

body.v2 .lede {
  font-family: var(--sc-font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  max-width: 46em;
}

/* Grids */
body.v2 .grid { display: grid; gap: 1.25rem; }
body.v2 .grid--2 { grid-template-columns: repeat(2, 1fr); }
body.v2 .grid--3 { grid-template-columns: repeat(3, 1fr); }
body.v2 .grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) {
  body.v2 .grid--4 { grid-template-columns: repeat(2, 1fr); }
  body.v2 .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  body.v2 .grid--4, body.v2 .grid--3, body.v2 .grid--2 { grid-template-columns: 1fr; }
}

body.v2 .split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
}
body.v2 .split--rev { grid-template-columns: minmax(0, 6fr) minmax(0, 7fr); }
@media (max-width: 900px) {
  body.v2 .split, body.v2 .split--rev { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
body.v2 .btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sc-font-head);
  font-weight: 700; font-size: .95rem;
  padding: .8rem 1.4rem;
  border-radius: 9px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
body.v2 .btn:hover { transform: translateY(-1px); }
body.v2 .btn--primary { background: var(--sc-green); color: var(--sc-white); }
body.v2 .btn--primary:hover { background: var(--sc-green-hero); color: var(--sc-white); }
body.v2 .btn--lime { background: var(--sc-lime); color: var(--sc-green-ink); }
body.v2 .btn--lime:hover { background: var(--sc-lime-soft); color: var(--sc-green-ink); }
body.v2 .btn--ghost { background: transparent; color: var(--sc-white); border-color: rgba(255,255,255,.55); }
body.v2 .btn--ghost:hover { border-color: var(--sc-white); color: var(--sc-white); }
body.v2 .btn--outline { background: var(--sc-white); color: var(--sc-green); border-color: var(--sc-line); }
body.v2 .btn--outline:hover { border-color: var(--sc-green); color: var(--sc-green); }
body.v2 .btn--block { width: 100%; justify-content: center; }
body.v2 .btn[disabled], body.v2 .btn[aria-disabled="true"] { opacity: .6; cursor: progress; transform: none; }

body.v2 .arrow-link {
  font-family: var(--sc-font-head); font-weight: 700; font-size: .95rem;
  color: var(--sc-green); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
body.v2 .arrow-link:hover { text-decoration: underline; }
body.v2 .section--dark .arrow-link, body.v2 .panel--dark .arrow-link { color: var(--sc-lime); }

body.v2 .icon { width: 1.1em; height: 1.1em; fill: currentColor; stroke: currentColor; flex: none; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
body.v2 .site-header {
  background: var(--sc-white);
  border-bottom: 3px solid var(--sc-lime);
  position: sticky; top: 0; z-index: 100;
}
body.v2 .site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 92px;
}
body.v2 .site-header__logo { flex: none; display: inline-flex; }
body.v2 .site-header__logo img { height: 64px; width: auto; }

body.v2 .site-nav { margin-left: auto; }
body.v2 .site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: .25rem;
}
body.v2 .site-nav a {
  display: block;
  font-family: var(--sc-font-head); font-size: .92rem; font-weight: 600;
  color: var(--sc-ink); text-decoration: none;
  padding: .5rem .65rem; border-radius: 8px;
  white-space: nowrap;
}
body.v2 .site-nav a:hover { color: var(--sc-green); background: var(--sc-paper); }
body.v2 .site-nav a[aria-current="page"] { background: #e2efe0; color: var(--sc-green); }
/* Nav CTA (Investor Enquiry) keeps white text in the mobile menu — the generic
   .site-nav a colour must not win over .btn--primary. */
body.v2 .site-nav .site-nav__cta a.btn { color: var(--sc-white); }
body.v2 .site-nav .site-nav__cta a.btn:hover { color: var(--sc-white); background: var(--sc-green-hero); }

body.v2 .site-header__cta { flex: none; }
body.v2 .nav-toggle {
  display: none;
  background: none; border: 0; padding: .5rem; margin-left: auto;
  color: var(--sc-green-ink); cursor: pointer;
}
body.v2 .nav-toggle .icon { width: 1.7rem; height: 1.7rem; }

@media (min-width: 1101px) and (max-width: 1519px) {
  body.v2 .site-nav a { font-size: .84rem; padding: .5rem .45rem; }
  body.v2 .site-header__inner { gap: 1rem; }
  body.v2 .site-nav ul { gap: 0; }
}
@media (max-width: 1100px) {
  body.v2 .nav-toggle { display: inline-flex; }
  body.v2 .site-header__inner { min-height: 78px; }
  body.v2 .site-header__logo img { height: 56px; }
  body.v2 .site-nav {
    position: absolute; inset: 100% 0 auto 0;
    background: var(--sc-white);
    border-bottom: 3px solid var(--sc-lime);
    box-shadow: var(--sc-shadow-lift);
    display: none;
    padding: .75rem var(--sc-gutter) 1.25rem;
  }
  body.v2 .site-nav.is-open { display: block; }
  body.v2 .site-nav ul { flex-direction: column; align-items: stretch; }
  body.v2 .site-nav a { padding: .8rem .65rem; font-size: 1.05rem; }
  body.v2 .site-header__cta { display: none; }
  body.v2 .site-nav .site-nav__cta { display: block; margin-top: .75rem; }
}
@media (min-width: 1101px) { body.v2 .site-nav .site-nav__cta { display: none; } }

/* --------------------------------------------------------------------------
   Heroes
   -------------------------------------------------------------------------- */
body.v2 .hero {
  background: var(--sc-green-hero);
  color: #f2f5ee;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
body.v2 .hero h1 { color: var(--sc-white); margin-bottom: .4em; }
body.v2 .hero .lede { color: #e4ead9; }

body.v2 .hero--home {
  background: var(--sc-green-ink);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(6rem, 10vw, 8.5rem);
}
body.v2 .hero--home .hero__media {
  position: absolute; inset: 0 0 0 45%;
  z-index: 0;
}
body.v2 .hero--home .hero__media img,
body.v2 .hero--home .hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: 65% 40%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 38%);
          mask-image: linear-gradient(90deg, transparent 0, #000 38%);
}
/* Dark green grade over the photo so it sits into the hero (approved design) */
body.v2 .hero--home .hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 20, .55), rgba(14, 31, 20, .18) 45%, rgba(14, 31, 20, .38));
  pointer-events: none;
}
/* Ghost watermark along the hero's bottom-left (per approved design) */
body.v2 .hero--home::after {
  content: "SUPERCHAR";
  position: absolute; left: 0; bottom: -0.18em;
  z-index: 0;
  font-family: var(--sc-font-head); font-weight: 700;
  font-size: clamp(7rem, 20vw, 17rem);
  line-height: 1; letter-spacing: .01em;
  color: rgba(0, 0, 0, .22);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
body.v2 .hero--home .container { position: relative; z-index: 1; }
body.v2 .hero--home .hero__content { max-width: 36rem; }
body.v2 .hero--home .hero__body { max-width: 32em; }
body.v2 .hero__kicker {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sc-font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sc-lime);
  margin-bottom: 1.5rem;
}
body.v2 .hero--home h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}
@media (max-width: 480px) { body.v2 .hero--home h1 br { display: none; } }
body.v2 .hero--home h1 .accent { color: var(--sc-lime); }
body.v2 .hero__sub {
  font-family: var(--sc-font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: #cdd6c3;
  margin: .2em 0 1em;
}
body.v2 .hero__body {
  font-family: var(--sc-font-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 34em; color: #e4ead9;
  margin-bottom: 1.75rem;
}
body.v2 .hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Signed callout card (home hero) — sits over the photo, right of the copy */
body.v2 .signed-card {
  background: rgba(10, 19, 12, .88);
  border-radius: var(--sc-radius);
  padding: 1.25rem 1.4rem;
  max-width: 25rem;
  backdrop-filter: blur(4px);
  box-shadow: var(--sc-shadow-lift);
}
body.v2 .signed-card__label {
  font-family: var(--sc-font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sc-lime);
  display: block; margin-bottom: .4rem;
}
body.v2 .signed-card h3 { color: var(--sc-white); font-size: 1.15rem; margin-bottom: .35rem; }
body.v2 .signed-card p { font-size: .9rem; color: #cfd8c8; margin-bottom: .75rem; }
@media (min-width: 901px) {
  body.v2 .hero--home .signed-card {
    position: absolute; left: 51%; bottom: .25rem;
    width: min(25rem, 46%);
  }
}
@media (max-width: 900px) {
  body.v2 .hero--home .signed-card { margin-top: 2rem; }
  body.v2 .hero--home .hero__media { inset: 0 0 55% 0; opacity: .45; }
  body.v2 .hero--home .hero__media img,
  body.v2 .hero--home .hero__media video {
    -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent);
            mask-image: linear-gradient(180deg, #000 40%, transparent);
  }
}

/* Stat band overlapping hero bottom */
body.v2 .statband { margin-top: -4.5rem; position: relative; z-index: 2; }
body.v2 .statband__card {
  background: var(--sc-white);
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow-lift);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
body.v2 .statband__cell { padding: 1.5rem 1.6rem; }
body.v2 .statband__cell + .statband__cell { border-left: 1px solid var(--sc-line); }
body.v2 .statband__num {
  font-family: var(--sc-font-head); font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--sc-green); display: block; margin-bottom: .2rem;
}
body.v2 .statband__cell p { font-size: .86rem; color: #5b5e5c; margin: 0; }
@media (max-width: 900px) {
  body.v2 .statband__card { grid-template-columns: repeat(2, 1fr); }
  body.v2 .statband__cell:nth-child(2n+1) { border-left: 0; }
  body.v2 .statband__cell:nth-child(n+3) { border-top: 1px solid var(--sc-line); }
}
@media (max-width: 520px) {
  body.v2 .statband__card { grid-template-columns: 1fr; }
  body.v2 .statband__cell { border-left: 0 !important; }
  body.v2 .statband__cell + .statband__cell { border-top: 1px solid var(--sc-line); }
}

/* --------------------------------------------------------------------------
   Cards & panels
   -------------------------------------------------------------------------- */
body.v2 .card {
  background: var(--sc-white);
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow);
  padding: 1.5rem 1.6rem;
}
body.v2 a.card { display: block; color: inherit; text-decoration: none; transition: box-shadow .15s ease, transform .15s ease; }
body.v2 a.card:hover { box-shadow: var(--sc-shadow-lift); transform: translateY(-2px); }
body.v2 .card__tag {
  font-family: var(--sc-font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sc-green);
  display: block; margin-bottom: .5rem;
}
body.v2 .card h3 { margin-bottom: .4rem; }
body.v2 .card p:last-child { margin-bottom: 0; }
body.v2 .card p { font-size: .93rem; color: #555856; }

body.v2 .pill {
  display: inline-block;
  font-family: var(--sc-font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 99px;
}
body.v2 .pill--gold { background: #f3ecd2; color: #7a6410; }
body.v2 .pill--green { background: #ddebdb; color: var(--sc-green); }
body.v2 .pill--slate { background: #dfe1f0; color: #454a7d; }
body.v2 .pill--lime { background: var(--sc-lime); color: var(--sc-green-ink); }
body.v2 .pill--outline { border: 1px solid var(--sc-lime); color: var(--sc-lime); background: transparent; }

/* Feature checklist */
body.v2 .checklist { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 1rem; }
body.v2 .checklist li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .7rem; font-size: .95rem; }
body.v2 .checklist .icon-wrap {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: #ddebdb; color: var(--sc-green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
body.v2 .checklist .icon { width: .85rem; height: .85rem; }

/* Dark product showcase panel */
body.v2 .panel--dark {
  background: linear-gradient(160deg, var(--sc-green-hero), var(--sc-green-ink) 80%);
  color: #e6ebe4;
  border-radius: var(--sc-radius);
  padding: 1.75rem;
  box-shadow: var(--sc-shadow-lift);
}
body.v2 .panel--dark h3 { color: var(--sc-white); }

/* Big dark stat tiles (lime numerals) */
body.v2 .stat-tile {
  background: var(--sc-green-hero);
  border-radius: var(--sc-radius-sm);
  color: #dfe7d8;
  padding: 1.25rem 1.4rem;
}
body.v2 .stat-tile--onlight { background: var(--sc-green-hero); }
body.v2 .stat-tile__num {
  font-family: var(--sc-font-head); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--sc-lime); display: block; margin-bottom: .15rem;
}
body.v2 .stat-tile p { font-size: .85rem; margin: 0; }
body.v2 .section--dark .stat-tile { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }

/* Figure with caption chip */
body.v2 .figure { position: relative; border-radius: var(--sc-radius); overflow: hidden; box-shadow: var(--sc-shadow-lift); }
body.v2 .figure img { width: 100%; object-fit: cover; }
body.v2 .figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(14, 31, 20, .82); color: var(--sc-white);
  font-size: .8rem; padding: .4rem .8rem; border-radius: 6px;
}
body.v2 .figure .pill { position: absolute; left: 1rem; top: 1rem; }
body.v2 .figure figcaption .caption-title {
  display: block; font-family: var(--sc-font-serif); font-style: italic; color: var(--sc-lime-soft);
}

/* Product lineup (Home "Retail Range" panel + Products "The Lineup").
   Stays multi-column on phones with scaled-down bags — round-2 client fix. */
body.v2 .lineup { display: grid; gap: 1rem; align-items: end; }
body.v2 .lineup--2 { grid-template-columns: repeat(2, 1fr); }
body.v2 .lineup--3 { grid-template-columns: repeat(3, 1fr); }
body.v2 .lineup--5 { grid-template-columns: repeat(5, 1fr); }
body.v2 .lineup__item { text-align: center; min-width: 0; }
body.v2 .lineup__item img { margin-inline: auto; width: auto; max-width: 100%; max-height: 240px; }
body.v2 .lineup__item .pill { margin-top: .75rem; }
body.v2 .lineup__item p { font-size: .83rem; margin: .5rem 0 0; }
@media (max-width: 900px) {
  body.v2 .lineup--5 { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  body.v2 .lineup__item img { max-height: 170px; }
}
@media (max-width: 560px) {
  body.v2 .lineup--5 { grid-template-columns: repeat(2, 1fr); }
  body.v2 .lineup--5 .lineup__item--wide { grid-column: 1 / -1; }
  body.v2 .lineup--3 { gap: .5rem; }
  body.v2 .lineup__item img { max-height: 140px; }
  body.v2 .lineup__item .pill { font-size: .62rem; padding: .25rem .5rem; }
}
body.v2 .panel__footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.25rem; }
@media (max-width: 560px) {
  body.v2 .panel__footer { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* Modal (sales enquiry popup, Products page) */
body.v2 dialog.modal {
  border: 0; padding: 0;
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow-lift);
  width: min(92vw, 34rem);
  max-height: 90dvh; overflow: auto;
}
body.v2 dialog.modal::backdrop { background: rgba(14, 31, 20, .6); }
body.v2 .modal__inner { padding: clamp(1.4rem, 3vw, 2rem); }
body.v2 .modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .25rem; }
body.v2 .modal__head h3 { font-size: 1.35rem; margin: 0; }
body.v2 .modal__close { background: none; border: 0; padding: .35rem; cursor: pointer; color: var(--sc-ink); }
body.v2 .modal__close .icon { width: 1.3rem; height: 1.3rem; }

/* Spec tables */
body.v2 .spec-card { background: var(--sc-white); border-radius: var(--sc-radius); box-shadow: var(--sc-shadow); overflow: hidden; }
body.v2 .spec-card__head {
  background: var(--sc-green-ink); color: var(--sc-white);
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
body.v2 .spec-card__head .card__tag { color: var(--sc-lime); margin: 0 0 .25rem; }
body.v2 .spec-card__head h3 { color: var(--sc-white); margin: 0; }
body.v2 .spec-card table { width: 100%; border-collapse: collapse; }
/* Neutralise the legacy build's green table styling (it sets tbody{background:#026837}
   with no !important) so spec-card rows show the white card, per the preview. */
body.v2 .spec-card table,
body.v2 .spec-card thead,
body.v2 .spec-card tbody,
body.v2 .spec-card tr,
body.v2 .spec-card th,
body.v2 .spec-card td { background: transparent; }
body.v2 .spec-card th, body.v2 .spec-card td {
  text-align: left; padding: .8rem 1.5rem; font-size: .93rem;
  border-top: 1px solid var(--sc-line);
}
body.v2 .spec-card tr:first-child th, body.v2 .spec-card tr:first-child td { border-top: 0; }
body.v2 .spec-card th { font-weight: 400; color: #5b5e5c; width: 42%; }
body.v2 .spec-card td { font-weight: 700; color: var(--sc-green-ink); }

/* Timeline (About) */
body.v2 .timeline { display: grid; gap: 1rem; }
body.v2 .timeline__item {
  background: var(--sc-white); border-radius: var(--sc-radius-sm); box-shadow: var(--sc-shadow);
  display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; align-items: center;
  padding: 1.1rem 1.4rem;
}
body.v2 .timeline__year { font-family: var(--sc-font-head); font-weight: 700; font-size: 1.3rem; color: var(--sc-green); }
body.v2 .timeline__item p { margin: 0; font-size: .93rem; }

/* Data list rows (About feedstock stats) */
body.v2 .datarows { border-top: 1px solid var(--sc-line); }
body.v2 .datarows__row {
  display: grid; grid-template-columns: minmax(8rem, 1fr) 2fr; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--sc-line); align-items: center;
}
body.v2 .datarows__key { font-family: var(--sc-font-head); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--sc-green); }
body.v2 .datarows__row p { margin: 0; font-size: .9rem; }
@media (max-width: 520px) { body.v2 .datarows__row { grid-template-columns: 1fr; gap: .25rem; } }

/* Team */
body.v2 .team-lead {
  display: grid; grid-template-columns: minmax(0, 27%) 1fr;
  background: linear-gradient(120deg, #1c2a20, var(--sc-green-ink) 70%);
  color: #dfe5da; border-radius: 12px; overflow: hidden; box-shadow: var(--sc-shadow-lift);
}
body.v2 .team-lead__media { background: #40483f; }
body.v2 .team-lead__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
body.v2 .team-lead__body { padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3.5vw, 2.75rem); align-self: center; }
body.v2 .team-lead__body h3 { color: var(--sc-white); font-size: 1.6rem; margin-bottom: .2rem; }
body.v2 .team-lead__body p:last-child { margin-bottom: 0; }
body.v2 .team-lead .creds { font-family: var(--sc-font-serif); font-style: italic; font-size: .95rem; color: #b9c3b2; margin-bottom: 1rem; }
@media (max-width: 700px) {
  body.v2 .team-lead { grid-template-columns: 1fr; }
  body.v2 .team-lead__media img { max-height: 320px; }
}

body.v2 .team-card { display: flex; flex-direction: column; }
body.v2 .team-card__media {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1 / 1.04; background: #40483f; box-shadow: var(--sc-shadow);
}
body.v2 .team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
body.v2 .team-card__media .team-card__name {
  position: absolute; inset: auto 0 0 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(14, 31, 20, .55) 35%, rgba(14, 31, 20, .96) 80%);
  color: var(--sc-white);
}
body.v2 .team-card__role {
  display: block; font-family: var(--sc-font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sc-lime); margin-bottom: .15rem;
}
body.v2 .team-card__name strong { font-family: var(--sc-font-head); font-size: 1.15rem; }
body.v2 .team-card__name .creds { display: block; font-family: var(--sc-font-serif); font-style: italic; font-size: .8rem; color: #c5cec0; }
body.v2 .team-card > p { font-size: .88rem; color: #555856; padding-top: .8rem; margin: 0; }

/* Process steps */
body.v2 .step-card { position: relative; }
body.v2 .step-card .card__tag { color: var(--sc-green); }
body.v2 .step-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--sc-green); color: var(--sc-white);
  font-family: var(--sc-font-head); font-weight: 700; font-size: .9rem;
  margin-bottom: .6rem;
}

/* Commodity strip (Our Technology) */
body.v2 .commodity-strip {
  background: var(--sc-green-ink); color: #dfe5da;
  border-radius: var(--sc-radius);
  display: grid; grid-template-columns: minmax(10rem, 1fr) repeat(3, 2fr);
  box-shadow: var(--sc-shadow-lift);
}
body.v2 .commodity-strip > div { padding: 1.4rem 1.5rem; }
body.v2 .commodity-strip > div + div { border-left: 1px solid rgba(255,255,255,.14); }
body.v2 .commodity-strip .lead-cell {
  font-family: var(--sc-font-head); font-weight: 700; font-size: 1.1rem; color: var(--sc-white);
  display: flex; align-items: center;
}
body.v2 .commodity-strip .lead-cell .accent { color: var(--sc-lime); }
body.v2 .commodity-strip .card__tag { color: var(--sc-lime); }
body.v2 .commodity-strip p { font-size: .88rem; margin: 0; }
@media (max-width: 900px) {
  body.v2 .commodity-strip { grid-template-columns: 1fr; }
  body.v2 .commodity-strip > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
}

/* Announcements */
body.v2 .ann-card { display: flex; flex-direction: column; gap: .4rem; }
body.v2 .ann-card__meta { font-size: .8rem; color: var(--sc-grey); font-family: var(--sc-font-head); font-weight: 600; letter-spacing: .04em; }
body.v2 .ann-card__meta .topic { text-transform: uppercase; }
body.v2 .ann-card h3 { font-size: 1.05rem; margin: 0; }
body.v2 .section--dark .ann-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
body.v2 .section--dark .ann-card h3 { color: var(--sc-white); }
body.v2 .section--dark .ann-card__meta { color: #9fb0a0; }

/* Press release rows (Media Centre / Investors) */
body.v2 .release { margin-bottom: 1.25rem; }
body.v2 .release__meta { display: flex; align-items: center; gap: .8rem; margin-bottom: .35rem; }
body.v2 .release__date { font-size: .85rem; color: var(--sc-grey); }
body.v2 .release h3 { font-size: 1.1rem; margin-bottom: .35rem; }
body.v2 .release p { font-size: .92rem; margin-bottom: .8rem; }
body.v2 .release__actions { display: flex; align-items: center; gap: 1rem; }

body.v2 .doc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  /* white + border so rows are visible on BOTH the paper Investors section and
     the white Media-Centre media-kit card (paper-on-paper was invisible) */
  background: var(--sc-white); border: 1px solid var(--sc-line); border-radius: var(--sc-radius-sm);
  padding: .85rem 1.1rem; font-size: .95rem;
  color: inherit; text-decoration: none;
}
body.v2 .doc-row:hover { background: var(--sc-paper); border-color: var(--sc-green); color: inherit; }
body.v2 .doc-row .type { font-family: var(--sc-font-head); font-weight: 700; font-size: .8rem; color: var(--sc-green); display: inline-flex; gap: .3rem; align-items: center; }
body.v2 .doc-row--list { margin-bottom: .6rem; }

body.v2 .ann-row {
  display: grid; grid-template-columns: 7rem 1fr auto; gap: 1rem; align-items: center;
  background: var(--sc-white); border-radius: var(--sc-radius-sm); box-shadow: var(--sc-shadow);
  padding: 1rem 1.25rem; margin-bottom: .8rem;
}
body.v2 .ann-row__date { font-size: .85rem; color: var(--sc-grey); }
body.v2 .ann-row h3 { font-size: .98rem; margin: 0; }
body.v2 .ann-row .type { font-family: var(--sc-font-head); font-weight: 700; font-size: .8rem; color: var(--sc-green); border: 1px solid var(--sc-line); border-radius: 6px; padding: .35rem .7rem; text-decoration: none; }
body.v2 .ann-row .type:hover { border-color: var(--sc-green); }
@media (max-width: 640px) { body.v2 .ann-row { grid-template-columns: 1fr auto; } body.v2 .ann-row__date { grid-column: 1 / -1; } }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
body.v2 .form-card { background: var(--sc-white); border-radius: var(--sc-radius); box-shadow: var(--sc-shadow-lift); padding: clamp(1.5rem, 3vw, 2.25rem); }
body.v2 .form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
body.v2 .form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { body.v2 .form-grid { grid-template-columns: 1fr; } }

body.v2 .form-field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .3rem; color: var(--sc-green-ink); }
body.v2 .form-field input,
body.v2 .form-field select,
body.v2 .form-field textarea {
  width: 100%;
  font: inherit; font-size: .95rem;
  line-height: 1.4;
  color: var(--sc-ink);
  background: var(--sc-white);
  border: 1px solid #c9cec8;
  border-radius: var(--sc-radius-sm);
  padding: .75rem .9rem;
  /* legacy Foundation forces select/input height:2.4375rem which, with
     border-box + our .75rem padding, clipped the text — let fields size to
     content instead */
  height: auto;
}
/* native select needs room for the dropdown arrow + a comfortable min height */
body.v2 .form-field select {
  min-height: 2.9rem;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235b5e5c' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
body.v2 .form-field textarea { min-height: 7.5rem; resize: vertical; }
body.v2 .form-field input:focus, body.v2 .form-field select:focus, body.v2 .form-field textarea:focus {
  outline: 3px solid rgba(2, 104, 55, .25); border-color: var(--sc-green);
}
body.v2 .form-field.is-invalid input, body.v2 .form-field.is-invalid select, body.v2 .form-field.is-invalid textarea { border-color: #b3261e; }
body.v2 .form-error { display: none; color: #b3261e; font-size: .82rem; margin-top: .3rem; }
body.v2 .form-field.is-invalid .form-error { display: block; }
body.v2 .form-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; }
body.v2 .form-check input { width: 1.05rem; height: 1.05rem; margin-top: .2rem; }
body.v2 .form-status { font-size: .9rem; margin-top: .75rem; }
body.v2 .form-status[data-state="progress"] { color: var(--sc-green); }

/* Contact channel cards */
body.v2 .channel-card { text-align: center; padding: 1.6rem 1.25rem; }
body.v2 .channel-card .card__tag { margin-bottom: .35rem; }
body.v2 .channel-card a { font-family: var(--sc-font-head); font-weight: 700; text-decoration: none; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
body.v2 .site-footer {
  background: var(--sc-green-ink);
  color: #c3ccc0;
  border-top: 4px solid var(--sc-lime);
  margin-top: 0;
  font-size: .92rem;
}
body.v2 .site-footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  padding-block: 3rem 2rem;
}
body.v2 .site-footer__logo { background: var(--sc-white); border-radius: 10px; padding: .6rem .9rem; display: inline-block; margin-bottom: 1.25rem; }
body.v2 .site-footer__logo img { height: 44px; width: auto; }
body.v2 .site-footer h4 { color: var(--sc-white); font-size: .95rem; margin-bottom: .8rem; }
body.v2 .site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
body.v2 .site-footer a { color: #c3ccc0; text-decoration: none; }
body.v2 .site-footer a:hover { color: var(--sc-white); text-decoration: underline; }
body.v2 .site-footer address { font-style: normal; line-height: 1.7; }
body.v2 .social-links { display: flex; gap: .6rem; margin-top: 1.25rem; }
body.v2 .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); color: #c3ccc0;
}
body.v2 .social-links a:hover { border-color: var(--sc-lime); color: var(--sc-lime); }
body.v2 .social-links .icon { width: 1rem; height: 1rem; }
body.v2 .site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem; color: #9aa79a;
}
body.v2 .site-footer__legal a { color: var(--sc-lime); }
@media (max-width: 900px) { body.v2 .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body.v2 .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

/* --------------------------------------------------------------------------
   Mobile sticky CTA bar (all pages, ≤820px)
   -------------------------------------------------------------------------- */
body.v2 .sticky-cta { display: none; }
@media (max-width: 820px) {
  body.v2 .sticky-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; inset: auto 0 0 0; z-index: 150;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(14, 31, 20, .96);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, .16);
  }
  body.v2 .sticky-cta .btn {
    justify-content: center;
    padding: .8rem .5rem;
    font-size: .92rem;
    white-space: nowrap;
  }
  /* keep page content clear of the fixed bar */
  body.v2 .site-footer { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
  body.v2 .consent-banner { bottom: calc(4.8rem + env(safe-area-inset-bottom)); }
}

/* --------------------------------------------------------------------------
   Consent banner
   -------------------------------------------------------------------------- */
body.v2 .consent-banner {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 300;
  max-width: 34rem; margin-inline: auto;
  background: var(--sc-green-ink); color: #dfe5da;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow-lift);
  padding: 1.25rem 1.4rem;
  display: none;
}
body.v2 .consent-banner.is-visible { display: block; }
body.v2 .consent-banner h2 { color: var(--sc-white); font-size: 1.05rem; margin-bottom: .4rem; }
body.v2 .consent-banner p { font-size: .87rem; margin-bottom: 1rem; }
body.v2 .consent-banner__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* --------------------------------------------------------------------------
   CMS pagination (output of displayPagination:"true").
   Selectors cover the platform's pagination wrapper plus a generic fallback —
   verify the exact markup in staging (cms-layouts/README.md).
   -------------------------------------------------------------------------- */
body.v2 .cms-pagination,
body.v2 .pagination,
body.v2 ul.pagination {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  list-style: none; margin: 1.75rem 0 0; padding: 0;
  font-family: var(--sc-font-head); font-size: .92rem; font-weight: 600;
}
body.v2 .cms-pagination a, body.v2 .cms-pagination span,
body.v2 .pagination a, body.v2 .pagination span,
body.v2 ul.pagination a, body.v2 ul.pagination li > span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.3rem; height: 2.3rem; padding: 0 .7rem;
  border: 1px solid var(--sc-line); border-radius: 8px;
  background: var(--sc-white); color: var(--sc-green);
  text-decoration: none;
}
body.v2 .cms-pagination a:hover, body.v2 .pagination a:hover, body.v2 ul.pagination a:hover {
  border-color: var(--sc-green);
}
body.v2 .cms-pagination [aria-current], body.v2 .cms-pagination .current,
body.v2 .pagination [aria-current], body.v2 .pagination .current,
body.v2 ul.pagination .current {
  background: var(--sc-green); color: var(--sc-white); border-color: var(--sc-green);
}

/* --------------------------------------------------------------------------
   Motion system
   - Scroll reveals: app.js tags elements with .sc-reveal (+ per-sibling stagger
     via --rd) and flips .sc-shown on intersection. Without JS nothing is
     hidden; with reduced motion the tagging is skipped entirely.
     NOTE: class is .sc-reveal (NOT .reveal) — the legacy Foundation build
     ships a .reveal { display:none } collapsible-panel rule that loads
     alongside V2 via {{COREhead}} and would otherwise hide every tagged block.
   - Hero entrance: pure CSS keyframes on the home hero children.
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.v2 .sc-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
body.v2 .sc-reveal.sc-shown { opacity: 1; transform: none; }

@keyframes sc-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sc-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sc-drift {
  from { transform: scale(1.06) translateX(1.5%); }
  to   { transform: scale(1) translateX(0); }
}

/* Hero entrance (home) */
body.v2 .hero--home .hero__kicker  { animation: sc-rise .7s cubic-bezier(.22,.61,.36,1) .05s backwards; }
body.v2 .hero--home h1             { animation: sc-rise .8s cubic-bezier(.22,.61,.36,1) .15s backwards; }
body.v2 .hero--home .hero__sub     { animation: sc-rise .8s cubic-bezier(.22,.61,.36,1) .3s backwards; }
body.v2 .hero--home .hero__body    { animation: sc-rise .8s cubic-bezier(.22,.61,.36,1) .42s backwards; }
body.v2 .hero--home .hero__actions { animation: sc-rise .8s cubic-bezier(.22,.61,.36,1) .54s backwards; }
body.v2 .hero--home .signed-card   { animation: sc-rise .9s cubic-bezier(.22,.61,.36,1) .7s backwards; }
body.v2 .hero--home .hero__media img { animation: sc-drift 2.4s cubic-bezier(.22,.61,.36,1) both; }
body.v2 .hero--home .hero__media video { animation: sc-fade 1.2s ease both; }
body.v2 .hero--home .hero__media::after { animation: sc-fade 1s ease both; }

/* Interior hero entrance */
body.v2 .hero:not(.hero--home) .eyebrow { animation: sc-rise .6s cubic-bezier(.22,.61,.36,1) .05s backwards; }
body.v2 .hero:not(.hero--home) h1       { animation: sc-rise .7s cubic-bezier(.22,.61,.36,1) .15s backwards; }
body.v2 .hero:not(.hero--home) .lede    { animation: sc-rise .7s cubic-bezier(.22,.61,.36,1) .28s backwards; }

/* Header elevation on scroll */
body.v2 .site-header { transition: box-shadow .25s ease; }
body.v2 .site-header.is-scrolled { box-shadow: 0 4px 20px rgba(14, 31, 20, .12); }

/* Micro-interactions */
body.v2 .btn .icon, body.v2 .arrow-link .icon { transition: transform .2s ease; }
body.v2 .btn:hover .icon, body.v2 .arrow-link:hover .icon { transform: translateX(3px); }
body.v2 a.card, body.v2 .doc-row, body.v2 .team-card__media, body.v2 .ann-row {
  transition: box-shadow .2s ease, transform .2s ease, background .2s ease;
}
body.v2 .doc-row:hover { transform: translateX(3px); }
body.v2 .card > img, body.v2 .figure img, body.v2 .team-card__media img {
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
body.v2 a.card:hover > img, body.v2 .figure:hover img, body.v2 .team-card:hover .team-card__media img {
  transform: scale(1.04);
}
body.v2 .lineup__item img { transition: transform .3s cubic-bezier(.22,.61,.36,1); }
body.v2 .lineup__item:hover img { transform: translateY(-6px); }
body.v2 .social-links a { transition: transform .2s ease, border-color .2s ease, color .2s ease; }
body.v2 .social-links a:hover { transform: translateY(-2px); }

/* Nav link underline sweep */
body.v2 .site-nav a { position: relative; }
body.v2 .site-nav a::after {
  content: ""; position: absolute; left: .65rem; right: .65rem; bottom: .2rem;
  height: 2px; background: var(--sc-lime);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
body.v2 .site-nav a:hover::after { transform: scaleX(1); }

/* Dialog + consent banner motion */
body.v2 dialog.modal[open] { animation: sc-rise .35s cubic-bezier(.22,.61,.36,1); }
body.v2 dialog.modal[open]::backdrop { animation: sc-fade .3s ease; }
body.v2 .consent-banner.is-visible { animation: sc-rise .5s cubic-bezier(.22,.61,.36,1) .6s backwards; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
body.v2 .u-center { text-align: center; }
body.v2 .u-mt-1 { margin-top: 1rem; } body.v2 .u-mt-2 { margin-top: 2rem; } body.v2 .u-mt-3 { margin-top: 3rem; }
body.v2 .u-mb-1 { margin-bottom: 1rem; } body.v2 .u-mb-2 { margin-bottom: 2rem; }
body.v2 .u-maxw { max-width: 46em; }
body.v2 .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
body.v2 .section-head > div { max-width: 44em; }
body.v2 .section-head h2 { margin-bottom: 0; }
body.v2 .visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Product pages (new Products + 3 product detail pages) — Aug 2026
   ============================================================ */
/* Breadcrumb */
body.v2 .breadcrumb { background: var(--sc-white); border-bottom: 1px solid var(--sc-line); }
body.v2 .breadcrumb .container { display: flex; flex-wrap: wrap; gap: .45rem; padding-block: .7rem; font-size: .82rem; color: var(--sc-grey); }
body.v2 .breadcrumb a { color: var(--sc-grey); }
body.v2 .breadcrumb a:hover { color: var(--sc-green); }
body.v2 .breadcrumb .sep { color: var(--sc-line); }
body.v2 .breadcrumb [aria-current] { color: var(--sc-green-ink); font-weight: 600; }

/* Product hero — two-column (copy + bag), with a faded category watermark */
body.v2 .hero--product { position: relative; overflow: hidden; }
body.v2 .hero--product .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
body.v2 .hero--product h1 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: .1em; }
body.v2 .hero--product .product-slogan { font-family: var(--sc-font-serif, Lora, Georgia, serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--sc-lime-soft); margin: 0 0 1rem; }
body.v2 .hero--product .pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.4rem; }
body.v2 .hero--product .hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
body.v2 .hero__figure { justify-self: center; text-align: center; }
body.v2 .hero__figure img { max-height: 430px; width: auto; max-width: 100%; filter: drop-shadow(0 22px 42px rgba(0,0,0,.4)); }
body.v2 .hero__figure .pill { margin-top: 1rem; }
body.v2 .hero--product::after { content: attr(data-watermark); position: absolute; left: 0; bottom: -.16em; z-index: 0; font-family: var(--sc-font-head); font-weight: 700; font-size: clamp(3.5rem, 13vw, 10rem); line-height: 1; letter-spacing: .01em; color: rgba(0,0,0,.20); pointer-events: none; user-select: none; white-space: nowrap; text-transform: uppercase; }
@media (max-width: 820px) {
  body.v2 .hero--product .container { grid-template-columns: 1fr; }
  body.v2 .hero__figure { order: -1; }
  body.v2 .hero__figure img { max-height: 300px; }
}

/* Dark-header spec card variant (product detail pages) */
body.v2 .spec-card--dark .spec-card__head { background: var(--sc-green-ink); }
body.v2 .spec-card--dark .spec-card__head h3 { color: var(--sc-white); }
body.v2 .spec-card--dark .spec-card__head .card__tag { color: var(--sc-lime); }

/* Product lineup cards (new Products page) — image + tag + title + slogan + bullets */
body.v2 .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
body.v2 .prod-card { display: flex; flex-direction: column; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--sc-radius); overflow: hidden; }
body.v2 .prod-card__media { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12)); text-align: center; padding: 1.4rem 1rem .6rem; }
body.v2 .prod-card__media img { height: 200px; width: auto; max-width: 100%; filter: drop-shadow(0 14px 26px rgba(0,0,0,.4)); }
body.v2 .prod-card__body { padding: 1.1rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
body.v2 .prod-card__body h3 { color: var(--sc-white); margin: .1rem 0 0; }
body.v2 .prod-card__slogan { font-family: var(--sc-font-serif, Lora, Georgia, serif); font-style: italic; color: var(--sc-lime-soft); font-size: .95rem; margin: 0 0 .2rem; }
body.v2 .prod-card__body p { color: #d4dbcf; font-size: .9rem; margin: 0; }
body.v2 .prod-card__list { list-style: none; margin: .2rem 0 .8rem; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
body.v2 .prod-card__list li { position: relative; padding-left: 1rem; color: #d4dbcf; font-size: .86rem; }
body.v2 .prod-card__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .4rem; height: .4rem; border-radius: 50%; background: var(--sc-lime); }
body.v2 .prod-card .btn { margin-top: auto; }
@media (max-width: 860px) { body.v2 .prod-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Product image motion — new Products cards + product-detail heroes
   Gentle continuous float + entrance + hover lift (reduced-motion safe).
   ============================================================ */
@keyframes sc-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Products page — product-card bags */
body.v2 .prod-card__media img { transition: transform .4s cubic-bezier(.22,.61,.36,1), filter .4s ease; will-change: transform; }
body.v2 .prod-card:hover .prod-card__media img { transform: translateY(-10px) scale(1.03); filter: drop-shadow(0 24px 40px rgba(0,0,0,.55)); }
@media (prefers-reduced-motion: no-preference) {
  body.v2 .prod-card__media img { animation: sc-float 5s ease-in-out infinite; }
  body.v2 .prod-grid > :nth-child(2) .prod-card__media img { animation-delay: -1.7s; }
  body.v2 .prod-grid > :nth-child(3) .prod-card__media img { animation-delay: -3.3s; }
  body.v2 .prod-card:hover .prod-card__media img { animation: none; }
}

/* Product detail hero — bag entrance rise, gentle float, hover tilt */
body.v2 .hero--product .hero__figure { animation: sc-rise .9s cubic-bezier(.22,.61,.36,1) .15s backwards; }
body.v2 .hero--product .hero__figure img { transition: transform .45s cubic-bezier(.22,.61,.36,1), filter .45s ease; will-change: transform; }
body.v2 .hero--product .hero__figure:hover img { transform: translateY(-8px) scale(1.02) rotate(-1.2deg); filter: drop-shadow(0 34px 54px rgba(0,0,0,.55)); }
@media (prefers-reduced-motion: no-preference) {
  body.v2 .hero--product .hero__figure img { animation: sc-float 5.6s ease-in-out 1s infinite; }
  body.v2 .hero--product .hero__figure:hover img { animation: none; }
}

/* ============================================================
   Product page enrichments — FAQ, cross-sell, pull-quote, benefits
   ============================================================ */
/* FAQ accordion (pure CSS <details>) */
body.v2 .faq { display: flex; flex-direction: column; gap: .7rem; max-width: 60rem; }
body.v2 .faq-item { background: var(--sc-white); border: 1px solid var(--sc-line); border-radius: var(--sc-radius-sm); overflow: hidden; }
body.v2 .faq-item > summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; font-family: var(--sc-font-head); font-weight: 700; font-size: 1rem; color: var(--sc-green-ink); }
body.v2 .faq-item > summary::-webkit-details-marker { display: none; }
body.v2 .faq-item > summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--sc-green); transition: transform .25s ease; }
body.v2 .faq-item[open] > summary::after { transform: rotate(45deg); }
body.v2 .faq-item__body { padding: 0 1.2rem 1.1rem; color: var(--sc-ink); font-size: .94rem; }
body.v2 .faq-item[open] > summary { color: var(--sc-green); }

/* Cross-sell "from the same crop" */
body.v2 .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
body.v2 a.related-card { display: flex; align-items: center; gap: 1rem; background: var(--sc-white); border: 1px solid var(--sc-line); border-radius: var(--sc-radius); padding: 1rem 1.2rem; color: inherit; transition: transform .25s cubic-bezier(.22,.61,.36,1), border-color .25s, box-shadow .25s; }
body.v2 a.related-card:hover { transform: translateY(-4px); border-color: var(--sc-green); box-shadow: 0 14px 30px rgba(2,104,55,.12); }
body.v2 .related-card__media { flex: 0 0 auto; width: 74px; height: 92px; display: flex; align-items: center; justify-content: center; }
body.v2 .related-card__media img { max-height: 92px; width: auto; }
body.v2 .related-card__body h3 { margin: 0 0 .15rem; font-size: 1.05rem; }
body.v2 .related-card__body p { margin: 0; font-size: .85rem; color: var(--sc-grey); }
body.v2 .related-card__body .arrow-link { margin-top: .35rem; font-size: .82rem; }
@media (max-width: 640px) { body.v2 .related-grid { grid-template-columns: 1fr; } }

/* Pull-quote (partner / social proof) */
body.v2 .pullquote { border-left: 4px solid var(--sc-lime); padding: .3rem 0 .3rem 1.3rem; margin: 1.5rem 0 0; }
body.v2 .pullquote blockquote { margin: 0; font-family: var(--sc-font-serif); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.4; color: var(--sc-white); }
body.v2 .pullquote cite { display: block; margin-top: .7rem; font-style: normal; font-family: var(--sc-font-head); font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--sc-lime); }

/* Benefits strip (Products page) */
body.v2 .benefit { display: flex; gap: .9rem; align-items: flex-start; }
body.v2 .benefit .icon-wrap { flex: 0 0 auto; }
body.v2 .benefit h3 { margin: 0 0 .2rem; font-size: 1.05rem; }
body.v2 .benefit p { margin: 0; font-size: .9rem; color: var(--sc-ink); }

/* ============================================================
   Product hero background video (same footage as the home hero)
   ============================================================ */
body.v2 .hero--product .hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
body.v2 .hero--product .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; animation: sc-fade 1.2s ease both; }
body.v2 .hero--product .hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,31,20,.86), rgba(14,31,20,.72) 45%, rgba(14,31,20,.9)); pointer-events: none; }
