.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 18px;
}

.hero-subcopy {
  max-width: 650px;
  color: var(--muted-2);
  font-size: 16px;
  margin-bottom: 34px;
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(247, 201, 72, 0.16);
  filter: blur(18px);
}

.panel-label {
  position: relative;
  color: var(--muted-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.metric {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

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

.card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--bg-card);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 201, 72, 0.42);
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.09), rgba(255, 255, 255, 0.025)),
    var(--bg-card);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  font-weight: 900;
}

.card h3 {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 120px;
}

.profile-photo-wrap {
  width: min(100%, 280px);
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(247, 201, 72, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.profile-photo {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.04);
}

.text-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.text-stack p {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.text-stack p:last-child {
  border-bottom: 0;
}

.quote-box {
  margin-top: 24px;
  padding: 24px;
  border-left: 3px solid var(--accent);
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
}

.story-box {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 201, 72, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.story-box .text-stack p {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

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

.client {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.client h3 {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.client p {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  position: relative;
  margin: 72px 0 32px;
  padding: 58px;
  border: 1px solid rgba(247, 201, 72, 0.28);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards,
  .clients {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-title {
    position: relative;
    top: 0;
  }

  .profile-photo-wrap {
    width: min(100%, 240px);
  }

  .profile-photo {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    gap: 32px;
  }

  .cards,
  .clients,
  .list-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .story-box,
  .cta {
    padding: 28px;
  }

  .profile-photo-wrap {
    width: min(100%, 220px);
    margin-top: 24px;
  }

  .profile-photo {
    height: 270px;
  }
}
