/* ============================================
   PERMANIUM — Pixel-Perfect from Figma
   Frame: 1728px wide | Bg: #F8F7F3
   All typography: Inter (300/400/500)
   ============================================ */

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

:root {
  --bg: #F8F7F3;
  --white: #ffffff;
  --black: #000000;
  --text-hero: #EAEFEB;
  --text-body: #444444;
  --text-muted: #777777;
  --gold: #CBB9A8;
  --gold-dark: #70675D;
  --border: #E0DCD6;
  --max-w: 1728px;
  --content-padding: 80px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* ============================================
   HEADER / NAV
   Figma: Frame 177 — Top:23, Left:80, W:1568, H:Hug(67)
   Nav container (Frame 176): gap 54px
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 23px 0 0;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: 212x67 image */
.logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 54px;
}

/* Figma: Inter 300 Light, 16px, lh 32px, ls 8%, uppercase, #FFF */
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* Dark header variant (Thesis page) */
.header--dark .nav-links a {
  color: rgba(0, 0, 0, 0.5);
}
.header--dark .nav-links a:hover,
.header--dark .nav-links a.active {
  color: var(--black);
}
.header--dark .menu-toggle span {
  background: var(--black);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
}

/* ============================================
   HERO (Home)
   Figma: Image 1728x987
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 987px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Stronger gradient at the bottom where the title + right copy sit,
     subtle darkening at the very top so the logo + nav stay legible
     against any hero photo. Tuned for white text legibility. */
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.40) 0%,
      rgba(0,0,0,0.20) 8%,
      rgba(0,0,0,0.00) 18%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.55) 18%,
      rgba(0,0,0,0.30) 45%,
      rgba(0,0,0,0.10) 75%,
      rgba(0,0,0,0.00) 100%
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.00) 35%,
      rgba(0,0,0,0.00) 65%,
      rgba(0,0,0,0.18) 100%
    );
}
.hero__title,
.hero__desc {
  text-shadow: 0 1px 24px rgba(0,0,0,0.35);
}

.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* Figma: Inter 300 Light, 44px, lh 70.4px, ls 8%, uppercase, #EAEFEB
   W:576, Top:734, Left:76 */
.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-hero);
  max-width: 576px;
}

.hero__right {
  max-width: 473px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Figma: Inter 300 Light, 18px, lh 32px, ls 12%, #FFF
   W:473, Top:702, Left:1180 */
.hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 28px;
}

/* ============================================
   BUTTON
   Figma: Frame 55 — W:256, H:48, Radius:11, Border:1px #FFF
   Text: Inter 500 Medium, 16px, ls 5%, Title case
   Padding: 24px top, 42px right, 24px bot, 43px left
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 42px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--white);
  border-radius: 11px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--dark {
  border-color: var(--black);
  color: var(--black);
}

.btn--dark:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================
   SECTION TITLE (shared)
   Figma: Inter 300 Light, 44px, lh 70.4px, ls 11%, uppercase, #000
   ============================================ */
.section-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 64px;
}

/* ============================================
   PLAYBOOK (Home)
   Figma: Frame 152 — W:1577, H:Hug(888), Top:1267, Left:75
   Layout: space-between
   ============================================ */
.playbook {
  padding: 90px 0 80px;
  background: var(--bg);
}

/* Figma: Frame 152 — Horizontal, Fixed 1577px, Hug(888px), justify: space-between */
.playbook__grid {
  display: flex;
  justify-content: space-between;
  max-width: 1577px;
  margin: 0 auto;
}

