/* Acqius — Global M&A Advisory for Highly Regulated & Technically Critical Industries */

:root {
  --ink: #191c1f;
  --ink-soft: #4d5358;
  --paper: #f4f4f4;
  --line: #dfe3e7;
  --sky-from: #1f3b2c;
  --sky-mid: #3f684d;
  --sky-to: #84a48b;
  --brand-navy: #1f3b2c;
  --brand-cyan: #efa14e;
  --brand-green: #1f3b2c;
  --brand-sage: #7d9c84;
  --brand-amber: #efa14e;
  --amber-ink: #22301f;
  --font-helios: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* Helios Extended substitute — Archivo at expanded width.
   "Helios Extended" is a proprietary ParaType face (not on Google Fonts);
   Archivo expanded is the closest free match. Letter-spacing -61 (Figma/tracking
   units, 1/1000 em) ≈ -0.061em. */
.helios {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.061em;
}
/* Service-name headings: lowercase Helios with -61 tracking */
.svc-name {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.061em;
  text-transform: lowercase;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  background: #fff;
}
/* NOTE: never set overflow on html/body/main — it breaks position: sticky in HeroMorph. */
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ---------- Announcement bar ---------- */
.announce {
  background: #191c1f;
  color: #fff;
  height: 56px;
  display: flex;
  align-items: center;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.announce .left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.announce .left .close {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: #fff;
}
.announce .left .close:hover { background: rgba(255,255,255,0.1); }
.announce .left p { margin: 0; }
@media (max-width: 720px) { .announce .left p { display: none; } }
.announce .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.announce .pillbtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px;
}
.announce .pillbtn:hover { background: rgba(255,255,255,0.1); }
.announce .arrow {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: #fff; color: #000;
}
.announce .arrow:hover { background: rgba(255,255,255,0.9); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 0.3s ease;
}
.header .row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}
.header .logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.5px;
}
.header .logo .mark {
  width: 36px; height: 36px;
  margin-right: 10px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: currentColor;
}
.header .logo .mark svg { color: var(--sky-from); }
.header .logo-mark { height: 32px; width: auto; display: block; }
@media (min-width: 768px) { .header .logo-mark { height: 36px; } }
.header nav {
  display: none;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .header nav { display: flex; }
}
.header nav a, .header .nav-link {
  padding: 8px 15px;
  border-radius: 999px;
  transition: background-color 0.2s;
}
.header nav a:hover, .header .nav-link:hover { background: rgba(127,127,127,0.12); }
.header.dark nav a:hover, .header.dark .nav-link:hover { background: rgba(255,255,255,0.12); }

.header .actions {
  display: flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500;
}
.header .actions .contact {
  padding: 10px 22px; border-radius: 999px;
}
.header .actions .contact:hover { background: rgba(127,127,127,0.12); }
.header.dark .actions .contact:hover { background: rgba(255,255,255,0.12); }
.header .actions .apply {
  padding: 10px 22px; border-radius: 999px;
  background: var(--brand-amber); color: var(--amber-ink);
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.header.dark .actions .apply { background: var(--brand-amber); color: var(--amber-ink); }
.header .actions .apply:hover { transform: scale(1.02); opacity: 0.92; }
.header .actions .in-link {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: inherit;
  transition: background 0.2s;
}
.header .actions .in-link:hover { background: rgba(127,127,127,0.12); }
.header.dark .actions .in-link:hover { background: rgba(255,255,255,0.12); }

/* ---------- Hero morph ---------- */
.hero-section {
  position: relative;
  width: 100%;
  margin-top: -88px;
  height: 220vh;
}
.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-sky {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #1f3b2c 0%, #3f684d 55%, #84a48b 100%);
  will-change: opacity;
}
.hero-clouds {
  position: absolute; inset: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(ellipse 50% 30% at 75% 35%, rgba(255,255,255,0.35), transparent 60%);
  will-change: opacity;
}
.hero-white { position: absolute; inset: 0; background: #fff; z-index: -1; }

.hero-fullbg {
  position: absolute; inset: 0;
  z-index: 1;
  background: #0c0f0c;
  will-change: opacity;
}
.hero-fullbg img, .hero-fullbg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-fullbg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,17,11,0.34) 0%, rgba(10,17,11,0.14) 42%, rgba(10,17,11,0.42) 100%);
}

.morph-card .card-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,17,11,0.34) 0%, rgba(10,17,11,0.12) 45%, rgba(10,17,11,0.26) 100%);
}

.hero-text {
  position: relative; z-index: 20;
  padding-top: clamp(110px, 16vh, 200px);
  pointer-events: none;
  max-width: 1432px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  will-change: opacity, transform;
}
@media (max-width: 768px) { .hero-text { padding-left: 24px; padding-right: 24px; } }

.hero-text h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(10,17,11,0.35), 0 8px 40px rgba(10,17,11,0.3);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.03;
  max-width: 1100px;
  font-size: clamp(30px, 4.4vw, 60px);
}
/* Helios Extended (Archivo expanded) hero headline */
.hero-headline { display: flex; flex-direction: column; margin: 0; color: #fff; }
.hero-headline .ho-line {
  display: block;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.061em;
  line-height: 0.98;
}
.hero-headline .ho-regular { font-weight: 400; }
.hero-headline .ho-bold { font-weight: 700; }
.hero-text p {
  margin: 28px 0 0;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(10,17,11,0.35), 0 6px 30px rgba(10,17,11,0.3);
  color: #fff;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.4;
}
.hero-text .cta-row {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  pointer-events: auto;
}
/* Award badge under the hero CTAs */
.hero-award {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 10px;
  border-radius: 16px;
  background: rgba(14,22,16,0.52);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-award img {
  width: 72px;
  height: auto;
  display: block;
  border-radius: 9px;
  background: #fff;
}
.hero-award-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(10,17,11,0.35);
}
.hero-award-txt strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hero-award-txt span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 768px) {
  .hero-award { margin-top: 20px; gap: 11px; padding: 8px 15px 8px 8px; border-radius: 14px; }
  .hero-award img { width: 56px; }
  .hero-award-txt strong { font-size: 13px; }
  .hero-award-txt span { font-size: 10.5px; letter-spacing: 0.06em; }
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-amber); color: var(--amber-ink);
  font-weight: 600;
  font-size: 18px; font-weight: 500;
  border-radius: 999px;
  padding: 16px 30px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.92; transform: scale(1.02); }
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14,22,16,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 18px; font-weight: 500;
  border-radius: 999px;
  padding: 15px 28px;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s;
}
.btn-ghost-light:hover { background: rgba(14,22,16,0.68); }

/* Final title (morphed-in) */
.hero-final-title {
  position: absolute;
  top: clamp(96px, 10vh, 112px); /* never below the 88px sticky header */
  left: 0; right: 0;
  z-index: 20;
  text-align: center;
  padding: 0 24px;
  will-change: opacity, transform;
}
.hero-final-title .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand-sage);
  font-weight: 600;
  margin: 0;
}
.hero-final-title h2 {
  margin: 14px auto 0;
  max-width: 960px;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--brand-green);
  font-size: clamp(30px, 3.9vw, 50px);
}
/* Short viewports: tighten further so the title clears the three cards */
@media (max-height: 860px) {
  .hero-final-title { top: 96px; }
  .hero-final-title h2 { margin-top: 10px; font-size: clamp(28px, 3.2vw, 40px); }
}

