/* ============================================================
   Phixr — Holding Page
   Built from Figma "Holding-Page-Phixr"
   ============================================================ */

:root {
  --purple:       #540DEE;
  --purple-deep:  #300788;
  --coral:        #FF6B6B;
  --ink:          #16121f;
  --ink-soft:     #4a4658;
  --cream:        #FAFDF3;
  --off:          #F3F2EF;
  --dark:         #353B39;
  --white:        #ffffff;

  --maxw: 1200px;
  --radius: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 500; }   /* Geist Medium per Figma tokens (H2 36/44, H3 30/38) */
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: .875rem;        /* 14px per Figma */
  font-weight: 400;          /* Geist Regular per Figma */
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.eyebrow.light { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,107,.45); }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img { width: 139px; height: 41px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .98rem;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 11px 22px; font-size: .95rem; }

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

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #540DEE 0%, #4710c2 50%, #300788 100%);
  color: #fff;
  padding: 180px 0 110px;
  text-align: center;
  overflow: hidden;
}
/* dot texture: absent at top, fades in toward the bottom */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #300788 3px, transparent 3.7px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 52%, rgba(0,0,0,.9) 82%, rgba(0,0,0,.9) 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 52%, rgba(0,0,0,.9) 82%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; max-width: 920px; }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  margin-bottom: 28px;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.86);
  max-width: 720px;
  margin: 0 auto 36px;
}

/* ============================================================
   Generic section
   ============================================================ */
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.12; margin-bottom: 18px; color: var(--purple); }
h2.ph2, .split-body h2.ph2 { color: var(--purple); }
.section-head p { font-size: 1.12rem; color: var(--ink-soft); }
.lede { font-size: 1.1rem; color: var(--ink-soft); }

/* Split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.split.cream { }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 2;
}
.split-body h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.12; margin-bottom: 22px; color: var(--purple); }
.split-body p + p { margin-top: 18px; }
.split-body p { color: var(--ink-soft); font-size: 1.05rem; }
.split-body p.pull-quote {
  margin-top: 28px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: -.01em;
}

section[id] { scroll-margin-top: 82px; }

.bg-cream { background: var(--cream); }
.bg-off { background: var(--off); }

/* ============================================================
   Card grids
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.icard {
  background: var(--cream);
  border-radius: 24px;
  padding-bottom: 30px;
  overflow: hidden;
}
.icard .icard-media {
  width: 84%;
  margin-left: 16%;
  aspect-ratio: 1 / 1;
}
.icard .icard-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(10%, -15%);   /* move right & up (no scaling) */
}
.icard-icon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--coral);
  color: #fff;
  margin: -38px 0 18px 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 22px rgba(255,107,107,.35);
}
.icard h3 { font-size: 1.3rem; margin: 0 22px 10px; }
.icard p { color: var(--ink-soft); font-size: .98rem; margin: 0 22px 4px; }

/* Feature (icon) card */
.fcard {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 6px 14px 6px 0;
}
.fcard .ficon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(255,107,107,.35);
}
.fcard h3 { font-size: 1.18rem; margin-bottom: 10px; }
.fcard p { color: var(--ink-soft); font-size: .95rem; }

/* AI closing quote band */
.ai-quote {
  margin-top: 48px;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--purple);
  letter-spacing: -.01em;
  max-width: 1000px;
}

/* ============================================================
   Process steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-bottom: 80px; }
.step {
  background-color: #540DEE;
  background-image: linear-gradient(160deg, rgba(255,255,255,.06), rgba(0,0,0,.06));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 30px 44px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.step::before {            /* per-card coral halftone decoration */
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
}
.step-1::before { background-image: url("assets/proc-ht-1.png?v=7"); }
.step-2::before { background-image: url("assets/proc-ht-2.png?v=7"); }
.step-3::before { background-image: url("assets/proc-ht-3.png?v=7"); }
.step-4::before { background-image: url("assets/proc-ht-4.png?v=7"); }
.step .num {
  font-size: 4rem;
  font-weight: 300;
  align-self: flex-end;
  color: #fff;
  -webkit-text-stroke: 0;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 2px 0 38px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.45rem; margin: 0 0 12px; position: relative; z-index: 1; }