/* Figma: Image — 664×888, Radius 18px */
.playbook__image {
  flex: 0 0 664px;
  width: 664px;
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.playbook__image img {
  width: 100%;
  height: 888px;
  object-fit: cover;
}

/* Figma: Frame 62 — Vertical, Fixed 811px, Hug(868px), Gap 47px
   Children: item, line, item, line, item, line, item
   Lines are separate children → CSS: padding + border-bottom on items */
.playbook__items {
  width: 811px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Figma: 47px gap above/below each line separator
   So item padding: 47px top & bottom, with 1px border between */
.playbook__item {
  padding: 47px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.playbook__item:first-child {
  padding-top: 0;
}

.playbook__item:last-child {
  border-bottom: none;
}

/* Figma: Frame 57 — Horizontal, Hug, Gap 16px */
.playbook__item-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 34px;
}

/* Figma: "01" — Inter 500 Medium, 40px, lh 100%, ls 0%
   Color: Linear Gradient #CEBCAB → #685F56 */
.playbook__number {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  background: linear-gradient(180deg, #CEBCAB 0%, #685F56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Figma: Title — Inter 500 Medium, 30px, lh 100%, ls 5% */
.playbook__item-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.05em;
}

/* Figma: Subtitle — Inter 500 Medium, 20px, lh 100%, ls 5%, #000
   NOT uppercase — mixed case as-is */
.playbook__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.05em;
  margin-bottom: 34px;
  display: block;
}

/* Figma: Body — Inter 300 Light, 16px, lh 28.8px, ls 6%, #000 */
.playbook__item-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28.8px;
  letter-spacing: 0.06em;
  color: var(--black);
  max-width: 721px;
}

/* ============================================
   TYPES OF VEHICLES (Home)
   Figma: Frame 79 — full width container
   Cards: Frame 77 — W:1520, H:367, Radius:50, Border:1px
   Gradient border: Linear #C8B9A8 → #70675D, Inner alignment
   Card bg: #F8F7F3
   Card title: Inter 500 Medium, 40px, ls 5%, uppercase, lh 100%
   Card body: Inter 400 Regular, 24px, ls 5%, lh 38.4px
   ============================================ */
.vehicles {
  padding: 80px 0 100px;
  background: var(--bg);
}

.vehicle-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1520px;
  margin: 0 auto;
}

.vehicle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-radius: 50px;
  overflow: hidden;
  min-height: 367px;
  position: relative;
}

/* Gradient border via mask-composite */
.vehicle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.vehicle-card__content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Figma: Inter 500 Medium, 40px, ls 5%, uppercase, lh 100%, #000 */
.vehicle-card__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
}

/* Figma: Inter 400 Regular, 24px, ls 5%, lh 38.4px, #000 */
.vehicle-card__content p {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 38.4px;
  letter-spacing: 0.05em;
  color: var(--black);
  max-width: 690px;
}

.vehicle-card__image {
  overflow: hidden;
  border-radius: 0 50px 50px 0;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CTA (Home)
   ============================================ */
.cta-section {
  padding: 40px 0 80px;
  text-align: center;
  background: var(--bg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 36px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__logo {
  text-align: center;
  margin-bottom: 32px;
}

.footer__logo img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
}

.footer__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-body);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--black);
}

.footer__address {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ============================================
   THESIS — Page Title
   Figma: "INVESTMENT THESIS" — Inter 300, 44px, ls 11%
   ============================================ */
.thesis-hero {
  padding: 130px 0 0;
  text-align: center;
  background: var(--bg);
}

.thesis-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
}

.thesis-hero__line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-top: 40px;
}

.thesis-hero__intro {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: 0.04em;
  color: var(--text-body);
  text-align: center;
  max-width: 820px;
  margin: 32px auto 0;
}

@media (max-width: 768px) {
  .thesis-hero__intro {
    font-size: 16px;
    line-height: 28px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .thesis-hero__intro {
    font-size: 14px;
    line-height: 24px;
  }
}

/* ============================================
   THESIS — Consolidating
   Figma: text left + hallway image right
   Title: Inter 300, 44px, ls 11%, uppercase, lh 70.4px
   Body: Inter 300, 18px, ls 12%, lh 32px
   ============================================ */
.consolidating {
  padding: 72px 0 56px;
  background: var(--bg);
}

.consolidating__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.consolidating__text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.consolidating__text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.12em;
  color: var(--text-body);
}

.consolidating__image {
  border-radius: 12px;
  overflow: hidden;
}

.consolidating__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ============================================
   THESIS — Platform Strategy
   Figma: 3 image cards with overlay text
   Section title: "Our Platform Strategy"
   ============================================ */
.platform-strategy {
  padding: 80px 0;
  background: var(--bg);
}

.platform-strategy__subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: var(--text-body);
  max-width: 660px;
  margin: -40px auto 50px;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strategy-card {
  border-radius: 11px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.82;
}

.strategy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-card { background: #1a1a1a; }

/* ============================================
   THESIS — AI Section
   ============================================ */
.ai-section {
  padding: 80px 0;
  background: var(--bg);
}

.ai-section__subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: var(--text-body);
  max-width: 660px;
  margin: -40px auto 50px;
}

.ai-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-column {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
}

.ai-column h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 28px;
}

.ai-column ul li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text-body);
  padding: 10px 0;
  padding-left: 22px;
  position: relative;
}

.ai-column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

