:root {
  --bg: #07100d;
  --panel: #101a16;
  --panel-2: #15231d;
  --text: #f7faf8;
  --muted: #b8c3bd;
  --accent: #d5ff3f;
  --accent-dark: #93b51f;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img,
video,
iframe {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a120f;
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.grecaptcha-badge {
  display: none !important;
}
