/* Static pages: about / privacy / contact / terms */

.static-main {
  flex: 1;
  min-height: calc(100vh - 72px);
  padding: 64px 0 10px;
}

.static-shell {
  max-width: 920px;
}

.static-shell--narrow {
  max-width: 760px;
}

.static-hero {
  margin-bottom: 26px;
}

.static-kicker {
  margin: 0 0 8px;
  color: #2789d2;
  font-family: "Outfit", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.static-hero h1 {
  margin: 0;
  color: var(--ns-text);
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.25;
  letter-spacing: -.04em;
}

.static-hero > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ns-muted);
  font-size: .98rem;
}

.static-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(88, 122, 168, .16);
  border-radius: var(--ns-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(62, 88, 130, .08);
}

.static-section + .static-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(88, 122, 168, .12);
}

.static-section h2 {
  margin: 0 0 14px;
  color: var(--ns-text);
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.static-section p {
  margin: 0;
  color: #3d4d66;
  font-size: .94rem;
  line-height: 1.9;
}

.static-section p + p,
.static-section p + ul {
  margin-top: 12px;
}

.static-section ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
  color: #3d4d66;
  font-size: .94rem;
  line-height: 1.9;
}

.info-list {
  margin: 0;
}

.info-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(88, 122, 168, .12);
}

.info-list > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.info-list dt {
  color: var(--ns-muted);
  font-size: .88rem;
}

.info-list dd {
  margin: 0;
  color: var(--ns-text);
  font-size: .92rem;
}

.text-link {
  color: #1a86d4;
  text-decoration: underline;
  text-decoration-color: rgba(26, 134, 212, .35);
  text-underline-offset: 3px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label {
  color: var(--ns-text);
  font-size: .9rem;
  font-weight: 700;
}

.required,
.optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: .66rem;
  vertical-align: 2px;
}

.required {
  color: #b34c7a;
  background: #fff0f7;
  border: 1px solid rgba(200, 90, 150, .22);
}

.optional {
  color: #66758f;
  background: #f2f5f9;
  border: 1px solid rgba(140, 160, 190, .2);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c5d3e4;
  border-radius: 12px;
  background: #fff;
  color: var(--ns-text);
  font: inherit;
  font-size: .94rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  padding: 13px 14px;
  resize: vertical;
  min-height: 170px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ns-cyan);
  box-shadow: 0 0 0 3px rgba(31, 196, 232, .16);
}

.form-field select option {
  background: #fff;
  color: var(--ns-text);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 1px solid rgba(37, 166, 235, .5);
  border-radius: 12px;
  background: linear-gradient(110deg, #176cff, #23c8f0);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(29, 121, 255, .18);
}

.form-submit:hover {
  filter: brightness(1.06);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.form-submit .material-symbols-outlined {
  font-size: 20px;
}

.form-message {
  min-height: 1.5em;
  margin: -5px 0 0;
  font-size: .88rem;
}

.form-message.is-error { color: #c53b5a; }
.form-message.is-success { color: #1f8a5c; }

.form-note {
  margin: 0;
  color: var(--ns-muted);
  font-size: .78rem;
  line-height: 1.7;
}

.turnstile-container {
  min-height: 1px;
}

@media (max-width: 760px) {
  .static-main {
    min-height: calc(100vh - 62px);
    padding-top: 42px;
  }

  .static-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .static-section + .static-section {
    margin-top: 27px;
    padding-top: 24px;
  }

  .info-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