/* ============================================
   THESIS — Cross-Pollination
   Figma: Frame 175 — Horizontal, Hug(1581)xHug(810), Gap:59
   Frame 41 (text): Vertical, Fixed 836, Hug 760, Gap 88
   Title: Inter 300, 44px, ls 11%, uppercase, lh 70.4px
   Body: Inter 300, 18px, ls 12%, lh 32px
   Sub-item title: Inter 400, 24px, ls 7%, lh 76.8px
   Sub-item body: Inter 400, 18px, ls 5%, lh 32px
   Sub-item container (Frame 38): Gap 24px
   ============================================ */
.cross-pollination {
  padding: 80px 0 100px;
  background: var(--bg);
}

.cross-pollination__grid {
  display: flex;
  gap: 59px;
  align-items: start;
}

.cross-pollination__text {
  flex: 0 0 836px;
  max-width: 836px;
}

.cross-pollination__text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.cross-pollination__text > p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin-bottom: 88px;
}

.cross-pollination__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.cross-pollination__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cross-pollination__item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--black);
}

.cross-pollination__item p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: var(--text-body);
  max-width: 590px;
}

.cross-pollination__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.cross-pollination__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.vis, .fade-left.vis, .fade-right.vis {
  opacity: 1;
  transform: translate(0);
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  :root { --content-padding: 48px; }
  .hero__title { font-size: 36px; line-height: 58px; max-width: 460px; }
  .section-title { font-size: 36px; }
  .consolidating__text h2,
  .cross-pollination__text h2 { font-size: 32px; line-height: 52px; }
  .vehicle-card__content h3 { font-size: 30px; }
  .vehicle-card__content p { font-size: 18px; line-height: 30px; }
  .vehicle-card { border-radius: 32px; }
  .vehicle-card::before { border-radius: 32px; }
  .vehicle-card__image { border-radius: 0 32px 32px 0; }
  .playbook__grid { flex-direction: column; }
  .playbook__image { width: 100%; max-width: 100%; position: static; max-height: 400px; flex: none; }
  .playbook__image img { height: auto; }
  .playbook__items { width: 100%; }
  .cross-pollination__text { flex: 1; }
  .cross-pollination__grid { flex-direction: column; }
}

@media (max-width: 1024px) {
  .consolidating__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .strategy-cards { grid-template-columns: 1fr 1fr; }
  .strategy-card { aspect-ratio: auto; }
  .ai-columns { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --content-padding: 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.96);
    padding: 32px 24px;
    gap: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 15px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: #fff;
  }
  .header--dark .nav-links.open {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .header--dark .nav-links.open a {
    color: rgba(0, 0, 0, 0.6);
  }
  .header--dark .nav-links.open a:hover,
  .header--dark .nav-links.open a.active {
    color: #000;
  }

  .hero { min-height: 600px; }
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__title { font-size: 28px; line-height: 44px; }
  .hero__desc { font-size: 15px; line-height: 26px; }

  .section-title { font-size: 28px; line-height: 44px; letter-spacing: 0.06em; }

  .vehicle-card { grid-template-columns: 1fr; border-radius: 24px; }
  .vehicle-card::before { border-radius: 24px; }
  .vehicle-card__image { border-radius: 0 0 24px 24px; height: 220px; }
  .vehicle-card__content h3 { font-size: 24px; }
  .vehicle-card__content p { font-size: 16px; line-height: 28px; }

  .strategy-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 18px; }
  .strategy-card { aspect-ratio: auto; }

  .consolidating__text h2,
  .cross-pollination__text h2 { font-size: 24px; line-height: 38px; }

  .thesis-hero h1 { font-size: 28px; line-height: 44px; }

  .footer__nav { flex-wrap: wrap; gap: 14px 24px; justify-content: center; }
  .footer__address { font-size: 13px; padding-top: 24px; }

  .playbook__number { font-size: 28px; }
  .playbook__item-header h3 { font-size: 22px; }
  .playbook__subtitle { font-size: 16px; margin-bottom: 20px; }
  .playbook__item-content p { font-size: 15px; line-height: 26px; }
  .playbook__item { padding: 32px 0; }
  .playbook__item-header { margin-bottom: 20px; }

  .platform-strategy__subtitle,
  .ai-section__subtitle { font-size: 15px; line-height: 26px; margin: -30px auto 36px; }

  .cross-pollination__text > p { margin-bottom: 36px; }
  .cross-pollination__item h4 { font-size: 18px; }
  .cross-pollination__item p { font-size: 15px; }
}

/* ============================================
   TEAM & ADVISORS PAGE (matches Figma)
   ============================================ */
