/* Arrogante, Inc. — single-page site.
   Rebuilt from the Webflow original; breakpoints and metrics match it 1:1. */

@font-face {
  font-family: 'Limelight';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/limelight-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Red Hat Display';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/red-hat-display-300-latin.woff2') format('woff2');
}

:root {
  --black: black;
  --body-dark: #7a7a7a;
  --arrogante-gold: #f3db76;
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #0c0c0c;
  font-family: 'Red Hat Display', sans-serif;
}

.stage {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(circle closest-corner at 50% 0, #333, #0c0c0c);
}

.logo {
  position: absolute;
  width: 512px;
  height: 512px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.logo-dark {
  background-image: url('assets/logo-dark.svg');
}

/* Fade-out timing (mouse leaves the link). */
.logo-gold {
  z-index: 10;
  opacity: 0;
  background-image: url('assets/logo-gold.svg');
  transition: opacity 500ms cubic-bezier(0.047, 0.65, 0.532, 0.925);
}

/* Fade-in timing (mouse enters the link). */
.stage:has(.say-hello:hover) .logo-gold,
.stage:has(.say-hello:focus-visible) .logo-gold {
  opacity: 1;
  transition-duration: 350ms;
  transition-timing-function: cubic-bezier(0.766, 0.223, 0.655, 0.919);
}

.info {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-top: 456px;
  padding-left: 25%;
  padding-right: 25%;
}

.brand {
  margin: 0;
  font-family: Limelight, sans-serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 88px;
  color: var(--black);
  text-transform: uppercase;
}

.row {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  line-height: 16px;
}

.tagline,
.say-hello {
  margin: 0;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body-dark);
}

.tagline {
  flex: 0 auto;
  text-align: center;
}

.say-hello {
  cursor: pointer;
  text-decoration: none;
  transition: color 200ms ease;
}

.say-hello:hover,
.say-hello:focus-visible {
  color: var(--arrogante-gold);
}

.copyright {
  position: fixed;
  inset: auto 0 24px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--arrogante-gold);
}

@media screen and (max-width: 991px) {
  .stage {
    background-image: radial-gradient(circle closest-corner at 50% 8%, #333, #0c0c0c);
  }

  .info {
    width: 100vw;
    margin-top: 296px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .brand {
    font-size: 72px;
    line-height: 72px;
  }

  .logo {
    width: 312px;
    height: 312px;
  }
}

@media screen and (max-width: 767px) {
  .stage {
    width: 100%;
    min-width: 100%;
    background-image: radial-gradient(circle closest-corner at 50% 8%, #292929, #0c0c0c);
  }

  .info {
    margin-top: 248px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.5px;
  }

  .tagline,
  .say-hello {
    font-size: 12px;
    line-height: 16px;
  }

  .copyright {
    position: static;
    padding-top: 16px;
    font-size: 11px;
    line-height: 16px;
  }

  .logo {
    width: 276px;
    height: 276px;
  }
}

@media screen and (max-width: 479px) {
  .stage {
    padding-top: 80px;
    background-image: radial-gradient(circle closest-corner at 50% 24%, #292929, #0c0c0c);
  }

  .info {
    margin-top: 256px;
  }

  .brand {
    font-size: 52px;
    line-height: 56px;
  }

  .row {
    padding-top: 8px;
  }

  .copyright {
    position: fixed;
    bottom: 16px;
    padding-top: 0;
  }
}
