/* ── Ventures Page ───────────────────────────────────────────── */

/* Hero */
.ventures-hero {
  position: relative;
  min-height: 70vh;
  background: #090e1a;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.ventures-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.ventures-hero__glow--1 {
  width: 600px; height: 400px;
  background: rgba(201,169,110,0.1);
  top: -50px; left: -100px;
}
.ventures-hero__glow--2 {
  width: 500px; height: 400px;
  background: rgba(0,174,239,0.08);
  bottom: -50px; right: -50px;
}
.ventures-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.ventures-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 1.2rem;
}
.ventures-label-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.ventures-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.ventures-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.ventures-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.ventures-scroll__line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* Venture Sections */
.venture-section {
  padding: 100px 0;
}
.venture-section--dark {
  background: #0d1117;
}
.venture-section:not(.venture-section--dark) {
  background: #f8f9fa;
}
.venture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.venture-layout--reverse { direction: rtl; }
.venture-layout--reverse > * { direction: ltr; }

.venture-brand-tag {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.venture-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.venture-section:not(.venture-section--dark) .venture-info h2 {
  color: #111;
}
.venture-info > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Brand philosophy */
.brand-philosophy {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201,169,110,0.05);
  border-left: 3px solid #c9a96e;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 1.5rem 0;
}
.brand-philosophy__quote {
  font-size: 2.5rem;
  color: #c9a96e;
  line-height: 1;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.brand-philosophy__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
  padding-top: 4px;
}

/* Venture meta */
.venture-meta {
  display: flex;
  gap: 24px;
  margin-top: 1.5rem;
}
.venture-meta__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 4px;
}
.venture-meta__value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Venture cards */
.venture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
}
.venture-card--light {
  background: #fff;
  border: 1px solid #e5e7eb;
}
.venture-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.venture-card--light h4 { color: #888; }

/* Product tags */
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-tag--gold {
  background: rgba(201,169,110,0.1);
  color: #c9a96e;
  border: 1px solid rgba(201,169,110,0.2);
}
.product-tag--blue {
  background: rgba(0,174,239,0.08);
  color: var(--primary);
  border: 1px solid rgba(0,174,239,0.15);
}

/* Markets */
.markets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.market-group__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-bottom: 8px;
}
.market-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.market-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.market-dot--primary { background: #c9a96e; box-shadow: 0 0 6px rgba(201,169,110,0.4); }

/* Growth items */
.growth-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #444;
  padding: 7px 0;
  border-top: 1px solid #f0f0f0;
}
.growth-item:first-of-type { border-top: none; }
.growth-arrow { color: var(--primary); font-weight: 700; }

/* Expansion Strategy */
.expansion-section {
  background: #090e1a;
  padding: 100px 0;
}
.expansion-header {
  text-align: center;
  margin-bottom: 60px;
}
.expansion-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.expansion-header p {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto;
}
.expansion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.expansion-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.expansion-card:hover {
  border-color: rgba(0,174,239,0.2);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.expansion-icon { font-size: 1.8rem; margin-bottom: 12px; }
.expansion-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.expansion-card p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* Vision */
.vision-section {
  position: relative;
  background: #0d1117;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vision-section__glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,174,239,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.vision-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.vision-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}
.vision-inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.vision-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.vision-pillar {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}
.vision-pillar:hover {
  border-color: rgba(0,174,239,0.3);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
  .venture-layout { grid-template-columns: 1fr; gap: 40px; }
  .venture-layout--reverse { direction: ltr; }
  .markets-grid { grid-template-columns: 1fr; }
}
