/* ============================================================
   PRUDIV CAPITAL — shared styles (mobile-first, responsive)
   Design tokens taken directly from the Figma / Anima export
   ============================================================ */

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

:root {
  --bluedark:        #061127;
  --bluedirty:       #515868;
  --blueextra-dark:  #040d1e;
  --blueextra-light: #f3f6fa;
  --bluelight:       #e1e5ee;
  --blueregular:     #334975;
  --greendark:       #013b3d;
  --greenlight:      #317c73;
  --green:           #14ae5c;
  --greenhover:      #2c7068;
  --neutraldark:     #4d4d4d;
  --neutrallight:    #dbdbdb;
  --neutralregular:  #808080;
  --neutralwhite:    #ffffff;

  --maxw: 1344px;            /* content max width (matches desktop frame) */
  --pad-x: 20px;             /* mobile gutter */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Actor', Helvetica, sans-serif;
  background: var(--neutralwhite);
  color: var(--bluedark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Reusable CTA button ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 24px;
  background: var(--greenlight);
  color: var(--neutralwhite);
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 17.6px;
  border-radius: 2px;
  border: none;
  white-space: nowrap;
  transition: background .2s;
}
.cta-btn:hover { background: var(--greenhover); }
.cta-btn img { width: 16px; height: 16px; }

/* ============================================================
   ANIMATIONS (scroll reveals, line draw, hero intro)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* fade-up reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }

  /* line draw on scroll (like being drawn/typed) */
  .draw-x { transform: scaleX(0); transform-origin: left center; transition: transform 1s cubic-bezier(.22,.61,.36,1); }
  .draw-x.in { transform: scaleX(1); }
  .draw-y { transform: scaleY(0); transform-origin: top center; transition: transform 1s cubic-bezier(.22,.61,.36,1); }
  .draw-y.in { transform: scaleY(1); }

  /* hero intro (fade-up on load) */
  .hero-intro { opacity: 0; transform: translateY(20px); animation: heroIntro .9s cubic-bezier(.22,.61,.36,1) forwards; }
  @keyframes heroIntro { to { opacity: 1; transform: none; } }

  /* hero sub-text: word-by-word "typing-like" fade in */
  .hero-word { display: inline-block; opacity: 0; transform: translateY(8px); animation: wordIn .55s cubic-bezier(.22,.61,.36,1) forwards; }
  @keyframes wordIn { to { opacity: 1; transform: none; } }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bluedark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad-x);
  border-top: 2px solid var(--blueregular);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.logo-img { height: 30px; width: auto; }
.logo-wrap { display: flex; align-items: center; }

.header-right { display: flex; align-items: center; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.primary-nav > a {
  font-size: 14px;
  line-height: 15.4px;
  color: var(--neutralwhite);
  white-space: nowrap;
  transition: opacity .2s;
}
.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] { opacity: .7; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: var(--neutralwhite);
  white-space: nowrap;
}
.nav-cta img { width: 16px; height: 16px; }

/* hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutralwhite);
  margin: 0 auto;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile: hide nav, show toggle; nav drops down when open */
