:root {
  color-scheme: dark;
  --background: #05080c;
  --surface: #0a1017;
  --surface-soft: #0c141d;
  --text: #edf7fc;
  --muted: #9eb0bd;
  --cyan: #76d8ff;
  --copper: #dca463;
  --line: #1b2d3a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 280px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 32%, rgba(25, 91, 126, 0.12), transparent 28rem),
    var(--background);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main,
footer {
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
}

main {
  min-height: calc(100vh - 12rem);
  display: grid;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 7rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.identity {
  position: relative;
  isolation: isolate;
}

.identity::after {
  position: absolute;
  z-index: -1;
  inset: 14% 12%;
  border-radius: 50%;
  background: rgba(45, 161, 218, 0.12);
  filter: blur(3rem);
  content: "";
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.kicker,
.section-label {
  margin: 0;
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0.65rem 0 0;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span {
  color: var(--copper);
  font-weight: 350;
}

.tagline {
  margin: 1.25rem 0 0;
  color: var(--copper);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.015em;
}

.summary {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: #c8d5de;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.summary span {
  color: var(--copper);
}

.status {
  max-width: 40rem;
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  background: linear-gradient(115deg, var(--surface-soft), var(--surface));
}

.status p:not(.section-label) {
  margin: 0.7rem 0 0;
  color: #bdccd6;
}

.status .availability {
  color: var(--muted);
}

.status strong {
  color: var(--text);
  font-weight: 620;
}

footer {
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 62rem;
  margin: 0;
  color: #788b98;
  font-size: 0.78rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 2rem, 38rem);
  }

  main {
    padding-block: 2rem 4rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .identity {
    width: min(100%, 24rem);
    margin-inline: auto;
  }

  .introduction {
    text-align: left;
  }

  .status {
    margin-top: 2rem;
    padding-inline: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