/* Card stage */
.card-stage {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding-top: clamp(140px, 22vh, 240px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
.card-grid {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  height: auto;
}
@media (min-width: 768px) {
  .card-grid { padding: 0 40px; gap: 24px; }
}
/* Very short desktop viewports: drop the cards a little so the gap survives */
@media (min-width: 769px) and (max-height: 780px) {
  .card-stage { padding-top: 200px; }
  .card-grid { max-width: 860px; }
}
.morph-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: #14251a;
  box-shadow: 0 20px 40px -16px rgba(20,37,26,0.22), 0 4px 12px rgba(20,37,26,0.08);
}
.card-center {
  transform-origin: center;
  z-index: 2;
}
.morph-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.morph-card .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.28) 55%, transparent);
  color: #fff;
  will-change: opacity;
}
@media (max-width: 768px) {
  .morph-card .label { padding: 14px 14px; }
}
.morph-card .label .num {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.morph-card .label h3 {
  margin: 6px 0 0;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Side cards animate via inline transform var */
.card-left { will-change: transform, opacity; }
.card-right { will-change: transform, opacity; }
.card-center { will-change: transform; transform-origin: center; }

/* ---------- Two ways section ---------- */
.section {
  padding: 96px 0;
}
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-narrow { padding: 80px 0; }

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}
.hd {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.hd-xxl { font-size: clamp(40px, 6vw, 80px); }
.hd-xl { font-size: clamp(36px, 5vw, 64px); }
.hd-lg { font-size: clamp(28px, 3vw, 40px); }

.lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  color: rgba(25,28,31,0.82);
}
.lede-light { color: rgba(255,255,255,0.85); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mw-820 { max-width: 820px; }
.mw-960 { max-width: 960px; }
.mw-1100 { max-width: 1100px; }

/* Stats / value tiles */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 900px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.value-tile {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.value-tile .badge {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: var(--paper);
  display: grid; place-items: center;
  transition: transform 0.3s ease, background-color 0.2s;
}
.value-tile:hover .badge { transform: scale(1.08); background: #ecedef; }
.value-tile p {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  white-space: pre-line;
}

/* Two ways cards */
.two-ways {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .two-ways { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.way-card {
  position: relative;
  padding: 36px;
  border-radius: 28px;
  background: #f7f8f9;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(25,28,31,0.18);
}
.way-card .num {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.way-card h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
}
.way-card .body {
  margin: 20px 0 0;
  font-size: 17px; line-height: 1.5;
  color: var(--ink-soft);
}
.way-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.way-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink);
}
.way-card li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--ink);
  flex-shrink: 0;
}
.way-card .arrow {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: gap 0.3s;
}
.way-card:hover .arrow { gap: 16px; }

/* ---------- Dark wide section (Strategic Growth / Exit Advisory / Limited founders) ---------- */
.wide-section {
  position: relative;
  width: 100%;
  min-height: 760px;
  height: 100vh;
  max-height: 1200px;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--paper);
}
.wide-section .container {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding-top: 80px; padding-bottom: 80px;
}
.wide-section .veil { position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 1; }
.wide-section .bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.wide-section .eyebrow-light {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.tabs {
  margin-top: auto;
  display: inline-flex; gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tab-btn {
  position: relative;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s;
  z-index: 1;
}
.tab-btn.active { color: #000; }
.tab-pill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #dfe3e7;
  z-index: -1;
}

/* Strategic Growth visual (animated grid) */
.bg-strategic {
  background: radial-gradient(ellipse 80% 60% at 50% 110%, #3f684d 0%, #16281a 40%, #0b0f0b 80%);
}
.bg-exit {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #2c5a3e 0%, #142819 50%, #060c07 100%);
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}
.bg-limited {
  background: linear-gradient(180deg, #f9c46b 0%, #f08c4a 35%, #b94a3e 70%, #4a1d2c 100%);
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}
.bg-limited::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,200,120,0.5), transparent 60%);
  pointer-events: none;
}

/* Animated mesh accent for dark sections */
.mesh-accent {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.mesh-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.7;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, -60px) scale(1.15); }
}