@media (max-width: 859px) {
  .header-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bluedark);
    border-bottom: 1px solid rgba(255,255,255,.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .header-right.open { max-height: 420px; }
  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .primary-nav > a {
    width: 100%;
    padding: 16px var(--pad-x);
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }
  .nav-cta { padding: 16px var(--pad-x); border-top: 1px solid rgba(255,255,255,.08); }
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-header { padding: 0 48px; min-height: 68px; }
  .logo-img { height: 34px; }
  .header-right {
    align-self: stretch;
    flex: 0 0 52%;
    justify-content: space-between;
    border-left: 1px solid rgba(255,255,255,.18);
    padding-left: 48px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bluedark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px var(--pad-x) 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: var(--neutralwhite);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.25;
  color: var(--neutralwhite);
  max-width: 78%;
  align-self: flex-end;
  text-transform: uppercase;
}

@media (min-width: 860px) {
  .hero { min-height: calc(100vh - 70px); }
  .hero-bg-img { width: 60%; left: 0; right: auto; opacity: 1; object-position: left center; }
  /* home hero: cubes contained in the lower-left, below the heading (matches Figma) */
  .home-hero .hero-bg-img {
    width: auto;
    height: 78%;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    object-fit: contain;
    object-position: left bottom;
  }
  .hero-content {
    flex: 1;
    padding: 72px 48px 110px;
    max-width: var(--maxw);
    width: 100%;
    margin: 0 auto;
  }
  .hero h1 { font-size: clamp(48px, 6vw, 84px); margin-top: 12px; }
  .hero-sub {
    font-size: 32px;
    max-width: 440px;
    margin-top: auto;
    align-self: flex-end;
  }
}

/* ============================================================
   STRATEGY
   ============================================================ */
.strategy {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.strategy-divider { height: 1px; background: var(--neutrallight); }

.strategy-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0;
}
.section-num {
  font-size: 40px;
  line-height: 1.1;
  color: var(--greendark);
}
.strategy-text { display: flex; flex-direction: column; gap: 16px; }
.strategy-text h2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--bluedark);
}
.strategy-text h2 .accent { color: var(--greendark); font-style: italic; }
.strategy-text p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--bluedark);
  max-width: 475px;
}
.strategy-text .cta-btn { align-self: flex-start; margin-top: 8px; }

.strategy-rule { display: none; }
.strategy-img-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.strategy-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 860px) {
  .strategy {
    padding-top: 56px;
    padding-bottom: 88px;
  }
  .strategy-row {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 80px 0;
    position: relative;
    z-index: 3; /* lift row (and its cube) above the divider lines */
  }
  .section-num { flex: 0 0 auto; align-self: flex-start; padding-top: 4px; }
  /* constrained text block (matches Figma ~520px), vertically centred */
  .strategy-text { flex: 0 1 auto; width: 520px; align-self: center; }
  .strategy-img-wrap { width: 360px; max-width: none; flex-shrink: 0; align-self: center; position: relative; z-index: 5; }
  .strategy-divider { position: relative; z-index: 1; }

  /* vertical rule: positioned at the Figma fraction (not hugging the image) */
  .strategy-rule {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--neutrallight);
    z-index: 1;
  }
  .strategy-row:not(.reverse) .strategy-rule { left: 60.5%; }
  .strategy-row.reverse .strategy-rule { left: 33.9%; }

  /* row 01 (blue): number | text | … | image pinned right (larger) */
  .strategy-row:not(.reverse) .strategy-text { margin-left: 72px; }
  .strategy-row:not(.reverse) .strategy-img-wrap { margin-left: auto; width: 392px; margin-top: -120px; }

  /* row 02 (green): image pinned left | … | text | number far right */
  .strategy-row.reverse .strategy-img-wrap { order: -1; margin-right: auto; width: 332px; margin-bottom: -126px; background: var(--neutralwhite); }
  .strategy-row.reverse .strategy-text { order: 1; }
  .strategy-row.reverse .section-num { order: 2; }

  .strategy-text h2 { font-size: 40px; white-space: nowrap; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  background-color: var(--bluedark);
  background-image: url("../img/5.png");
  background-size: cover;
  background-position: center;
  padding: 56px var(--pad-x);
}
.team-section h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--neutralwhite);
  max-width: 596px;
  margin-bottom: 40px;
}
.team-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* staircase decorations are desktop-only */
.team-conn, .team-node { display: none; }
/* mobile: vertical timeline — circle icon node + connecting line per item */
.team-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 34px 64px;
}
.team-feature:last-child { padding-bottom: 0; }
.team-feature:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 54px;
  bottom: 2px;
  border-left: 1px dashed rgba(255,255,255,.35);
}
.tf-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: var(--blueextra-dark);
}
.tf-icon img { width: 20px; height: 20px; }
.team-feature h3 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--neutralwhite);
}
.team-feature p {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255,255,255,.7);
}

