/* ============================================================
   IAIG — Inevitable AI Group · Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --c-dark:     #0c0f1a;
  --c-blue:     #1a56ff;
  --c-blue-dark:#1444d4;
  --c-border:   #e5e7eb;
  --c-text:     #111827;
  --c-text-2:   #374151;
  --c-text-3:   #6b7280;
  --c-bg-alt:   #f7f8fa;
  --c-white:    #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --transition: 0.25s ease;
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 8rem);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2rem, 4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
p { line-height: 1.7; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.section { padding: var(--section-pad) 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-blue-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ─── Section Labels ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 1rem;
}

/* ─── Fade-in Animation ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 700;
  font-size: .95rem;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: white; background: rgba(255,255,255,.08); }
.nav-ctas {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.nav-ctas .btn { padding: .5rem 1rem; font-size: .85rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem clamp(1.25rem, 5vw, 2.5rem) 1.5rem;
  gap: .25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .65rem .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active { color: white; background: rgba(255,255,255,.08); }
.nav-mobile .btn { margin-top: .5rem; width: 100%; justify-content: center; }

@media (max-width: 840px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 28ch;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--c-blue); color: white; }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col { padding-top: .5rem; }
}

/* ─── COMPANY CARDS ──────────────────────────────────────── */
.company-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.company-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-accent-bar {
  height: 3px;
  background: var(--company-color, var(--c-blue));
  width: 100%;
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.25rem .75rem;
  gap: .5rem;
  flex-wrap: wrap;
}
.company-logo { height: 28px; width: auto; object-fit: contain; max-width: 120px; flex-shrink: 0; }
.badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-live {
  background: #dcfce7;
  color: #15803d;
}
.badge-coming {
  background: #fef9c3;
  color: #a16207;
}
.company-tagline {
  padding: 0 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .4rem;
  font-style: italic;
}
.company-desc {
  padding: 0 1.25rem;
  font-size: .875rem;
  color: var(--c-text-3);
  flex: 1;
  margin-bottom: 1rem;
}
.company-links {
  padding: 0 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.link-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .7rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--c-text-2);
  transition: var(--transition);
}
.link-pill:hover {
  background: var(--company-color, var(--c-blue));
  color: white;
  border-color: transparent;
}
.card-credit {
  padding: .75rem 1.25rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-text-3);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ─── Portfolio Grid ─────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.card-coming-soon {
  border: 2px dashed var(--c-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .75rem;
  color: var(--c-text-3);
  grid-column: 1 / -1;
}
.card-coming-soon h3 { font-size: 1rem; font-weight: 700; color: var(--c-text-2); }
.card-coming-soon p { font-size: .875rem; }
.card-coming-soon .plus-icon {
  width: 48px;
  height: 48px;
  border: 2px dashed var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c-text-3);
  margin-bottom: .5rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  background: var(--c-white);
  padding: 2rem 0 1.5rem;
}
.hero-content { max-width: 780px; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--c-text-3);
  max-width: 56ch;
  margin: 1.25rem 0 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-portfolio {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-portfolio-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-text-3);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-logos {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.hero-logos img { height: 24px; width: auto; opacity: .7; transition: var(--transition); }
.hero-logos img:hover { opacity: 1; }
.hero-portfolio a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-blue);
  transition: var(--transition);
}
.hero-portfolio a:hover { text-decoration: underline; }

/* Page hero (non-homepage) */
.page-hero {
  padding: 6rem 0 4rem;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--c-text-3);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

/* ─── MANIFESTO ──────────────────────────────────────────── */
.manifesto {
  background: var(--c-dark);
  color: white;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.manifesto-inner { position: relative; max-width: 820px; margin: 0 auto; }
.manifesto-quote-mark {
  position: absolute;
  top: -2rem;
  left: -3rem;
  font-size: 14rem;
  line-height: 1;
  color: white;
  opacity: 0.05;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.manifesto blockquote {
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 1;
}
.manifesto-attribution {
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  font-style: normal;
  position: relative;
  z-index: 1;
}
.manifesto-divider {
  width: 100%;
  height: 1px;
  background: var(--c-blue);
  margin: 2rem 0;
  opacity: .4;
  position: relative;
  z-index: 1;
}
.manifesto-cta {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-blue);
  position: relative;
  z-index: 1;
}

/* ─── HOW WE WORK ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.how-card {
  position: relative;
  padding: 2rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.how-card-num {
  position: absolute;
  top: .5rem;
  right: 1rem;
  font-size: 5rem;
  font-weight: 900;
  color: var(--c-text);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.how-card h3 {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  color: var(--c-text);
}
.how-card p {
  font-size: .9rem;
  color: var(--c-text-3);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ─── SPLIT CTA ──────────────────────────────────────────── */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-dark);
}
.split-cta-panel {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-cta-panel:first-child {
  border-right: 1px solid rgba(255,255,255,.08);
}
.split-cta-panel h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: white;
  font-weight: 700;
  line-height: 1.3;
}
.split-cta-panel p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 42ch;
  flex: 1;
}
@media (max-width: 720px) {
  .split-cta { grid-template-columns: 1fr; }
  .split-cta-panel:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ─── THREE-COL FEATURES ─────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem;
  background: var(--c-white);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,86,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--c-blue);
}
.feature-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.feature-card p { font-size: .875rem; color: var(--c-text-3); line-height: 1.65; }
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── DARK SECTION ───────────────────────────────────────── */
.dark-section {
  background: var(--c-dark);
  color: white;
  padding: var(--section-pad) 0;
}
.dark-section h2 { color: white; }
.dark-section p { color: rgba(255,255,255,.65); line-height: 1.75; }
.dark-section p + p { margin-top: 1rem; }