/* ---------- Focus areas (split) ---------- */
.split-section {
  background: #0c0c0d;
  color: var(--paper);
  padding: 100px 0 140px;
}
.split-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
}
.split-text h2 { color: #fff; }
.split-text .lede { color: rgba(255,255,255,0.85); margin-top: 28px; }
.split-text ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 620px;
}
.split-text li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: rgba(255,255,255,0.88);
}
.split-text li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--sky-mid);
  flex-shrink: 0;
}
.split-text .btn-light {
  margin-top: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #191c1f;
  padding: 14px 28px; border-radius: 999px;
  font-size: 17px; font-weight: 500;
  transition: transform 0.25s, background-color 0.2s;
}
.split-text .btn-light:hover { transform: scale(1.03); background: #f1f4f6; }

.compass {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(to bottom right, #1f3a5f, #0c0c0d);
}
.compass .ring {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.compass .pulse {
  position: absolute;
  inset: 18% 18%;
  border: 1px solid rgba(57,145,216,0.35);
  border-radius: 999px;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0.95; }
}
.compass .tag {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.compass .tag.t1 { top: 12%; left: 10%; }
.compass .tag.t2 { top: 28%; right: 8%; }
.compass .tag.t3 { bottom: 32%; left: 8%; }
.compass .tag.t4 { bottom: 14%; right: 14%; }

/* ---------- Portfolio ---------- */
.portfolio-section {
  background: linear-gradient(to bottom, #0c0f0c, #20402c 50%, #0c0f0c);
  color: var(--paper);
  overflow-x: clip;
  padding: 120px 0 140px;
  text-align: center;
}
.portfolio-grid {
  margin: 72px auto 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
@media (min-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}
.port-card {
  position: relative;
  background: #14251a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.port-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px -30px rgba(239,161,78,0.3);
}
.port-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, rgba(125,156,132,0.45), #20402c 50%, #14251a);
  display: grid; place-items: center;
  overflow: hidden;
}
.port-thumb .glyph {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}
.port-thumb .sheen {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.port-card .body {
  padding: 26px;
}
.port-card .year {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.port-card h3 {
  margin: 8px 0 0;
  font-size: 20px; font-weight: 500;
}
.port-card .tag { margin: 6px 0 0; font-size: 14px; color: rgba(255,255,255,0.65); }

/* ---------- Fundraise.ai callout ---------- */
.fundraise-section {
  background: #fff;
  padding: 120px 0;
}
.fundraise-card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px;
  border-radius: 36px;
  background: linear-gradient(135deg, #14251a 0%, #20402c 50%, #2c5138 100%);
  overflow: hidden;
  color: #fff;
}
@media (max-width: 768px) {
  .fundraise-card { padding: 40px 28px; }
  .fundraise-card .fundraise-mock { aspect-ratio: auto; overflow: visible; max-width: 100%; height: auto; }
}
.fundraise-card .glow {
  position: absolute; right: -160px; top: -160px;
  width: 520px; height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239,161,78,0.42), transparent 65%);
  filter: blur(40px);
}
.fundraise-card .glow2 {
  position: absolute; left: -120px; bottom: -180px;
  width: 420px; height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125,156,132,0.45), transparent 65%);
  filter: blur(50px);
}
.fundraise-card .inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) {
  .fundraise-card .inner { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}
.fundraise-card .eyebrow-light {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.22em;
  font-size: 13px;
  text-transform: uppercase;
}
.fundraise-card h2 {
  margin: 18px 0 0;
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.04;
  font-size: clamp(36px, 4.5vw, 64px);
}
.fundraise-card p {
  margin: 24px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 540px;
}
.fundraise-card .bullets {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid; gap: 14px;
}
.fundraise-card .bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.fundraise-card .bullets li strong { color: #fff; font-weight: 600; margin-right: 6px; }
.fundraise-card .bullets li::before {
  content: ''; width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--sky-mid);
  flex-shrink: 0;
}
.fundraise-card .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.fundraise-card .btn-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-amber); color: var(--amber-ink); font-weight: 600;
  padding: 14px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 500;
  transition: transform 0.25s, background 0.2s;
}
.fundraise-card .btn-light:hover { transform: scale(1.03); }
.fundraise-card .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 13px 25px; border-radius: 999px;
  font-size: 16px; font-weight: 500;
  transition: background 0.2s;
}
.fundraise-card .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Fundraise mock card (right side) */
.fundraise-mock {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 24px;
  overflow: hidden;
}
.fundraise-mock .row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.fundraise-mock .row .dot {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3991d8, #2cd4d9);
  flex-shrink: 0;
}
.fundraise-mock .row .name {
  font-size: 14px; font-weight: 500;
}
.fundraise-mock .row .meta {
  font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px;
}
.fundraise-mock .row .right {
  margin-left: auto;
  font-size: 13px; font-weight: 600;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(44,212,217,0.18);
  color: #2cd4d9;
}
.fundraise-mock .row .right.warn {
  background: rgba(249,196,107,0.18);
  color: #f9c46b;
}
.fundraise-mock .row .right.muted {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

/* ---------- Limited founders inner card (sectors) ---------- */
.sector-spotlight {
  margin-top: 36px;
  width: 100%;
  max-width: 1000px;
  border-radius: 24px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 36px 32px;
  text-align: left;
  color: rgba(255,255,255,0.92);
}
.sector-spotlight .label {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.sector-spotlight h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
}
.sector-spotlight p {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 760px;
}
.sector-spotlight .examples {
  margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sector-spotlight .chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 120px 0 100px;
  text-align: center;
  background: #fff;
}
.final-cta .hd-xxl { max-width: 1100px; margin: 0 auto; }
.final-cta .form {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: left;
  background: #f7f8f9;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
}
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  width: 100%;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234d5358' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(25,28,31,0.06);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-grid { grid-template-columns: 1fr; } }
.form-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 8px; flex-wrap: wrap;
}
.form-actions .note { font-size: 13px; color: var(--ink-soft); max-width: 380px; }
.form-actions button {
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--brand-amber); color: var(--amber-ink);
  font-size: 16px; font-weight: 600;
  transition: transform 0.25s;
}
.form-actions button:hover { transform: scale(1.02); }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(125,156,132,0.16);
  border: 1px solid rgba(125,156,132,0.5);
  color: #22301f;
  font-size: 14px;
}

/* ---------- Legal ---------- */
.legal {
  padding: 24px 0 56px;
  background: #fff;
}
.legal .container {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex; flex-direction: column; gap: 12px;
}
.legal strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #fff; }
.footer .container { padding-top: 80px; padding-bottom: 56px; color: var(--ink); }
.footer .footer-hd { margin: 0 0 40px; }
.plan-grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.plan-grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 20px;
}
@media (min-width: 900px) {
  .plan-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .plan-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.plan-card {
  display: block;
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, background-color 0.3s;
}
.plan-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: var(--line);
}
.plan-card .name { font-size: 22px; font-weight: 500; }
.plan-card .price { margin-top: 6px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.18em; text-transform: uppercase; }
.plan-card .desc { margin-top: 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.plan-card .link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  transition: gap 0.3s;
}
.plan-card:hover .link { gap: 14px; }

