/* ===== 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.65) 0%, rgba(255,255,255,0.58) 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: none;
}

/* ===== 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: 36px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* PicUP logosu yatay oranı nedeniyle daha küçük gösterilir */
.logo-item img[src*="picup"] {
  max-height: 28px;
  max-width: 100px;
}

/* Rook logosu biraz daha büyük */
.logo-item img[src*="rook"] {
  max-height: 52px;
  max-width: 160px;
}
.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,
.focus-item.is-open {
  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,
.focus-item.is-open .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,
.focus-item.is-open .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,
.focus-item.is-open .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; }
}

/* Investment Focus — mobile accordion */
@media (max-width: 768px) {
  .focus-section {
    padding: 4rem 1.25rem;
  }
  .focus-item {
    grid-template-columns: 50px 1fr auto;
    gap: 1rem;
    padding: 1.5rem 0;
    cursor: pointer;
  }
  /* Prevent negative margin overflow on mobile */
  .focus-item:hover,
  .focus-item.is-open {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.5rem 1rem;
  }
}

/* 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); }

/* ===== Stories Page ===== */

.sp-header {
  border-bottom: 1px solid var(--border);
  padding-top: 7rem;
}

.sp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 2.5rem;
  color: var(--text);
}

/* Filter tabs */
.sp-tabs {
  display: flex;
  gap: 0;
  align-items: flex-end;
}

.sp-tab {
  background: none;
  border: none;
  padding: 0.6rem 1.25rem 0.75rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.sp-tab:first-child { padding-left: 0; }

.sp-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.sp-tab.active {
  color: var(--text);
}

.sp-tab.active::after {
  transform: scaleX(1);
}

.sp-tab:first-child::after { left: 0; }

.sp-tab-line {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* Grid */
.sp-section {
  padding: 3rem 0 6rem;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1.5rem;
}

/* Featured card — full width left col spanning 2 rows */
.sp-card--featured {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* Re-order: featured goes right, small cards stack left */
.sp-grid .sp-card:not(.sp-card--featured) {
  grid-column: 1;
}

/* Small card */
.sp-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.sp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.08);
}

.sp-card-image {
  width: 100%;
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  flex-shrink: 0;
}

.sp-card-image--featured {
  height: 100%;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.sp-card--featured {
  border: none;
}

.sp-card--featured .sp-card-image--featured {
  border-radius: 10px;
  position: relative;
}

.sp-card--featured .sp-card-image--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.sp-card-featured-body {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  border-radius: 0 0 10px 10px;
}

.sp-card-title--featured {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  text-shadow: none;
  margin: 0 0 0.5rem;
}

.sp-card-image-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.sp-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.sp-card-cat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.sp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.sp-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sp-card-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}
.sp-card:hover .sp-card-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.sp-card--featured .sp-card-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.sp-card--featured .sp-card-arrow {
  color: var(--text-muted);
}

.sp-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 4rem 0;
  font-size: 1rem;
}

/* Stories page section padding */
@media (max-width: 768px) {
  .sp-header {
    padding-top: 5rem;
  }
  .sp-header-inner,
  .sp-container {
    padding: 0 1.25rem;
  }
  .sp-section {
    padding: 2rem 0 4rem;
  }
}

@media (max-width: 480px) {
  .sp-header-inner,
  .sp-container {
    padding: 0 1rem;
  }
}

/* Stories responsive */
@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .sp-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .sp-card:not(.sp-card--featured) {
    grid-column: auto;
  }
  .sp-card-image--featured {
    min-height: 300px;
  }
  .sp-card-title--featured {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .sp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sp-card--featured {
    grid-column: 1;
  }
  .sp-card-image--featured {
    min-height: 220px;
  }
  .sp-card-image {
    height: 140px;
  }
  .sp-card-body {
    padding: 1rem;
  }
  .sp-card-title {
    font-size: 0.9rem;
  }
}

/* Stories slider responsive */
@media (max-width: 768px) {
  .stories-slider-section {
    padding: 4rem 0 4rem 1rem;
  }
  .stories-slider-header {
    padding-right: 1rem;
  }
}

/* ===== 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 auto;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.vo-pillar:last-child {
  border-bottom: 1px solid var(--border);
}
.vo-pillar:hover,
.vo-pillar.is-open {
  background: var(--bg-alt);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

.vo-pillar-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  margin: 0;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.vo-pillar:hover .vo-pillar-body h3,
.vo-pillar.is-open .vo-pillar-body h3 {
  transform: translateX(6px);
}

.vo-pillar-tagline {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease,
              opacity 0.35s ease,
              margin 0.35s ease;
}
.vo-pillar:hover .vo-pillar-tagline,
.vo-pillar.is-open .vo-pillar-tagline {
  max-height: 120px;
  opacity: 1;
  margin-top: 0.75rem;
}

.vo-pillar-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease,
              opacity 0.35s ease,
              margin 0.35s ease;
}
.vo-pillar:hover .vo-pillar-body > p,
.vo-pillar.is-open .vo-pillar-body > p {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}

.vo-pillar-example {
  background: var(--bg);
  border-radius: 8px;
  padding: 0 1.5rem;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease,
              opacity 0.4s ease,
              margin 0.35s ease,
              padding 0.35s ease;
}
.vo-pillar:hover .vo-pillar-example,
.vo-pillar.is-open .vo-pillar-example {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
}

.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;
}

.vo-pillar-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  align-self: flex-start;
  padding-top: 0.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}
.vo-pillar:hover .vo-pillar-arrow,
.vo-pillar.is-open .vo-pillar-arrow {
  transform: translate(4px, -2px);
  color: var(--accent);
}

/* ── Comparison Table ── */
.vo-compare {
  padding-top: 0.5rem;
}

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