.step p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.5; margin: 0; position: relative; z-index: 1; }

/* Testimonial */
.testimonial {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 0;
  align-items: center;
  position: relative;
}
.testimonial::before {            /* cream panel only to the right of the lady */
  content: "";
  position: absolute;
  z-index: 0;
  top: 0; bottom: 0; right: 0;
  width: 52%;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.testimonial-media, .testimonial-quote { position: relative; z-index: 1; }
.testimonial-quote { padding: 8px 44px 8px 60px; }
.testimonial-media img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10; object-fit: cover;
}
.testimonial blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.testimonial cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   Criteria (numbered list + image)
   ============================================================ */
#criteria { position: relative; overflow: hidden; }
#criteria::after {            /* full-width purple bleed across the bottom, on top of everything */
  content: "";
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  height: 46%;
  background:
    linear-gradient(to top,
      rgba(102,45,245,.30) 0%,
      rgba(124,77,255,.16) 45%,
      transparent 100%);
  pointer-events: none;
}
#criteria .container { position: relative; z-index: 1; }
#criteria .section-head { margin-bottom: 24px; }
.criteria-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.criteria-list { list-style: none; margin: 0; padding: 0; }
.criteria-list li {
  display: flex;
  gap: 18px;
  padding: 9px 0;
}
.criteria-list li:first-child { padding-top: 0; }
.criteria-list .n {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: grid; place-items: center;
}
.criteria-list p { color: var(--ink-soft); font-size: 1rem; }
.vans {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vans .vans-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner { padding: 60px 0 100px; }
.cta-card {
  background: linear-gradient(160deg, #5a13f5, #4708c4);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 80px 28px;
}
.cta-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 auto 26px;
  max-width: 760px;
}
.cta-card p {
  color: rgba(255,255,255,.86);
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto 36px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.78);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { color: #fff; font-size: 2rem; }
.footer-brand .tagline { margin-top: 12px; font-size: .95rem; color: rgba(255,255,255,.6); }
.footer-col h4 {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a:hover { color: #fff; }
.footer-backed { margin-top: 34px; }
.footer-backed h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-backed img { width: 150px; opacity: .95; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  /* header's JS backdrop-filter would otherwise trap the fixed menu inside the header box */
  .site-header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: var(--purple);
    padding: 88px 40px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 40;
  }
  .nav-links a { font-size: 1.3rem; }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; position: relative; z-index: 60; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .split, .testimonial, .criteria-wrap { grid-template-columns: 1fr; gap: 36px; }
  .split-media { order: -1; }
  #who .split-media, #vision .split-media { order: 1; }   /* text first, image second on mobile */
  .cards-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .cards-4, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero { padding: 150px 0 80px; }
}

/* ============================================================
   Valuation form page
   ============================================================ */
.site-header.solid {
  position: sticky;
  top: 0;
  background: var(--purple);
  box-shadow: 0 4px 20px rgba(48,7,136,.18);
}
.form-page {
  background: linear-gradient(180deg, #540DEE 0%, #4710c2 50%, #300788 100%);
  padding: 56px 0 96px;
  min-height: 70vh;
}
.form-wrap { max-width: 760px; }
.form-intro { margin-bottom: 32px; text-align: center; }
.form-page .eyebrow { color: rgba(255,255,255,.8); }
.form-intro h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.12; margin: 8px 0 16px; color: #fff; }
.form-intro p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.55; }

/* the form sits on a white card so fields stay legible on the purple */
.vform {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 42px 36px;
  box-shadow: 0 30px 70px rgba(20,4,70,.35);
}
.vform .vsection { border: 0; padding: 0; margin: 0 0 34px; }
.vform legend {
  font-weight: 500; font-size: 1.2rem; color: var(--purple);
  padding: 0 0 6px; margin-bottom: 16px; width: 100%;
  border-bottom: 1px solid rgba(84,13,238,.14);
}
.vfield { display: flex; flex-direction: column; margin-bottom: 18px; }
.vfield label { font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.vfield .req { color: var(--coral); }
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.vform input,
.vform select {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(22,18,31,.16);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.vform select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23540DEE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.vform input:focus,
.vform select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(84,13,238,.14);
}

.vhp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.vactions { margin-top: 28px; }
.vactions .btn { font-size: 1rem; padding: 14px 28px; }
.vnote { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; max-width: 520px; }

.vstatus { margin-top: 18px; padding: 13px 16px; border-radius: 12px; font-size: .95rem; line-height: 1.45; }
.vstatus.ok { background: #e9f9ef; color: #137a43; border: 1px solid #b8e6c9; }
.vstatus.err { background: #fdecec; color: #c0392b; border: 1px solid #f3c6c6; }

@media (max-width: 620px) {
  .vgrid { grid-template-columns: 1fr; }
  .form-page { padding: 40px 0 70px; }
}

/* ============================================================
   Partnership / grow-with-us cards
   ============================================================ */
.grow-cards { align-items: stretch; }
.gcard {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 32px 36px;
  box-shadow: 0 22px 50px rgba(48,7,136,.07);
  display: flex;
  flex-direction: column;
}
.gicon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--coral);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px rgba(255,107,107,.35);
}
.gcard .eyebrow { color: var(--coral); margin-bottom: 12px; }
.gcard h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.gcard p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
  .grow-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Stem Financial page
   ============================================================ */
.stem-hero {                       /* same box model as the index .hero */
  position: relative;
  text-align: center;
  padding: 180px 0 110px;
  background-color: #300788;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.stem-hero .container { position: relative; z-index: 1; max-width: 920px; }
.stem-hero h1 { font-size: clamp(2.6rem, 5vw, 3.9rem); color: #fff; margin-bottom: 28px; }
.stem-hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.86); max-width: 720px; margin: 0 auto 36px; }

.stem-narrow { max-width: 860px; }
.stem-h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.14; margin-bottom: 26px; }
.stem-prose p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.72; }
.stem-prose p + p { margin-top: 20px; }
.acclime-logo { height: 42px; width: auto; margin-bottom: 26px; }

/* Stem — partners */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 10px; }
.partner {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 32px 20px;
  box-shadow: 0 22px 50px rgba(48,7,136,.07);
}
.partner-role {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.partner h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.partner-list { list-style: none; margin: 10px 0 0; padding: 0; }
.partner-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(22,18,31,.09);
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.partner-list li:last-child { border-bottom: 0; }
@media (max-width: 720px) { .partner-grid { grid-template-columns: 1fr; gap: 28px; } }

.partner-photo {
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 12px 26px rgba(48,7,136,.14);
}

/* Stem — Acclime case study (two-column + stat graphic) */
.acclime-title { max-width: 760px; margin-bottom: 34px; }
.acclime-cols { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: start; }
.acclime-logo { height: 97px; }

.stat-card {
  margin-top: 8px;
  background: linear-gradient(160deg, #540DEE 0%, #300788 100%);
  color: #fff;
  border-radius: 24px;
  padding: 28px 30px 26px;
  max-width: 400px;
  margin-left: auto;
  box-shadow: 0 26px 60px rgba(20,4,70,.3);
}
.stat-kicker {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
  color: rgba(255,255,255,.7); margin-bottom: 16px;
}
.stat-journey { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.stat-node { text-align: center; }
.sn-num { display: block; font-size: 2.2rem; font-weight: 500; line-height: 1; }
.sn-lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.72); margin-top: 6px; line-height: 1.25; }
.stat-arrow { color: var(--coral); font-size: 1.6rem; line-height: 1; }

.stat-big { border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; margin-bottom: 18px; }
.sb-num { display: block; font-size: 2.6rem; font-weight: 500; line-height: 1; }
.sb-lbl { display: block; color: rgba(255,255,255,.78); margin-top: 6px; font-size: .92rem; }

.stat-exit {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 13px 16px;
}
.se-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--coral); }
.se-val { font-weight: 500; font-size: 1.02rem; }
.se-date { font-size: .82rem; color: rgba(255,255,255,.7); }