@media (min-width: 860px) {
  .team-section { padding: 52px 48px; }
  .team-section h2 { font-size: 48px; margin-bottom: 36px; }
  .team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 80px;
    max-width: 900px;
  }
  .team-feature {
    padding: 0 0 0 16px;
    border-left: 1px solid var(--neutralwhite);
  }
  .team-feature::before { display: none; }
  .tf-icon { display: none; }
  .team-feature h3 { font-size: 24px; }
}

@media (min-width: 1100px) {
  .team-features { grid-template-columns: repeat(4, 1fr); max-width: var(--maxw); }
}

/* desktop staircase diagram (home page) — coordinate system 1301 x 560 */
@media (min-width: 1200px) {
  .team-features.stair {
    display: block;
    position: relative;
    max-width: 1301px;
    height: 560px;
    margin: -150px auto 0; /* overlap the heading so the top step aligns with it */
  }
  .team-features.stair .team-feature {
    position: absolute;
    width: 300px;
    margin: 0;
    padding-left: 16px;
    border-left: 1px solid var(--neutralwhite);
  }
  /* keep titles on one line (Figma lets them overflow) so descriptions don't drop onto the connectors */
  .team-features.stair .team-feature h3 { white-space: nowrap; }
  .team-features.stair .team-feature p { width: 340px; white-space: normal; }
  /* dark halo masks the connector dots that pass behind the text, keeping it readable */
  .team-features.stair .team-feature h3,
  .team-features.stair .team-feature p {
    text-shadow: 0 0 7px var(--bluedark), 0 0 7px var(--bluedark), 0 0 12px var(--bluedark);
  }
  .team-features.stair .f-exit    { top: 474px; left: 0; }
  .team-features.stair .f-focused { top: 308px; left: 337px; }
  .team-features.stair .f-buyer   { top: 160px; left: 677px; }
  .team-features.stair .f-ops     { top: 0;     left: 1016px; }

  .team-features.stair .team-conn { display: block; position: absolute; }
  .team-features.stair .c-25-1 { top: 424px; left: 0;    width: 246px; }
  .team-features.stair .c-25-2 { top: 258px; left: 338px; width: 246px; }
  .team-features.stair .c-25-3 { top: 104px; left: 678px; width: 246px; }
  .team-features.stair .c-21-1 { top: 222px; left: 650px; width: 30px; }
  .team-features.stair .c-21-2 { top: 64px;  left: 989px; width: 30px; clip-path: inset(14px 0 0 0) }
  .team-features.stair .c-21-3 { top: 386px; left: 309px; width: 30px; }

  .team-features.stair .team-node {
    display: flex;
    position: absolute;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    background: var(--blueextra-dark);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 900px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .team-features.stair .team-node img { width: 20px; height: 20px; }
  .team-features.stair .n-flow   { top: 392px; left: 243px; }
  .team-features.stair .n-intent { top: 226px; left: 584px; }
  .team-features.stair .n-union  { top: 68px;  left: 925px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--pad-x);
}
.cta-banner-inner {
  background-color: var(--bluedark);
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 24px;
  text-align: center;
}
.cta-banner-inner h2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--neutralwhite);
  margin-bottom: 12px;
}
.cta-banner-inner p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--neutralwhite);
}

@media (min-width: 860px) {
  .cta-banner { padding: 40px 48px; }
  .cta-banner-inner { min-height: 459px; gap: 40px; padding: 48px; }
  .cta-banner-inner h2 { font-size: 48px; }
}

/* ============================================================
   HOME CONTACT SECTION
   ============================================================ */
.home-contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) 40px;
}
.home-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--neutrallight);
  border-bottom: 1px solid var(--neutrallight);
}
.hc-info { display: flex; flex-direction: column; gap: 32px; position: relative; }
.hc-info > * { position: relative; z-index: 1; }
.hc-form { display: flex; flex-direction: column; gap: 24px; }
.hc-form .form-desc { margin-top: -12px; }
.form-row-2 { display: flex; flex-direction: column; gap: 24px; }

