/* ============================================================
   LAElia — Claims Service Orchestration
   Design language: a highland Laelia field at first light —
   dewy, lush, quietly alive. Deep forest greens, mossy glass
   surfaces, sage / mint dew accents, orchid-purple highlights.
   ============================================================ */

:root {
  /* Botanical greens */
  --forest-950: #0d1c14;
  --forest-900: #122a1f;
  --forest-800: #18382a;
  --moss-700:   #234433;
  --moss-600:   #2f5a40;
  --fern-500:   #4a7344;
  --sage-400:   #8aae88;
  --mint-300:   #bfe0c8;
  --dew-200:    #d9f0e2;
  --dew-100:    #eef7f0;

  /* Orchid purples (accents + logo) */
  --orchid-deep: #5e1f8f;  /* saturated — the "LAE" end of the wordmark */
  --orchid-700:  #7b2da0;
  --orchid-500:  #9a4fd0;
  --lilac-400:   #c2a0e2;  /* soft — the "lia" end of the wordmark */
  --lilac-300:   #d8c2ec;
  --magenta-500: #c44d8e;  /* warm orchid accent */
  --gold-400:    #e8c25c;  /* dew-lit warm highlight, used sparingly */

  /* Text on the dark dewy field */
  --text:       #f1f8f3;
  --text-soft:  rgba(240, 248, 242, 0.90);
  --text-faint: rgba(240, 248, 242, 0.74);
  --heading:    #f8fcf9;

  /* Liquid glass system (visionOS-style) */
  --glass:        linear-gradient(135deg, rgba(225, 242, 230, 0.16), rgba(225, 242, 230, 0.05));
  --glass-strong: linear-gradient(135deg, rgba(225, 242, 230, 0.22), rgba(225, 242, 230, 0.07));
  --glass-moss:   linear-gradient(135deg, rgba(47, 90, 64, 0.46), rgba(24, 56, 42, 0.30));
  --glass-deep:   linear-gradient(135deg, rgba(18, 42, 31, 0.66), rgba(13, 28, 20, 0.50));
  --glass-orchid: linear-gradient(135deg, rgba(122, 45, 160, 0.42), rgba(58, 26, 80, 0.34));
  --glass-border: rgba(207, 232, 216, 0.22);
  --glass-blur:   blur(20px) saturate(150%);
  /* specular highlight on top + left edges, soft drop below */
  --glass-shadow: 0 20px 50px rgba(6, 16, 11, 0.42),
                  inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.30),
                  inset -1px -1px 0 rgba(8, 18, 12, 0.18);

  --field: url('images/laelia-purpurata.jpg');  /* real photo (CC BY 3.0, Forest & Kim Starr) */

  --maxw: 1160px;
  --radius: 22px;
  --radius-sm: 14px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--forest-950);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Solid purple field — no raw Laelia photo behind the page */
body::before { display: none; }
body::after { display: none; }

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--heading); }

.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 700; color: var(--mint-300); margin-bottom: 14px; }
.eyebrow--center { text-align: center; }
.eyebrow.light { color: var(--lilac-300); }

.section__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.section__title.center { margin-left: auto; margin-right: auto; max-width: 760px; }
.lead { font-size: 1.08rem; color: var(--text-soft); }

