/* KUWONA STUDIOS - Venture Page Styles */
/* Sequoia-inspired minimal design */

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-logo {
  flex-shrink: 0;
}

.logo-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #596A6A, #728181);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: #F2FBFB;
  font-family: 'IBM Plex Mono', monospace;
}

.venture-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-transform: lowercase;
  color: #F2FBFB;
}

.company-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-intro p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: #F2FBFB;
  margin: 0;
  font-family: 'Satoshi-Variable', sans-serif;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #F2FBFB;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  transition: color 0.3s ease;
  font-family: 'Satoshi-Variable', sans-serif;
  font-weight: 300;
}

.social-links a:hover {
  color: #596A6A;
}

.company-tag {
  display: inline-block;
  background-color: rgba(89, 106, 106, 0.15);
  color: #728181;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(89, 106, 106, 0.3);
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-item h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #728181;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  margin-bottom: 12px;
}

.info-item p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #F2FBFB;
  font-family: 'Satoshi-Variable', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.belief-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: lowercase;
  color: #F2FBFB;
  font-family: 'Satoshi-Variable', sans-serif;
}

.belief-section p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: #F2FBFB;
  margin: 0;
  font-family: 'Satoshi-Variable', sans-serif;
  font-weight: 300;
}

.additional-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.info-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #728181;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  margin-bottom: 12px;
}

.info-block p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #F2FBFB;
  font-family: 'Satoshi-Variable', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .two-column-layout {
    gap: 40px;
    margin-top: 60px;
  }

  .left-column,
  .right-column {
    gap: 30px;
  }

  .logo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .two-column-layout {
    gap: 30px;
    margin-top: 40px;
  }

  .left-column,
  .right-column {
    gap: 25px;
  }

  .logo-placeholder {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .company-intro {
    gap: 15px;
  }
}