@media (min-width: 860px) {
  .home-contact-grid { flex-direction: row; gap: 0; align-items: stretch; }
  .hc-info {
    flex: 1;
    justify-content: space-between;
    padding: 0 48px 0 0;
    min-height: 600px;
    overflow: hidden;
    background-image: url("../img/contact-shape.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
  }
  .hc-form {
    flex: 1;
    border-left: 1px solid var(--neutrallight);
    padding-left: 48px;
  }
  .form-row-2 { flex-direction: row; }
  .form-row-2 .field-group { flex: 1; }
}

/* ============================================================
   CONTACT (used on contact.html)
   ============================================================ */
.contact-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-block { display: flex; flex-direction: column; gap: 32px; }
.contact-heading {
  font-family: 'Actor', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  color: var(--bluedark);
}
.contact-divider { height: 1px; background: var(--neutrallight); }

.contact-methods { display: flex; gap: 32px; flex-wrap: wrap; }
.contact-method { display: flex; flex-direction: column; gap: 15px; }
.contact-pill {
  position: relative;
  height: 39px;
  min-width: 84px;
  background: var(--neutralwhite);
  border: 1px solid var(--neutralregular);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px 0 38px;
  font-size: 16px;
  color: var(--bluedark);
  white-space: nowrap;
}
.contact-pill img {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
}
.contact-value { font-size: 16px; color: var(--bluedark); line-height: 17.6px; }
.form-desc {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--neutraldark);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label {
  font-family: 'Actor', Helvetica, sans-serif;
  font-size: 16px;
  color: var(--neutraldark);
  line-height: 17.6px;
}
.field-group input, .field-group textarea {
  width: 100%;
  height: 58px;
  border: 1px solid var(--neutrallight);
  padding: 0 16px;
  font-family: 'Actor', Helvetica, sans-serif;
  font-size: 16px;
  color: var(--neutraldark);
  background: transparent;
  outline: none;
  line-height: 17.6px;
}
.field-group textarea { height: 155px; padding: 16px; resize: vertical; }
.field-group input:focus, .field-group textarea:focus { border-color: var(--greenlight); }
.form-send-btn {
  width: 100%;
  padding: 15px 46px;
  background: var(--greenlight);
  color: var(--neutralwhite);
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  transition: background .2s;
}
.form-send-btn:hover { background: var(--greenhover); }

@media (min-width: 860px) {
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 64px 48px;
    align-items: start;
  }
}

/* ============================================================
   ABOUT HERO (full hero variant)
   ============================================================ */
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: '•'; color: var(--greenlight); }
.hero-about h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: var(--neutralwhite);
}
.hero-aside { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.hero-about-text {
  text-transform: uppercase;
  color: var(--neutralwhite);
  font-size: 18px;
  line-height: 1.35;
  max-width: 460px;
}
.hero-aside .cta-btn { align-self: flex-start; }

.hero-about .hero-bg-img { opacity: .55; object-fit: cover; object-position: center; }

@media (min-width: 860px) {
  .hero-about h1 { font-size: clamp(44px, 5.5vw, 76px); margin-top: 12px; }
  .hero-about .hero-aside { margin-top: auto; align-self: flex-end; }
  .hero-about-text { font-size: 22px; max-width: 470px; }
  /* faint geometric panels span the whole hero (not the left-60% cube treatment) */
  .hero-about .hero-bg-img { width: 100%; left: 0; right: 0; }
}

/* ============================================================
   THE TEAM (about page, icon rows)
   ============================================================ */
.team-detail { background: var(--neutralwhite); padding: 0 var(--pad-x); }
.team-detail-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--neutrallight);
  padding: 40px 0;
}
.team-detail-grid { display: flex; flex-direction: column; gap: 32px; }
.team-detail-left { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.team-detail-left h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--bluedark);
}
.team-detail-left p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--bluedark);
  max-width: 440px;
}
.team-detail-rows { display: flex; flex-direction: column; }
.tdrow {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
}
.tdrow:not(:last-child) { border-bottom: 1px solid var(--neutrallight); }
.tdrow-icon { display: flex; align-items: center; padding: 22px 0; }
.tdrow-icon img { width: 30px; height: 30px; }
.tdrow p {
  padding: 22px 0 22px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--bluedark);
}

