@font-face {
  font-family: "Neuropolitical";
  src: url("assets/fonts/neuropolitical-rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #eaf5fb;
  --color-bg-deep: #cfe0eb;
  --color-text: #10a9f5;
  --color-text-deep: #075a87;
  --color-text-soft: #c9f3ff;
  --color-muted: #2c7ea8;
  --color-line: rgba(16, 126, 184, .18);
  --space-page: clamp(20px, 4vw, 56px);
  --font-display: "Neuropolitical", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 255, 255, .98) 0 13%, rgba(255, 255, 255, .62) 29%, transparent 52%),
    linear-gradient(180deg, #f7fbfe 0%, var(--color-bg) 48%, var(--color-bg-deep) 100%);
  color: var(--color-text);
  font-family: var(--font-display);
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .7), transparent 20%, transparent 80%, rgba(255, 255, 255, .62));
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--space-page);
  border-bottom: 1px solid var(--color-line);
}

.site-header:not([hidden]) {
  display: flex;
}

.site-logo,
.site-nav {
  font-family: var(--font-display);
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: var(--color-muted);
  font-size: .8rem;
}

.coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-page);
  text-align: center;
}

h1 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.75vw, 7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  background: linear-gradient(180deg, #03669f 0%, #159fea 39%, #69d4ff 54%, #027fc2 72%, #024775 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
