:root {
  --page: #fbfcfb;
  --ink: #0b0d0c;
  --muted: #606866;
  --line: #d8dfdc;
  --field: #f4f7f5;
  --white: #ffffff;
  --acid: #b8ff3d;
  --mint: #08a878;
  --red: #ee4e3b;
  --blue: #2557ff;
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(184, 255, 61, 0.18) 0 12px, transparent 12px),
    linear-gradient(135deg, transparent 0 72%, rgba(37, 87, 255, 0.055) 72% 100%),
    var(--page);
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 5px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--acid) 0 28%, var(--blue) 28% 67%, var(--red) 67% 100%);
}

body::after {
  position: fixed;
  top: 112px;
  right: 0;
  z-index: -1;
  width: min(32vw, 390px);
  height: calc(100svh - 112px);
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    -18deg,
    transparent 0 18px,
    rgba(11, 13, 12, 0.045) 18px 20px
  );
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 60;
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

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

.site-header {
  position: sticky;
  top: 5px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  background: rgba(251, 252, 251, 0.9);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(12px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 14px;
  background: var(--acid);
  border: 1px solid var(--ink);
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--red);
  border: 1px solid var(--ink);
}

.nav {
  gap: 0;
  border-left: 1px solid var(--line);
}

.nav a {
  min-width: 92px;
  padding: 27px 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  gap: 0;
  align-items: stretch;
  width: min(100% - 40px, var(--max));
  min-height: calc(100svh - 81px);
  margin: 0 auto;
  padding: 56px 0 84px;
}

.hero-copy,
.request-card {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 44px 52px 44px 0;
}

.request-card {
  align-self: center;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9.4ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 10vw, 8.4rem);
  font-weight: 900;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

h1::after {
  display: block;
  width: min(180px, 46vw);
  height: 10px;
  margin-top: 26px;
  content: "";
  background: linear-gradient(90deg, var(--blue) 0 36%, var(--acid) 36% 68%, var(--red) 68% 100%);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
}

.lead {
  max-width: 54ch;
  margin-bottom: 30px;
  color: #303635;
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button-primary {
  background: var(--acid);
}

.button-secondary {
  background: var(--white);
}

.form-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

input {
  min-height: 45px;
  padding: 12px 13px;
}

textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(184, 255, 61, 0.75);
}

.domain-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.domain-field:focus-within {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(184, 255, 61, 0.75);
}

.domain-field input {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.domain-field input:focus {
  box-shadow: none;
}

.domain-field strong {
  padding: 0 13px;
  color: var(--blue);
  font-size: 0.86rem;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #026647;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-error {
  color: #b42215;
}

.section {
  padding: 78px 0 94px;
  background: #101312;
  border-top: 1px solid var(--ink);
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section .eyebrow {
  background: var(--white);
}

.section-inner > h2 {
  max-width: 760px;
  color: var(--white);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.purpose-grid article {
  min-height: 200px;
  padding: 26px;
  color: var(--white);
  background: #101312;
  transition: background 0.18s ease, color 0.18s ease;
}

.purpose-grid article:hover {
  color: var(--ink);
  background: var(--acid);
}

.purpose-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.64;
}

.purpose-grid article:hover p {
  color: rgba(11, 13, 12, 0.78);
}

.dot {
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 24px;
  background: var(--acid);
}

.dot-alt {
  background: var(--blue);
}

.dot-warm {
  background: var(--red);
}

.site-footer {
  padding: 34px 0;
  color: var(--ink);
  background: var(--acid);
  border-top: 1px solid var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 26px;
  align-items: start;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(11, 13, 12, 0.75);
  font-style: normal;
  line-height: 1.65;
}

.site-footer a {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 8px;
}

.footer-links button,
.modal-close {
  border: 0;
  cursor: pointer;
}

.footer-links button {
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
  transition: box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(560px, calc(100% - 40px));
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner .button {
  min-height: 42px;
  padding: 10px 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 13, 12, 0.7);
}

.modal-panel {
  position: relative;
  width: min(650px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--acid);
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.66;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 1.5rem;
  line-height: 1;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-copy {
    min-height: auto;
    padding: 44px 0;
    border-bottom: 0;
  }

  .request-card {
    align-self: stretch;
  }

  .purpose-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 660px) {
  body {
    background:
      linear-gradient(90deg, rgba(184, 255, 61, 0.2) 0 8px, transparent 8px),
      var(--page);
  }

  body::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    width: min(100% - 24px, var(--max));
    min-height: 62px;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-inner,
  .footer-grid {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: 28px 0 56px;
  }

  h1 {
    max-width: 100%;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .request-card,
  .modal-panel {
    padding: 22px;
  }

  .form-grid,
  .domain-field {
    grid-template-columns: 1fr;
  }

  .domain-field strong {
    padding: 0 13px 12px;
    white-space: normal;
  }

  .purpose-grid article {
    min-height: 0;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    box-shadow: 5px 5px 0 var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
