@font-face {
  font-family: Airbeat;
  src: url('./assets/fonts/Airbeat.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Quantico;
  src: url('./assets/fonts/Quantico-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: Quantico, monospace;
  background: #03090d;
  color: #edf7f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(ellipse at 75% 72%, #0a303b66, transparent 52%),
    radial-gradient(ellipse at 22% 23%, #12505530, transparent 48%),
    #03090d;
}

#drone-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 64px 24px;
  text-align: center;
  isolation: isolate;
}

.identity {
  width: 100%;
  max-width: 850px;
}

.brand-mark {
  display: block;
  width: 112px;
  height: auto;
  margin: 0 auto 31px;
  filter: drop-shadow(0 0 20px #22babb26);
}

h1 {
  margin: 0;
  font-family: Airbeat, sans-serif;
  font-size: clamp(3.5rem, 11.5vw, 8.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .07em;
  padding-left: .07em;
  text-shadow: 0 0 50px #22babb12;
}

.signal {
  width: 38px;
  height: 1px;
  margin: 36px auto 27px;
  background: #22babb;
  box-shadow: 0 0 12px #22babb60;
}

p {
  margin: 0;
  color: #a3b7bd;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: .04em;
}

.linkedin {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 28px;
  color: #a3b7bd;
  border: 1px solid #7aadb525;
  border-radius: 50%;
  transition: color .25s, border-color .25s, background .25s;
}

.linkedin:hover {
  color: #22babb;
  border-color: #22babb80;
  background: #22babb0d;
}

.linkedin:focus-visible {
  outline: 2px solid #22babb;
  outline-offset: 6px;
}

@media (max-width: 540px) {
  .brand-mark { width: 94px; margin-bottom: 28px; }
  .signal { margin-top: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .linkedin { transition: none; }
}