.team-section {
  padding: 200px 0 100px;
  background: var(--bg);
}
.team-section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 60px;
}
.investor-advisory__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  margin-bottom: 64px;
}

/* Featured partners (2 col) */
.featured-partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.featured-partner {
  background: transparent;
}
.featured-partner__photo {
  width: 100%;
  aspect-ratio: 701 / 665;
  border-radius: 8px;
  background: linear-gradient(135deg, #CBB9A8 0%, #685F56 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  overflow: hidden;
}
.featured-partner__photo::after {
  content: attr(data-initials);
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.94);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.featured-partner__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.featured-partner__body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 6px;
}
.featured-partner__role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.featured-partner__bio {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.featured-partner__bio li {
  position: relative;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--text-body);
  margin-bottom: 14px;
}
.featured-partner__bio li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.featured-partner__bio li strong {
  color: #000;
  font-weight: 500;
}

/* LinkedIn buttons — Figma: blue #235A96 pill */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 48px;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #235A96;
  transition: background 0.25s ease;
}
.linkedin-btn:hover {
  background: #1a4778;
  color: #fff;
}
.linkedin-btn svg { flex-shrink: 0; fill: #fff; }

/* Investor & Advisory grid — Figma: 3-col, card 506×657, radius 10, shadow */
.investor-advisory {
  padding: 120px 0 140px;
  background: #fff;
}
.investor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1580px;
  margin: 0 auto;
}
.investor-card {
  background: var(--bg);
  border-radius: 10px;
  box-shadow: 5px -5px 38px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.investor-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px -5px 50px rgba(0, 0, 0, 0.12);
}
.investor-card__inner {
  padding: 24px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.investor-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, #CBB9A8 0%, #685F56 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.investor-card__photo::after {
  content: attr(data-initials);
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.investor-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.investor-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
.investor-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #000;
  margin-bottom: 6px;
}
.investor-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.investor-card__expertise {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.investor-card__bio {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--text-body);
}
/* Figma: blue LinkedIn bar — 200×45, bg #235A96, radius 10 */
.investor-card__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #235A96;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 0 0 10px 10px;
  transition: background 0.25s ease;
}
.investor-card__linkedin:hover {
  background: #1a4778;
}
.investor-card__linkedin svg {
  flex-shrink: 0;
  fill: #fff;
}
/* Invisible spacer so cards without a LinkedIn URL keep the same height
   as cards that have the blue bar. Same intrinsic dimensions as the
   real link (padding 14px + 13px line-height = ~45px). */
.investor-card__linkedin--placeholder {
  display: block;
  background: transparent;
  pointer-events: none;
  padding: 14px 24px;
  font-size: 13px;
  line-height: 1.2;
  border-radius: 0 0 10px 10px;
}
.investor-card__linkedin--placeholder::before {
  content: "\00a0"; /* preserves the line so padding renders */
}

@media (max-width: 1024px) {
  .featured-partners { grid-template-columns: 1fr; gap: 64px; }
  .investor-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .team-section { padding: 120px 0 60px; }
  .investor-advisory__title { font-size: 28px; line-height: 44px; margin-bottom: 40px; }
  .featured-partner__body h2 { font-size: 24px; }
  .featured-partner__photo { aspect-ratio: 4/3; }
  .featured-partner__bio li { font-size: 14px; line-height: 1.7; }
  .investor-advisory { padding: 60px 0 80px; }
  .investor-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 20px; }
  .investor-card h3 { font-size: 18px; }
  .investor-card__bio { font-size: 13px; }
}

@media (max-width: 480px) {
  :root { --content-padding: 18px; }
  .hero__title { font-size: 24px; line-height: 38px; }
  .hero__desc { font-size: 14px; line-height: 24px; }
  .section-title { font-size: 24px; line-height: 38px; }
  .btn { height: 44px; padding: 0 32px; font-size: 14px; }
  .vehicle-card__content { padding: 32px 24px; }
  .vehicle-card__content h3 { font-size: 20px; }
  .vehicle-card__content p { font-size: 14px; line-height: 24px; }
  .consolidating__text h2,
  .cross-pollination__text h2 { font-size: 22px; line-height: 34px; }
  .thesis-hero h1 { font-size: 24px; line-height: 38px; }
  .investor-advisory__title { font-size: 24px; line-height: 38px; }
  .featured-partner__body h2 { font-size: 22px; }
  .footer__nav { gap: 10px 20px; }
  .footer__nav a { font-size: 13px; }
}

