.venture-main,
.project-main {
  width: min(1120px, 92vw);
  margin: 52px auto 90px;
  position: relative;
  z-index: 1;
}

.venture-intro,
.project-intro {
  margin-bottom: 32px;
}

.venture-intro h1,
.project-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.1;
  max-width: 18ch;
}

.venture-intro p,
.project-intro p {
  margin: 16px 0 0;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.72;
}

.venture-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.venture-card,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 31, 47, 0.82), var(--panel));
  box-shadow: var(--shadow);
  padding: 22px;
}

.venture-card h2,
.project-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.venture-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.venture-card img,
.project-card img {
  display: block;
  width: min(100%, 280px);
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 14px;
}

.venture-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 31, 47, 0.82), var(--panel));
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.venture-detail h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.venture-detail p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 76ch;
}

.venture-logo-wrap {
  margin: 8px 0 20px;
}

.venture-logo-wrap img {
  display: block;
  width: min(100%, 360px);
  max-height: 200px;
  object-fit: contain;
  object-position: left center;
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.95fr);
  gap: clamp(16px, 2.8vw, 30px);
  align-items: start;
  margin-bottom: 14px;
}

.landing-hero-copy .kicker {
  margin-bottom: 10px;
}

.landing-hero-copy h1 {
  margin: 0;
  max-width: 16ch;
}

.venture-detail .landing-lead {
  margin-top: 14px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.5;
}

.venture-detail .landing-sublead {
  color: var(--muted);
  font-size: 1.02rem;
}

.landing-summary-list {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.landing-summary-list li {
  color: var(--muted);
  line-height: 1.6;
}

.landing-hero-logo .venture-logo-wrap {
  margin-top: 2px;
  margin-bottom: 0;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(109, 166, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.landing-hero-logo .venture-logo-wrap img {
  width: min(100%, 350px);
  max-height: 260px;
  margin: 0 auto;
  object-position: center center;
}

.landing-section {
  margin-top: 18px;
}

.landing-section h2 {
  margin: 0 0 10px;
  font-size: 1.42rem;
}

.landing-section p:last-child,
.landing-section ul:last-child {
  margin-bottom: 0;
}

.landing-actions {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(109, 166, 255, 0.18);
}

.legal-main {
  width: min(940px, 92vw);
  margin: 52px auto 90px;
  position: relative;
  z-index: 1;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 31, 47, 0.82), var(--panel));
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
}

.legal-card h1 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
}

.legal-card h2 {
  margin: 22px 0 10px;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.footer-links {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .venture-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-hero-logo {
    order: -1;
  }
}
