.wrap {
  width: min(100% - 3rem, 1180px);
  margin-inline: auto;
}
.section-space {
  padding-block: clamp(5rem, 9vw, 8rem);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 1rem;
  margin-bottom: -5.5rem;
}
.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.75rem;
  min-height: 4.5rem;
  padding: 0.65rem 0.85rem 0.65rem 1.25rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav-shell > .button {
  justify-self: end;
}
.hero {
  min-height: min(760px, 100svh);
  padding-block: 9.5rem 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 2rem;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 2rem;
}
.hero-visual {
  position: relative;
  min-height: 34rem;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: min(110%, 660px);
  height: auto;
  max-width: none;
  transform: translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0)
    rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg))
    scale(var(--zoom, 1));
  transform-origin: 50% 55%;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.55s ease,
    opacity 0.12s ease;
}
.hero-visual .hero-image-blink {
  opacity: 0;
  pointer-events: none;
}
.hero-visual:not(.has-blink) .hero-image-blink {
  display: none;
}
.hero-visual-ring {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
  right: -5%;
  top: 5%;
  transform: translate3d(var(--ring-x, 0px), var(--ring-y, 0px), 0);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-visual-ring::after {
  content: "";
  position: absolute;
  inset: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: inherit;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-visual:hover {
    --zoom: 1.035;
  }
  .hero-visual:hover img {
    filter: drop-shadow(0 22px 24px rgba(32, 77, 137, 0.16));
  }
  .hero-visual.is-tilting img,
  .hero-visual.is-tilting .hero-visual-ring {
    transition-duration: 0.1s;
  }
  .hero-visual.is-tilting img {
    will-change: transform;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero-visual.has-blink:hover .hero-image-open {
    opacity: 0;
  }
  .hero-visual.has-blink:hover .hero-image-blink {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual img,
  .hero-visual-ring {
    transform: none;
    transition: none;
    filter: none;
  }
}
.section-heading {
  max-width: 750px;
  margin-bottom: 3.25rem;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journey-step {
  padding: 2rem 2rem 2.25rem 0;
}
.journey-step + .journey-step {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}
.venue-note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 760px;
  margin-top: 3rem;
}
.pricing {
  background: var(--muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-deep);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: start;
  gap: 2rem;
  padding-top: clamp(3rem, 5vw, 5rem);
}
.footer-wordmark {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  margin-top: clamp(4rem, 8vw, 7rem);
}
.footer-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-wordmark-base {
  opacity: 0.16;
}
.footer-wordmark img.footer-wordmark-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse 22% 100% at 50% 50%,
    #000 0%,
    #000 18%,
    rgba(0, 0, 0, 0.75) 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 22% 100% at 50% 50%,
    #000 0%,
    #000 18%,
    rgba(0, 0, 0, 0.75) 55%,
    transparent 100%
  );
  transition: opacity 0.16s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-wordmark:hover .footer-wordmark-reveal {
    opacity: 1;
  }
}
.footer-wordmark:focus-visible .footer-wordmark-reveal {
  opacity: 1;
}
.footer-bottom {
  background: transparent;
}
.footer-bottom .wrap {
  padding-block: 0.9rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  min-height: 3.6rem;
  padding-block: 0.55rem;
  border-block: 1px solid var(--line);
}

.footer-bottom-content,
.footer-legal,
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-content {
  gap: 0.25rem 0.75rem;
}
.footer-legal {
  gap: 0.9rem;
}
.footer-social {
  flex: none;
  gap: 0.2rem;
  margin-left: auto;
}
@media (max-width: 800px) {
  .hero {
    min-height: 0;
    padding-block: 10rem 4rem;
  }
  .hero-grid {
    gap: 0;
  }
  .hero-visual {
    min-height: 26rem;
  }
  .hero-visual img {
    width: 120%;
  }
  .pricing-grid,
  .about-grid {
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .features .section-heading {
    margin-inline: auto;
    text-align: center;
  }
  .journey-step {
    text-align: center;
  }
  .journey-step .step-icon,
  .journey-step p {
    margin-inline: auto;
  }
  .venue-note {
    flex-direction: column;
    text-align: center;
  }
  .venue-note-mark {
    align-self: center;
  }
  .wrap {
    width: min(100% - 2rem, 1180px);
  }
  .site-header {
    padding-top: 0.65rem;
    margin-bottom: -8.5rem;
  }
  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
  }
  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.55rem 0.2rem 0.1rem;
  }
  .hero {
    padding-top: 11rem;
    padding-bottom: 3.5rem;
  }
  .hero-grid,
  .pricing-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-block: 0;
    transform: none;
  }
  .hero-visual {
    min-height: 0;
    margin-top: 1rem;
  }
  .hero-visual img {
    width: 100%;
  }
  .hero-visual-ring {
    width: 83%;
    right: 8%;
    top: 8%;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .journey-step,
  .journey-step + .journey-step {
    padding: 1.5rem 0;
    border-left: 0;
  }
  .journey-step + .journey-step {
    border-top: 1px solid var(--line);
  }
  .venue-note {
    align-items: center;
    margin-top: 2rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }
  .footer-wordmark {
    grid-column: 1;
    margin-top: 2rem;
  }
  .footer-bottom-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 0.25rem;
  }
  .footer-bottom-content {
    display: contents;
  }
  .footer-credit {
    flex: 0 0 100%;
  }
  .footer-legal {
    flex-wrap: nowrap;
    gap: 0.3rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .footer-legal a::before {
    margin-right: 0.4rem;
  }
  .footer-social {
    flex-wrap: nowrap;
    gap: 0.05rem;
  }
  .footer-social a {
    width: 1.5rem;
  }
}