.link-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 700px) { .link-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .link-grid { grid-template-columns: repeat(8, 1fr); } }
.link-col h3 { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.link-col ul { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.link-col a { font-size: 14px; color: var(--ink-soft); transition: color 0.2s; }
.link-col a:hover { color: var(--ink); }

.footer-mid {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 700px) {
  .footer-mid { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer .socials { display: flex; gap: 14px; }
.footer .socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px; font-weight: 600;
  transition: background-color 0.2s;
}
.footer .socials a:hover { background: var(--line); }

.footer-bot {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 700px) {
  .footer-bot { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.footer-bot a.email-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  color: var(--ink); font-weight: 500;
  transition: background-color 0.2s;
}
.footer-bot a.email-pill:hover { background: var(--paper); }
.footer-bot .secondary-links { display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: 14px; color: var(--ink-soft); }
.footer-bot .secondary-links a:hover { color: var(--ink); }

.footer-copy {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; line-height: 1.55; color: var(--ink-soft);
  max-width: 1100px;
}
.footer-copy a { text-decoration: underline; }

/* Fade-in utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   SUBPAGES (Partnership / Approach / Portfolio / Fundraise.ai
   + service pages). Reuses the homepage tokens & components.
   ============================================================ */
.subpage { background: #fff; }

/* Pull the hero up so the transparent header overlays the navy band. */
.subpage .page-hero { margin-top: -88px; }

/* Header sits over the navy hero band, so default it to the dark
   (white-text) state even before any scroll. */
.subpage .header { background-color: transparent; }
.header nav a.current { background: rgba(255,255,255,0.14); }
.header.light nav a.current { background: rgba(16,46,94,0.08); }

/* ---- Page hero band ---- */
.page-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #1f3b2c 0%, #3f684d 58%, #84a48b 150%);
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero .glow {
  position: absolute; z-index: 1;
  width: 760px; height: 760px; right: -180px; top: -280px;
  background: radial-gradient(circle, rgba(239,161,78,0.42) 0%, rgba(239,161,78,0) 62%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow-light {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin: 0;
}
.page-hero h1 {
  margin: 18px 0 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125; font-stretch: 125%;
  letter-spacing: -0.061em; font-weight: 700; text-transform: lowercase;
  font-size: clamp(38px, 6.2vw, 88px); line-height: 0.96;
}
.page-hero .lede {
  margin: 26px 0 0; max-width: 660px;
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.page-hero .cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Generic page section ---- */
.page-section { padding: 96px 0; }
.page-section.alt { background: var(--paper); }
.page-section .eyebrow { color: var(--ink-soft); }
.page-lede {
  margin: 22px 0 0; max-width: 760px;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-soft);
}
.page-lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Column grids ---- */
.col-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.col-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 940px) { .col-3 { grid-template-columns: 1fr; } .col-2 { grid-template-columns: 1fr; } }

.info-card {
  display: block; text-align: left;
  padding: 34px; border-radius: 24px;
  background: #fff; border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
}
a.info-card:hover { transform: translateY(-4px); border-color: var(--brand-cyan); box-shadow: 0 18px 40px rgba(16,46,94,0.10); }
.info-card .k { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.info-card h3 { margin: 12px 0 0; font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
.info-card .svc-name { font-size: clamp(20px, 2vw, 26px); }
.info-card p { margin: 16px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.info-card .link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--brand-navy); }
.info-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.info-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.45; }
.info-card li::before { content: ''; width: 7px; height: 7px; margin-top: 7px; border-radius: 999px; background: var(--brand-cyan); flex-shrink: 0; }

/* ---- Steps / engagement cadence ---- */
.steps { margin-top: 40px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 88px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step .n {
  font-family: var(--font-helios); font-variation-settings: "wdth" 125; font-stretch: 125%;
  letter-spacing: -0.061em; font-size: 40px; font-weight: 700; color: var(--brand-navy); line-height: 1;
}
.step h3 { margin: 0; font-size: clamp(19px, 1.8vw, 24px); font-weight: 500; }
.step p { margin: 12px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); max-width: 720px; }
@media (max-width: 640px) { .step { grid-template-columns: 1fr; gap: 10px; } }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 30px; border-radius: 22px; background: var(--paper); border: 1px solid transparent; transition: border-color 0.3s, transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.team-card:hover { transform: translateY(-3px); border-color: var(--line); }
.avatar {
  width: 76px; height: 76px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1f3b2c 0%, #7d9c84 100%);
  color: #fff;
  font-family: var(--font-helios); font-variation-settings: "wdth" 125; font-stretch: 125%;
  letter-spacing: -0.04em; font-weight: 700; font-size: 24px;
}
.team-card .name { margin: 20px 0 0; font-size: 19px; font-weight: 500; }
.team-card .role { margin: 6px 0 0; font-size: 14px; color: var(--brand-navy); font-weight: 500; }
.team-card .bio { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* ---- Portfolio grid ---- */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 940px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pf-grid { grid-template-columns: 1fr; } }
.pf-card { padding: 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s; }
.pf-card:hover { transform: translateY(-4px); border-color: var(--brand-cyan); box-shadow: 0 18px 40px rgba(16,46,94,0.10); }
.pf-logo {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #1f3b2c 0%, #3f684d 60%, #84a48b 130%);
  color: #fff; font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
}
.pf-card .pf-name { margin: 20px 0 0; font-size: 20px; font-weight: 500; }
.pf-card .pf-sector { margin: 6px 0 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.pf-card .pf-desc { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.pf-card .pf-stage { margin-top: 18px; display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--paper); font-size: 12px; color: var(--ink); }

/* ---- CTA band ---- */
.cta-band { padding: 110px 0; background: linear-gradient(135deg, #0c0f0c 0%, #20402c 55%, #0c0f0c 100%); color: #fff; text-align: center; }
.cta-band h2 { margin: 0 auto; max-width: 880px; }
.cta-band .page-lede { margin: 22px auto 0; color: rgba(255,255,255,0.84); text-align: center; }
.cta-band .cta-row { margin-top: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Feature checklist (two-column prose) ---- */
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; align-items: start; }
@media (max-width: 940px) { .prose-grid { grid-template-columns: 1fr; gap: 32px; } }
.prose-grid p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.prose-grid p + p { margin-top: 18px; }
.checklist { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink); }
.checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--brand-cyan); }

/* ---- Contact page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
@media (max-width: 940px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.contact-aside .eyebrow { color: var(--ink-soft); }
.contact-aside h2 { margin: 14px 0 0; }
.contact-aside .page-lede { margin-top: 20px; }
.contact-aside .detail { margin-top: 28px; display: flex; flex-direction: column; gap: 4px; }
.contact-aside .detail .k { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.contact-aside .detail a, .contact-aside .detail span { font-size: 17px; color: var(--ink); }
.contact-card { padding: 40px; border-radius: 24px; background: var(--paper); border: 1px solid var(--line); }
.contact-card .form { margin: 0; max-width: none; }

.btn-dark-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 28px; border-radius: 999px; font-weight: 500; font-size: 16px;
  transition: border-color 0.2s, background-color 0.2s;
}
.btn-dark-outline:hover { border-color: var(--ink); background: rgba(16,46,94,0.04); }

/* ---- FAQ / Q&A ---- */
.faq { margin-top: 44px; border-top: 1px solid var(--line); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; font-family: inherit;
  padding: 28px 0; display: flex; justify-content: space-between; gap: 28px; align-items: center;
  font-size: clamp(17px, 1.6vw, 21px); font-weight: 500; color: var(--ink);
}
.faq-q .ic { flex-shrink: 0; color: var(--brand-navy); transition: transform 0.3s ease; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p { margin: 0 0 28px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 760px; }

/* ============================================================
   MOBILE NAV + RESPONSIVE FIXES
   ============================================================ */
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 999px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; color: inherit; cursor: pointer;
  padding: 0; margin-left: 2px;
}
.nav-toggle:hover { background: rgba(127,127,127,0.12); }
.header.dark .nav-toggle:hover { background: rgba(255,255,255,0.12); }
@media (max-width: 1023px) { .nav-toggle { display: inline-flex; } }
@media (max-width: 560px) { .header .actions .contact { display: none; } }

.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 24px 48px rgba(16,46,94,0.14);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 22px;
  display: flex; flex-direction: column;
}
.mobile-menu a {
  padding: 16px 4px; font-size: 17px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu-actions { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu-actions a {
  flex: 1; text-align: center; padding: 14px; border-radius: 999px;
  font-weight: 500; border-bottom: 0;
}
.mobile-menu-actions .mm-contact { background: var(--paper); color: var(--ink); }
.mobile-menu-actions .mm-apply { background: var(--brand-amber); color: var(--amber-ink); font-weight: 600; }
.mobile-menu-actions .mm-in {
  background: var(--paper); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}

/* ---- Mobile hero (animated morph): keep the avatar clear of the text ---- */
@media (max-width: 768px) {
  .hero-text { padding-top: 110px; }
  .hero-text h1 { font-size: clamp(25px, 7.2vw, 40px); }
  .hero-text p { font-size: 15px; line-height: 1.42; margin-top: 14px; max-width: 460px; }
  .hero-text .cta-row { margin-top: 20px; gap: 10px; flex-wrap: nowrap; }
  .hero-text .cta-row .btn-primary,
  .hero-text .cta-row .btn-ghost-light { font-size: 14px; padding: 13px 18px; white-space: nowrap; }
  /* Raise the morph cards so the (larger) avatar sits higher, just below the CTAs */
  .card-stage { padding-top: 33vh; padding-bottom: 18px; }
}

/* ---- Wide sections: don't clip content on mobile ---- */
@media (max-width: 768px) {
  .wide-section { height: auto; min-height: 0; max-height: none; overflow: visible; }
  .wide-section .container { height: auto; padding-top: 76px; padding-bottom: 76px; min-width: 0; max-width: 100%; }
  .wide-section .tabs { flex-wrap: wrap; justify-content: center; margin-top: 56px; gap: 4px; }
  .wide-section .tab-btn { padding: 9px 14px; font-size: 13px; }
  .exit-stats {
    margin-top: 36px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    min-width: 0; width: 100%; gap: 12px !important;
  }
}

/* ---- Acqius logotype (serif, stacked) ---- */
.logo-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* ---- Services dropdown ---- */
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 7px; }
.nav-dd .chev { transition: transform 0.2s ease; }
.nav-dd.open .chev { transform: rotate(180deg); }
.nav-dd-panel { position: absolute; top: 100%; left: 0; padding-top: 10px; z-index: 70; }
.nav-dd-panel .inner {
  min-width: 252px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(20,37,26,0.18);
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.header nav .nav-dd-panel .inner a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.header nav .nav-dd-panel .inner a:hover,
.header.dark nav .nav-dd-panel .inner a:hover { background: var(--paper); }
.mobile-menu a.sub { padding-left: 22px; font-size: 15px; color: var(--ink-soft); }

/* ---- Header phone ---- */
@media (max-width: 1279px) { .header .actions .tel { display: none; } }

/* ---- Stats band ---- */
.stats-band {
  background: var(--brand-sage);
  color: #fff;
  padding: 56px 0;
}
.stats-band .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 900px) {
  .stats-band .grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}
.stat .v {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
}
.stat .v.sm { font-size: clamp(19px, 1.7vw, 27px); padding-top: clamp(5px, 1vw, 14px); }
.stat .l {
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
}

/* ---- News cards ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 240px;
  padding: 30px 28px;
  border-radius: 22px;
  background: #14251a;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(20,37,26,0.5);
}
.news-card .k {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.news-card h3 {
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.news-card .lm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-amber);
}

/* ---- Green content band (four divisions) ---- */
.band-green {
  background: #3f684d;
  color: #fff;
  padding: 100px 0;
}
.band-green .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 72px;
  margin-top: 56px;
}
@media (max-width: 900px) { .band-green .grid2 { grid-template-columns: 1fr; gap: 40px; } }
.band-green h3 {
  margin: 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
}
.band-green p {
  margin: 16px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
}

/* ---- Amber CTA band ---- */
.band-amber {
  background: linear-gradient(120deg, #f5b968 0%, #efa14e 55%, #e08a35 100%);
  color: var(--amber-ink);
  padding: 110px 0;
}
.band-amber .hd { color: var(--amber-ink); }
.band-amber .sub {
  margin: 22px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
}
.band-amber .cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-deep {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #1c2a20; color: #fff;
  font-size: 17px; font-weight: 500;
  border-radius: 999px;
  padding: 15px 30px;
  transition: transform 0.25s, opacity 0.2s;
}
.btn-deep:hover { transform: scale(1.02); opacity: 0.94; }
.band-amber .tel-lg {
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---- Testimonials ---- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.quote-card blockquote {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
}
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .who .nm { margin: 0; font-weight: 600; font-size: 15px; }
.quote-card .who .rl { margin: 2px 0 0; font-size: 13.5px; color: var(--ink-soft); }

/* ---- NDA / Teaser pills ---- */
.deal-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.deal-pill {
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.deal-pill.dark { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }
.deal-pill.light { background: var(--paper); border: 1px solid var(--line); color: var(--ink); }

/* ---- Stacked sticky news panels ---- */
.news-stack {
  position: relative;
  background: #fff;
}
.news-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  border-radius: 1.75rem 1.75rem 0 0;
  box-shadow: 0 -24px 70px -15px rgba(0,0,0,0.4);
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-panel { border-radius: 2.5rem 2.5rem 0 0; }
}
.news-panel .inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) { .news-panel .inner { padding: 80px 48px; } }
@media (min-width: 768px) { .news-panel .inner { padding: 96px 64px; } }
@media (min-width: 1024px) { .news-panel .inner { padding: 96px 96px; } }
.news-panel .head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: -0.01em;
  font-size: clamp(16px, 1.5vw, 20px);
}
@media (min-width: 640px) { .news-panel .head { gap: 16px; } }
.news-panel .idx { color: #94a3b8; font-variant-numeric: tabular-nums; }
.news-panel .lbl { color: #0f172a; font-weight: 500; }
.news-panel .statement {
  margin: 0 0 clamp(48px, 15vh, 170px);
  font-family: 'Instrument Serif', var(--font-serif), serif;
  font-weight: 400;
  color: #0f172a;
  font-size: clamp(30px, 5.4vw, 72px);
  line-height: 1.06;
  max-width: 1024px;
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1), transform 0.85s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}

/* ---- Service photo tiles ---- */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .svc-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-tiles { grid-template-columns: 1fr; } }
.svc-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #14251a;
  isolation: isolate;
}
.svc-tile .media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.svc-tile:hover .media { transform: scale(1.09); }
.svc-tile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,15,12,0.92) 0%, rgba(20,37,26,0.5) 42%, rgba(20,37,26,0.12) 100%);
}
.svc-tile .ph-label {
  position: absolute; top: 16px; left: 18px; right: 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.svc-tile .content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 24px;
  color: #fff;
}
.svc-tile .k {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-amber);
}
.svc-tile .svc-name {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 27px);
}
.svc-tile .go {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  transform: translateX(0);
  transition: gap 0.3s ease, transform 0.3s ease;
}
.svc-tile:hover .go { gap: 14px; }