/* ---------- Liquid glass base ---------- */
.glass, .card, .who__card, .sol__card, .about__card, .office,
.result, .why__row, .impact__grid li, .formula span, .demo__form,
.challenge__right, .cta-band__inner {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; white-space: nowrap; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--primary { background: linear-gradient(135deg, var(--orchid-500), var(--orchid-deep)); color: #fff; box-shadow: 0 10px 26px rgba(94, 31, 143, 0.42), inset 1px 1px 0 rgba(255,255,255,0.22); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(94, 31, 143, 0.55), inset 1px 1px 0 rgba(255,255,255,0.22); }
.btn--ghost { background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); color: var(--text); border-color: var(--glass-border); }
.btn--ghost:hover { background: var(--glass-strong); transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, #f0d27a, var(--gold-400)); color: #3a2a08; box-shadow: 0 10px 26px rgba(232, 194, 92, 0.4), inset 1px 1px 0 rgba(255,255,255,0.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232, 194, 92, 0.5), inset 1px 1px 0 rgba(255,255,255,0.4); }

/* ---------- Nav ---------- */
.nav { position: relative; top: 0; z-index: 100; background: rgba(255,255,255,0.94); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); border-bottom: 1px solid rgba(176,155,209,0.18); box-shadow: 0 1px 0 rgba(176,155,209,0.12), 0 4px 20px rgba(26,14,46,0.06); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 26px; position: relative; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { display: inline-flex; }
.brand__logo { height: 76px; width: auto; display: block; }
.brand__logo--footer { height: 88px; }
.nav .brand { margin-left: -16px; }
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 1.78rem; letter-spacing: -0.01em;
  background: linear-gradient(95deg, #7b2da0 0%, #b09bd1 60%, #c8b4e0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: none;
}
.nav__links { display: flex; gap: 26px; margin-left: 8px; margin-right: auto; }
.nav__links a { text-decoration: none; color: #3d3050; font-weight: 500; font-size: 1.1rem; transition: color .15s; position: relative; }
.nav__links a:hover { color: #b09bd1; }
.nav__links a.active { color: #1a0e2e; font-weight: 600; }
.nav__links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: #b09bd1; }
.nav__cta { padding: 10px 20px; font-size: 1rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--dew-100); border-radius: 2px; transition: .25s; }

/* ---------- Carousel (auto side-scroller) ---------- */
.carousel { position: relative; }
.carousel__track { display: flex; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 100%; width: 100%; display: flex; align-items: center; }
.carousel__slide > .container { width: 100%; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--glass-border); background: rgba(18, 42, 31, 0.55); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); color: var(--dew-100); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--glass-shadow); transition: background .2s ease, transform .2s ease; }
.carousel__arrow:hover { background: rgba(18, 42, 31, 0.82); transform: translateY(-50%) scale(1.06); }
.carousel__arrow--prev { left: 16px; }
.carousel__arrow--next { right: 16px; }
.carousel__arrow svg { width: 20px; height: 20px; display: block; }
@media (max-width: 560px) { .carousel__arrow { width: 38px; height: 38px; } .carousel__arrow--prev { left: 8px; } .carousel__arrow--next { right: 8px; } }

.carousel__dots { display: flex; justify-content: center; align-items: center; gap: 12px; padding: 6px 0 2px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(241, 248, 243, 0.28); transition: background .2s ease, transform .2s ease; }
.carousel__dot:hover { background: rgba(241, 248, 243, 0.5); }
.carousel__dot.active { background: linear-gradient(135deg, var(--mint-300), var(--orchid-500)); transform: scale(1.3); }

/* countdown indicator — blooming flower (auto) / loading leaf cluster (re-center) */
.cd { position: absolute; top: 14px; right: 16px; width: 42px; height: 42px; z-index: 7; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.cd--flower, .cd--leaves { opacity: 1; }
.cd-flower, .cd-leaves { position: absolute; inset: 0; width: 100%; height: 100%; display: none; transform-origin: 50% 50%; }
.cd--flower .cd-flower { display: block; }
.cd--leaves .cd-leaves { display: block; }
.cd-leaf { opacity: 0; }
@property --cd-ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
/* flower reveals with a clockwise clock-style sweep over 5s, then glows for 2s */
.cd.counting .cd-flower {
  -webkit-mask: conic-gradient(from -90deg, #000 var(--cd-ang), transparent calc(var(--cd-ang) + 16deg));
          mask: conic-gradient(from -90deg, #000 var(--cd-ang), transparent calc(var(--cd-ang) + 16deg));
  animation: cd-sweep 5s linear forwards, cd-glow-pink 2s ease-in-out 5s forwards;
}
.cd.loading .cd-leaf { animation: cd-leaf-in .45s ease forwards; animation-delay: calc(var(--i) * 0.5s); }
.cd.loading .cd-leaves { animation: cd-glow-green .5s ease 1.5s forwards; }
@keyframes cd-sweep { from { --cd-ang: 0deg; } to { --cd-ang: 360deg; } }
@keyframes cd-leaf-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes cd-glow-pink { 0% { filter: drop-shadow(0 0 0 rgba(236,122,184,0)); } 40% { filter: drop-shadow(0 0 7px rgba(236,122,184,0.95)); } 100% { filter: drop-shadow(0 0 11px rgba(236,122,184,1)); } }
@keyframes cd-glow-green { from { filter: drop-shadow(0 0 0 rgba(123,191,106,0)); } to { filter: drop-shadow(0 0 9px rgba(123,191,106,0.95)); } }
/* keep slides compact so the whole slide + dots fit in view on load */
.carousel .carousel__slide { padding-top: 34px; padding-bottom: 12px; }
.carousel .section__title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.carousel .orbit-wrap { --R: 135px; width: min(380px, 78vw); margin: 22px auto 16px; }
.carousel .orbit__core { width: 104px; height: 104px; font-size: 1.12rem; }
.carousel .orbit__label { font-size: 0.92rem; }
.carousel .orchestrate__lines p { font-size: 1.05rem; }
.carousel .spend { padding: 20px 24px 14px !important; }
.carousel .spend__row { padding: 7px 0; }
.carousel .spend__head { padding-bottom: 12px; margin-bottom: 2px; }
.carousel .results__grid2 { margin-top: 28px; gap: 16px; }
.carousel .rcard { padding: 22px 24px; }
/* per-slide call-to-action links */
.slide-cta { margin-top: 26px; text-align: center; }
.slide-cta--left { text-align: left; }

/* ---------- Hero (image-free composition; the field shows through) ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(90px, 13vw, 160px) 0 clamp(80px, 10vw, 130px); text-align: center; }
.hero__bg { display: none; }
.hero__content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4.2rem); margin-bottom: 22px; color: var(--heading); text-shadow: 0 2px 30px rgba(8, 20, 14, 0.5); }
.hero__title em { font-style: normal; background: linear-gradient(120deg, var(--lilac-300), var(--orchid-500) 50%, var(--mint-300)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--text-soft); max-width: 660px; margin: 0 auto 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--mint-300); }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 76px);
  text-align: center;
  background: #b09bd1 !important;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/laelia-purpurata.jpg') center / cover no-repeat;
  opacity: 0.03;
  filter: saturate(0.5) brightness(1.1);
  pointer-events: none; z-index: 0;
}
.page-hero__bg { display: none; }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero__title {
  font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 16px;
  color: #fff !important;
  text-shadow: 0 2px 26px rgba(26,14,46,0.4);
}
.page-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto; }
.page-hero .eyebrow { color: rgba(255,255,255,0.72) !important; }

/* ---------- Strip ---------- */
.strip { padding: clamp(56px, 8vw, 90px) 0; }
.strip__inner { max-width: 900px; text-align: center; margin: 0 auto; padding: clamp(36px, 5vw, 56px); border-radius: var(--radius); background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.strip__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 22px; }
.strip__title span { color: var(--mint-300); }
.strip__inner p { font-size: 1.1rem; color: var(--text-soft); }
.strip__inner p + p { margin-top: 14px; }
.strip__inner strong { color: var(--mint-300); font-weight: 600; }

/* ---------- Impact ---------- */
.impact { padding: clamp(60px, 8vw, 100px) 0; }
.impact__grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; max-width: 880px; margin: 34px auto 0; }
.impact__grid li { display: flex; align-items: center; gap: 12px; border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 500; color: var(--text); }
.check { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: linear-gradient(135deg, var(--fern-500), var(--moss-600)); color: var(--dew-100); font-size: 0.85rem; box-shadow: inset 1px 1px 0 rgba(255,255,255,0.25); }

/* ---------- Challenge ---------- */
.challenge { padding: clamp(60px, 8vw, 100px) 0; }
.challenge__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start; }
.qlist { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.qlist li { padding-left: 28px; position: relative; color: var(--text); font-weight: 500; }
.qlist li::before { content: "?"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(191, 224, 200, 0.18); color: var(--mint-300); font-weight: 700; font-size: 0.8rem; }
.challenge__right { background: var(--glass-deep) !important; border-radius: var(--radius); padding: 32px; position: sticky; top: 104px; }
.challenge__right h3 { color: var(--heading); font-size: 1.2rem; margin-bottom: 18px; }
.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tagcloud span { padding: 7px 13px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(6px); }

/* ---------- Spend panel ("Where the dollars go") ---------- */
.spend { padding: 30px 30px 22px !important; }
.spend__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.spend__head h3 { color: var(--heading); font-size: 1.22rem; margin: 0; }
.spend__kicker { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint-300); font-weight: 700; }
.spend__list { list-style: none; display: grid; gap: 0; }
.spend__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.spend__row:last-child { border-bottom: 0; }
.spend__dot { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--mint-300); box-shadow: 0 0 0 4px rgba(191,224,200,0.12); }
/* dot colour keyed to the spend category */
.spend__row--legal         .spend__dot { background: #c2a0e2; box-shadow: 0 0 0 4px rgba(194,160,226,0.16); }
.spend__row--field         .spend__dot { background: #7bbf6a; box-shadow: 0 0 0 4px rgba(123,191,106,0.16); }
.spend__row--medical       .spend__dot { background: #d76aa0; box-shadow: 0 0 0 4px rgba(215,106,160,0.16); }
.spend__row--technical     .spend__dot { background: #e8c25c; box-shadow: 0 0 0 4px rgba(232,194,92,0.16); }
.spend__row--investigative .spend__dot { background: #5ec8b0; box-shadow: 0 0 0 4px rgba(94,200,176,0.16); }
.spend__row--specialty     .spend__dot { background: #b07cc6; box-shadow: 0 0 0 4px rgba(176,124,198,0.16); }
.spend__name { color: var(--text); font-weight: 600; font-size: 0.96rem; }
.spend__cat { margin-left: auto; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-faint); text-transform: uppercase; padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); }

/* ---------- Orchestrate ---------- */
.orchestrate { padding: clamp(60px, 8vw, 100px) 0; }
.formula { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: 34px auto; max-width: 820px; }
.formula span { border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: 1.02rem; color: var(--text); }
.formula i { color: var(--mint-300); font-style: normal; font-weight: 700; font-size: 1.3rem; }
.formula__ai { background: linear-gradient(135deg, var(--orchid-500), var(--orchid-deep)) !important; color: #fff !important; border-color: transparent !important; box-shadow: 0 8px 22px rgba(94,31,143,0.4), inset 1px 1px 0 rgba(255,255,255,0.25) !important; }
.orchestrate__lines { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 36px; margin-top: 10px; }
.orchestrate__lines p { font-family: var(--serif); font-size: 1.2rem; color: var(--text-soft); }
.orchestrate__lines strong { color: var(--mint-300); }

/* ---------- Orbit: aspects circling AI, blooming into a Laelia on alignment ---------- */
.orbit-wrap { --R: 170px; --dur: 13s; position: relative; width: min(480px, 92vw); aspect-ratio: 1 / 1; margin: 46px auto 40px; }
.orbit { position: absolute; inset: 0; }

/* the Laelia bloom (5 petals) pulses pink as the aspects align with the petal tips */
.orbit__bloom { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: 50% 50%;
  animation: bloom-pulse calc(var(--dur) / 5) linear infinite; will-change: transform, opacity, filter; }

/* faint orbit guide ring */
.orbit__guide { position: absolute; inset: 0; width: 100%; height: 100%; }

/* central AI core */
.orbit__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 128px; height: 128px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: #fff; letter-spacing: 0.01em;
  background: radial-gradient(120% 120% at 30% 25%, var(--orchid-500), var(--orchid-deep) 75%);
  box-shadow: 0 14px 40px rgba(94, 31, 143, 0.5), inset 2px 2px 0 rgba(255,255,255,0.30), 0 0 0 1px rgba(255,255,255,0.12);
  z-index: 4; }
.orbit__core span { position: relative; z-index: 2; }
.orbit__core::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(236,204,246,0.30);
  animation: core-breathe calc(var(--dur) / 5) ease-in-out infinite; }

/* rotating ring carrying the aspect chips, settling every 72° */
.orbit__ring { position: absolute; inset: 0; z-index: 3; animation: orbit-spin var(--dur) ease-in-out infinite; }
.orbit__node { position: absolute; left: 50%; top: 50%; width: 0; height: 0;
  transform: rotate(var(--a)) translateY(calc(-1 * var(--R))); }
.orbit__chip { position: absolute; transform: translate(-50%, -50%); }
.orbit__label { font-weight: 600; font-size: 1.02rem; color: var(--text); white-space: nowrap;
  padding: 9px 15px; border-radius: 999px; background: var(--glass-strong);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); box-shadow: 0 8px 22px rgba(6,16,11,0.4), inset 1px 1px 0 rgba(255,255,255,0.28);
  animation: node-counter var(--dur) ease-in-out infinite; }

@keyframes orbit-spin {
  0%   { transform: rotate(0deg); }
  12%  { transform: rotate(72deg); }   20% { transform: rotate(72deg); }
  32%  { transform: rotate(144deg); }  40% { transform: rotate(144deg); }
  52%  { transform: rotate(216deg); }  60% { transform: rotate(216deg); }
  72%  { transform: rotate(288deg); }  80% { transform: rotate(288deg); }
  92%  { transform: rotate(360deg); }  100% { transform: rotate(360deg); }
}
/* counter-rotation keeps each chip upright AND undoes its own --a offset */
@keyframes node-counter {
  0%   { transform: rotate(calc(-1 * var(--a) - 0deg)); }
  12%  { transform: rotate(calc(-1 * var(--a) - 72deg)); }   20% { transform: rotate(calc(-1 * var(--a) - 72deg)); }
  32%  { transform: rotate(calc(-1 * var(--a) - 144deg)); }  40% { transform: rotate(calc(-1 * var(--a) - 144deg)); }
  52%  { transform: rotate(calc(-1 * var(--a) - 216deg)); }  60% { transform: rotate(calc(-1 * var(--a) - 216deg)); }
  72%  { transform: rotate(calc(-1 * var(--a) - 288deg)); }  80% { transform: rotate(calc(-1 * var(--a) - 288deg)); }
  92%  { transform: rotate(calc(-1 * var(--a) - 360deg)); }  100% { transform: rotate(calc(-1 * var(--a) - 360deg)); }
}
/* bloom peaks during each settle (≈70–95% of the per-step cycle) */
@keyframes bloom-pulse {
  0%, 48% { opacity: 0.16; transform: scale(0.9); filter: drop-shadow(0 0 0 rgba(212,63,142,0)); }
  80%     { opacity: 0.95; transform: scale(1.05); filter: drop-shadow(0 6px 26px rgba(212,63,142,0.55)); }
  100%    { opacity: 0.3;  transform: scale(0.96); filter: drop-shadow(0 0 0 rgba(212,63,142,0)); }
}
@keyframes core-breathe {
  0%, 55% { transform: scale(1); opacity: 0.5; }
  82%     { transform: scale(1.08); opacity: 1; }
  100%    { transform: scale(1); opacity: 0.5; }
}

@media (max-width: 560px) {
  .orbit-wrap { --R: 124px; }
  .orbit__core { width: 96px; height: 96px; font-size: 1rem; }
  .orbit__label { font-size: 0.9rem; padding: 7px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit__ring, .orbit__label, .orbit__bloom, .orbit__core::after { animation: none; }
  .orbit__bloom { opacity: 0.7; }
  .orbit__label { transform: rotate(calc(-1 * var(--a))); }
}

/* ---------- Platform cards ---------- */
.platform { padding: clamp(60px, 8vw, 100px) 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card { border-radius: var(--radius); padding: 28px; transition: transform .2s ease, box-shadow .2s ease; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--mint-300), var(--orchid-500)); opacity: 0.85; }
.card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(6,16,11,0.5), inset 1.5px 1.5px 0 rgba(255,255,255,0.32); }
.card__tag { display: inline-block; font-family: var(--serif); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; margin-bottom: 12px; padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); color: var(--text); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 14px; }
.card ul { list-style: none; display: grid; gap: 8px; }
.card ul li { position: relative; padding-left: 20px; font-size: 0.92rem; color: var(--text); }
.card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--mint-300); }
/* per-module badge tints — rotating, dew-lit */
.card:nth-child(1) .card__tag { background: rgba(154, 79, 208, 0.32); color: var(--lilac-300); }
.card:nth-child(2) .card__tag { background: rgba(191, 224, 200, 0.22); color: var(--mint-300); }
.card:nth-child(3) .card__tag { background: rgba(74, 115, 68, 0.42); color: var(--dew-100); }
.card:nth-child(4) .card__tag { background: rgba(194, 160, 226, 0.30); color: var(--lilac-300); }
.card:nth-child(5) .card__tag { background: rgba(138, 174, 136, 0.32); color: var(--dew-100); }
/* accent (LAE AI) card */
.card--accent { background: var(--glass-orchid) !important; }
.card--accent::before { background: linear-gradient(90deg, var(--gold-400), var(--orchid-500)); opacity: 1; }
.card--accent .card__tag { background: rgba(255,255,255,0.14) !important; color: var(--gold-400) !important; }
.card--accent ul li::before { background: var(--gold-400); }

