:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #ffffff;
}

body {
  min-height: 100svh;
}

a {
  color: inherit;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(28px, 4vw, 64px);
  overflow: hidden;
}

.brand {
  width: fit-content;
  line-height: 0;
}

.brand img {
  display: block;
  width: clamp(150px, 13.5vw, 194px);
  height: auto;
}

.statement {
  align-self: center;
  max-width: none;
  margin: 0;
  font-size: clamp(48px, 4.9vw, 78px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.058em;
  white-space: nowrap;
}

.ventures {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 64px);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.25;
}

.ventures a {
  position: relative;
  padding-block: 4px;
  text-decoration: none;
}

.ventures a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.ventures a:hover::after,
.ventures a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ventures a:focus-visible,
.brand:focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: 6px;
}

@media (max-width: 900px) {
  .statement {
    max-width: 11.5em;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .page {
    padding: 28px 24px 30px;
  }

  .statement {
    max-width: 9.5em;
    font-size: clamp(45px, 14.3vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.064em;
  }

  .ventures {
    justify-content: flex-start;
    gap: 26px;
    font-size: 16px;
  }

  .brand img {
    width: 118px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .page {
    padding-block: 24px;
  }

  .brand img {
    width: 104px;
  }

  .statement {
    font-size: clamp(40px, 7vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ventures a::after {
    transition: none;
  }
}
