.hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 60px 24px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 60px;
  background: var(--accent);
  opacity: 0.2;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  animation: stripe-pulse 4.5s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-brand {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-brand span {
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.35;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(171, 196, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 22px;
}

.hero-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--secondary);
  color: var(--bg);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

@keyframes stripe-pulse {
  0%,
  100% {
    opacity: 0.16;
  }
  50% {
    opacity: 0.28;
  }
}

.offers-section {
  position: relative;
  padding: 56px 24px 64px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(0, 8, 20, 0.82) 0%, rgba(0, 29, 61, 0.88) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, var(--vision), transparent 55%);
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
}

.pitch-metrics {
  padding: 56px 24px;
  background: var(--growth);
  position: relative;
  overflow: hidden;
}

.pitch-metrics::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border: 2px solid var(--pitch);
  opacity: 0.25;
  transform: rotate(18deg);
  pointer-events: none;
}

.metrics-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--startup);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  background: rgba(0, 8, 20, 0.45);
  border: 1px solid var(--border);
  padding: 22px 18px;
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-block {
  padding: 56px 24px;
  position: relative;
}

.info-block:nth-child(even) {
  background: rgba(0, 29, 61, 0.35);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.info-inner.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.info-inner.reverse .info-copy {
  order: 2;
}

.info-inner.reverse .decor-wrap {
  order: 1;
}

.info-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.info-copy p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.info-copy ul {
  padding-left: 1.15rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.info-copy li {
  margin-bottom: 6px;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
}

.decor-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.vision-band {
  padding: 56px 24px;
  background:
    linear-gradient(135deg, rgba(0, 53, 102, 0.55), rgba(0, 8, 20, 0.9)),
    var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--investors), transparent);
  pointer-events: none;
}

.vision-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.vision-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.vision-inner p {
  color: var(--muted);
  font-size: 0.95rem;
}

.startup-list {
  padding: 56px 24px 72px;
}

.startup-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.step {
  border-left: 3px solid var(--pitch);
  background: rgba(0, 29, 61, 0.4);
  padding: 18px 16px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--startup);
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

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

  .info-inner,
  .info-inner.reverse {
    grid-template-columns: 1fr;
  }

  .info-inner.reverse .info-copy,
  .info-inner.reverse .decor-wrap {
    order: unset;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 220px;
    padding: 32px 20px;
  }

  .hero::before {
    height: 36px;
  }

  .info-block,
  .offers-section,
  .pitch-metrics,
  .vision-band {
    overflow-x: hidden;
  }

  .decor-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
  }
}

@media (max-width: 375px) {
  .hero,
  .info-block,
  .offers-section,
  .pitch-metrics,
  .startup-list {
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  .decor-wrap,
  .decor-img {
    max-width: 100%;
    width: 100%;
  }

  .decor-img {
    max-height: 200px;
  }

  .pitch-metrics::after {
    display: none;
  }
}