/* ============================================
   INVESTORS PAGE
   Figma: 1728×2539, Bg #F8F7F3
   ============================================ */

/* --- Hero Section ---
   Figma: Frame 174 — W:1568, H:830, Top:115, Left:80, R:15
   BG Image behind: 1568×830
   Overlay: #100E0F 35%
   Padding: T:144 R:338 B:129 L:339
   ============================================ */
.investors-hero {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1568px;
  margin: 115px auto 0;
  height: 830px;
  border-radius: 15px;
  overflow: hidden;
}

.investors-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.investors-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 15, 0.35);
}

.investors-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 144px 338px 129px 339px;
}

/* Figma: Inter 300 Light, 44px, lh 70.4px, ls 8%, uppercase, #FFF */
.investors-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* Figma: Inter 300 Light, 26px, lh 41.6px, ls 8%, center, #FFF */
.investors-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 41.6px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  max-width: 771px;
}

/* --- Quarterly Events Section ---
   Figma: Frame 165 — centered text
   Title: Inter 300, 44px, ls 8%, uppercase
   Subtitle: Inter 300, 16px, lh 25.6px, ls 8%, center
   ============================================ */
.quarterly-events {
  padding: 80px 0 60px;
  text-align: center;
}

.quarterly-events__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.quarterly-events__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.08em;
  color: var(--black);
  max-width: 734px;
  margin: 0 auto;
}

/* --- Events Image Section ---
   Figma: Image 1568×600, R:15, Top:1297, Left:80
   Overlay (Rectangle 9): #100E0F 35%, same dims
   ============================================ */
.events-image {
  padding: 0 0 40px;
}

.events-image__wrapper {
  position: relative;
  width: 100%;
  max-width: 1568px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.events-image__wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.events-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 15, 0.35);
  pointer-events: none;
}

/* --- Event Type Cards ---
   Figma: Frame 172 — horizontal, gap 49px, Hug(1568×98)
   Cards (Frame 169): W:490, H:98, R:15, bg #F8F7F3
   Shadow: 0 1 35.5 0 #000 15%
   Padding: T:33 R:67 B:33 L:67
   ============================================ */
.event-types {
  padding: 0 0 100px;
}

.event-types__grid {
  display: flex;
  justify-content: center;
  gap: 49px;
  max-width: 1568px;
  margin: 0 auto;
}

.event-type-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 490px;
  height: 98px;
  padding: 33px 67px;
  background: var(--bg);
  border-radius: 15px;
  box-shadow: 0 1px 35.5px 0 rgba(0, 0, 0, 0.15);
}

.event-type-card__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: var(--black);
}

.event-type-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
}

/* ============================================
   INVESTORS PAGE — Responsive
   ============================================ */
@media (max-width: 1200px) {
  .investors-hero {
    width: calc(100% - 80px);
    height: 700px;
  }
  .investors-hero__content {
    padding: 100px 120px 80px;
  }
  .event-types__grid {
    gap: 24px;
  }
  .event-type-card {
    width: auto;
    flex: 1;
    padding: 24px 32px;
  }
}

@media (max-width: 1024px) {
  .investors-hero {
    height: 600px;
  }
  .investors-hero__content {
    padding: 80px 60px 60px;
  }
  .investors-hero__title {
    font-size: 36px;
    line-height: 54px;
  }
  .investors-hero__desc {
    font-size: 20px;
    line-height: 32px;
  }
  .quarterly-events__title {
    font-size: 36px;
    line-height: 54px;
  }
  .event-types__grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .event-type-card {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .investors-hero {
    width: calc(100% - 36px);
    height: 500px;
    margin-top: 80px;
    border-radius: 12px;
  }
  .investors-hero__content {
    padding: 60px 24px 40px;
    gap: 40px;
  }
  .investors-hero__title {
    font-size: 28px;
    line-height: 42px;
  }
  .investors-hero__desc {
    font-size: 16px;
    line-height: 28px;
  }
  .quarterly-events {
    padding: 60px 0 40px;
  }
  .quarterly-events__title {
    font-size: 28px;
    line-height: 42px;
  }
  .quarterly-events__subtitle {
    font-size: 14px;
    line-height: 22px;
  }
  .events-image__wrapper img {
    height: 350px;
  }
  .event-type-card {
    padding: 20px 28px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .investors-hero {
    height: 420px;
    margin-top: 70px;
  }
  .investors-hero__content {
    padding: 50px 18px 30px;
  }
  .investors-hero__title {
    font-size: 22px;
    line-height: 34px;
  }
  .investors-hero__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .quarterly-events__title {
    font-size: 22px;
    line-height: 34px;
  }
  .events-image__wrapper img {
    height: 250px;
  }
  .event-type-card {
    padding: 16px 20px;
    border-radius: 10px;
  }
  .event-type-card__text {
    font-size: 14px;
  }
}

/* ============================================
   CONTACT PAGE
   Figma: 1728×1117, Bg #F8F7F3
   Hero full-height with form card overlay
   ============================================ */

/* --- Contact Hero ---
   Full-viewport hero with background image,
   overlay, and centered form card
   ============================================ */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 987px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 15, 0.25);
}

