@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 400 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #030a04;
  --panel: rgba(10, 27, 10, 0.68);
  --panel-strong: rgba(13, 35, 13, 0.86);
  --text: #f5fbff;
  --muted: #aeb9c9;
  --line: rgba(134, 255, 156, 0.2);
  --line-strong: rgba(134, 255, 150, 0.44);
  --cyan: #aaff82;
  --violet: #ffdb78;
  --green: #80ffba;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --radius-lg: 18px;
  --shell: min(1180px, calc(100% - 44px));
  --header: 78px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: auto;
}

html.is-loading body {
  opacity: 0;
}

html.is-ready body {
  opacity: 1;
  transition: opacity 0.16s ease;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(6, 10, 3, 0.58) 100%),
    linear-gradient(180deg, rgba(3, 10, 5, 0.26), transparent 30%, rgba(8, 10, 3, 0.38));
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--bg);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.35vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 700;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 700;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #091404;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 30px rgba(145, 255, 130, 0.24);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