/* ---------- Solutions ---------- */
.solutions { padding: clamp(50px, 7vw, 80px) 0; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.pill { font-family: var(--sans); font-size: 0.95rem; cursor: pointer; padding: 12px 24px; border-radius: 999px; font-weight: 600; transition: .18s; border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 1px 1px 0 rgba(255,255,255,0.2); }
.pill:hover { transform: translateY(-2px); }
.pill.active { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(6,16,11,0.45), inset 1px 1px 0 rgba(255,255,255,0.35), 0 0 0 2px rgba(236,245,238,0.6); }
.pill:nth-child(8n+1) { background: rgba(154, 79, 208, 0.30); color: var(--lilac-300); }
.pill:nth-child(8n+2) { background: rgba(191, 224, 200, 0.20); color: var(--mint-300); }
.pill:nth-child(8n+3) { background: rgba(74, 115, 68, 0.40); color: var(--dew-100); }
.pill:nth-child(8n+4) { background: rgba(194, 160, 226, 0.28); color: var(--lilac-300); }
.pill:nth-child(8n+5) { background: rgba(138, 174, 136, 0.30); color: var(--dew-100); }
.pill:nth-child(8n+6) { background: rgba(196, 77, 142, 0.28); color: #f3d4e4; }
.pill:nth-child(8n+7) { background: rgba(217, 240, 226, 0.16); color: var(--mint-300); }
.pill:nth-child(8n+8) { background: rgba(47, 90, 64, 0.42); color: var(--dew-100); }

/* side-by-side picker: pill list on the left, detail panel on the right */
.picker { display: grid; grid-template-columns: minmax(210px, 36%) 1fr; gap: 26px; align-items: stretch; max-width: 940px; margin: 40px auto 0; }
.picker .pills { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 0; }
.picker .pill { width: 100%; text-align: center; }
.picker .sol__detail { margin: 0; max-width: none; min-height: 100%; }
.sol__detail:has(.sol__panel.show) .acc__hint { display: none; }
.picker .acc__hint { margin: 0; padding: 28px 30px; border-radius: var(--radius); border: 1px dashed var(--glass-border); display: flex; align-items: center; justify-content: center; min-height: 150px; }
@media (max-width: 720px) {
  .picker { grid-template-columns: 1fr; }
  .picker .pills { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .picker .pill { width: auto; }
}

/* pill-triggered detail panel */
.sol__detail { max-width: 720px; margin: 26px auto 0; }
.sol__panel { display: none; border-radius: var(--radius); padding: 26px 30px; background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.sol__panel.show { display: block; animation: sol-in .3s ease; }
.sol__panel h3 { font-size: 1.2rem; margin-bottom: 8px; }
.sol__panel p { color: var(--text-soft); }
@keyframes sol-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Dual-column dropdown lists ---------- */
.dual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 980px; margin: 44px auto 0; align-items: start; }
.dual__title { text-align: center; font-size: 1.4rem; margin-bottom: 20px; }
.droplist { display: grid; gap: 12px; align-content: start; }
.drop { display: grid; }
.drop__head { width: 100%; text-align: left; cursor: pointer; display: inline-flex; align-items: center; justify-content: flex-start; gap: 11px; padding-left: 16px; position: relative; z-index: 2; }
/* spinning green↔pink swirl on the exterior end of an opened subheading */
.drop__head::after { content: ""; position: absolute; right: 6px; top: 50%; width: 22px; height: 22px; transform: translateY(-50%) scale(0); opacity: 0; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M16 16 C 13 13 13 8 17 6.5 C 20 5.4 23.5 7.5 24 11' stroke='%239be8a6'/%3E%3Cpath d='M16 16 C 13 13 13 8 17 6.5 C 20 5.4 23.5 7.5 24 11' stroke='%23ef9bd0' transform='rotate(90 16 16)'/%3E%3Cpath d='M16 16 C 13 13 13 8 17 6.5 C 20 5.4 23.5 7.5 24 11' stroke='%239be8a6' transform='rotate(180 16 16)'/%3E%3Cpath d='M16 16 C 13 13 13 8 17 6.5 C 20 5.4 23.5 7.5 24 11' stroke='%23ef9bd0' transform='rotate(270 16 16)'/%3E%3C/svg%3E") center / contain no-repeat; filter: drop-shadow(0 0 4px rgba(155, 232, 166, 0.55)); transition: opacity .35s ease, transform .35s ease; }
.drop.open .drop__head::after { opacity: 1; animation: swirl-spin 1.8s linear infinite; }
@keyframes swirl-spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
/* the marker is a tiny Laelia bud that blooms open + spins while expanded */
.drop__flower { width: 22px; height: 22px; flex: none; transform: scale(0.5) rotate(-12deg); opacity: 0.6; transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease, filter .35s ease; }
.drop:not(.open) .drop__head:hover .drop__flower { transform: scale(0.72) rotate(0deg); opacity: 0.95; }
.drop__flower .petals { transform-origin: 50% 50%; }
.drop.open .drop__flower { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 6px rgba(212,63,142,0.6)); }
.drop.open .drop__flower .petals { animation: flower-spin 9s linear infinite; }
@keyframes flower-spin { to { transform: rotate(360deg); } }
.drop.open .drop__head { box-shadow: 0 10px 24px rgba(6,16,11,0.42), inset 1px 1px 0 rgba(255,255,255,0.34), 0 0 0 1.5px rgba(247,203,228,0.5); }
.drop__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .75s cubic-bezier(.22, 1, .36, 1); perspective: 900px; }
.drop.open .drop__panel { grid-template-rows: 1fr; }
.drop__inner { overflow: hidden; }
.drop__inner p { margin-top: 8px; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); color: rgba(241,248,243,0.75); font-size: 0.95rem; box-shadow: var(--glass-shadow); transform-origin: top center; transform: rotateX(-90deg); opacity: 0; transition: transform .8s cubic-bezier(.22, 1, .36, 1), opacity .55s ease .05s; }
.drop.open .drop__inner p { transform: rotateX(0deg); opacity: 1; }
/* per-item pill colour, rotating through the brand palette */
.droplist .drop:nth-child(1) .drop__head { background: rgba(154,79,208,0.42); color: rgba(241,248,243,0.75); }
.droplist .drop:nth-child(2) .drop__head { background: rgba(191,224,200,0.42); color: rgba(241,248,243,0.75); }
.droplist .drop:nth-child(3) .drop__head { background: rgba(74,115,68,0.42); color: rgba(241,248,243,0.75); }
.droplist .drop:nth-child(4) .drop__head { background: rgba(194,160,226,0.42); color: rgba(241,248,243,0.75); }
.droplist .drop:nth-child(5) .drop__head { background: rgba(196,77,142,0.42); color: rgba(241,248,243,0.75); }
@media (max-width: 720px) {
  .dual { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Glowing accents on the exterior left & right sides of each table ---------- */
.braced { position: relative; padding: 4px 10px; }
.braced .dual__title, .braced .droplist { position: relative; z-index: 2; }

/* light motes that orbit + fade like leaves, while slowly crossing between both tables */
.motes { position: absolute; inset: -10px; z-index: 5; pointer-events: none; mix-blend-mode: screen; overflow: visible; }
.mote {
  position: absolute; width: 92px; height: 72px;
  border-radius: 56% 44% 60% 40% / 52% 58% 42% 48%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(222, 255, 232, 0.24), rgba(150, 232, 166, 0.10) 46%, transparent 74%);
  filter: blur(14px); will-change: transform, opacity, left, top;
}
/* leaf-* = orbit + intensity/speed lifecycle; drift-* = slow wander across both tables */
.mote--a { animation: leaf-a 14s linear infinite, drift-a 34s ease-in-out infinite; }
.mote--b { width: 72px; height: 58px; animation: leaf-b 17s linear infinite, drift-b 40s ease-in-out infinite; animation-delay: -6s, -10s; }
.mote--c { width: 60px; height: 48px; animation: leaf-c 12s linear infinite, drift-c 30s ease-in-out infinite; animation-delay: -9s, -5s; }
.mote--d { width: 80px; height: 64px; animation: leaf-b 16s linear infinite, drift-d 37s ease-in-out infinite; animation-delay: -3s, -18s; }
@keyframes drift-a { 0% { left: 12%; top: 24%; } 25% { left: 46%; top: 58%; } 50% { left: 82%; top: 30%; } 75% { left: 50%; top: 66%; } 100% { left: 12%; top: 24%; } }
@keyframes drift-b { 0% { left: 78%; top: 60%; } 25% { left: 44%; top: 26%; } 50% { left: 16%; top: 56%; } 75% { left: 52%; top: 32%; } 100% { left: 78%; top: 60%; } }
@keyframes drift-c { 0% { left: 40%; top: 70%; } 33% { left: 84%; top: 42%; } 66% { left: 18%; top: 38%; } 100% { left: 40%; top: 70%; } }
@keyframes drift-d { 0% { left: 62%; top: 20%; } 33% { left: 20%; top: 60%; } 66% { left: 80%; top: 64%; } 100% { left: 62%; top: 20%; } }
@keyframes leaf-a {
  0%   { transform: rotate(0deg)   translateX(40px) scale(.5);  opacity: 0; }
  20%  { transform: rotate(60deg)  translateX(46px) scale(.8);  opacity: .45; }
  40%  { transform: rotate(190deg) translateX(54px) scale(1.1); opacity: 1; }
  60%  { transform: rotate(420deg) translateX(54px) scale(1.1); opacity: 1; }
  80%  { transform: rotate(560deg) translateX(46px) scale(.8);  opacity: .45; }
  100% { transform: rotate(620deg) translateX(40px) scale(.5);  opacity: 0; }
}
@keyframes leaf-b {
  0%   { transform: rotate(0deg)    translateX(38px) scale(.5);  opacity: 0; }
  20%  { transform: rotate(-70deg)  translateX(44px) scale(.8);  opacity: .45; }
  40%  { transform: rotate(-200deg) translateX(50px) scale(1.1); opacity: 1; }
  60%  { transform: rotate(-430deg) translateX(50px) scale(1.1); opacity: 1; }
  80%  { transform: rotate(-560deg) translateX(44px) scale(.8);  opacity: .45; }
  100% { transform: rotate(-620deg) translateX(38px) scale(.5);  opacity: 0; }
}
@keyframes leaf-c {
  0%   { transform: rotate(0deg)   translateX(30px) scale(.45); opacity: 0; }
  20%  { transform: rotate(80deg)  translateX(34px) scale(.75); opacity: .4; }
  40%  { transform: rotate(230deg) translateX(40px) scale(1.0); opacity: .9; }
  60%  { transform: rotate(470deg) translateX(40px) scale(1.0); opacity: .9; }
  80%  { transform: rotate(620deg) translateX(34px) scale(.7);  opacity: .4; }
  100% { transform: rotate(700deg) translateX(30px) scale(.45); opacity: 0; }
}
.droplist::before, .droplist::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; transform: translateY(-50%) rotate(45deg); background: #9be8a6; box-shadow: 0 0 8px rgba(120, 230, 140, 0.95); animation: rune-pulse 3.4s ease-in-out infinite; z-index: 1; }
.droplist::before { left: -16px; }
.droplist::after { right: -16px; }
@keyframes rune-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.sol__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.sol__card { border-radius: var(--radius); padding: 28px; transition: transform .2s, box-shadow .2s; border-top: 3px solid var(--orchid-500) !important; }
.sol__card:hover { transform: translateY(-4px); }
.sol__card:nth-child(2) { border-top-color: var(--mint-300) !important; }
.sol__card:nth-child(3) { border-top-color: var(--fern-500) !important; }
.sol__card:nth-child(4) { border-top-color: var(--lilac-400) !important; }
.sol__card:nth-child(5) { border-top-color: var(--gold-400) !important; }
.sol__card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.sol__card p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Accordion (click a heading to reveal details) ---------- */
.acc__hint { text-align: center; color: var(--text-faint); font-size: 0.9rem; margin-top: 28px; }
.accordion { max-width: 820px; margin: 18px auto 0; display: grid; gap: 14px; }
.acc { border-radius: var(--radius); overflow: hidden; background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); transition: box-shadow .2s ease; }
.acc:hover { box-shadow: 0 24px 56px rgba(6,16,11,0.5), inset 1.5px 1.5px 0 rgba(255,255,255,0.30); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--serif); font-weight: 600; font-size: 1.16rem; color: var(--heading); transition: color .15s; }
.acc__head:hover, .acc.open .acc__head { color: var(--mint-300); }
.acc__icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--mint-300); border-radius: 2px; transition: transform .3s ease; }
.acc__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.acc__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.acc.open .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); }  /* + → – */
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.acc.open .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__inner p { color: var(--text-soft); padding: 0 24px 22px; font-size: 1rem; }