/* ---- Hero glass stat row ---- */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 19;
  pointer-events: none;
}
.hero-glass-card {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(14,22,16,0.56);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 20px 50px -26px rgba(0,0,0,0.7);
  min-width: 200px;
}
.hero-glass-card.left { left: clamp(16px, 4vw, 68px); max-width: 300px; }
.hero-glass-card.right {
  /* Centred along the bottom of the hero, clear of the headline / CTA column. */
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(24px, 6vh, 72px);
  transform: translateX(-50%);
  width: clamp(320px, 34vw, 520px);
  min-width: 0;
}
@media (max-width: 1180px) {
  .hero-glass-card.right { padding: 18px 22px; }
  .hero-glass-card.right .v { font-size: 34px; }
  .hero-glass-card.right .l { font-size: 13px; }
}
.hero-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.hero-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--brand-amber);
  background: rgba(239,161,78,0.14);
  border: 1px solid rgba(239,161,78,0.4);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}
.hero-glass-card .detail {
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  max-width: 240px;
}
.hero-mini-chart { margin-top: 14px; width: 100%; height: 62px; display: block; }
.hero-months { margin-top: 8px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.55); }
.hero-card-badge {
  position: absolute;
  top: -108px;
  right: -14px;
  width: 190px;
  height: 92px;
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  background: rgba(14,22,16,0.56);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 42px -22px rgba(0,0,0,0.7);
}
.hero-card-badge .bv {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--brand-amber);
}
.hero-card-badge .bl { font-size: 11.5px; font-weight: 500; line-height: 1.2; color: rgba(255,255,255,0.82); }
.hero-glass-card .v {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1;
}
.hero-glass-card .l {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 900px) {
  .hero-floats { display: none; }
}
/* The bottom-centred card needs vertical room below the CTA row. Tighten its
   offset on short windows, and only drop it where it would actually collide. */
