.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 0;
}
.home-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 52%, transparent), transparent 62%),
    linear-gradient(0deg, color-mix(in srgb, var(--bg) 35%, transparent), transparent 30%);
  pointer-events: none;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 34px;
}
.hero-topline .eyebrow:last-child {
  letter-spacing: 0.05em;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 65px;
  align-items: center;
}
.hero-copy {
  padding: 18px 0 30px;
}
.hero-kicker {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(6rem, 10.5vw, 10.2rem);
  letter-spacing: -0.085em;
  font-weight: 800;
  line-height: 0.97;
  margin-left: -0.06em;
  position: relative;
}
.hero-title > span {
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  letter-spacing: -0.045em;
  line-height: 1.25;
  max-width: 540px;
  margin-top: 25px;
}
.hero-description {
  color: var(--muted);
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 35px;
}
.hero-actions .button {
  padding-inline: 25px;
  gap: 30px;
}
.hero-note {
  display: flex;
  gap: 12px;
  margin-top: 42px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero-note span + span:before {
  content: "/";
  margin-right: 12px;
  color: var(--accent);
}
.portrait-area {
  position: relative;
  padding: 12px 0 20px;
}
.portrait-caption {
  position: relative;
  margin: 0 0 18px 3px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 360px;
}
.portrait-frame {
  position: relative;
  border-radius: 160px 160px 24px 24px;
  overflow: hidden;
  aspect-ratio: 4/4.7;
  background: #101412;
  border: 1px solid var(--line);
  isolation: isolate;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.8s;
}
.portrait-frame:hover img {
  transform: scale(1.035);
}
.portrait-frame:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #080d09e8);
}
.portrait-identity {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 1;
  color: #f1f3e9;
}
.portrait-identity strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}
.portrait-identity span {
  font-size: 0.75rem;
  color: #b5bcb2;
}
.portrait-stamp {
  position: absolute;
  top: 82px;
  right: -22px;
  z-index: 2;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
}
.portrait-stamp small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-top: 7px;
}
.hero-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 48px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}
.hero-baseline > a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-baseline .icon {
  width: 16px;
  height: 16px;
}
.stack-strip {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}
.stack-strip > span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.home-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-link {
  border-top: 1px solid var(--line);
  padding: 25px 0 32px;
  position: relative;
  transition: border-color 0.25s;
}
.home-link:hover {
  border-color: var(--accent);
}
.home-link .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 36px;
}
.home-link h3 {
  font-size: 1.65rem;
  margin-bottom: 15px;
}
.home-link > p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 295px;
}
.home-link > .icon {
  position: absolute;
  right: 5px;
  top: 26px;
  color: var(--accent);
  transition: transform 0.25s;
}
.home-link:hover > .icon {
  transform: translate(3px, -3px);
}
.home-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg-soft);
  padding: 40px 45px;
  border-radius: 18px;
  margin-bottom: 40px;
}
.home-bottom h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.home-bottom p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 0.9375rem;
}
@media (max-width: 1100px) {
  .hero-grid {
    gap: 30px;
  }
  .hero-title {
    font-size: 10.5vw;
  }
  .portrait-stamp {
    right: -12px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    padding-inline: 20px;
    gap: 20px;
  }
  .hero-topline {
    margin-bottom: 25px;
  }
  .hero-baseline {
    margin-top: 30px;
  }
  .hero-note {
    margin-top: 30px;
  }
}
@media (min-width: 761px) {
  .home-hero {
    padding-top: 24px;
  }
  .hero-topline {
    margin-bottom: 24px;
  }
  .hero-title {
    letter-spacing: -0.075em;
  }
}
@media (max-width: 760px) {
  .home-hero {
    padding-top: 16px;
  }
  .hero-topline {
    margin-bottom: 30px;
    padding-top: 17px;
  }
  .hero-topline .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }
  .hero-topline .eyebrow:last-child {
    display: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-copy {
    display: contents;
  }
  .hero-kicker {
    order: 1;
  }
  .hero-title {
    order: 2;
    font-size: clamp(5.3rem, 21vw, 9rem);
  }
  .hero-subtitle {
    order: 5;
    font-size: 1.9rem;
    margin-top: 22px;
    max-width: 400px;
  }
  .hero-description {
    order: 6;
    max-width: 440px;
    margin-top: 22px;
  }
  .hero-actions {
    order: 4;
    gap: 23px;
    margin-top: 27px;
  }
  .hero-note {
    order: 7;
    margin-top: 27px;
  }
  .portrait-area {
    order: 3;
    width: min(100%, 460px);
    margin-inline: auto;
    padding: 25px 15px 0 0;
  }
  .portrait-frame {
    aspect-ratio: 4/3.8;
    border-radius: 140px 140px 20px 20px;
  }
  .portrait-stamp {
    top: 80px;
    right: 0;
    width: 68px;
    height: 68px;
  }
  .portrait-caption {
    font-size: 0.8125rem;
    max-width: 290px;
  }
  .portrait-identity {
    left: 24px;
    bottom: 24px;
  }
  .hero-baseline {
    align-items: start;
    gap: 23px;
    flex-direction: column;
    margin-top: 35px;
  }
  .stack-strip {
    gap: 16px 22px;
  }
  .stack-strip > span {
    font-size: 0.8125rem;
  }
  .home-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-link {
    padding: 23px 0 28px;
  }
  .home-link .eyebrow {
    margin-bottom: 25px;
  }
  .home-link > p {
    max-width: none;
  }
  .home-bottom {
    align-items: start;
    flex-direction: column;
    padding: 30px 25px;
    gap: 25px;
  }
  .hero-topline .eyebrow {
    font-size: 0.75rem;
  }
}
