:root {
  --vcstart-bg: #f4f7fa;
  --vcstart-surface: #ffffff;
  --vcstart-surface-soft: #f9fbfd;
  --vcstart-ink: #183247;
  --vcstart-muted: #667b8d;
  --vcstart-accent: #e96b16;
  --vcstart-accent-deep: #c5530f;
  --vcstart-border: rgba(24, 50, 71, 0.08);
  --vcstart-shadow: 0 18px 40px rgba(19, 42, 62, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 205, 165, 0.32), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f4f7fa 100%);
  color: var(--vcstart-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.vcstart-page {
  min-height: 100vh;
  padding: 24px;
}

.vcstart-shell {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.vcstart-topbar,
.vcstart-hero,
.vcstart-section,
.vcstart-cta {
  background: var(--vcstart-surface);
  border: 1px solid var(--vcstart-border);
  border-radius: 28px;
  box-shadow: var(--vcstart-shadow);
}

.vcstart-topbar {
  padding: 24px;
  display: flex;
  justify-content: center;
  background: #092142;
  border-color: rgba(255, 255, 255, 0.14);
}

.vcstart-brand {
  display: inline-flex;
}

.vcstart-brand-image {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

.vcstart-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 28px;
  align-items: center;
  overflow: hidden;
}

.vcstart-hero-copy {
  display: grid;
  gap: 18px;
}

.vcstart-kicker {
  margin: 0;
  color: var(--vcstart-accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vcstart-hero h1,
.vcstart-section-head h2,
.vcstart-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.vcstart-section-head h2,
.vcstart-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.vcstart-lead,
.vcstart-card p,
.vcstart-support-card p,
.vcstart-journey-card p,
.vcstart-cta p {
  margin: 0;
  color: var(--vcstart-muted);
  line-height: 1.55;
  font-size: 1.04rem;
}

.vcstart-hero-actions,
.vcstart-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vcstart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vcstart-button:hover {
  transform: translateY(-1px);
}

.vcstart-button-primary {
  background: var(--vcstart-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(233, 107, 22, 0.2);
}

.vcstart-button-secondary {
  background: rgba(24, 50, 71, 0.06);
  color: var(--vcstart-ink);
  border: 1px solid rgba(24, 50, 71, 0.08);
}

.vcstart-hero-media {
  min-width: 0;
}

.vcstart-hero-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.vcstart-section,
.vcstart-cta {
  padding: 30px;
}

.vcstart-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.vcstart-benefit-grid,
.vcstart-support-grid,
.vcstart-journey {
  display: grid;
  gap: 16px;
}

.vcstart-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vcstart-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vcstart-card,
.vcstart-support-card,
.vcstart-journey-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--vcstart-surface-soft);
  border: 1px solid var(--vcstart-border);
}

.vcstart-card span {
  display: block;
  color: var(--vcstart-accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vcstart-card strong,
.vcstart-support-card strong,
.vcstart-journey-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.22rem;
  line-height: 1.08;
}

.vcstart-section-highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 232, 214, 0.75), transparent 34%),
    var(--vcstart-surface);
}

.vcstart-cta {
  text-align: center;
}

.vcstart-cta p {
  width: min(720px, 100%);
  margin: 0 auto;
}

.vcstart-cta-actions {
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .vcstart-hero,
  .vcstart-benefit-grid,
  .vcstart-support-grid {
    grid-template-columns: 1fr;
  }

  .vcstart-hero-image {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .vcstart-page {
    padding: 12px;
  }

  .vcstart-topbar,
  .vcstart-hero,
  .vcstart-section,
  .vcstart-cta {
    border-radius: 22px;
  }

  .vcstart-hero,
  .vcstart-section,
  .vcstart-cta {
    padding: 20px;
  }

  .vcstart-cta {
    text-align: left;
  }

  .vcstart-cta p {
    width: 100%;
  }

  .vcstart-cta-actions {
    justify-content: flex-start;
  }

  .vcstart-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vcstart-page {
    padding: 10px;
  }

  .vcstart-topbar,
  .vcstart-hero,
  .vcstart-section,
  .vcstart-cta {
    border-radius: 18px;
  }
}