.vo-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.vo-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

.vo-compare-table thead tr {
  background: #f8f9fb;
}

.vo-compare-table th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 2px solid #e5e7eb;
}

.vo-compare-th-empty {
  width: 160px;
  border-right: 1px solid #e5e7eb;
}

.vo-compare-th-highlight {
  background: #1e3a5f;
  color: #fff !important;
  border-radius: 0 12px 0 0;
}

.vo-compare-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.15s;
}

.vo-compare-table tbody tr:last-child {
  border-bottom: none;
}

.vo-compare-table tbody tr:hover {
  background: #f3f6fa;
}

.vo-compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  color: #4b5563;
  vertical-align: middle;
  line-height: 1.5;
}

.vo-compare-row-label {
  text-align: left !important;
  font-weight: 700;
  color: var(--text) !important;
  border-right: 1px solid #e5e7eb;
  background: #f8f9fb;
  white-space: nowrap;
}

.vo-compare-td-highlight {
  background: #eef2f8;
  color: #1e3a5f !important;
  font-weight: 600;
}

/* ── 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: 60px 1fr auto;
    gap: 1rem;
    cursor: pointer;
  }
  .vo-pillar:hover,
  .vo-pillar.is-open {
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
  }
  .vo-case-card {
    padding: 2.5rem 1.5rem;
  }
}

/* ===== Portfolio Page ===== */
.pf-header {
  padding: 7rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.pf-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.pf-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.pf-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

/* Grid */
.pf-grid-section {
  padding: 0;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

/* Card */
.pf-card {
  text-decoration: none;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-color);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.pf-card:hover::before {
  opacity: 1;
}

.pf-card:hover {
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* Arrow — top right */
.pf-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
  z-index: 2;
}

.pf-card:hover .pf-card-arrow {
  opacity: 1;
  color: rgba(255,255,255,0.9);
  transform: translate(0, 0);
}

/* Logo */
.pf-card-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
}

.pf-card-logo img {
  max-width: 60%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.35s;
}

.pf-card:hover .pf-card-logo img {
  filter: brightness(0) invert(1);
}

/* Company name — bottom */
.pf-card-info {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pf-card-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.35s;
}

.pf-card:hover .pf-card-name {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Page Layout ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 6rem;
  min-height: calc(100vh - 80px);
  align-items: start;
}

/* Right: addresses */
.contact-right {
  padding-top: 0.5rem;
}

.contact-address-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-address-item {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
}

.contact-address-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.contact-address-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.4rem;
}

.contact-address-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-address-item a:hover {
  color: var(--accent);
}

/* ===== Contact Form ===== */
.contact-left {
  min-width: 0;
}

.contact-form-wrap {
  background: linear-gradient(135deg, #0f1e33 0%, #1a2f4a 60%, #1e3a5f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 24px 64px rgba(15, 30, 51, 0.18), 0 4px 16px rgba(0,0,0,0.08);
}

.contact-form-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.contact-form-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cf-row {
  display: flex;
  gap: 1.25rem;
}

.cf-row-2 > .cf-group {
  flex: 1;
  min-width: 0;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cf-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cf-group label span {
  color: var(--accent);
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.cf-group select option {
  background: #1a2f4a;
  color: #fff;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(230, 100, 40, 0.18);
}

.cf-group textarea {
  resize: vertical;
  min-height: 140px;
}

.cf-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Pitch deck file upload field */
.cf-label-hint {
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 400;
}

.cf-file-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cf-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.cf-file-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cf-file-label:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.cf-file-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.cf-file-error {
  color: #f87171;
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
}

.cf-submit {
  align-self: flex-start;
  padding: 0.85rem 2.25rem;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.cf-submit:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cf-success {
  color: #4ade80;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.cf-error {
  color: #f87171;
  font-size: 0.9rem;
  margin: 0;
}

.cf-error a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .contact-right {
    order: -1;
  }

  .contact-address-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .cf-row-2 {
    flex-direction: column;
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }

  .contact-address-list {
    flex-direction: column;
  }
}

/* ===== Story Detail Page ===== */
.story-detail-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.story-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.story-back:hover {
  color: var(--accent);
}

.story-detail-hero {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 3rem;
}

.story-detail-article {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.story-detail-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-detail-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.story-detail-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.story-detail-meta-sep {
  color: var(--border);
  font-size: 0.82rem;
}

.story-detail-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.story-detail-excerpt {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 2rem;
}

.story-detail-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.story-detail-body {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  white-space: pre-line;
}

/* Make sp-card work as <a> tag */
a.sp-card,
a.sp-card--featured {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

a.sp-card:hover .sp-card-arrow,
a.sp-card--featured:hover .sp-card-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

/* ===== Legal Pages ===== */
.legal-section {
  padding: 3rem 2rem 6rem;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-meta a {
  color: var(--accent);
}

.legal-container h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.legal-container p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.legal-container ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-container ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.legal-container a {
  color: var(--accent);
}

/* ===== 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; }
}
