/* ===== Variables – Cross Ocean palette (light mode) ===== */
:root {
  --bg: #f5f7fa;
  --bg-alt: #eef1f5;
  --text: #1a2332;
  --text-muted: #5c6b7d;
  --accent: #e8762e;
  --accent-soft: rgba(232, 118, 46, 0.12);
  --border: rgba(0,0,0,0.08);
  --nav-bg: rgba(255,255,255,0.95);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.75) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
}
.nav-cta:hover {
  background: var(--accent-soft);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
}
.nav {
  border-bottom: 1px solid var(--border);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245,247,250,0.2) 0%,
    rgba(245,247,250,0.5) 50%,
    rgba(245,247,250,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,118,46,0.35);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== Portfolio Logos Marquee ===== */
.logo-marquee {
  background: var(--bg);
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.logo-marquee-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 3rem;
  flex-shrink: 0;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 120px;
  flex-shrink: 0;
}
.logo-item img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}
.logo-item.placeholder {
  height: 48px;
  min-width: 120px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Scroll Animations ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }

/* ===== Sections ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
}

/* Investment Focus */
.focus-section {
  background: var(--bg);
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.focus-section-header {
  margin-bottom: 2rem;
}
.focus-label {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.focus-list {
  margin-top: 0;
}
.focus-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  cursor: default;
  transition: background 0.25s;
  position: relative;
}
.focus-item:last-child {
  border-bottom: 1px solid var(--border);
}
.focus-item:hover {
  background: var(--bg-alt);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.focus-number {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  padding-top: 0.35rem;
}
.focus-item-title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0;
  line-height: 1.2;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.focus-item:hover .focus-item-title {
  transform: translateX(6px);
}
.focus-item-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease,
              margin 0.35s ease;
}
.focus-item:hover .focus-item-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.75rem;
}
.focus-item-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  padding-top: 0.3rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
  flex-shrink: 0;
}
.focus-item:hover .focus-item-arrow {
  transform: translate(4px, -2px);
  color: var(--accent);
}

