:root {
  color-scheme: light;
  --color-background: #ffffff;
  --color-text: #090d12;
  --color-muted: #3f4854;
  --color-accent: #ff6a00;
  --page-gutter: clamp(1.75rem, 4.6vw, 4.5rem);
  --page-width: 100rem;
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  min-width: 20rem;
  background: var(--color-background);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-system);
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  padding: clamp(1.75rem, 3.7vw, 3.75rem) var(--page-gutter) clamp(1.5rem, 2.5vw, 2.75rem);
}

.site-header,
.hero,
.site-footer {
  width: min(100%, var(--page-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.7rem, 1.1vw, 1.1rem);
}

.brand-mark {
  width: clamp(2rem, 3.2vw, 3.1rem);
  height: auto;
}

.brand-name {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 720;
  letter-spacing: 0.22em;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(24rem, 0.88fr) minmax(32rem, 1.12fr);
  align-items: center;
  gap: clamp(1rem, 3.5vw, 4rem);
  padding-block: clamp(2rem, 4.8vh, 4.5rem) clamp(1.5rem, 3vh, 3rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-top: -2rem;
  padding-block: 1rem;
  animation: copy-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1 {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(4.2rem, 7.2vw, 7.35rem);
  font-weight: 720;
  letter-spacing: -0.064em;
  line-height: 0.91;
}

h1 span {
  display: block;
}

.hero-description {
  max-width: 28rem;
  margin: clamp(2rem, 3vw, 3.1rem) 0 0;
  color: var(--color-muted);
  font-size: clamp(1.12rem, 1.58vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.48;
}

.hero-status {
  margin: clamp(2.2rem, 4.1vw, 4rem) 0 0;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(116%, 58rem);
  margin: -2rem -8% 0 0;
  animation: sculpture-enter 900ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual::after {
  position: absolute;
  right: 9%;
  bottom: 3.5%;
  left: 7%;
  z-index: -1;
  height: 4%;
  border-radius: 50%;
  background: rgb(9 13 18 / 9%);
  content: "";
  filter: blur(1.8rem);
}

.hero-visual img {
  width: 100%;
  height: auto;
  animation: sculpture-float 8s 1s ease-in-out infinite;
}

.site-footer {
  position: relative;
  z-index: 2;
  color: var(--color-muted);
}

.site-footer small {
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 470;
  letter-spacing: -0.01em;
}

@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sculpture-enter {
  from {
    opacity: 0;
    transform: translate3d(1.75rem, 0.75rem, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes sculpture-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: minmax(21rem, 0.9fr) minmax(25rem, 1.1fr);
  }

  h1 {
    font-size: clamp(3.75rem, 7vw, 5.35rem);
  }
}

@media (max-width: 48rem) {
  .site-shell {
    display: block;
    min-height: 100svh;
    padding: 2.1rem clamp(1.5rem, 7vw, 2.25rem) 1.7rem;
  }

  .brand {
    gap: 0.72rem;
  }

  .brand-mark {
    width: 2rem;
  }

  .brand-name {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 3rem 0 0;
  }

  .hero-copy {
    margin-top: 0;
    padding: 0;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 15.4vw, 4.85rem);
    letter-spacing: -0.067em;
    line-height: 0.94;
  }

  .hero-description {
    max-width: 20rem;
    margin-top: 2.35rem;
    font-size: clamp(1.12rem, 5.2vw, 1.35rem);
    line-height: 1.52;
  }

  .hero-status {
    margin-top: 2.55rem;
    font-size: 1.28rem;
  }

  .hero-visual {
    align-self: center;
    width: 116%;
    margin: -1.5rem -8% 0;
  }

  .site-footer {
    margin-top: -0.5rem;
  }

  .site-footer small {
    font-size: 0.88rem;
  }
}

@media (max-width: 23rem) {
  .site-shell {
    padding-inline: 1.25rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: 3.15rem;
  }
}

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