@media (min-width: 860px) {
  .team-detail { padding: 0 48px; }
  .team-detail-inner { padding: 0; }
  .team-detail-grid { flex-direction: row; gap: 0; align-items: stretch; }
  .team-detail-left { flex: 0 0 50%; min-width: 0; padding: 48px 48px 48px 0; justify-content: flex-start; }
  .team-detail-left h2 { font-size: 40px; }
  .team-detail-left p { font-size: 32px; line-height: 1.1; max-width: 540px; }
  .team-detail-rows { flex: 1 1 0; min-width: 0; border-left: 1px solid var(--neutrallight); }
  .tdrow { grid-template-columns: 120px 1fr; }
  .tdrow-icon { justify-content: center; align-self: stretch; position: relative; }
  .tdrow-icon::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 52px; background: var(--neutrallight); }
  .tdrow p { padding: 28px 0 28px 32px; font-size: 24px; max-width: 522px; }
}

/* ============================================================
   WHAT WE INVEST FOR (about page, dark)
   ============================================================ */
.invest { background: var(--bluedark); padding: 56px var(--pad-x); position: relative; overflow: hidden; }
.invest-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.invest-deco { display: none; }
.invest h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--neutralwhite);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 40px;
}
.invest-grid { display: flex; flex-direction: column; gap: 40px; }
.invest-left { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.invest-pills { display: flex; flex-direction: column; gap: 6px; align-items: center; align-self: stretch; }
.ipill-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.ipill {
  background: var(--blueextra-light);
  color: var(--bluedark);
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.invest-btn { text-transform: uppercase; align-self: center; }

.invest-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
}
.icard {
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.icard-icon { width: 24px; height: 24px; margin-bottom: auto; }
.icard h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 17.6px;
  color: var(--neutralwhite);
  margin-bottom: 8px;
}
.icard p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 17.6px;
  color: var(--neutralwhite);
}
.icard-img { grid-column: 1 / -1; align-items: flex-end; justify-content: flex-end; min-height: 220px; }
.icard-img img { width: 300px; max-width: 100%; mix-blend-mode: lighten; }

@media (min-width: 860px) {
  .invest { padding: 80px 48px; }
  .invest h2 { font-size: 40px; }
  .invest-grid { flex-direction: row; gap: 64px; align-items: flex-start; }
  .invest-left { flex: 1; padding-top: 16px; }
  .invest-cards { flex: 1; }

  .invest-deco {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 640px;
    height: 500px;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
  }
  .invest-deco img { position: absolute; }
  .invest-deco img:nth-child(1) { left: 0;     bottom: 95px; width: 344px; }
  .invest-deco img:nth-child(2) { left: 107px; bottom: 0;    width: 530px; }
}

/* ============================================================
   THE PRUDIV APPROACH (about page diagram)
   ============================================================ */
.approach { background: var(--neutralwhite); padding: 56px var(--pad-x); position: relative; overflow: hidden; }
.approach-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.approach-deco { display: none; }
@media (min-width: 860px) {
  .approach-deco { display: block; position: absolute; left: 0; right: 0; top: 0; bottom: 0; overflow: hidden; z-index: 0; pointer-events: none; }
  .approach-deco img { position: absolute; }
  /* top shape: small, upper-right, sits above the divider line */
  .approach-deco .ad-right { right: -20px; top: 12px; width: 150px; }
  /* bottom shape: lower-right area */
  .approach-deco .ad-left { left: auto; right: 4%; top: auto; bottom: 6%; width: 240px; transform: rotate(180deg); }
}
.approach-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--bluedark);
  margin-bottom: 14px;
}
.approach-head p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--bluedark);
  max-width: 640px;
}

/* stakeholder row */
.stakeholders {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  margin-top: 24px;
  border-top: 1px solid var(--neutrallight);
}
.stk { display: flex; flex-direction: column; gap: 10px; }
.stk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--blueextra-light);
  color: var(--blueregular);
  font-size: 18px;
  padding: 10px 18px;
}
.stk-pill img { width: 20px; height: 20px; }
.stk p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: var(--bluedark);
}

.aligns-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--bluedark);
  text-align: center;
  margin: 16px 0 40px;
}