/* How We Add Value */
.value-section-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: stretch;
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.value-left {
  display: flex;
  flex-direction: column;
}
.value-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 2rem;
}
.value-heading em {
  font-style: italic;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.value-heading em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C20 2, 40 7, 60 4.5 C80 2, 100 6.5, 118 3.5' stroke='%231a2332' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}
.value-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 2rem;
}
.value-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--text);
  color: var(--bg);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-btn:hover {
  transform: scale(1.04);
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
/* Her wrap: kart + label altında */
.value-card-wrap {
  display: flex;
  flex-direction: column;
}
/* Kademeli dikey konum — boyut sabit, pozisyon değişiyor */
.value-card-wrap:nth-child(1) { margin-top: 10rem; }
.value-card-wrap:nth-child(2) { margin-top: 5rem; }
.value-card-wrap:nth-child(3) { margin-top: 0; }

/* Kart gövdesi — sabit boyut */
.value-card {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
/* Tüm kartlar aynı boyutta */
.vc-1 {
  height: 280px;
  background: url('../assets/images/vc-card-1.jpg') center top/cover no-repeat;
}
.vc-2 {
  height: 280px;
  background: url('../assets/images/vc-card-2.jpg') center top/cover no-repeat;
}
.vc-3 {
  height: 280px;
  background: url('../assets/images/vc-card-3.jpg') center top/cover no-repeat;
}
/* Label kartın dışında, altında */
.value-card-label {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text);
}
.value-card-label strong {
  font-weight: 600;
}
@media (max-width: 900px) {
  .value-section-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .value-cards { grid-template-columns: 1fr; }
  .value-card-wrap:nth-child(1),
  .value-card-wrap:nth-child(2),
  .value-card-wrap:nth-child(3) { margin-top: 0; }
}

/* Stories — stories.html grid */
.stories-section { background: var(--bg-alt); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.story-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
  color: inherit;
  display: block;
}
.story-card:hover { border-color: rgba(0,0,0,0.15); }
.story-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e0e4ea 0%, #d0d6e0 100%);
  background-size: cover;
  background-position: center;
}
.story-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 1.5rem 0.5rem;
  line-height: 1.4;
}
.story-card p {
  margin: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.story-date {
  display: block;
  margin: 0.75rem 1.5rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Stories — index.html slider */
.stories-slider-section {
  padding: 6rem 0 6rem 2rem;
  background: var(--bg-alt);
  overflow: hidden;
}
.stories-slider-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-right: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stories-slider-header .section-title { margin: 0; }
.stories-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.stories-all-link:hover { text-decoration: underline; }
.stories-slider-wrap { position: relative; }
.stories-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.stories-slide {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.stories-slide:hover {
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-3px);
}
.stories-slide-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e0e4ea 0%, #d0d6e0 100%);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.stories-slide-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stories-slide-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stories-slide h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.stories-slide p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stories-slider-dots { display: none; }

/* Team */
.team-intro {
  max-width: 700px;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
/* Kart wrapper */
.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
/* Fotoğraf alanı */
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #d0d6e0 0%, #b8c2d0 100%);
  background-size: cover;
  background-position: center top;
  display: block;
  transition: filter 0.4s ease;
}
.team-card:hover .team-photo {
  filter: none;
}
/* Perde — yukarıdan aşağı iner */
.team-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(15,25,40,0.92) 0%, rgba(15,25,40,0.75) 100%);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-overlay {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-overlay-name {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.team-overlay-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.team-info-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.team-info-value {
  font-size: 0.82rem;
  color: #fff;
  font-weight: 400;
  word-break: break-all;
}
.team-overlay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 1rem;
}
.team-overlay-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translate(2px, -2px);
}
/* İsim — kartın altında, perde inince gizlenir */
.team-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.team-card:hover .team-card-name {
  opacity: 0;
}
.team-overlay {
  z-index: 2;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* Footer */
.footer {
  background: #16202c;
  padding: 4rem 2rem 2rem;
}
.footer-content { max-width: 1200px; margin: 0 auto; }

/* Footer top: logo + social */
.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social-link:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Addresses */
.footer-locations {
  display: flex;
  gap: 6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-loc h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.6rem;
}
.footer-loc p {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-loc a {
  color: var(--accent);
  font-size: 0.875rem;
}
.footer-loc a:hover { text-decoration: underline; }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

/* ===== Page Layouts (Team, Portfolio, Stories, etc.) ===== */
.page-content { padding-top: 80px; min-height: 100vh; }
.page-hero { padding-top: 4rem; }
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}
.team-intro-full,
.portfolio-intro,
.stories-intro,
.venture-intro,
.contact-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 0 3rem;
  line-height: 1.8;
}
.team-grid-full { margin-top: 0; }
/* Team Hero: sol metin+kuş / sağ kartlar */
.team-hero-section {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: calc(100vh - 80px);
  max-width: 100%;
  background: var(--bg);
  align-items: start;
}

.team-hero-left {
  padding: 5rem 4rem 5rem 8vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 80px;
  align-self: start;
}

.team-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.team-hero-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

/* Hand-drawn underline on em inside team-hero-title */
.team-hero-title em {
  font-style: italic;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
.team-hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C20 2, 40 7, 60 4.5 C80 2, 100 6.5, 118 3.5' stroke='%231a2332' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}

.team-hero-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}

.team-birds-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  align-self: flex-start;
  margin-top: 1rem;
}

.team-hero-right {
  padding: 5rem 8vw 5rem 2rem;
}

/* Override team-grid inside hero — 3 per row */
.team-hero-right .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
}

/* Smaller cards inside team hero */
.team-hero-right .team-photo {
  aspect-ratio: 3/4;
}

