:root {
  --brand: #405e82;
  --brand-light: #5a7fa8;
  --accent: #ddf100;
  --bg: #0b0f17;
  --bg-2: #101520;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eef2fa;
  --text-muted: rgba(238, 242, 250, 0.66);
  --radius: 18px;
  --maxw: 1060px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "ABeeZee", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at 12% -8%, rgba(64, 94, 130, 0.4), transparent 46%), var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip {
  position: absolute;
  inset-inline-start: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: static;
  width: auto;
  height: auto;
  display: inline-block;
  background: var(--accent);
  color: #141a00;
  padding: 8px 12px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 15, 23, 0.84);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
}

.brand__txt {
  font-size: 1.35rem;
  color: var(--text);
  font-style: italic;
}

.brand__plus {
  font-size: 1.5rem;
  color: var(--accent);
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero {
  padding: 64px 0 34px;
}

.hero__inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 4.7rem);
  line-height: 0.98;
  font-style: italic;
  font-weight: 400;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.62;
}

.section {
  padding: 12px 0 64px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.panel--quiet {
  background: rgba(64, 94, 130, 0.12);
}

h2,
h3 {
  margin: 0 0 12px;
  font-weight: 400;
}

h2 {
  font-size: 1.35rem;
}

h3 {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--accent);
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

label {
  color: var(--text);
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

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

input:focus,
textarea:focus {
  outline: 2px solid rgba(221, 241, 0, 0.55);
  outline-offset: 2px;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-muted);
  line-height: 1.45;
}

.check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.btn {
  appearance: none;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  justify-self: start;
  padding: 11px 18px;
  transition: filter 0.2s, transform 0.2s;
}

.btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #141a00;
}

.status {
  min-height: 1.4em;
  margin: 0;
  color: var(--text-muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.55;
}

.list li + li {
  margin-top: 8px;
}

.muted {
  margin: 22px 0 0;
}

.footer {
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
  text-align: center;
  font-size: 0.86rem;
}

.footer p {
  margin: 6px 0;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 44px;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 22px;
  }
}