/* alignment icon trio */
.aligns-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
.align-item { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.align-circle {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neutralregular);
  border-radius: 50%;
  background: var(--neutralwhite);
}
.align-circle img { width: 20px; height: 20px; }
.align-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.1;
  color: var(--bluedark);
  max-width: 200px;
}

/* values diagram */
.values-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
}
.value-orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--blueextra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orb-mid {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: var(--bluelight);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-core {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--bluedark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutralwhite);
  font-size: 14px;
  line-height: 1.1;
  padding: 8px;
}
.value-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  border: 1px dashed var(--neutrallight);
  border-radius: 32px;
}
.value-tag {
  background: var(--blueextra-light);
  color: var(--blueregular);
  font-size: 18px;
  padding: 12px 18px;
  white-space: nowrap;
}

@media (min-width: 860px) {
  .approach { padding: 72px 48px; }
  .approach-head h2 { font-size: 40px; }
  .approach-head p { font-size: 24px; }

  .stakeholders { flex-direction: row; gap: 0; }
  .stk {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0 32px;
    border-left: 1px solid var(--neutrallight);
  }
  .stk:first-child { padding-left: 0; border-left: none; }
  .stk-pill { flex-shrink: 0; align-self: center; }

  .aligns-icons { flex-direction: row; justify-content: center; gap: 87px; }

  .values-diagram {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 48px 0;
    border: 1px solid var(--neutrallight);
    border-radius: 300px;
    margin-top: 24px;
  }
  .value-orb { width: 300px; height: 300px; margin: -1px 0; }
  .orb-mid { width: 224px; height: 224px; }
  .orb-core { width: 152px; height: 152px; font-size: 16px; }
  /* dotted connectors between orb and box */
  .value-orb + .value-box { position: relative; }
  .values-diagram .value-box::before,
  .values-diagram .value-box::after {
    content: '\25B8';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutralregular);
    border-top: 1px dashed var(--neutrallight);
    width: 60px;
    text-align: right;
    line-height: 0;
  }
  .values-diagram .value-box::before { right: 100%; }
  .values-diagram .value-box::after { left: 100%; transform: translateY(-50%) scaleX(-1); }
  .value-box { margin: 0 40px; }
}

/* portfolio/advisory company grid */
.pa-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--neutrallight); }
.pa-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 32px 0;
  border-bottom: 1px solid var(--neutrallight);
  min-height: 190px;
}
.pa-ph {
  background: var(--blueextra-light);
  border-radius: 55px 55px 12px 12px;
  opacity: .55;
}
/* distinct placeholder shape per card (used where there's no logo) */
.pa-item:nth-child(2) .pa-ph { border-radius: 55px 12px 12px 55px; }
.pa-item:nth-child(3) .pa-ph { border-radius: 12px 12px 55px 55px; }
.pa-item:nth-child(4) .pa-ph { border-radius: 80px; }
.pa-item:nth-child(5) .pa-ph { border-radius: 12px 55px 55px 12px; }
.pa-item:nth-child(6) .pa-ph { border-radius: 12px 55px 12px 55px; }
.pa-body { display: flex; flex-direction: column; gap: 22px; padding: 6px 0; }
.pa-logo { height: 30px; width: auto; max-width: 190px; object-fit: contain; align-self: flex-start; mix-blend-mode: multiply; }
/* Cybele & Shekel wordmarks are more compact — size up to match the others visually */
.pa-item:nth-child(5) .pa-logo, .pa-item:nth-child(6) .pa-logo { height: 42px; }
.pa-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.1; color: var(--bluedark); }
.pa-desc { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 14px; line-height: 1.5; color: var(--neutraldark); max-width: 360px; }

@media (min-width: 860px) {
  .pa-grid { grid-template-columns: 1fr 1fr; }
  .pa-item:nth-child(odd) { padding-right: 48px; }
  .pa-item:nth-child(even) { border-left: 1px solid var(--neutrallight); padding-left: 48px; }
}

