:root {
  --background: #030303;
  --text: #f0f0f0;
  --muted: #8d8d8d;
  --muted-strong: #969696;
  --border: #4d4d4d;
}

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

html {
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  background: #000;
}

.hero__content {
  width: 100%;
  min-height: 100svh;
  padding:
    clamp(50px, 6.1vw, 108px)
    clamp(28px, 4.7vw, 82px)
    clamp(52px, 7vw, 100px);
  display: flex;
  flex-direction: column;
}

.hero__header {
  max-width: 1320px;
}

.hero__name-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  margin-bottom: 10px;
}

.hero__name {
  margin: 0;
  color: var(--muted);
  font-size: clamp(42px, 3.45vw, 61px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero__arrow {
  width: clamp(54px, 4.1vw, 72px);
  height: auto;
  flex: 0 0 auto;
  align-self: center;
  transform: translateY(2px);
  opacity: 0.9;
}

.hero__headline {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 3.45vw, 61px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.043em;
}

.hero__headline--mobile {
  display: none;
}

.hero__body {
  width: min(1260px, 78vw);
  margin-top: auto;
  padding-top: clamp(120px, 15vh, 190px);
}

.hero__body p {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.4vw, 25px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.hero__body p + p {
  margin-top: 28px;
  max-width: 1210px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 66px;
}

.button {
  min-height: 52px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: none;
  }

.button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.button--primary {
  min-width: 191px;
  color: #171717;
  background: #ededed;
  border-color: #ededed;
}

.button--primary:hover {
  background: #fff;
  border-color: #fff;
}

.button--secondary {
  min-width: 216px;
  color: #d5d5d5;
  background: transparent;
  border-color: var(--border);
}

.button--secondary:hover {
  color: #fff;
  border-color: #777;
}

@media (max-width: 1100px) {
  .hero__body {
    width: min(900px, 100%);
  }

  .hero__headline br {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero__content {
    min-height: auto;
    padding: 48px 22px 42px;
  }

  .hero__name-row {
    flex-wrap: nowrap;
    gap: 14px;
    margin-bottom: 0;
  }

  .hero__name,
  .hero__headline {
    font-size: clamp(30px, 9.5vw, 68px);
    line-height: 1.3;
  }

  .hero__name {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero__arrow {
    width: clamp(44px, 12vw, 52px);
  }

  .hero__headline--desktop {
    display: none;
  }

  .hero__headline--mobile {
    display: block;
    max-width: 100%;
  }

  .hero__body {
    width: 100%;
    margin-top: 96px;
    padding-top: 0;
  }

  .hero__body p {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero__actions {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-sequence-title,
  .hero-sequence-arrow,
  .hero-sequence-body {
    opacity: 1 !important;
    transform: none !important;
  }
}







/* Experiment: line-height only */
.hero__body p{
  line-height: 1.5 !important;
}


/* Fully rounded hero buttons */
.hero__buttons a,
.hero__button{
    border-radius:9999px !important;
}