/* ---------- Vendors ---------- */
.vendors { padding: clamp(60px, 8vw, 100px) 0; }
.vendors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.vendor { border-radius: var(--radius-sm); padding: 22px 18px; text-align: center; font-weight: 600; transition: .2s; border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: inset 1px 1px 0 rgba(255,255,255,0.18); }
.vendor:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6,16,11,0.4), inset 1px 1px 0 rgba(255,255,255,0.28); }
.vendor:nth-child(8n+1) { background: rgba(154, 79, 208, 0.28); color: var(--lilac-300); }
.vendor:nth-child(8n+2) { background: rgba(191, 224, 200, 0.18); color: var(--mint-300); }
.vendor:nth-child(8n+3) { background: rgba(74, 115, 68, 0.40); color: var(--dew-100); }
.vendor:nth-child(8n+4) { background: rgba(194, 160, 226, 0.26); color: var(--lilac-300); }
.vendor:nth-child(8n+5) { background: rgba(138, 174, 136, 0.30); color: var(--dew-100); }
.vendor:nth-child(8n+6) { background: rgba(196, 77, 142, 0.26); color: #f3d4e4; }
.vendor:nth-child(8n+7) { background: rgba(217, 240, 226, 0.14); color: var(--mint-300); }
.vendor:nth-child(8n+8) { background: rgba(47, 90, 64, 0.42); color: var(--dew-100); }

/* ---------- Who ---------- */
.who { padding: clamp(60px, 8vw, 100px) 0; }
.who__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.who__card { border-radius: var(--radius); padding: 24px 20px; border-top: 3px solid var(--orchid-500) !important; }
.who__card:nth-child(2) { border-top-color: var(--mint-300) !important; }
.who__card:nth-child(3) { border-top-color: var(--fern-500) !important; }
.who__card:nth-child(4) { border-top-color: var(--lilac-400) !important; }
.who__card:nth-child(5) { border-top-color: var(--gold-400) !important; }
.who__card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.who__card p { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Why ---------- */
.why { padding: clamp(60px, 8vw, 100px) 0; }
.why__grid { display: grid; gap: 16px; max-width: 940px; margin: 40px auto 0; }
.why__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-radius: var(--radius); padding: 22px 26px; }
.why__old { color: var(--text-faint); }
.why__new { color: var(--heading); font-weight: 600; font-family: var(--serif); font-size: 1.08rem; }
.why__arrow { color: var(--mint-300); font-size: 1.4rem; font-weight: 700; }

/* ---------- Results ---------- */
.results { padding: clamp(60px, 8vw, 100px) 0; }
.results__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.result { border-radius: var(--radius); padding: 28px 24px; }
.result__num { font-family: var(--serif); font-weight: 700; font-size: 2.2rem; background: linear-gradient(135deg, var(--mint-300), var(--orchid-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 10px; }
.result p { color: var(--text-soft); font-size: 0.96rem; }
/* result boxes — distinctive colour-accented capability cards */
.results__grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 44px auto 0; }
.rcard:nth-child(1) { --accent: #b06be0; --tint: rgba(176,107,224,0.16); }
.rcard:nth-child(2) { --accent: #9be8a6; --tint: rgba(155,232,166,0.14); }
.rcard:nth-child(3) { --accent: #7bbf6a; --tint: rgba(123,191,106,0.14); }
.rcard:nth-child(4) { --accent: #e8c25c; --tint: rgba(232,194,92,0.14); }
.rcard { position: relative; overflow: hidden; padding: 28px 26px; border: 1px solid var(--glass-border); border-top: 3px solid var(--accent); border-radius: var(--radius); background: linear-gradient(160deg, var(--tint), rgba(225,242,230,0.04)); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); box-shadow: var(--glass-shadow); transition: transform .2s ease, box-shadow .2s ease; }
.rcard:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(6,16,11,0.5), inset 1.5px 1.5px 0 rgba(255,255,255,0.3); }
.rcard__num { position: absolute; top: 14px; right: 22px; font-family: var(--serif); font-weight: 700; font-size: 2.8rem; line-height: 1; color: var(--accent); opacity: 0.18; pointer-events: none; }
.rcard__title { position: relative; font-size: 1.38rem; margin-bottom: 10px; color: var(--heading); max-width: 80%; }
.rcard p { position: relative; color: var(--text-soft); font-size: 0.96rem; }
@media (max-width: 620px) { .results__grid2 { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about { padding: clamp(60px, 8vw, 100px) 0; }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.about__card { border-radius: var(--radius); padding: 30px 26px; }
.about__card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.about__card p { color: var(--text-soft); }
.about__card em { color: var(--lilac-300); font-style: italic; }
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.office { border-radius: var(--radius); padding: 26px; }
.office h4 { color: var(--mint-300); font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; margin-bottom: 10px; }
.office p { color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(50px, 7vw, 80px) 0; }
.cta-band__inner { position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(36px, 5vw, 56px); text-align: center; background: var(--glass-deep) !important; }
.cta-band h2 { position: relative; z-index: 2; color: var(--heading); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { position: relative; z-index: 2; color: var(--text-soft); max-width: 540px; margin: 0 auto 26px; }
.cta-band .btn { position: relative; z-index: 2; }

/* ---------- Demo ---------- */
.demo { position: relative; padding: clamp(70px, 9vw, 110px) 0; overflow: hidden; }
.demo__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.demo__title { color: var(--heading); font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.demo__sub { color: var(--text-soft); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.demo__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border-radius: var(--radius); padding: 26px; background: var(--glass-deep) !important; }
.field--full { grid-column: 1 / -1; }
.demo__form input, .demo__form textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.18); background: rgba(236, 245, 238, 0.10); font-family: var(--sans); font-size: 0.96rem; color: var(--text); resize: vertical; }
.demo__form input::placeholder, .demo__form textarea::placeholder { color: var(--text-faint); }
.demo__form input:focus, .demo__form textarea:focus { outline: 2px solid var(--mint-300); border-color: transparent; background: rgba(236, 245, 238, 0.16); }
.demo__form .btn { grid-column: 1 / -1; }
.demo__note { grid-column: 1 / -1; color: var(--mint-300); font-size: 0.92rem; min-height: 1em; }
.demo__tag { font-family: var(--serif); font-style: italic; color: var(--lilac-300); margin-top: 26px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, rgba(10, 22, 16, 0.72), rgba(8, 18, 13, 0.92)); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--glass-border); color: var(--text-soft); padding: 64px 0 0; margin-top: clamp(40px, 6vw, 80px); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.brand--footer .brand__name { background: linear-gradient(95deg, var(--orchid-500), var(--lilac-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer__blurb { margin: 16px 0 12px; font-size: 0.95rem; max-width: 320px; }
.footer__naming { font-size: 0.86rem; color: var(--lilac-300); font-style: italic; max-width: 320px; }
.footer__col h4 { color: var(--dew-100); font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-soft); text-decoration: none; font-size: 0.92rem; margin-bottom: 10px; transition: color .15s; }
.footer__col a:hover { color: var(--mint-300); }
.footer__offices p { font-size: 0.88rem; margin-bottom: 14px; line-height: 1.5; }
.footer__offices strong { color: var(--dew-100); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 20px 0; }
.footer__barinner { display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 0.85rem; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--lilac-300); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Split Hero (Federato-inspired)
   ============================================================ */
.hero--split {
  text-align: left;
  padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  background: var(--forest-950);
}
.hero__split-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__left { max-width: 540px; }
.hero--split .hero__title { font-size: clamp(2rem, 4.2vw, 3.4rem); text-align: left; }
.hero--split .hero__sub  { text-align: left; margin: 0 0 28px; max-width: 470px; }
.hero--split .hero__actions { justify-content: flex-start; }
.hero--split .hero__tag  { text-align: left; }
.hero--split .eyebrow    { text-align: left; }

/* ============================================================
   Product window mockup (CSS-drawn dashboard in hero)
   ============================================================ */
.prod-window {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07), inset 1px 1px 0 rgba(255,255,255,0.1);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.prod-window:hover { transform: perspective(1400px) rotateY(-1deg) rotateX(1deg); }
.prod-window__chrome {
  background: #1c1f1e;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prod-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-block; }
.prod-url { margin-left: 10px; font-size: 0.7rem; color: rgba(255,255,255,0.32); font-family: var(--sans); }
.prod-window__body { display: flex; height: 360px; overflow: hidden; }
.prod-sidebar {
  width: 150px; background: #2f4438; flex: none;
  padding: 12px 8px; display: flex; flex-direction: column; gap: 1px;
}
.prod-brand {
  font-family: var(--serif); font-weight: 700; font-size: 0.84rem; color: #d4edd9;
  padding: 4px 8px 11px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 6px; display: flex; align-items: center; gap: 5px;
}
.prod-star { color: #f6c945; }
.prod-brand__logo { height: 22px; width: auto; max-width: 100%; object-fit: contain; }
.prod-nav__section {
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(212,237,217,0.4); font-family: var(--sans); font-weight: 700;
  padding: 8px 8px 3px;
}
.prod-nav__item {
  font-size: 0.71rem; color: rgba(212,237,217,0.62); padding: 6px 8px;
  border-radius: 5px; font-family: var(--sans); font-weight: 500;
}
.prod-nav__item--active { background: rgba(255,255,255,0.14); color: #d4edd9; }
.prod-main {
  flex: 1; background: #f3f7f4; padding: 13px; display: flex;
  flex-direction: column; gap: 9px; overflow: hidden;
}
.prod-main__hdr { display: flex; align-items: center; justify-content: space-between; }
.prod-main__title { font-weight: 700; font-size: 0.86rem; color: #1a2a1e; font-family: var(--sans); }
.prod-range {
  font-size: 0.65rem; color: #666; background: #fff; border: 1px solid #dde6de;
  padding: 3px 7px; border-radius: 4px; font-family: var(--sans); font-weight: 500;
}
.prod-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.prod-kpi { background: #fff; border: 1px solid #dde6de; border-radius: 7px; padding: 8px 9px; }
.prod-kpi__label {
  font-size: 0.56rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: #999; font-family: var(--sans);
}
.prod-kpi__val { font-size: 0.92rem; font-weight: 700; color: #1a2a1e; font-family: var(--sans); margin-top: 3px; line-height: 1.2; }
.prod-kpi__delta { font-size: 0.6rem; color: #2a9a48; font-weight: 600; font-family: var(--sans); margin-top: 2px; }
.prod-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; flex: 1; min-height: 0; }
.prod-chart-block, .prod-perf-block {
  background: #fff; border: 1px solid #dde6de; border-radius: 7px;
  padding: 9px 10px; display: flex; flex-direction: column; gap: 5px; overflow: hidden;
}
.prod-chart-title { font-size: 0.65rem; font-weight: 700; color: #333; font-family: var(--sans); }
.prod-chart-bars { display: flex; align-items: flex-end; gap: 4px; flex: 1; }
.prod-bar { flex: 1; height: var(--h,50%); background: linear-gradient(180deg, #4a7344, #234433); border-radius: 2px 2px 0 0; }
.prod-chart-metric { font-size: 0.7rem; font-weight: 700; color: #234433; font-family: var(--sans); }
.prod-perf-item { display: flex; align-items: center; gap: 5px; font-size: 0.59rem; color: #555; font-family: var(--sans); }
.prod-perf-item > span { width: 88px; flex: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-perf-bar { flex: 1; height: 4px; background: #e8ece8; border-radius: 2px; position: relative; }
.prod-perf-bar::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%;
  width: var(--w,70%); background: linear-gradient(90deg, #4a7344, #2f5a40); border-radius: 2px;
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(13,28,20,0.35);
}
.trust-bar__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; text-align: center; }
.trust-bar__label {
  font-size: 0.71rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-faint); margin-bottom: 14px; font-weight: 600; font-family: var(--sans);
}
.trust-bar__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 5px 38px; }
.trust-bar__logos span {
  font-family: var(--sans); font-weight: 700; font-size: 0.8rem;
  color: rgba(241,248,243,0.32); letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   Stats Bento (Federato-inspired)
   ============================================================ */
.stat-bento { padding: clamp(70px, 9vw, 110px) 0; }
.stat-bento__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 40px;
}
.stat-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card--tall {
  grid-row: span 2;
  background: var(--glass-moss);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 280px;
}
.stat-card--orchid { background: var(--glass-orchid); }
.stat-card__eyebrow {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mint-300); font-weight: 700; font-family: var(--sans); margin-bottom: 10px;
}
.stat-card--orchid .stat-card__eyebrow { color: var(--lilac-300); }
.stat-card__num {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1;
  background: linear-gradient(135deg, var(--mint-300), var(--dew-100));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 11px;
}
.stat-card--tall .stat-card__num { font-size: clamp(3rem, 5.5vw, 5rem); }
.stat-card--orchid .stat-card__num {
  background: linear-gradient(135deg, var(--lilac-300), var(--orchid-500));
  -webkit-background-clip: text; background-clip: text;
}
.stat-card__label { font-size: 0.95rem; color: var(--text-soft); font-weight: 500; line-height: 1.45; }
.stat-card__sub { font-size: 0.78rem; color: var(--text-faint); margin-top: 9px; line-height: 1.5; }

/* ============================================================
   Product Showcase with tabs (Sierra-inspired)
   ============================================================ */
.showcase { padding: clamp(70px, 9vw, 110px) 0; border-top: 1px solid var(--glass-border); }
.showcase__tabs {
  display: flex; gap: 4px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 4px; width: fit-content; margin: 34px auto 0;
}
.showcase__tab {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  padding: 9px 20px; border-radius: 999px; border: none; background: transparent;
  color: var(--text-faint); cursor: pointer; transition: background .18s, color .18s;
  white-space: nowrap;
}
.showcase__tab.active {
  background: var(--glass-strong); backdrop-filter: var(--glass-blur);
  color: var(--text); box-shadow: 0 4px 16px rgba(0,0,0,0.28), inset 1px 1px 0 rgba(255,255,255,0.2);
}
.showcase__tab:hover:not(.active) { color: var(--text-soft); }
.showcase__panels { margin-top: 46px; }
.showcase__panel { display: none; }
.showcase__panel.active {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: center;
  animation: sol-in 0.3s ease;
}
.showcase__panel-text h3 {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  margin-bottom: 12px; color: var(--heading); line-height: 1.18;
}
.showcase__panel-text p { color: var(--text-soft); font-size: 0.97rem; line-height: 1.65; margin-bottom: 20px; }
.showcase__feats { list-style: none; display: grid; gap: 10px; }
.showcase__feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem; color: var(--text); font-weight: 500; line-height: 1.4;
}
.showcase__feats li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint-300); flex: none; margin-top: 5px;
}
/* Product screen wrapper */
.showcase__screen {
  border-radius: var(--radius); overflow: hidden; background: #f3f7f4;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase__screen-hdr {
  background: #2f4438; padding: 9px 14px; font-family: var(--sans); font-weight: 700;
  font-size: 0.75rem; color: #d4edd9; display: flex; align-items: center; gap: 7px;
}
.showcase__screen-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); display: inline-block; }
.showcase__screen-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
/* KPI row in showcase */
.showcase__kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.showcase__kpi { background: #fff; border: 1px solid #dde6de; border-radius: 7px; padding: 9px 10px; }
.showcase__kpi-label { font-size: 0.57rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #999; font-family: var(--sans); }
.showcase__kpi-val { font-size: 1rem; font-weight: 700; color: #1a2a1e; font-family: var(--sans); margin-top: 3px; }
.showcase__kpi-chg { font-size: 0.62rem; color: #2a9a48; font-weight: 600; font-family: var(--sans); }
.showcase__chart-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 7px; }
.showcase__chart, .showcase__table { background: #fff; border: 1px solid #dde6de; border-radius: 7px; padding: 10px 12px; }
.showcase__chart-title { font-size: 0.67rem; font-weight: 700; color: #444; font-family: var(--sans); margin-bottom: 7px; }
.showcase__bars { display: flex; align-items: flex-end; gap: 5px; height: 68px; }
.showcase__bar { flex: 1; background: linear-gradient(180deg, #4a7344, #234433); border-radius: 2px 2px 0 0; }
.showcase__table-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px solid #f0f4f0;
  font-size: 0.64rem; color: #444; font-family: var(--sans);
}
.showcase__table-row:last-child { border-bottom: 0; }
.showcase__score { font-weight: 700; color: #2a9a48; }
/* Orchestrator panel */
.showcase__orch-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.showcase__claim-item {
  display: flex; align-items: center; gap: 7px; padding: 6px 8px;
  background: #f8faf8; border: 1px solid #e0e8e2; border-radius: 5px;
  font-size: 0.63rem; font-family: var(--sans); color: #333; margin-bottom: 4px;
}
.showcase__claim-badge {
  font-size: 0.54rem; font-weight: 700; text-transform: uppercase; padding: 2px 5px;
  border-radius: 3px; background: rgba(74,115,68,0.2); color: #2d5a30; flex: none;
}
.showcase__claim-badge--routed { background: rgba(154,79,208,0.14); color: #7b2da0; }
.showcase__ai-card { background: #f8f0ff; border: 1px solid #e0d0f0; border-radius: 7px; padding: 9px 11px; margin-top: 5px; }
.showcase__ai-label { font-size: 0.58rem; color: #888; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--sans); font-weight: 700; }
.showcase__ai-val { font-size: 0.86rem; font-weight: 700; color: #1a0a30; font-family: var(--sans); margin: 3px 0 2px; }
.showcase__ai-score { font-size: 0.63rem; color: #2a9a48; font-weight: 600; font-family: var(--sans); }
.showcase__ai-reason { font-size: 0.6rem; color: #666; font-family: var(--sans); margin-top: 4px; line-height: 1.4; }
/* Service Provider table */
.showcase__sp-table { font-family: var(--sans); font-size: 0.63rem; border: 1px solid #dde6de; border-radius: 7px; overflow: hidden; }
.showcase__sp-header {
  display: grid; grid-template-columns: 20px 1fr 40px 40px 54px;
  gap: 6px; padding: 7px 10px; background: #f0f4f0; color: #777;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.56rem;
}
.showcase__sp-row {
  display: grid; grid-template-columns: 20px 1fr 40px 40px 54px;
  gap: 6px; padding: 7px 10px; background: #fff; color: #333;
  border-top: 1px solid #f0f4f0; align-items: center;
}
/* Rules Engine */
.showcase__rules { display: flex; flex-direction: column; gap: 7px; }
.showcase__rule { background: #f8faf8; border: 1px solid #dde6de; border-left: 3px solid #dde6de; border-radius: 7px; padding: 9px 11px; }
.showcase__rule--on { border-left-color: #4a7344; }
.showcase__rule-name { font-size: 0.7rem; font-weight: 700; color: #1a2a1e; font-family: var(--sans); margin-bottom: 4px; }
.showcase__rule-logic {
  font-size: 0.6rem; color: #555; font-family: monospace;
  background: #edf2ed; padding: 5px 8px; border-radius: 4px; line-height: 1.5;
}
.showcase__rule-tag { font-size: 0.58rem; color: #4a7344; font-family: var(--sans); font-weight: 600; margin-top: 4px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  body::before { background-attachment: scroll; }
  .nav__links { display: none; }
  /* Split hero */
  .hero__split-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero__right { max-width: 600px; margin: 0 auto; }
  .hero--split .hero__title, .hero--split .hero__sub,
  .hero--split .hero__actions, .hero--split .eyebrow,
  .hero--split .hero__tag { text-align: center; }
  .hero--split .hero__actions { justify-content: center; }
  .hero--split .hero__sub { margin: 0 auto 28px; }
  .hero--split .hero__left { max-width: 100%; }
  /* Stats bento */
  .stat-bento__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .stat-card--tall { grid-row: auto; min-height: auto; }
  /* Showcase */
  .showcase__panel.active { grid-template-columns: 1fr; gap: 32px; }
  .showcase__screen { order: -1; }
  .showcase__kpi-row { grid-template-columns: repeat(2,1fr); }
  .nav__toggle { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(18, 42, 31, 0.92); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); padding: 18px 24px; border-bottom: 1px solid var(--glass-border); }
  .nav__links a.active::after { display: none; }
  .nav__toggle { margin-left: auto; }
  .challenge__grid { grid-template-columns: 1fr; }
  .challenge__right { position: static; }
  .cards, .sol__grid, .about__grid { grid-template-columns: repeat(2, 1fr); }
  .vendors__grid { grid-template-columns: repeat(3, 1fr); }
  .who__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .offices { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .stat-bento__grid { grid-template-columns: 1fr; }
  .showcase__chart-row { grid-template-columns: 1fr; }
  .showcase__orch-row { grid-template-columns: 1fr; }
  .showcase__tabs { border-radius: var(--radius); }
  .prod-window { transform: none; }
  .impact__grid { grid-template-columns: 1fr; }
  .cards, .sol__grid, .about__grid { grid-template-columns: 1fr; }
  .vendors__grid { grid-template-columns: repeat(2, 1fr); }
  .who__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .why__row { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .why__arrow { transform: rotate(90deg); }
  .demo__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__barinner { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .nav__cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  body::before { background-attachment: scroll; }
  .drop.open .drop__flower .petals { animation: none; }
  .droplist::before, .droplist::after { animation: none; }
  .drop.open .drop__head::after { animation: none; }
  .mote { animation: none; opacity: 0; }
  .drop__inner p { transition: opacity .2s ease; transform: none; }
}

/* ============================================================
   Hero product window: purple variant (#b09bd1 instead of green)
   ============================================================ */
.prod-sidebar--purple {
  background: #18382a !important;
}
.prod-sidebar--purple .prod-brand { color: #dcefe1; border-color: rgba(255,255,255,0.1); }
.prod-sidebar--purple .prod-nav__section { color: rgba(220,239,225,0.4); }
.prod-sidebar--purple .prod-nav__item { color: rgba(220,239,225,0.65); }
.prod-sidebar--purple .prod-nav__item--active { background: rgba(74,115,68,0.32); color: #dcefe1; }
.prod-bar--purple { background: linear-gradient(180deg, #b09bd1, #7b2da0) !important; }
.prod-chart-metric--purple { color: #7b2da0 !important; }
.prod-perf-bar--purple::after { background: linear-gradient(90deg, #b09bd1, #7b2da0) !important; }
.prod-kpi__delta--purple { color: #7b2da0 !important; }

/* Green accent variant — sprinkled in among the purple for contrast */
.prod-bar--green { background: linear-gradient(180deg, #4a7344, #234433) !important; }
.prod-chart-metric--green { color: #234433 !important; }
.prod-perf-bar--green::after { background: linear-gradient(90deg, #4a7344, #234433) !important; }
.prod-kpi__delta--green { color: #234433 !important; }
.pscreen__score--green { color: #234433 !important; }
.showcase__kpi-chg--green { color: #234433 !important; }
.showcase__ai-score--green { color: #234433 !important; }

/* ============================================================
   Light section theme (everything below hero)
   ============================================================ */
.section-light {
  background: #f4f3f5;
  position: relative;
  z-index: 1;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #1a0e2e; }
.section-light p { color: #4a3f5c; }
.section-light .lead { color: #3d3050; }
.section-light .eyebrow { color: #7b2da0; }
.section-light .section__title { color: #1a0e2e; }
.section-light .btn--ghost {
  background: rgba(255,255,255,0.8);
  color: #2d1f4a;
  border-color: rgba(176,155,209,0.45);
}
.section-light .btn--ghost:hover { background: rgba(255,255,255,1); }

/* Glass cards → light glass */
.section-light .glass,
.section-light .card,
.section-light .challenge__right,
.section-light .cta-band__inner,
.section-light .strip__inner {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-color: rgba(176,155,209,0.22) !important;
  box-shadow: 0 4px 28px rgba(26,14,46,0.07), inset 1px 1px 0 rgba(255,255,255,0.95) !important;
}

/* Challenge */
.section-light .qlist li { color: #2d1f4a; font-weight: 500; }
.section-light .qlist li::before { color: #9a4fd0; background: rgba(176,155,209,0.18); }
.section-light .spend__head h3 { color: #1a0e2e; }
.section-light .spend__kicker { color: #7b2da0; }
.section-light .spend__name { color: #2d1f4a; }
.section-light .spend__cat { color: rgba(26,14,46,0.5); border-color: rgba(26,14,46,0.1); }
.section-light .spend__row { border-color: rgba(26,14,46,0.07); }

/* Results cards */
.section-light .rcard {
  background: rgba(255,255,255,0.88) !important;
  border-color: rgba(176,155,209,0.2) !important;
  box-shadow: 0 4px 22px rgba(26,14,46,0.07) !important;
}
.section-light .rcard__title { color: #1a0e2e; }
.section-light .rcard p { color: #4a3f5c; }
.section-light .rcard__num { opacity: 0.12; }

/* Stats bento */
.section-light .stat-card {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(176,155,209,0.22) !important;
  box-shadow: 0 4px 22px rgba(26,14,46,0.07) !important;
}
.section-light .stat-card--tall {
  background: linear-gradient(160deg, rgba(176,155,209,0.18), rgba(154,79,208,0.1)) !important;
}
.section-light .stat-card--orchid {
  background: linear-gradient(160deg, rgba(154,79,208,0.12), rgba(176,155,209,0.08)) !important;
}
.section-light .stat-card__eyebrow { color: #7b2da0; }
.section-light .stat-card__num {
  background: linear-gradient(135deg, #7b2da0, #b09bd1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-light .stat-card--tall .stat-card__num {
  background: linear-gradient(135deg, #5e1f8f, #9a4fd0);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-light .stat-card__label { color: #4a3f5c; }
.section-light .stat-card__sub { color: rgba(74,63,92,0.7); }

/* A quiet hint of green among the purple stat cards */
.section-light .stat-card { position: relative; overflow: hidden; }
.section-light .stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a7344, #b09bd1 55%);
  opacity: 0.8;
}
.section-light .stat-card:nth-child(3n) .stat-card__eyebrow { color: #234433; }

/* Showcase tabs */
.section-light .showcase { border-top-color: rgba(176,155,209,0.18); }
.section-light .showcase__tabs {
  background: rgba(176,155,209,0.1);
  border-color: rgba(176,155,209,0.2);
}
.section-light .showcase__tab { color: rgba(26,14,46,0.5); }
.section-light .showcase__tab.active {
  background: rgba(255,255,255,0.9);
  color: #1a0e2e;
  box-shadow: 0 4px 16px rgba(26,14,46,0.08), inset 1px 1px 0 rgba(255,255,255,0.95);
}
.section-light .showcase__tab:hover:not(.active) { color: rgba(26,14,46,0.75); }
.section-light .showcase__panel-text h3 { color: #1a0e2e; }
.section-light .showcase__panel-text p { color: #4a3f5c; }
.section-light .showcase__feats li { color: #2d1f4a; }
.section-light .showcase__feats li::before { background: #b09bd1; }
.section-light .card ul li { color: #2d1f4a; }
.showcase__kpi-chg--purple { color: #7b2da0 !important; }
.showcase__bar--purple { background: linear-gradient(180deg, #b09bd1, #7b2da0) !important; }
.showcase__score--purple { color: #7b2da0 !important; }
.showcase__rule--purple { border-left-color: #b09bd1 !important; }
.showcase__rule-tag--purple { color: #7b2da0 !important; }
.showcase__ai-score--purple { color: #7b2da0 !important; }

/* Orchestrate section light */
.section-light .orchestrate__lines p { color: #4a3f5c; }
.section-light .orchestrate__lines strong { color: var(--moss-600); }
.section-light .orbit__label {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(176,155,209,0.3) !important;
  color: #2d1f4a !important;
  box-shadow: 0 4px 16px rgba(26,14,46,0.08), inset 1px 1px 0 rgba(255,255,255,0.95) !important;
}
.section-light .orbit__core {
  background: radial-gradient(120% 120% at 30% 25%, #b09bd1, #7b2da0 75%);
}

/* Trust bar light */
.trust-bar--light {
  background: rgba(244,243,245,0.95) !important;
  border-color: rgba(176,155,209,0.18) !important;
}
.trust-bar--light .trust-bar__label { color: rgba(26,14,46,0.4); }
.trust-bar--light .trust-bar__logos span { color: rgba(26,14,46,0.2); }

/* CTA band light — works whether section-light is on an ancestor or on cta-band itself */
.section-light .cta-band__inner,
.cta-band.section-light .cta-band__inner {
  background: linear-gradient(160deg, rgba(176,155,209,0.18), rgba(244,243,245,1)) !important;
  border-color: rgba(176,155,209,0.25) !important;
}
.section-light .cta-band h2,
.cta-band.section-light h2 { color: #1a0e2e; }
.section-light .cta-band p,
.cta-band.section-light p { color: #4a3f5c; }

/* Remove carousel arrows */
.carousel__arrow { display: none !important; }

/* ============================================================
   Intro strip: #b09bd1 as major color
   ============================================================ */
.intro-strip {
  background: #b09bd1 !important;
  padding: clamp(96px, 13vw, 150px) 0;
  border-bottom: none;
}
.intro-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.intro-strip__left { max-width: 480px; }
.intro-strip__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.intro-strip__title em {
  font-style: normal;
  color: #fff;
  opacity: 0.75;
  background: none;
  -webkit-text-fill-color: unset;
}
.intro-strip__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.68;
}
.intro-strip__body strong { color: #fff; font-weight: 700; }
/* Override section-light text colors for the purple intro strip */
.intro-strip h2 { color: #fff !important; }
.intro-strip p { color: rgba(255,255,255,0.82) !important; }

/* Platform screen stack (right column) */
.platform-screen-stack {
  position: relative;
  height: 340px;
}
.pscreen {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,14,46,0.12), 0 0 0 1px rgba(176,155,209,0.2);
  background: #fff;
}
.pscreen--back {
  width: 62%;
  top: 0;
  right: 0;
  transform: rotate(3deg) translateY(-10px);
  opacity: 0.7;
  z-index: 1;
}
.pscreen--mid {
  width: 66%;
  top: 30px;
  right: 20px;
  transform: rotate(1.5deg) translateY(0);
  opacity: 0.85;
  z-index: 2;
}
.pscreen--front {
  width: 76%;
  top: 60px;
  left: 0;
  z-index: 3;
  box-shadow: 0 16px 48px rgba(26,14,46,0.18), 0 0 0 1px rgba(176,155,209,0.28);
}
.pscreen--back .pscreen__hdr { background: #1f4530; }
.pscreen__hdr {
  background: #3d2d5c;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(232,214,248,0.85);
}
.pscreen__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.22); display: inline-block; }
.pscreen__label { margin-left: 6px; }
.pscreen__body { padding: 10px 12px; }

/* Front pscreen: dashboard */
.pscreen__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-bottom: 8px; }
.pscreen__kpi { background: #faf8ff; border: 1px solid rgba(176,155,209,0.22); border-radius: 5px; padding: 7px 8px; }
.pscreen__kpi-label { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #999; font-family: var(--sans); }
.pscreen__kpi-val { font-size: 0.82rem; font-weight: 700; color: #1a0e2e; font-family: var(--sans); margin-top: 2px; }
.pscreen__kpi-delta { font-size: 0.54rem; color: #7b2da0; font-weight: 600; font-family: var(--sans); }
.pscreen__bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.pscreen__bar { flex: 1; background: linear-gradient(180deg, #b09bd1, #7b2da0); border-radius: 2px 2px 0 0; }

/* Mid pscreen: providers */
.pscreen__sp-row { display: grid; grid-template-columns: 16px 1fr 32px 32px; gap: 5px; padding: 5px 0; border-bottom: 1px solid rgba(176,155,209,0.12); font-size: 0.57rem; font-family: var(--sans); color: #3d3050; align-items: center; }
.pscreen__sp-row--hdr { color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.pscreen__sp-row:last-child { border-bottom: 0; }
.pscreen__score { color: #7b2da0; font-weight: 700; }

/* Back pscreen: rules */
.pscreen__body--rules { display: flex; flex-direction: column; gap: 6px; }
.pscreen__rule { background: #faf8ff; border: 1px solid rgba(176,155,209,0.18); border-left: 3px solid #b09bd1; border-radius: 5px; padding: 7px 9px; }
.pscreen__rule--on { border-left-color: #7b2da0; }
.pscreen__rule-name { font-size: 0.62rem; font-weight: 700; color: #1a0e2e; font-family: var(--sans); margin-bottom: 3px; }
.pscreen__rule-tag { font-size: 0.56rem; color: #7b2da0; font-family: var(--sans); font-weight: 600; }

@media (max-width: 860px) {
  .intro-strip__grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-strip__left { max-width: 100%; }
  .platform-screen-stack { height: 280px; }
}
@media (max-width: 560px) {
  .platform-screen-stack { height: 220px; }
  .pscreen--back { display: none; }
}

/* ============================================================
   Showcase CTA button
   ============================================================ */
.showcase__cta {
  text-align: center;
  margin-top: 42px;
}
.section-light .showcase__cta .btn--ghost {
  color: #5e1f8f;
  border-color: rgba(176,155,209,0.5);
  background: rgba(176,155,209,0.1);
  font-weight: 600;
}
.section-light .showcase__cta .btn--ghost:hover {
  background: rgba(176,155,209,0.2);
  border-color: #b09bd1;
}

/* ============================================================
   Challenge bullet: replace "?" with "→"
   ============================================================ */
.section-light .qlist li::before { content: "→"; font-size: 0.9rem; }

/* ============================================================
   Seamless section transitions (Apple-style)
   ============================================================ */

html { scroll-behavior: smooth; }
.showcase { border-top: none !important; }
* { transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }

/* ============================================================
   NAV: #B09BD1 as major color
   ============================================================ */
.nav {
  background: linear-gradient(180deg, #2d1f4a, #1a0e2e) !important;
  border-bottom: 1px solid #5e1f8f !important;
  box-shadow: 0 2px 24px rgba(26,14,46,0.35) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.brand__name {
  background: #fff !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: none !important;
}
.nav__links a { color: rgba(255,255,255,0.88) !important; }
.nav__links a:hover { color: #fff !important; }
.nav__links a.active { color: #fff !important; font-weight: 600; }
.nav__links a.active::after { background: #fff !important; }
.nav .nav__cta {
  background: rgba(255,255,255,0.22) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  box-shadow: none !important;
}
.nav .nav__cta:hover {
  background: rgba(255,255,255,0.35) !important;
  transform: translateY(-1px);
}
.nav__toggle span { background: #fff !important; }

/* ============================================================
   Hero: #B09BD1 background, white text
   ============================================================ */
.hero--split {
  background: #b09bd1 !important;
  position: relative;
  overflow: hidden;
}
.hero--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/laelia-purpurata.jpg') center / cover no-repeat;
  opacity: 0.03;
  filter: saturate(0.5) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}
.hero--split .hero__split-wrap { position: relative; z-index: 1; }
.hero--split .eyebrow { color: rgba(255,255,255,0.72) !important; letter-spacing: 0.2em; }
.hero--split .hero__title { color: #fff !important; text-shadow: 0 2px 20px rgba(90,50,130,0.25); }
.hero--split .hero__title em {
  background: linear-gradient(120deg, #fff 30%, rgba(255,255,255,0.65)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.hero--split .hero__sub { color: rgba(255,255,255,0.88) !important; }
.hero--split .hero__tag { color: rgba(255,255,255,0.65) !important; }
.hero--split .btn--primary {
  background: rgba(255,255,255,0.95) !important;
  color: #7b2da0 !important;
  box-shadow: 0 8px 28px rgba(90,50,130,0.3), inset 1px 1px 0 rgba(255,255,255,1) !important;
}
.hero--split .btn--primary:hover { background: #fff !important; }
.hero--split .btn--ghost {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.42) !important;
}
.hero--split .btn--ghost:hover { background: rgba(255,255,255,0.24) !important; }

/* ============================================================
   Intro strip: plain white background, dark text
   ============================================================ */
.intro-strip {
  background: #fff !important;
}
.intro-strip::before { display: none !important; }
.intro-strip__title { color: #1a0e2e !important; }
.intro-strip__title em {
  font-style: normal;
  background: linear-gradient(120deg, #7b2da0, #b09bd1) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.intro-strip__body { color: #4a3f5c !important; font-size: 1.18rem; }
.intro-strip__body strong { color: var(--moss-600) !important; }
.intro-strip h2 { color: #1a0e2e !important; }
.intro-strip p { color: #4a3f5c !important; }
/* Pscreens on light bg */
.intro-strip .pscreen { box-shadow: 0 12px 48px rgba(26,14,46,0.10), 0 0 0 1px rgba(176,155,209,0.22) !important; }
.intro-strip .pscreen--back { opacity: 0.65; }
.intro-strip .pscreen--mid  { opacity: 0.8; }

/* ============================================================
   Laelia image: fixed parallax bg on all light sections
   from Claims.Vendors. section onwards
   ============================================================ */

/* Remove old divider */
.section-light::after { display: none !important; }

/* Laelia photo at extreme transparency, fixed = parallax effect */
.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/laelia-purpurata.jpg') center / cover fixed;
  opacity: 0.038;
  filter: saturate(0.5) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}

/* Lift all content above the image layer */
.section-light > *,
.section-light .container,
.section-light .intro-strip__grid,
.section-light .trust-bar__inner,
.section-light .carousel__track,
.section-light .carousel__dots,
.section-light .showcase__tabs,
.section-light .showcase__panels,
.section-light .showcase__cta,
.section-light .stat-bento__grid,
.section-light .orchestrate__lines,
.section-light .orbit-wrap { position: relative; z-index: 1; }

/* Subtle section-to-section rhythm via faint backgrounds */
.showcase.section-light   { background: #f4f3f5; }
.orchestrate.section-light { background: #f4f3f5; }

/* ============================================================
   Beautiful scroll animations (Apple-style)
   ============================================================ */

/* Base reveal: rise + fade */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity  0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Eyebrows: rise quickly */
.eyebrow.reveal { transform: translateY(20px); }

/* Titles: clip-path wipe upward */
.section__title.reveal,
.intro-strip__title.reveal {
  transform: translateY(28px);
  clip-path: inset(0 0 30% 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.section__title.reveal.in,
.intro-strip__title.reveal.in {
  transform: none;
  clip-path: inset(0 0 0% 0);
}

/* Cards & stat blocks: rise + subtle scale */
.card.reveal, .rcard.reveal, .stat-card.reveal {
  transform: translateY(36px) scale(0.97);
}
.card.reveal.in, .rcard.reveal.in, .stat-card.reveal.in {
  transform: none;
}

/* Platform screen: slide from right */
.showcase__screen.reveal {
  transform: translateX(32px);
}
.showcase__screen.reveal.in { transform: none; }

/* Platform screens stack */
.pscreen--front.reveal { transform: translateY(24px) scale(0.97); }
.pscreen--mid.reveal   { transform: translateY(32px) scale(0.96); transition-delay: 0.08s; }
.pscreen--front.reveal.in, .pscreen--mid.reveal.in { transform: none; }

/* Panel text: rise a little less */
.showcase__panel-text.reveal { transform: translateY(28px); }
.showcase__panel-text.reveal.in { transform: none; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; transform: none; opacity: 1; transition: none; }
  .section__title.reveal, .intro-strip__title.reveal { clip-path: none; }
}

/* ============================================================
   Footer: match the purple team color
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #2d1f4a, #1a0e2e) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: 1px solid rgba(176,155,209,0.22) !important;
  color: rgba(232,214,248,0.78) !important;
  margin-top: 0 !important;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/laelia-purpurata.jpg') center / cover no-repeat;
  opacity: 0.05;
  filter: saturate(0.5) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}
.footer__inner, .footer__bar { position: relative; z-index: 1; }
.footer__blurb, .footer__offices p { color: rgba(232,214,248,0.72) !important; }
.footer__naming, .footer__tag { color: #d8c4f0 !important; }
.footer__col h4 { color: #e8d6f8 !important; }
.footer__col a { color: rgba(232,214,248,0.72) !important; }
.footer__col a:hover { color: #fff !important; }
.footer__offices strong { color: #e8d6f8 !important; }
.footer__bar { border-top: 1px solid rgba(176,155,209,0.16) !important; }

/* ============================================================
   Dark-green hints, scattered site-wide — about 3% of the page
   (purple still dominant, green now actually visible)
   ============================================================ */
.section-light .card,
.section-light .rcard,
.section-light .stat-card,
.section-light .who__card,
.section-light .sol__card,
.section-light .about__card {
  border-color: rgba(74,115,68,0.30) !important;
}
.section-light .card:hover,
.section-light .rcard:hover {
  border-color: rgba(74,115,68,0.5) !important;
  box-shadow: 0 4px 28px rgba(35,68,51,0.12) !important;
}
.carousel__dot { background: rgba(74,115,68,0.28); }
.carousel__dot.active { background: linear-gradient(135deg, #4a7344, var(--orchid-500)); }
.section-light .btn--ghost {
  border-color: rgba(74,115,68,0.45) !important;
  background: rgba(74,115,68,0.06) !important;
  color: #234433 !important;
}
.section-light .btn--ghost:hover {
  border-color: rgba(74,115,68,0.7) !important;
  background: rgba(74,115,68,0.12) !important;
}
.hero--split .btn--ghost {
  border-color: rgba(74,115,68,0.55) !important;
  background: rgba(74,115,68,0.14) !important;
}
.hero--split .btn--ghost:hover { background: rgba(74,115,68,0.24) !important; }
.nav__links a:hover { color: #bfe0c8 !important; text-shadow: 0 0 14px rgba(74,115,68,0.5); }
.section-light .qlist li::before { background: rgba(74,115,68,0.18) !important; color: #234433 !important; }
.footer__bar { box-shadow: inset 0 1px 0 rgba(74,115,68,0.2); }

/* visible green accents */
.section-light .card:nth-child(3n)::before { background: linear-gradient(90deg, var(--mint-300), #4a7344) !important; }
.section-light .who__card:nth-child(3n),
.section-light .sol__card:nth-child(3n) { border-top-color: #4a7344 !important; }
.section-light .rcard:nth-child(3n) .rcard__num {
  background: linear-gradient(135deg, #4a7344, #8aae88) !important;
  -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important;
}
.section-light .vendor:nth-child(8n+4) { background: rgba(74,115,68,0.16) !important; color: #234433 !important; }
.section-light .pill:nth-child(8n+4) { background: rgba(74,115,68,0.18) !important; color: #234433 !important; }
.showcase__tab.active { border-bottom-color: #4a7344 !important; }
.section-light .acc__head:hover, .section-light .acc.open .acc__head { color: #234433 !important; }
.cta-band .btn--primary { box-shadow: 0 10px 26px rgba(35,68,51,0.22), inset 1px 1px 0 rgba(255,255,255,0.22) !important; }

/* ============================================================
   Inner-page section-light overrides
   ============================================================ */

/* Why section (platform page) */
.section-light .why__grid { display: grid; gap: 14px; }
.section-light .why__row {
  background: #fff;
  border: 1px solid rgba(176,155,209,0.22);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.section-light .why__old { color: #6b5f7a; }
.section-light .why__new { color: #1a0e2e; font-weight: 600; }
.section-light .why__arrow { color: #4a7344; }

/* About / offices (company page) */
.section-light .offices { display: grid; gap: 16px; }
.section-light .office {
  background: #fff;
  border: 1px solid rgba(176,155,209,0.20);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  color: var(--text);
}
.section-light .office strong { color: #1a0e2e; }

/* Demo form (company page) */
.section-light .demo__bg { display: none !important; }
.section-light .demo__form { background: #fff; border: 1px solid rgba(176,155,209,0.25); border-radius: var(--radius); padding: 36px; }
.section-light .field label { color: #2d1f4a; font-weight: 600; }
.section-light .field input,
.section-light .field select,
.section-light .field textarea {
  background: #f4f3f5;
  border: 1px solid rgba(176,155,209,0.35);
  color: #1a0e2e;
}
.section-light .field input:focus,
.section-light .field select:focus,
.section-light .field textarea:focus {
  border-color: #b09bd1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(176,155,209,0.18);
}
.section-light .demo h2,
.section-light .demo p { color: #1a0e2e !important; }

/* Solutions page: dual droplist */
.section-light .dual__title { color: #1a0e2e !important; }
.section-light .drop__head.pill {
  background: rgba(176,155,209,0.14) !important;
  color: #2d1f4a !important;
  border: 1px solid rgba(176,155,209,0.3) !important;
}
.section-light .drop__head.pill:hover,
.section-light .drop__head.pill[aria-expanded="true"] {
  background: rgba(176,155,209,0.26) !important;
  border-color: rgba(176,155,209,0.5) !important;
}
.section-light .drop__inner { color: var(--text) !important; }

/* Vendors grid: base chips */
.section-light .vendor {
  background: rgba(176,155,209,0.12);
  border: 1px solid rgba(176,155,209,0.22);
  color: #2d1f4a;
  border-radius: var(--radius-sm);
}