@media (max-width: 1200px) {
  .team-hero-right .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .team-hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .team-hero-left {
    position: static;
    padding: 4rem 2rem 2rem;
  }
  .team-hero-right {
    padding: 2rem;
  }
  .team-hero-right .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.value-section-full { padding-top: 2rem; }
.value-stats-large .stat-value { font-size: 1.25rem; }
.section-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent);
  font-weight: 600;
  transition: opacity 0.2s;
}
.section-link:hover { opacity: 0.8; }
.story-card-link {
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.story-card-link:hover {
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.coming-soon {
  color: var(--text-muted);
  font-size: 1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.contact-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.contact-card p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-card a { color: var(--accent); }

/* ===== Venture Office as a Service ===== */

/* Shared layout */
.vo-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vo-section {
  padding: 6rem 0;
}

.vo-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vo-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.vo-section-title em {
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.vo-section-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5 C20 2, 40 7, 60 4.5 C80 2, 100 6.5, 118 3.5' stroke='%231a2332' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}

.vo-section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

.vo-section-header {
  margin-bottom: 4rem;
}

/* Buttons */
.vo-btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.vo-btn-primary:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.vo-btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.vo-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.03);
}

/* ── Hero ── */
.vo-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.vo-hero-video-wrap {
  position: absolute;
  inset: 0 0 0 35%;
  z-index: 0;
}

.vo-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    var(--bg) 32%,
    rgba(245,247,250,0.3) 55%,
    transparent 100%
  );
}

.vo-hero-inner {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 8vw;
  max-width: 600px;
}

.vo-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.vo-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.vo-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 2.5rem;
}

.vo-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.vo-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 8vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vo-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Illusion of Action ── */
.vo-illusion {
  background: var(--bg-alt);
}

.vo-illusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.vo-illusion-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.vo-illusion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.vo-illusion-icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.vo-illusion-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.vo-illusion-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.vo-callout {
  border-left: 3px solid var(--accent);
  margin: 0;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.vo-callout em {
  color: var(--text);
  font-style: italic;
  font-weight: 600;
}

/* ── What is VoaS ── */
.vo-what {
  border-bottom: 1px solid var(--border);
}

.vo-what-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.vo-what-left {
  position: sticky;
  top: 100px;
}

.vo-what-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.vo-what-right p:last-child { margin: 0; }

/* ── Four Pillars ── */
.vo-pillars {
  background: var(--bg);
}

.vo-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vo-pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.vo-pillar:last-child {
  border-bottom: 1px solid var(--border);
}

.vo-pillar-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.25rem;
}

.vo-pillar-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.vo-pillar-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.vo-pillar-body > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.vo-pillar-example {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.vo-example-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.vo-pillar-example p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Case Study ── */
.vo-case {
  background: var(--bg-alt);
}

.vo-case-card {
  background: var(--text);
  color: #fff;
  border-radius: 16px;
  padding: 4rem;
}

.vo-case-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.vo-case-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: #fff;
}

.vo-case-context {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 0 3rem;
}

.vo-case-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2.5rem;
}

.vo-case-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vo-case-stat-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.vo-case-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.vo-case-detail {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 0 2rem;
}

.vo-case-card .vo-btn-primary {
  background: #fff;
  color: var(--text);
}
.vo-case-card .vo-btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Pilot ── */
.vo-pilot {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vo-pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.vo-pilot-left {
  position: sticky;
  top: 100px;
}

.vo-pilot-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.vo-pilot-note {
  font-size: 0.875rem !important;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 2rem !important;
}

.vo-pilot-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vo-pilot-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.vo-pilot-item:last-child {
  border-bottom: 1px solid var(--border);
}

.vo-pilot-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.vo-pilot-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.vo-pilot-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Why Us ── */
.vo-why {
  background: var(--bg-alt);
}

.vo-why-inner {
  max-width: 720px;
}

.vo-why-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.vo-why-body p:last-child { margin-bottom: 2rem; }

/* ── CTA ── */
.vo-cta {
  background: var(--bg);
}

.vo-cta-inner {
  max-width: 640px;
}

.vo-cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.vo-cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 2rem;
}

.vo-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vo-hero-video-wrap {
    position: relative;
    inset: auto;
    height: 40vh;
    grid-column: 1;
  }
  .vo-hero-overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(245,247,250,0.6) 80%,
      var(--bg) 100%
    );
  }
  .vo-hero-inner {
    padding: 3rem 2rem 4rem;
    max-width: 100%;
  }
  .vo-hero-scroll { left: 50%; transform: translateX(-50%); }
  .vo-illusion-grid {
    grid-template-columns: 1fr;
  }
  .vo-what-grid,
  .vo-pilot-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vo-what-left,
  .vo-pilot-left {
    position: static;
  }
  .vo-case-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .vo-pillar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .vo-case-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
}