/* --- Form Card ---
   Figma: ~600px wide, centered, white bg,
   rounded corners, padding ~60px
   ============================================ */
.contact-hero__card {
  position: relative;
  z-index: 10;
  background: rgba(248, 247, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 60px 64px 48px;
  width: 100%;
  max-width: 580px;
  text-align: center;
}

/* Figma: "KEEP IN TOUCH" — Inter 400, ~32px, ls 8%, uppercase */
.contact-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

/* Figma: subtitle — Inter 300, 14px, ls 4% */
.contact-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text-body);
  margin-bottom: 36px;
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 24px;
}

.contact-form__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-align: left;
  margin-bottom: 10px;
}

.contact-form__input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 20px;
}

.contact-form__input::placeholder {
  color: var(--text-muted);
}

.contact-form__input:focus {
  border-color: var(--black);
}

/* Figma: dark button — full width, black bg, white text, rounded */
.contact-form__btn {
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  background: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form__btn:hover {
  background: #222;
  transform: translateY(-1px);
}

/* Figma: "I Want To Qualify As An Investor →" link */
.contact-hero__investor-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: opacity 0.3s;
}

.contact-hero__investor-link:hover {
  opacity: 0.65;
}

.contact-hero__investor-link span {
  font-size: 18px;
  transition: transform 0.3s;
}

.contact-hero__investor-link:hover span {
  transform: translateX(4px);
}

/* ============================================
   CONTACT PAGE — Responsive
   ============================================ */
@media (max-width: 1200px) {
  .contact-hero__card {
    max-width: 520px;
    padding: 52px 48px 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 600px;
    align-items: flex-end;
    padding: 80px 18px 40px;
  }
  .contact-hero__card {
    max-width: 100%;
    padding: 40px 28px 32px;
    border-radius: 12px;
  }
  .contact-hero__title {
    font-size: 24px;
  }
  .contact-hero__subtitle {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .contact-form__btn {
    font-size: 13px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 550px;
    padding: 70px 14px 30px;
  }
  .contact-hero__card {
    padding: 32px 20px 28px;
  }
  .contact-hero__title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .contact-hero__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .contact-form__input {
    height: 44px;
    font-size: 13px;
  }
  .contact-form__btn {
    height: 44px;
    font-size: 12px;
  }
  .contact-hero__investor-link {
    font-size: 13px;
  }
}

/* ============================================
   QUALIFY / INVESTOR QUALIFICATION PAGE
   ============================================ */
.qualify-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.qualify-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.qualify-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.qualify-hero__card {
  position: relative;
  z-index: 10;
  background: rgba(248, 247, 243, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 18px;
  padding: 56px 64px 56px;
  width: 100%;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.qualify-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.qualify-hero__subtitle {
  font-size: 15px;
  color: #555;
  margin: 0 0 32px;
}

/* Form */
.qualify-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.qualify-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qualify-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qualify-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.qualify-form__field input[type="text"],
.qualify-form__field input[type="email"],
.qualify-form__field select {
  height: 46px;
  width: 100%;
  border: 1px solid #D9D5CE;
  border-radius: 10px;
  background: #fff;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.qualify-form__field input::placeholder {
  color: #A8A39A;
}

.qualify-form__field input:focus,
.qualify-form__field select:focus {
  border-color: #000;
}

.qualify-form__select {
  position: relative;
}

.qualify-form__select select {
  padding-right: 40px;
  cursor: pointer;
  color: #A8A39A;
}

.qualify-form__select select:valid,
.qualify-form__select select.has-value {
  color: #000;
}

.qualify-form__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
  pointer-events: none;
}

/* Radios */
.qualify-form__radios {
  display: flex;
  gap: 28px;
  margin-top: 4px;
}

.qualify-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.qualify-form__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qualify-form__radio-dot {
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.qualify-form__radio input:checked + .qualify-form__radio-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
}

/* Checkboxes */
.qualify-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #000;
  line-height: 1.45;
  font-weight: 400;
}

.qualify-form__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qualify-form__check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  background: transparent;
}

