@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #03060d;
  --panel: #0c111a;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f4f7fb;
  --muted: #a8b3c3;
  --soft: #d5dde8;
  --green: #26e08c;
  --green-soft: #d8ffe7;
  --red: #ff8f98;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    var(--bg);
  background-size: 68px 68px;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--green);
  color: #020403;
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(3,6,13,0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.brand strong { font-size: 16px; font-weight: 950; }

.back {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.back:hover, .footer a:hover { color: var(--green-soft); }

main { padding: 60px 0 82px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(38,224,140,0.28);
  border-radius: 999px;
  background: rgba(38,224,140,0.08);
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.1; }

h1 {
  max-width: 12ch;
  margin: 14px 0 18px;
  font-size: clamp(42px, 8vw, 76px);
  letter-spacing: 0;
}

h2 { margin: 0 0 13px; font-size: clamp(24px, 4vw, 34px); }
h3 { margin: 0 0 8px; font-size: 17px; }

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 650;
}

.meta { margin: 17px 0 0; color: var(--muted); font-size: 14px; font-weight: 750; }

.legal-block {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12,17,26,0.86);
}

.legal-block p, .legal-block li { color: var(--muted); font-weight: 620; }
.legal-block p { margin: 0 0 13px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 0; padding-left: 20px; }
.legal-block li + li { margin-top: 8px; }

.notice {
  border-color: rgba(38,224,140,0.3);
  background: linear-gradient(135deg, rgba(38,224,140,0.12), rgba(56,189,248,0.07)), rgba(12,17,26,0.92);
}

.notice strong { color: var(--green-soft); }
.check-note { color: #ffe3ad !important; }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  margin-top: 22px;
}

.deletion-info, .deletion-form { min-width: 0; }

.deletion-info {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12,17,26,0.86);
}

.deletion-info p, .deletion-info li { color: var(--muted); font-weight: 620; }
.deletion-info ul { margin: 12px 0 0; padding-left: 20px; }

.form-card {
  padding: 24px;
  border: 1px solid rgba(38,224,140,0.32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(38,224,140,0.11), rgba(56,189,248,0.055)), rgba(12,17,26,0.94);
}

.field { display: grid; gap: 7px; margin-top: 16px; }
.field label, .checkbox-label { color: var(--soft); font-size: 14px; font-weight: 850; }

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  background: rgba(3,6,13,0.76);
  color: var(--text);
  font: inherit;
}

input { min-height: 46px; padding: 0 12px; }
textarea { min-height: 122px; padding: 12px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid rgba(38,224,140,0.7); outline-offset: 2px; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; }
.checkbox-row input { width: 18px; min-width: 18px; min-height: 18px; margin: 3px 0 0; accent-color: var(--green); }

.form-help, .form-status { margin: 14px 0 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.form-status { min-height: 1.6em; }
.form-status.error { color: var(--red); }
.form-status.success { color: var(--green-soft); }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #020403;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
}

.button:hover { filter: brightness(1.06); }
.button:focus-visible { outline: 3px solid rgba(38,224,140,0.45); outline-offset: 3px; }

.direct-mail { display: inline-block; margin-top: 16px; color: var(--green-soft); font-weight: 850; }

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer a { color: var(--muted); font-weight: 850; }

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 960px); }
  main { padding-top: 42px; }
  .nav { min-height: 60px; }
  .back { font-size: 13px; }
  .two-column { grid-template-columns: 1fr; }
  .legal-block, .deletion-info, .form-card { padding: 18px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