/* ─── BULLETED LIST SECTION ──────────────────────────────── */
.bullet-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.bullet-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '→';
  color: var(--c-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}
.bullet-list li strong { color: var(--c-text); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
  margin-bottom: .5rem;
}
.faq-a {
  font-size: .9rem;
  color: var(--c-text-3);
  line-height: 1.7;
}

/* ─── TEAM CARDS ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  padding: 2rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.team-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.team-linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0A66C2;
  border-radius: 4px;
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
  vertical-align: middle;
  margin-left: .35rem;
}
.team-linkedin-icon:hover { background: #004182; }
.team-name-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.team-card h3 { font-size: 1.1rem; margin: 0; }
.team-card .team-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-top: .2rem;
}
.team-card p { font-size: .875rem; color: var(--c-text-3); line-height: 1.65; }
.team-links { display: flex; gap: .5rem; margin-top: .25rem; }
.team-links a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--c-text-2);
  transition: var(--transition);
}
.team-links a:hover { background: var(--c-blue); color: white; border-color: transparent; }
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Strip ──────────────────────────────────────────── */
.cta-strip {
  background: var(--c-bg-alt);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid var(--c-border);
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta-strip p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ─── CONTACT EMAIL DISPLAY ──────────────────────────────── */
.contact-email {
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-blue);
  transition: var(--transition);
  word-break: break-all;
}
.contact-email:hover { opacity: .8; }

/* ─── SECTION HEADER (reusable) ─────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-top: .5rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--c-text-3);
  max-width: 55ch;
  margin-top: .75rem;
}

/* ─── Portfolio view-all link ────────────────────────────── */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-blue);
  margin-top: 2rem;
  transition: var(--transition);
}
.view-all-link:hover { gap: .6rem; }

/* ─── Inline 4-col grid (homepage portfolio preview) ──────── */
.portfolio-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .portfolio-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .portfolio-4-grid { grid-template-columns: 1fr; }
}

/* ─── Utilities ──────────────────────────────────────────── */
.text-blue { color: var(--c-blue); }
.text-white { color: white; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.font-weight-800 { font-weight: 800; }

/* ─── JOIN CTA (full-width) ───────────────────────────── */
.join-cta {
  background: var(--c-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.join-cta-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.join-cta h2 {
  color: white;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
}
.join-cta p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
}

/* ─── Nav join link (text, not button) ───────────────────── */
.nav-join-link {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-join-link:hover { color: white; background: rgba(255,255,255,.08); }

/* ─── Hero join link (text, prominent) ───────────────────── */
.hero-join-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-blue);
  transition: var(--transition);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.hero-join-link:hover {
  border-bottom-color: var(--c-blue);
  gap: .75rem;
}
.hero-join-link span {
  font-size: 1.1rem;
  transition: var(--transition);
}

/* ─── LOGO TICKER ────────────────────────────────────────── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 1.5rem 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ticker-item img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  object-fit: contain;
}
.ticker-item img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Portfolio Card CEO Section ─────────────────────────── */
.card-ceo {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-top: auto;
}
.card-ceo-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}
.card-ceo-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .1rem;
}
.card-ceo-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}
.card-ceo-label {
  font-size: .72rem;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.card-ceo-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(10,102,194,.08);
  color: #0a66c2;
  flex-shrink: 0;
  transition: var(--transition);
}
.card-ceo-linkedin:hover {
  background: #0a66c2;
  color: white;
}

/* ─── About Page — Venture CEOs Label ───────────────────── */
.venture-ceos-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 3rem 0 1.5rem;
}