.qualify-form__check input:checked + .qualify-form__check-box::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit button */
.qualify-form__submit {
  margin-top: 10px;
  height: 56px;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.qualify-form__submit:hover {
  background: #222;
}

/* Back button (floating) */
.qualify-back {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.qualify-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.qualify-back__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .qualify-hero {
    padding: 110px 16px 60px;
  }
  .qualify-hero__card {
    padding: 40px 24px 40px;
    border-radius: 14px;
  }
  .qualify-hero__title {
    font-size: 26px;
  }
  .qualify-hero__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .qualify-form__row--2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .qualify-form__field input[type="text"],
  .qualify-form__field input[type="email"],
  .qualify-form__field select {
    height: 44px;
    font-size: 13px;
  }
  .qualify-form__submit {
    height: 52px;
    font-size: 14px;
  }
  .qualify-back {
    right: 14px;
    bottom: 14px;
    padding: 10px 16px 10px 10px;
    font-size: 12px;
  }
  .qualify-back__icon {
    width: 28px;
    height: 28px;
  }
  .qualify-back__icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .qualify-hero__card {
    padding: 32px 18px;
  }
  .qualify-hero__title {
    font-size: 22px;
  }
  .qualify-back__text {
    display: none;
  }
  .qualify-back {
    padding: 8px;
    border-radius: 50%;
  }
}

/* ============================================
   INVESTOR CTA + CONTACT FORM (on Investors page)
   ============================================ */
.investor-cta {
  padding: 100px 0 120px;
  background: var(--bg);
}

.investor-cta__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.investor-cta__title {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.investor-cta__desc {
  font-size: 15px;
  color: #555;
  margin: 0 0 40px;
  line-height: 1.6;
}

.investor-cta__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.investor-cta__label {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.investor-cta__input {
  height: 52px;
  border: 1px solid #D9D5CE;
  border-radius: 10px;
  background: #fff;
  padding: 0 18px;
  font-family: inherit;
  font-size: 14px;
  color: #000;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.investor-cta__input::placeholder {
  color: #A8A39A;
}

.investor-cta__input:focus {
  border-color: #000;
}

.investor-cta__btn {
  height: 52px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.investor-cta__btn:hover {
  background: #222;
}

.investor-cta__qualify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-bottom: 1.5px solid #000;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.investor-cta__qualify:hover {
  opacity: 0.7;
}

.investor-cta__qualify span {
  font-size: 16px;
}

@media (max-width: 768px) {
  .investor-cta {
    padding: 64px 0 80px;
  }
  .investor-cta__title {
    font-size: 28px;
  }
  .investor-cta__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .investor-cta__input {
    height: 46px;
  }
  .investor-cta__btn {
    height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .investor-cta__title {
    font-size: 24px;
  }
}

/* ============================================
   QUALIFY SECTION (inline on Contact page)
   ============================================ */
.qualify-section {
  padding: 100px 0 120px;
  background: var(--bg);
}

.qualify-section__card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(248, 247, 243, 0.94);
  border-radius: 18px;
  padding: 56px 64px 56px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.qualify-section__title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  text-align: center;
}

.qualify-section__subtitle {
  font-size: 15px;
  color: #555;
  margin: 0 0 36px;
  text-align: center;
}

@media (max-width: 768px) {
  .qualify-section {
    padding: 64px 0 80px;
  }
  .qualify-section__card {
    padding: 40px 24px;
    border-radius: 14px;
    margin: 0 16px;
  }
  .qualify-section__title {
    font-size: 26px;
  }
  .qualify-section__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .qualify-section__card {
    padding: 32px 18px;
    margin: 0 8px;
  }
  .qualify-section__title {
    font-size: 22px;
  }
}

/* ============================================
   INVESTOR QUALIFY CTA (Investors page)
   ============================================ */
.investor-qualify-cta {
  padding: 80px 0 100px;
  background: var(--bg);
  text-align: center;
}

.investor-qualify-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s, transform 0.15s;
}

.investor-qualify-cta__link:hover {
  background: #222;
  transform: translateY(-1px);
}

.investor-qualify-cta__link span {
  font-size: 18px;
}

@media (max-width: 768px) {
  .investor-qualify-cta {
    padding: 56px 0 72px;
  }
  .investor-qualify-cta__link {
    padding: 16px 36px;
    font-size: 14px;
  }
}

/* ============================================
   DEALS / INVESTMENT PAGE
   Figma: Deals frame — 1728px width
   Hero: image 1568x600 rounded 15px
   Grid: 3 cols x 2 rows, cards with 16:9 images
   ============================================ */

/* --- Deals Hero --- */
.deals-hero {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1568px;
  margin: 115px auto 0;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
}

.deals-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deals-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 15, 0.30);
}