/* portfolio/advisory big centered heading */
.pf-advisory-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--bluedark);
  text-align: center;
  margin-bottom: 48px !important;
}
@media (min-width: 860px) { .pf-advisory-title { font-size: 48px; } }

/* ============================================================
   PORTFOLIO: APPROACH + CURRENTLY INVESTING (two columns)
   ============================================================ */
.pf-cols { background: var(--neutralwhite); padding: 0 var(--pad-x); }
.pf-cols-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--neutrallight);
  border-bottom: 1px solid var(--neutrallight);
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pf-approach h2, .pf-investing h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--bluedark);
  margin-bottom: 28px;
}
.approach-list { display: flex; flex-direction: column; gap: 8px; }
.ar { display: flex; align-items: stretch; }
.ar-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--neutrallight);
  border-right: 0;
  position: relative;
}
.ar-icon::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 24px;
  background: var(--neutrallight);
}
.ar-icon img { width: 24px; height: 24px; }
.ar-lbl {
  flex: 1;
  display: flex; align-items: center;
  padding: 0 16px;
  border-top: 1px solid var(--neutrallight);
  border-right: 1px solid var(--neutrallight);
  border-bottom: 1px solid var(--neutrallight);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--bluedark);
}
.approach-illus { width: 300px; max-width: 100%; height: auto; margin-top: 32px; }

.ic-list { display: flex; flex-direction: column; gap: 12px; }
.ic { background: var(--blueextra-light); padding: 22px 20px; }
.ic h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  color: var(--bluedark);
  margin-bottom: 8px;
}
.ic p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: var(--bluedark);
}

@media (min-width: 860px) {
  .pf-cols { padding: 0 48px; }
  .pf-cols-inner { flex-direction: row; gap: 0; padding: 56px 0; }
  .pf-approach { flex: 1; padding-right: 56px; display: flex; flex-direction: column; }
  .pf-investing { flex: 1; border-left: 1px solid var(--neutrallight); padding-left: 56px; }
  .pf-approach h2, .pf-investing h2 { font-size: 40px; margin-bottom: 36px; }
  /* approach cube: larger, right-aligned to the central divider, pushed to the bottom so it meets the bottom horizontal line */
  .approach-illus { width: 440px; max-width: none; margin: auto -56px -56px auto; display: block; }
}

/* ============================================================
   PORTFOLIO HERO (illustration + green labels)
   ============================================================ */
.portfolio-hero .hero-bg-img { opacity: .45; }
.ph-content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 48px var(--pad-x) 56px;
  display: flex;
  flex-direction: column;
}
.portfolio-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: var(--neutralwhite);
  margin: 0 0 40px;
}
.ph-lower { display: flex; flex-direction: column; gap: 32px; }
.ph-illus { position: relative; align-self: flex-start; }
.ph-illus-img { width: 280px; max-width: 100%; height: auto; }
.ph-label {
  display: block;
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 6px;
}
.ph-aside { display: flex; flex-direction: column; gap: 24px; }
.ph-aside p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--neutralwhite);
  max-width: 430px;
}
.ph-aside .cta-btn { align-self: flex-start; }

@media (min-width: 860px) {
  .portfolio-hero .hero-bg-img { width: 100%; left: 0; right: 0; opacity: 1; object-position: center; }
  .ph-content { padding: 56px 48px 72px; min-height: calc(100vh - 70px); }
  .portfolio-hero h1 { font-size: clamp(56px, 6vw, 84px); max-width: 820px; margin: 12px 0 0; }
  .ph-lower { display: block; position: relative; margin-top: auto; }
  /* illustration centred horizontally under the H1 headline */
  .ph-illus { width: 805px; max-width: 100%; margin: 0; display: flex; justify-content: center; align-items: flex-end; }
  .ph-illus-img { width: 360px; }
  .ph-label { position: absolute; margin: 0; white-space: nowrap; }
  .ph-label-1 { left: 82%; top: 46%; }
  .ph-label-2 { left: 92%; top: 80%; }
  .ph-label-3 { left: 92%; top: 87%; }
  .ph-aside { position: absolute; right: 0; bottom: 24px; width: 430px; }
  .ph-aside p { font-size: 20px; line-height: 1.1; }
}

