@font-face {
  font-family: Inter;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111116;
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #e9e9ed;
}

.wordmark {
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1;
}

.ai {
  color: #009cba;
}
.period {
  color: #ff4fd8;
}

.header h1 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(32px, 5vh, 64px) 0;
}

.identity {
  display: block;
  width: min(100%, 720px);
  height: auto;
  max-height: max(280px, calc(100svh - 250px));
  object-fit: contain;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 0 0 28px;
  color: #6b6b72;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.accent {
  width: 48px;
  height: 2px;
  background: #16d9ff;
  border-right: 24px solid #ff4fd8;
}

@media (max-width: 480px) {
  .header {
    padding: 25px 0;
    gap: 16px;
  }
  .header h1 {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .main {
    padding: 28px 0;
  }
}