@media (max-width: 860px) {
  .acclime-wrap { grid-template-columns: 1fr; gap: 36px; }
  .acclime-graphic { order: 2; }
  .stat-card { margin-top: 0; }
  .stat-card { margin-left: 0; }
}

/* Stem — About two-column (portfolio stats left, text right) */
.about-cols { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; }
.about-cols.graphic-hidden { grid-template-columns: 1fr; }   /* Prior Investments panel hidden */
.about-text .stem-prose p { color: var(--ink-soft); }

.portfolio-card { padding: 30px 32px 26px; margin-left: 0; max-width: none; }
.pf-row { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.pf-row:last-child { border-bottom: 0; padding-bottom: 2px; }
.pf-head { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 9px; }
.pf-fig { font-size: 1.7rem; font-weight: 500; color: var(--coral); line-height: 1; letter-spacing: -.01em; }
.pf-co { font-size: .98rem; font-weight: 500; color: #fff; }
.pf-desc { font-size: .86rem; color: rgba(255,255,255,.68); line-height: 1.5; margin: 0; }

@media (max-width: 860px) {
  .about-cols { grid-template-columns: 1fr; gap: 40px; }
  .about-graphic { order: 2; }
  .acclime-cols { grid-template-columns: 1fr; gap: 40px; }
}

.inline-link { color: var(--purple); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.inline-link:hover { color: var(--purple-deep); }

/* ============================================================
   AI-Powered Operations — inverted (purple background, white text)
   ============================================================ */
.ai-dark { background: var(--purple); color: #fff; }
.ai-dark .section-head h2 { color: #fff; }
.ai-dark .section-head p { color: rgba(255,255,255,.82); }
.ai-dark .fcard h3 { color: #fff; }
.ai-dark .fcard p { color: rgba(255,255,255,.75); }
.ai-dark .ai-quote { color: #fff; }

/* coral halftone dots sweeping into the top-right corner of the AI section */
#ai { position: relative; overflow: hidden; }
#ai::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 48%; height: 62%;
  background-image: radial-gradient(circle, var(--coral) 2.3px, transparent 2.7px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(95% 105% at 100% 0%, #000 0%, rgba(0,0,0,.9) 26%, transparent 66%);
  mask-image: radial-gradient(95% 105% at 100% 0%, #000 0%, rgba(0,0,0,.9) 26%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}
#ai .container { position: relative; z-index: 1; }

/* WHO section: image bleeds to the bottom of the cream section (touches the white below) */
#who { padding-bottom: 0; }
#who .split { align-items: end; }               /* bottom-align: cutout sits on the section line */
#who .split-body { padding-bottom: 88px; }
#who .split-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;      /* show the FULL cutout, no crop */
  border-radius: 0;
}
@media (max-width: 860px) {
  #who { padding-bottom: 0; }
  #who .split-body { padding-bottom: 40px; }
}

/* VISION section: image bleeds to the bottom of the cream section (touches the white below) */
#vision { padding-bottom: 0; }
#vision .split { align-items: end; }
#vision .split-body { padding-bottom: 88px; }
#vision .split-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 860px) {
  #vision { padding-bottom: 0; }
  #vision .split-body { padding-bottom: 40px; }
}

/* ===== Legal pages (privacy / cookie policy) ===== */
.legal-page { padding: 140px 0 100px; background: #fff; }
.legal-wrap { max-width: 760px; }
.legal-wrap h1.ph2 { margin: 8px 0 24px; }
.legal-wrap h2 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--purple, #540DEE);
  margin: 36px 0 10px;
}
.legal-wrap p {
  color: var(--ink-soft, #4a4658);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.legal-wrap a { color: var(--purple, #540DEE); text-decoration: underline; }

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink, #16121f);
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 320px;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
}
.cookie-banner-text a { color: #fff; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-banner .btn { padding: 10px 22px; font-size: .95rem; }
.cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
}
.cookie-reject:hover { background: rgba(255, 255, 255, .1); }
#cookiePrefs { cursor: pointer; }

/* Non-binding valuation disclaimer */
.vdisclaimer {
  margin-top: 18px;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink-soft, #4a4658);
  opacity: .85;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-banner-text { flex: 0 0 auto; font-size: .9rem; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}