/* ============================================================
   GENERIC SECTION (about / portfolio bodies)
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--pad-x);
}
.section.alt { background: var(--blueextra-light); max-width: 100%; }
.section.alt .section-inner { max-width: var(--maxw); margin: 0 auto; }
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--greenlight);
  margin-bottom: 24px;
}
.section h2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--bluedark);
  margin-bottom: 16px;
}
.section .lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--neutraldark);
  max-width: 520px;
  margin-bottom: 32px;
}
@media (min-width: 860px) {
  .section { padding: 72px 48px; }
  .section h2 { font-size: 36px; }
}

/* pillar list */
.pillars { display: flex; flex-direction: column; }
.pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--neutrallight);
}
.pillar:last-child { border-bottom: 1px solid var(--neutrallight); }
.pillar-num { font-size: 14px; color: var(--greenlight); padding-top: 4px; font-family: 'Inter', sans-serif; }
.pillar h4 { font-weight: 400; font-size: 20px; margin-bottom: 6px; color: var(--bluedark); }
.pillar p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.6; color: var(--neutraldark); }

/* sector / company cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--neutrallight);
  border: 1px solid var(--neutrallight);
}
.card {
  background: var(--neutralwhite);
  padding: 28px 24px;
}
.card .status {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--greenlight);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card.inactive { opacity: .55; }
.card.inactive .status { color: var(--neutralregular); }
.status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.card h3 { font-weight: 400; font-size: 22px; line-height: 1.15; margin-bottom: 12px; color: var(--bluedark); }
.card p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--neutraldark); }

@media (min-width: 860px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* company rows */
.company-list { display: flex; flex-direction: column; }
.company-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--neutrallight);
}
.company-row:last-child { border-bottom: 1px solid var(--neutrallight); }
.company-name { font-size: 22px; color: var(--bluedark); }
.company-sector { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--greenlight); }
.company-desc { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.6; color: var(--neutraldark); }
@media (min-width: 860px) {
  .company-row {
    grid-template-columns: 1.4fr 1fr 2.4fr;
    gap: 40px;
    align-items: center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bluedark);
  padding: 24px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.footer-logo { height: 34px; width: auto; }
.go-up-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 10px 16px;
  background: var(--greenlight);
  color: var(--neutralwhite);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  transition: background .2s;
}
.go-up-btn:hover { background: var(--greenhover); }
.go-up-btn img { width: 18px; height: 18px; }

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  padding: 0 var(--pad-x);
}
.footer-col { flex: 1 1 140px; display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: var(--bluedirty);
}
.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 13px; }
.footer-col address a, .footer-col address p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--neutralwhite);
  line-height: 16.8px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--neutralwhite);
  transition: opacity .2s;
}
.footer-nav-list a:hover { opacity: .7; }
.social-list { display: flex; flex-direction: column; gap: 16px; }
.social-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--neutralwhite);
  transition: opacity .2s;
}
.social-item:hover { opacity: .7; }
.social-icon { width: 20px; height: 20px; flex-shrink: 0; }
.footer-copy {
  padding: 16px var(--pad-x) 0;
  border-top: 1px solid rgba(255,255,255,.14);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--bluedirty);
}
@media (min-width: 860px) {
  .footer-top, .footer-cols { padding-left: 48px; padding-right: 48px; }
  .footer-cols { flex-wrap: nowrap; gap: 80px; justify-content: flex-start; }
  .footer-col { flex: 0 0 auto; }
  .footer-col:first-child { flex: 1 1 auto; }
  .footer-copy { padding-left: 48px; padding-right: 48px; }
}

.thank-you-page {
    min-height: 100vh;
    background: #061120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thank-you-card {
    background: #ffffff;
    max-width: 560px;
    width: 100%;
    padding: 56px;
    text-align: center;
}

.thank-you-card .eyebrow {
    color: #16796f;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-you-card h1 {
    color: #061120;
    font-size: 42px;
    margin-bottom: 16px;
}

.thank-you-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.thank-you-card .form-send-btn {
    display: inline-block;
    text-decoration: none;
}