@media (max-height: 700px) and (min-width: 901px) {
  .hero-glass-card.right { bottom: 18px; padding: 18px 22px; }
  .hero-glass-card.right .v { font-size: 34px; }
}
@media (max-height: 620px) and (min-width: 901px) {
  .hero-floats { display: none; }
}


/* ---- Glass bento ---- */
.glass-bento {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #14251a 0%, #20402c 46%, #2c5138 100%);
  padding: 110px 0;
}
.glass-bento .orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}
.glass-bento .grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: 18px;
  margin-top: 52px;
}
.glass-bento .wide { grid-column: 1 / -1; }
@media (max-width: 820px) {
  .glass-bento .grid { grid-template-columns: 1fr; }
}
.glass-card {
  border-radius: 34px;
  padding: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 24px 60px -30px rgba(0,0,0,0.6);
  color: #fff;
}
.glass-card .stat-big {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.05em;
  font-weight: 700;
  line-height: 0.92;
  font-size: clamp(72px, 9vw, 128px);
  color: var(--brand-amber);
}
.glass-card .stat-label {
  margin: 22px 0 0;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  max-width: 340px;
}
.glass-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 380px;
}
.glass-card p.sub { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 360px; }
.transfer-row {
  margin-top: 40px;
  display: flex; align-items: center; gap: 22px;
}
.transfer-node {
  width: 78px; height: 78px;
  border-radius: 20px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.transfer-node.amber { background: var(--brand-amber); color: var(--amber-ink); }
.transfer-node.dark { background: #0c1610; color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.transfer-arrows { flex: 1; display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,0.5); }
.glass-card.wide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .glass-card.wide { grid-template-columns: 1fr; gap: 28px; } }
.deal-panel {
  border-radius: 18px;
  padding: 26px 28px;
  background: rgba(12,15,12,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.deal-panel .row-top { display: flex; align-items: center; justify-content: space-between; }
.deal-panel .k { font-size: 13px; color: rgba(255,255,255,0.6); }
.deal-panel .pill { font-size: 12px; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 4px 12px; }
.deal-panel .amount {
  margin: 10px 0 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  color: #fff;
}
.deal-panel .chart { margin-top: 20px; width: 100%; height: auto; display: block; }
.deal-panel .months { margin-top: 10px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---- Cookie consent ---- */
.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6,10,7,0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-consent {
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 34px 34px 30px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
}
.cc-title {
  margin: 0 0 16px;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
  color: var(--ink);
}
.cc-body { margin: 0 0 20px; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.cc-body a { color: var(--ink); text-decoration: underline; }
.cc-accept {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
  background: var(--brand-amber); color: var(--amber-ink);
  border: none; cursor: pointer;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 14px;
  padding: 17px 22px;
  border-radius: 4px;
  transition: filter 0.2s;
}
.cc-accept:hover { filter: brightness(1.04); }
.cc-toggle-row { display: flex; align-items: center; gap: 16px; margin: 22px 0; }
.cc-toggle {
  flex-shrink: 0;
  width: 52px; height: 28px;
  border-radius: 999px;
  background: #c6ccd1;
  border: none; cursor: pointer; padding: 0;
  position: relative;
  transition: background 0.2s;
}
.cc-toggle.on { background: var(--brand-amber); }
.cc-toggle.disabled { background: #f6d5ac; cursor: default; }
.cc-toggle .knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 999px; background: #fff;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.cc-toggle.on .knob { left: 27px; }
.cc-toggle-label {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 19px;
  color: var(--ink);
}
.cc-toggle-label.muted { color: #9aa1a7; }
.cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
@media (max-width: 460px) { .cc-actions { grid-template-columns: 1fr; } }
.cc-outline {
  background: transparent;
  border: 1px solid var(--brand-amber);
  color: #c07d1f; cursor: pointer;
  font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  font-size: 12.5px;
  padding: 15px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.cc-outline:hover { background: var(--brand-amber); color: var(--amber-ink); }

/* ---- Google-style reviews ---- */
.g-summary {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
}
.g-score { font-size: 22px; font-weight: 700; color: var(--ink); }
.g-stars { display: inline-flex; gap: 2px; }
.g-based { font-size: 14.5px; color: var(--ink-soft); margin-left: 4px; }
.g-word {
  font-size: 18px; font-weight: 500;
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.g-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 720px) { .g-grid { grid-template-columns: 1fr; } }
.g-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}
.g-card:hover { box-shadow: 0 12px 30px -14px rgba(0,0,0,0.18); transform: translateY(-3px); }
.g-head { display: flex; align-items: center; gap: 12px; }
.g-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  color: #fff; font-size: 19px; font-weight: 600;
  flex-shrink: 0;
}
.g-meta { flex: 1; min-width: 0; }
.g-name { margin: 0; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.g-role { margin: 2px 0 0; font-size: 13px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g-logo { flex-shrink: 0; opacity: 0.9; }
.g-rating { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.g-date { font-size: 13px; color: var(--ink-soft); }
.g-text { margin: 12px 0 0; font-size: 14.5px; line-height: 1.6; color: #3c4043; }

/* ---- Why Acqius bento (light) ---- */
.why-bento { background: var(--paper); padding: 110px 0; overflow-x: clip; }
.why-bento .container { max-width: none; padding-left: clamp(16px, 2vw, 34px); padding-right: clamp(16px, 2vw, 34px); }
.why-bento .head { text-align: center; max-width: 900px; margin: 0 auto; }
.why-eyebrow { margin: 0; color: var(--brand-sage); letter-spacing: 0.28em; text-transform: uppercase; font-size: 13px; font-weight: 600; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.why-grid > .wide { grid-column: 1 / -1; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #eaf0ec;
  border-radius: 28px;
  padding: 52px;
}
.why-card .big {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.05em;
  font-weight: 700;
  line-height: 0.9;
  font-size: clamp(64px, 8vw, 120px);
  color: var(--brand-green);
}
.why-card .big-sub { margin: 26px 0 0; font-size: clamp(19px, 1.8vw, 24px); font-weight: 500; line-height: 1.35; color: var(--ink); max-width: 340px; }
.why-card h3 { margin: 0; font-size: clamp(22px, 2vw, 30px); font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); max-width: 380px; }
.why-transfer { margin-top: 44px; display: flex; align-items: center; gap: 22px; }
.wt-node { width: 78px; height: 78px; border-radius: 18px; display: grid; place-items: center; flex-shrink: 0; }
.wt-node.teal { background: var(--brand-green); color: #fff; }
.wt-node.dark { background: #0c1610; color: #fff; }
.wt-arrows { flex: 1; color: #9aa8a0; }
.why-card.wide { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; padding: 64px 60px; }
@media (max-width: 720px) { .why-card.wide { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 760px) {
  .why-bento .container { padding-left: 20px; padding-right: 20px; }
  .why-card { padding: 28px; min-width: 0; }
  .why-card.wide { padding: 28px; }
  .why-wide-left h3, .why-card h3 { max-width: 100%; }
  .why-stat { padding: 16px; min-width: 0; }
  .why-stat .v { min-width: 0; }
  .why-panel { padding: 22px; min-width: 0; }
  .why-card .big { font-size: clamp(56px, 16vw, 88px); }
  .why-card .big-sub { max-width: 100%; }
}
.why-wide-left h3 { max-width: 340px; }
.why-stats { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 700px) { .why-stats { gap: 12px; } }
.why-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
}
.why-stat .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-green); color: #fff; flex-shrink: 0; }
.why-stat .v { flex-shrink: 0; min-width: 108px; }
.why-stat .v {
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.why-stat .l { font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
.why-panel { background: #fff; border-radius: 20px; padding: 30px 32px; }
.why-panel-head { display: flex; align-items: center; justify-content: space-between; }
.why-panel-head .k { font-size: 13.5px; color: var(--ink-soft); }
.why-panel-head .pill { font-size: 12px; color: var(--brand-green); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; }
.why-panel-amount {
  margin: 12px 0 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 48px);
  color: var(--ink);
  line-height: 1;
}
.why-panel-chart { margin-top: 18px; width: 100%; height: 150px; display: block; }
.why-panel-months { margin-top: 10px; display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); }

/* ---- Businesses for sale (carousel) ---- */
.bfs-section { background: #fff; padding: 100px 0; }
.bfs-section .container { max-width: none; padding-left: clamp(20px, 3vw, 56px); padding-right: clamp(20px, 3vw, 56px); }
.bfs-title {
  margin: 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  color: var(--brand-sage);
}
.bfs-rule { height: 1px; background: var(--line); margin: 22px 0 40px; }
.bfs-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.bfs-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: none;
  flex: 1;
  padding: 34px clamp(14px, 2vw, 34px);
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bfs-track:active { cursor: grabbing; }
.bfs-card img, .bfs-card { user-select: none; }
.bfs-track::-webkit-scrollbar { display: none; }
.bfs-card {
  position: relative;
  flex: 0 0 calc((100vw - 3 * 20px - 2 * clamp(14px, 2vw, 34px)) / 4);
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: #3f684d;
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 50px -26px rgba(20,37,26,0.5);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.bfs-card:nth-child(5n+1) { transform: rotate(-4deg) translateY(12px); }
.bfs-card:nth-child(5n+2) { transform: rotate(-1.5deg) translateY(3px); }
.bfs-card:nth-child(5n+3) { transform: rotate(0deg) translateY(-2px); }
.bfs-card:nth-child(5n+4) { transform: rotate(1.5deg) translateY(3px); }
.bfs-card:nth-child(5n+5) { transform: rotate(4deg) translateY(12px); }
.bfs-card:hover { transform: rotate(0deg) translateY(-6px) scale(1.03); z-index: 2; }
@media (max-width: 760px) {
  .bfs-card { flex-basis: 100%; }
  .bfs-card:nth-child(n) { transform: none; }
}
.bfs-watermark {
  position: absolute;
  left: 50%; top: 58%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(40px, 6vw, 72px);
  color: rgba(255,255,255,0.13);
  pointer-events: none;
  white-space: nowrap;
}
.bfs-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,17,11,0.55) 0%, rgba(10,17,11,0.15) 45%, rgba(10,17,11,0.35) 100%); }
.bfs-content { position: absolute; inset: 0; padding: 26px 24px; color: #fff; z-index: 1; }
.bfs-content h3 {
  margin: 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.05;
}
.bfs-sector { margin: 16px 0 0; font-size: 14.5px; font-weight: 500; line-height: 1.4; }
.bfs-docs { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; align-items: flex-start; }
.bfs-doc {
  font-size: 15px;
  color: #fff;
  position: relative;
}
.bfs-doc::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--brand-amber);
  transition: width 0.25s ease;
}
.bfs-doc:hover { color: var(--brand-amber); }
.bfs-doc:hover::after { width: 100%; }
.bfs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--brand-green);
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.2s;
}
.bfs-arrow.prev { left: 18px; }
.bfs-arrow.next { right: 18px; }
.bfs-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
@media (max-width: 620px) { .bfs-arrow { display: none; } }
.bfs-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.bfs-dot {
  width: 11px; height: 11px; border-radius: 999px;
  border: none; padding: 0; cursor: pointer;
  background: #cfd7d1;
  transition: background 0.2s, transform 0.2s;
}
.bfs-dot.active { background: var(--brand-amber); transform: scale(1.1); }

/* ---- Dark green footer ---- */
.footer-dark {
  background: #1c3527;
  color: #fff;
  padding: 76px 0 44px;
}
.footer-dark .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
  gap: 48px;
}
@media (max-width: 940px) { .footer-dark .cols { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-dark .cols { grid-template-columns: 1fr; } }
.footer-dark h3 {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer-dark .award-badge {
  display: block;
  width: 152px;
  height: auto;
  margin-top: 26px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 900px) {
  .footer-dark .award-badge { width: 112px; }
}
.footer-dark ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-dark ul a { font-size: 14.5px; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.footer-dark ul a:hover { color: #fff; }
.footer-dark .in-badge {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  transition: background 0.2s;
}
.footer-dark .in-badge:hover { background: rgba(255,255,255,0.2); }
.footer-dark .disclaimer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
}
.footer-dark .disclaimer p { margin: 0 0 10px; }

/* ---- Sector chips (light) ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip-lg {
  padding: 13px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* ---- MaaS pricing ---- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 940px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.price-card.deep { background: #1c3527; color: #fff; border-color: transparent; }
.price-card.amber { background: linear-gradient(135deg, #f5b968, #efa14e); color: var(--amber-ink); border-color: transparent; }
.price-card.sage { background: var(--brand-sage); color: #fff; border-color: transparent; }
.price-card .tier { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; opacity: 0.8; }
.price-card .amount {
  margin: 16px 0 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
}
.price-card .amount span { font-size: 15px; font-weight: 500; letter-spacing: 0; }
.price-card .for { margin: 10px 0 0; font-size: 14px; opacity: 0.85; line-height: 1.5; }
.price-card ul { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.price-card li::before { content: ''; width: 6px; height: 6px; margin-top: 8px; border-radius: 999px; background: currentColor; opacity: 0.6; flex-shrink: 0; }


/* ---- Logo lockup (trademark logotype image) ---- */
.logo-stack { position: relative; display: block; height: 30px; }
@media (min-width: 768px) { .logo-stack { height: 34px; } }
.logo-stack img { display: block; height: 100%; width: auto; transition: opacity 0.3s ease; }
.logo-stack .lg-green { position: absolute; top: 0; left: 0; opacity: 0; }
.header.light .logo-stack .lg-white { opacity: 0; }
.header.light .logo-stack .lg-green { opacity: 1; }
.footer-dark .logo-stack { height: 38px; }

/* ---- Sector photo tiles (Industries) ---- */
.sector-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-top: 40px; }
@media (max-width: 1180px) { .sector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px) { .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 440px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-tile {
  position: relative; display: block; aspect-ratio: 1 / 1;
  border-radius: 18px; overflow: hidden; background: #14251a; isolation: isolate;
}
.sector-tile .media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.sector-tile:hover .media { transform: scale(1.1); }
.sector-tile .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,15,12,0.92) 0%, rgba(20,37,26,0.45) 55%, rgba(20,37,26,0.06) 100%);
}
.sector-tile .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 20px;
  color: #fff; font-size: 15.5px; font-weight: 500; line-height: 1.3; text-wrap: pretty;
}
.sector-tile .idx {
  position: absolute; top: 16px; left: 18px;
  font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.6);
}

/* ---- News cards with photography ---- */
.news-card.photo { padding: 0; gap: 0; min-height: 0; overflow: hidden; }
.news-card.photo .shot { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0c0f0c; }
.news-card.photo .shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02); transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.news-card.photo:hover .shot img { transform: scale(1.08); }
.news-card.photo .body {
  flex: 1; padding: 26px 28px 30px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
}
.news-card.photo h3 { margin: 12px 0 0; font-size: 21px; }
@media (max-width: 600px) { .news-card.photo h3 { font-size: 19px; } }

/* ---- Deal cards with photography ---- */
.pf-card.photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pf-card.photo .shot { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #14251a; }
.pf-card.photo .shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02); transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.pf-card.photo:hover .shot img { transform: scale(1.08); }
.pf-card.photo .shot .pf-logo {
  position: absolute; top: 14px; left: 14px;
  width: 44px; height: 44px; border-radius: 12px; font-size: 14.5px;
  box-shadow: 0 8px 20px rgba(12,15,12,0.35);
}
.pf-card.photo .body { flex: 1; padding: 24px 26px 28px; display: flex; flex-direction: column; }
.pf-card.photo .pf-name { margin: 0; }
.pf-card.photo .deal-pills { margin-top: auto; padding-top: 18px; }


/* ---- Leadership cards with portrait photography ---- */
.team-card.photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; background: #fff; border-color: var(--line); }
.team-card.photo .portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #e4e8e3; }
.team-card.photo .portrait img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.01);
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.team-card.photo:hover .portrait img { transform: scale(1.05); }
.team-card.photo .body { flex: 1; padding: 28px 30px 30px; display: flex; flex-direction: column; }
.team-card.photo .name { margin: 0; font-size: 21px; }
@media (max-width: 940px) { .team-card.photo .portrait { aspect-ratio: 3 / 2; } }


/* ---- Latest news (home) ---- */
.ln-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1100px) { .ln-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .ln-grid { grid-template-columns: 1fr; } }
.ln-card {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4; border-radius: 4px; background: #14251a; isolation: isolate;
}
@media (max-width: 620px) { .ln-card { aspect-ratio: 4 / 3; } }
.ln-card .media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
}
.ln-card:hover .media { transform: scale(1.08); }
.ln-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,9,0.94) 0%, rgba(12,20,14,0.68) 38%, rgba(12,20,14,0.28) 70%, rgba(12,20,14,0.18) 100%);
}
.ln-card .content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 18px;
  color: #fff;
}
.ln-card h3 {
  margin: 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 21px;
  line-height: 1.14;
  text-wrap: pretty;
}
@media (max-width: 1100px) { .ln-card h3 { font-size: 23px; } }
.ln-card .lm {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-amber);
  transition: gap 0.3s ease;
}
.ln-card:hover .lm { gap: 15px; }
.ln-more { margin-top: 40px; display: flex; justify-content: center; }


