@font-face {
  font-family: Satoshi;
  src: url("assets/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0d0f;
  --text: #f4f4f4;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #5fd5e3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: Satoshi, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 64px);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 32px);
}

.brand-mark {
  width: clamp(112px, 14vw, 178px);
  height: clamp(112px, 14vw, 178px);
  display: block;
  overflow: visible;
}

.m-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: m-dot-thinking 1.4s ease-in-out infinite;
}

@keyframes m-dot-thinking {
  0% {
    transform: scale(.72) rotate(0deg);
    opacity: .5;
    filter: drop-shadow(0 0 0 rgba(95, 213, 227, 0));
  }

  25% {
    transform: scale(.96) rotate(90deg);
    opacity: .78;
  }

  50% {
    transform: scale(1.35) rotate(180deg);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(95, 213, 227, .85));
  }

  75% {
    transform: scale(.96) rotate(270deg);
    opacity: .78;
  }

  100% {
    transform: scale(.72) rotate(360deg);
    opacity: .5;
    filter: drop-shadow(0 0 0 rgba(95, 213, 227, 0));
  }
}

.divider {
  width: 1px;
  height: clamp(72px, 8vw, 104px);
  background: var(--line);
}

.brand-line {
  margin: 0;
  text-align: left;
  color: #e8e8e8;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.accent {
  color: var(--accent);
}

h1 {
  max-width: 760px;
  margin: clamp(44px, 6vh, 68px) auto 0;
  color: var(--text);
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .m-dot {
    animation: none;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 24px;
  }

  .brand-lockup {
    gap: 16px;
  }

  .brand-mark {
    width: 96px;
    height: 96px;
  }

  .divider {
    height: 64px;
  }

  .brand-line {
    font-size: 21px;
  }

  h1 {
    margin-top: 42px;
    max-width: 360px;
    font-size: clamp(20px, 6.5vw, 28px);
    line-height: 1.25;
  }
}
