﻿.pitch-page {
  background: #0f515d;
}

.pitch-main {
  min-height: 100vh;
  display: grid;
}

.pitch-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 52, 61, 0.96), rgba(32, 130, 143, 0.92)),
    linear-gradient(180deg, #236f7d, #116473);
}

.pitch-shell {
  display: grid;
  gap: 1rem;
}

.pitch-logo {
  width: clamp(4.5rem, 9vw, 6.25rem);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  box-shadow: 0 18px 36px rgba(7, 18, 20, 0.24);
}

.pitch-back {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-hero .section-label {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

.pitch-hero h1 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.pitch-hero > .container > p:not(.section-label) {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.pitch-grid article {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
}

.pitch-grid span {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.pitch-grid h2 {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .pitch-grid {
    grid-template-columns: 1fr;
  }
}