/* ---- Article / press release ---- */
.page-hero.article h1 {
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.08;
  max-width: 1040px;
  text-transform: none;
}
.page-hero .hero-meta {
  margin: 24px 0 0;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.art-figure { margin: 0 auto; max-width: 820px; }
.art-figure .shot { border-radius: 20px; overflow: hidden; background: #14251a; aspect-ratio: 16 / 9; }
.art-figure .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-figure figcaption {
  margin: 16px 0 0;
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.article-body { max-width: 820px; margin-left: auto; margin-right: auto; }
.article-body p { margin: 0 0 22px; font-size: 17px; line-height: 1.72; color: var(--ink-soft); text-wrap: pretty; }
.article-body p:last-child { margin-bottom: 0; }
.article-body .stand-first { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.5; color: var(--ink); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--brand-sage); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--ink); }
.article-body h2 {
  margin: 48px 0 20px;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  color: var(--brand-sage);
}
.article-body h3 {
  margin: 40px 0 16px;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 600; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
}
.article-body h3:first-child { margin-top: 0; }
.deal-strip {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 18px;
  margin: 0 0 48px;
}
@media (max-width: 760px) { .article-body h3 {
  margin: 40px 0 16px;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 600; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
}
.article-body h3:first-child { margin-top: 0; }
.deal-strip { grid-template-columns: 1fr; } }
.deal-party { padding: 26px 28px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line); }
.deal-party .role { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.deal-party .co {
  margin: 12px 0 0;
  font-family: var(--font-helios);
  font-variation-settings: "wdth" 125;
  font-stretch: 125%;
  font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em;
  font-size: clamp(20px, 2vw, 27px); line-height: 1.05; color: var(--ink);
}
.deal-party .note { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.deal-join { display: grid; place-items: center; color: var(--brand-sage); }
@media (max-width: 760px) { .deal-join svg { transform: rotate(90deg); } }
.art-quote { margin: 0 0 30px; padding: 0; }
.art-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45; color: var(--ink);
}
.art-quote footer { margin-top: 16px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.art-contact { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.art-contact .lbl { display: block; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.art-back { display: inline-flex; align-items: center; gap: 9px; margin-top: 44px; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-sage); }
.art-back:hover { color: var(--ink); }


/* ---- Partner logo row (deal announcement) ---- */
.logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(48px, 10vw, 150px);
  flex-wrap: wrap;
  margin: 64px 0 56px;
  padding: 8px 0;
}
.logo-row img { display: block; width: auto; height: auto; }
.logo-row .fs { max-height: 84px; max-width: 210px; }
.logo-row .wt { max-height: 62px; max-width: 330px; }
@media (max-width: 600px) {
  .logo-row { gap: 40px; margin: 44px 0 40px; }
  .logo-row .fs { max-height: 66px; }
  .logo-row .wt { max-height: 48px; }
}


/* ---- Photographic page hero ---- */
.page-hero.has-bg { background: #0c130e; }
.page-hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero .hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(8,12,9,0.92) 0%, rgba(12,22,15,0.62) 44%, rgba(12,22,15,0.3) 74%, rgba(12,22,15,0.38) 100%),
    linear-gradient(to right, rgba(8,12,9,0.58) 0%, rgba(8,12,9,0.04) 68%);
}
.page-hero.has-bg .container { padding-top: 40px; }
.page-hero.article.has-bg { min-height: 62vh; display: flex; align-items: flex-end; }
@media (max-width: 768px) { .page-hero.article.has-bg { min-height: 56vh; } }


/* Article hero shares the body's centred 820px measure */
.page-hero.article .container > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero.article h1 { max-width: 820px; }


/* Deal card: whole-card link sits under the document buttons so both work */
.pf-card.photo { position: relative; }
.pf-cover { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.pf-card.photo .body, .pf-card.photo .shot { position: relative; }
.pf-card.photo .deal-pills { position: relative; z-index: 2; }
a.deal-pill { text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
a.deal-pill.light:hover { background: var(--brand-sage); border-color: var(--brand-sage); color: #fff; }
