:root {
  color-scheme: light;
  --cetyk-navy: #07324d;
  --cetyk-blue: #1265bf;
  --cetyk-turquoise: #31c7b5;
  --cetyk-ink: #102d3e;
  --cetyk-muted: #5d7586;
  --cetyk-line: #c9ddea;
  --cetyk-surface: #f4f9fc;
  --cetyk-white: #ffffff;
  --cetyk-danger: #b42318;
  --focus-ring: 0 0 0 3px rgba(18, 101, 191, 0.24);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cetyk-surface);
  color: var(--cetyk-ink);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cetyk-navy);
  color: white;
  transform: translateY(-150%);
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cetyk-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  background: var(--cetyk-blue);
  color: white;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #0f58a7;
}

.button.secondary {
  border-color: var(--cetyk-line);
  background: var(--cetyk-white);
  color: var(--cetyk-navy);
}

.button.secondary:hover {
  background: #eaf4fa;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field legend {
  color: var(--cetyk-navy);
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #a9c4d5;
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
  color: var(--cetyk-ink);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.helper {
  color: var(--cetyk-muted);
  font-size: 0.88rem;
}

.error {
  color: var(--cetyk-danger);
  font-size: 0.86rem;
  font-weight: 650;
}

.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;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .button {
    width: 100%;
  }
}