.deals-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 108px 260px 80px;
}

/* Figma: Inter 300 Light, 44px, lh 70.4px, ls 8%, uppercase, #FFF */
.deals-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 70.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

/* Figma: Inter 300 Light, 22px, ls 8%, center, #FFF */
.deals-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 35.2px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  max-width: 780px;
  margin: 0;
}

/* --- Deals Grid ---
   Figma: 3 col grid, gap 49px, cards full card has image + title + desc
   Image: 458x260, radius 15
   Title: Inter 400, 18px, ls 8%, uppercase
   Desc: Inter 300, 14px, lh 22px, center
   ============================================ */
.deals-grid {
  padding: 100px 0 60px;
  background: var(--bg);
}

.deals-grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px;
  max-width: 1568px;
  margin: 0 auto 70px;
}

.deals-grid__row:last-child {
  margin-bottom: 0;
}

.deal-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.deal-card__image {
  width: 100%;
  aspect-ratio: 458 / 260;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #1a1a1a;
}

.deal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.deal-card:hover .deal-card__image img {
  transform: scale(1.04);
}

.deal-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 14px;
}

.deal-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22.4px;
  letter-spacing: 0.02em;
  color: var(--text-body);
  max-width: 340px;
  margin: 0 auto;
}

/* --- Deals NDA Notice --- */
.deals-nda {
  padding: 40px 0 0;
  background: var(--bg);
  text-align: center;
}

.deals-nda__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.04em;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
}

/* --- Deals CTA ("Learn More" button) --- */
.deals-cta {
  padding: 60px 0 120px;
  background: var(--bg);
  text-align: center;
}

.deals-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  padding: 0 36px;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s, transform 0.15s;
}

.deals-cta__btn:hover {
  background: #222;
  transform: translateY(-1px);
}

/* --- Deals Responsive: Tablet (<=1200px) --- */
@media (max-width: 1200px) {
  .deals-hero {
    width: calc(100% - 80px);
    height: 520px;
  }
  .deals-hero__content {
    padding: 90px 100px 70px;
  }
  .deals-grid__row {
    gap: 36px;
  }
}

/* --- Deals Responsive: Tablet (<=1024px) --- */
@media (max-width: 1024px) {
  .deals-hero {
    height: 460px;
  }
  .deals-hero__content {
    padding: 80px 60px 60px;
  }
  .deals-hero__title {
    font-size: 36px;
    line-height: 54px;
  }
  .deals-hero__desc {
    font-size: 18px;
    line-height: 30px;
  }
  .deals-grid {
    padding: 80px 0 40px;
  }
  .deals-grid__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
  }
}

/* --- Deals Responsive: Mobile (<=768px) --- */
@media (max-width: 768px) {
  .deals-hero {
    width: calc(100% - 36px);
    height: 420px;
    margin-top: 90px;
    border-radius: 12px;
  }
  .deals-hero__content {
    padding: 60px 24px 40px;
  }
  .deals-hero__title {
    font-size: 28px;
    line-height: 42px;
  }
  .deals-hero__desc {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
  .deals-grid {
    padding: 60px 0 20px;
  }
  .deals-grid__row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .deal-card__image {
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .deal-card__title {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }
  .deal-card__desc {
    font-size: 13px;
    line-height: 20px;
  }
  .deals-cta {
    padding: 40px 0 80px;
  }
  .deals-cta__btn {
    min-width: 160px;
    height: 48px;
    font-size: 14px;
  }
}

/* --- Deals Responsive: Small Mobile (<=480px) --- */
@media (max-width: 480px) {
  .deals-hero {
    height: 360px;
    margin-top: 80px;
  }
  .deals-hero__content {
    padding: 48px 18px 32px;
  }
  .deals-hero__title {
    font-size: 24px;
    line-height: 36px;
  }
  .deals-hero__desc {
    font-size: 13px;
    line-height: 22px;
  }
  .deals-grid {
    padding: 48px 0 16px;
  }
  .deals-grid__row {
    gap: 32px;
    margin-bottom: 32px;
  }
  .deal-card__title {
    font-size: 15px;
  }
  .deal-card__desc {
    font-size: 12.5px;
  }
}
