@font-face {
  font-family: "SF-Pro-Display-Bold";
  src: url("../fonts/SF-Pro-Display-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: "SF-Pro-Display-Bold", Arial, Helvetica, sans-serif;
  --black: #000;
  --white: #fff;
  --page-padding: clamp(24px, 5vw, 80px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  min-height: 100vh;
}

.hero {
  min-height: 100svh;
  padding: var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(130px, 14vw, 210px);
  margin-bottom: clamp(42px, 7vw, 88px);
}

.logo img {
  width: 100%;
  height: auto;
}

.hero-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(44px, 7.1vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.hero-title span {
  display: block;
}

.cta-button {
  width: 235px;
  height: 72px;
  margin-top: clamp(48px, 7vw, 90px);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.cta-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}





.cta-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  transform: translateX(16px);
  transition: transform 0.42s cubic-bezier(.22, 1, .36, 1);
}

.cta-icon {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition:
    transform 0.42s cubic-bezier(.22, 1, .36, 1),
    opacity 0.28s ease;
}

.cta-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.cta-icon-calendar {
  left: 20px;
  opacity: 1;
}

.cta-icon-arrow {
  top: 37px;
  right: 20px;
  opacity: 0;
  transform: translate(38px, -50%);
}

.cta-button:hover .cta-text,
.cta-button:focus-visible .cta-text {
  transform: translateX(-12px);
}

.cta-button:hover .cta-icon-calendar,
.cta-button:focus-visible .cta-icon-calendar {
  opacity: 0;
  transform: translate(-42px, -50%);
}

.cta-button:hover .cta-icon-arrow,
.cta-button:focus-visible .cta-icon-arrow {
  opacity: 1;
  transform: translate(0, -50%);
}







.cta-button:focus-visible {
  outline: 3px solid rgba(0, 0, 0, .25);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .hero {
    padding: 32px 20px;
  }

  .logo {
    width: 135px;
    margin-bottom: 52px;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.9;
    letter-spacing: -0.06em;
  }

  .cta-button {
    width: 250px;
    height: 68px;
    margin-top: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}



.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.hero > *:not(.hero-bg-video):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}