.hero {
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  min-height: 570px;
  position: relative;
}
.hero-copy {
  padding-block: 65px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: var(--cyan-light);
  font-size: 0.7rem;
  letter-spacing: 0.19em;
}
.hero h1 {
  max-width: 17ch;
  line-height: 1.12;
}
.hero h1 span {
  color: var(--cyan-light);
}
.hero .lead {
  color: #bfd0db;
  max-width: 39ch;
  font-size: 1.13rem;
}
.hero .status {
  margin-top: 23px;
}
.hero-art {
  position: relative;
  margin-right: calc(-1 * var(--space));
  height: 100%;
  min-height: 570px;
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy), transparent 23%),
    linear-gradient(0deg, var(--navy), transparent 15%);
}
.benefits {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.benefit:first-child {
  padding-left: 0;
}
.benefit:last-child {
  padding-right: 0;
  border: 0;
}
.benefit h2 {
  font-size: 1rem;
  letter-spacing: -0.025em;
  margin: 15px 0 8px;
}
.benefit p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.benefit-icon {
  width: 29px;
  height: 29px;
  color: var(--link);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}
.development-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 65px;
}
.development-block h2 {
  max-width: 15ch;
}
.development-panel {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: grid;
  gap: 24px;
}
.development-panel p {
  color: var(--muted);
}
.development-panel .links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.principle {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.principle h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.principle p {
  color: var(--muted);
  font-size: 0.95rem;
}
.support-email {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.steps {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.steps li {
  counter-increment: steps;
  position: relative;
  padding: 0 0 24px 50px;
  margin: 0;
}
.steps li::before {
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  font:
    500 0.85rem ui-monospace,
    monospace;
  color: var(--link);
  padding-top: 4px;
}
.steps strong {
  display: block;
  margin-bottom: 6px;
}
.steps p {
  font-size: 0.95rem;
  color: var(--muted);
}
.empty-state {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.empty-state h2 {
  margin: 20px 0;
  font-size: 2rem;
}
.empty-state p {
  color: var(--muted);
  max-width: 60ch;
}
.legal-draft {
  font-size: 0.9rem;
  border: 1px solid #bc9b56;
  background: #fff9eb;
  color: #61470e;
  padding: 18px 22px;
  border-radius: 6px;
  margin-bottom: 30px;
}
.about-image {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 25px;
}
@media (min-width: 1600px) {
  .hero-art {
    margin-right: -70px;
  }
  .hero-inner {
    min-height: 610px;
  }
  .hero-art {
    min-height: 610px;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.8fr;
    min-height: 510px;
  }
  .hero-copy {
    padding-block: 50px;
  }
  .hero-art {
    min-height: 510px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .benefit:nth-child(2) {
    border: 0;
    padding-right: 0;
  }
  .benefit:nth-child(3) {
    padding-left: 0;
  }
  .development-block {
    gap: 35px;
  }
}
@media (max-width: 600px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-copy {
    padding: 42px 0 15px;
  }
  .hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 3rem);
    max-width: 18ch;
  }
  .hero .eyebrow {
    font-size: 0.67rem;
    line-height: 1.7;
    max-width: 32ch;
  }
  .hero .lead {
    font-size: 1.02rem;
  }
  .hero .actions {
    margin-top: 25px;
  }
  .hero .status {
    margin-top: 19px;
  }
  .hero-art {
    height: 300px;
    min-height: 300px;
    margin: 0 calc(-1 * var(--space));
  }
  .hero-art img {
    object-position: center 56%;
  }
  .hero-art::after {
    background: linear-gradient(
      180deg,
      var(--navy),
      transparent 18%,
      transparent 82%,
      var(--navy)
    );
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .benefit,
  .benefit:first-child,
  .benefit:last-child,
  .benefit:nth-child(3) {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 22px 48px;
    position: relative;
  }
  .benefit:last-child {
    border: 0;
  }
  .benefit-icon {
    position: absolute;
    left: 0;
    top: 27px;
  }
  .benefit h2 {
    margin-top: 0;
  }
  .benefits {
    padding: 12px 0;
  }
  .development-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .development-block h2 {
    max-width: 20ch;
  }
  .empty-state {
    padding: 27px;
  }
  .development-panel .links {
    gap: 10px 24px;
  }
  .about-image {
    max-height: 360px;
  }
}
