.home-page {
  padding-bottom: 0;
}
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 45px;
}
.hero-copy h1 {
  font-size: clamp(46px, 6.2vw, 94px);
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 0;
  max-width: 730px;
}
.hero-text {
  max-width: 500px;
  color: var(--muted);
  margin: 28px 0;
}
.hero-text strong {
  color: var(--ink);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.button-primary {
  padding: 15px 22px;
}
.proof-avatars {
  display: flex;
  align-items: center;
}
.proof-avatars b {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: -8px;
  border: 2px solid #f7f7f4;
  font-size: 9px;
  background: #b8dded;
  color: #000;
}
.proof-avatars b:nth-child(2) {
  background: #d7f76c;
}
.proof-avatars b:nth-child(3) {
  background: #ff835d;
}
.proof-avatars b:nth-child(4) {
  background: #fff;
}
.hero-visual {
  height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}
.profile-card {
  width: min(280px, 72vw);
  height: 370px;
  position: relative;
  z-index: 2;
  padding: 14px;
  border-radius: 140px 140px 25px 25px;
  background: #d2e8ea;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  overflow: hidden;
}
.profile-image {
  height: 284px;
  border-radius: 125px 125px 15px 15px;
  background: linear-gradient(155deg, #6d898f, #293d45);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transition: transform 0.3s ease;
}
.profile-card:hover .profile-image img {
  transform: scale(1.01);
}
.profile-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 4px;
}
.profile-card-bottom p {
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}
.profile-card-bottom i {
  font-style: normal;
  font-size: 11px;
  background: var(--lime);
  padding: 5px 8px;
  border-radius: 10px;
  color: #000;
}
.orbit {
  position: absolute;
  border: 1px solid #cbd6d1;
  border-radius: 50%;
  width: 410px;
  height: 410px;
}
.orbit-two {
  width: 480px;
  height: 480px;
  border-style: dashed;
}
.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: var(--shadow);
  font-size: 11px;
  line-height: 1.25;
}
.floating-card span {
  font-size: 18px;
}
.floating-card p {
  margin: 3px 0 0;
  font-weight: 700;
}
.code-card {
  left: 0;
  top: 110px;
  background: var(--lime);
  color: #000;
}
.award-card {
  right: 0;
  bottom: 70px;
  background: var(--white);
}
.hero-footer {
  margin: 0 calc(clamp(20px, 8vw, 130px) * -1);
  margin-top: clamp(34px, 4vw, 58px);
  padding: 17px clamp(20px, 8vw, 130px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
}
.hero-footer > * {
  min-width: 0;
}
.skill-marquee {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 21px;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.skill-marquee i {
  color: var(--orange);
  font-style: normal;
}
.skills-preview {
  padding: 130px 0 105px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.skills-preview h2,
.section-intro h2 {
  font-size: clamp(30px, 3.5vw, 51px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 400px;
}
.skill-list article {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 45px 1fr 1fr;
  gap: 15px;
  padding: 23px 0;
}
.skill-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.skill-list span {
  color: var(--orange);
  font-size: 11px;
}
.skill-list h3 {
  margin: 0;
  font-size: 16px;
}
.skill-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 800px) {
  .hero-grid,
  .skills-preview {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-top: 25px;
  }
  .hero-visual {
    height: 420px;
    order: -1;
  }
  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }
  .skill-marquee {
    justify-content: flex-start;
    text-align: left;
  }
  .skills-preview {
    gap: 40px;
  }
  .skill-list article {
    grid-template-columns: 35px 1fr;
  }
  .skill-list p {
    grid-column: 2;
  }
  .floating-card {
    transform: scale(0.85);
  }
  .orbit-two {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 420px) {
  .hero-visual {
    height: 340px;
  }
  .profile-card {
    transform: scale(0.8) rotate(4deg);
  }
  .orbit {
    transform: scale(0.75);
  }
  .code-card {
    left: -10px;
    top: 70px;
  }
  .award-card {
    right: -10px;
    bottom: 35px;
  }
}
