:root {
  color-scheme: light;
  --ink: #172431;
  --blue: #0f5d95;
  --sky: #cceff4;
  --green: #2f8a45;
  --yellow: #ffd34d;
  --red: #c83c34;
  --paper: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--sky);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

a,
button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 4px solid #111;
  outline-offset: 3px;
}

.support-toolbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 4px solid #fff;
  background: #73cce4;
}

.support-back {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid #153f5a;
  border-radius: 50%;
  background: var(--yellow);
  color: #153f5a;
  box-shadow: 0 3px 0 #153f5a;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.support-brand {
  color: #123d69;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  text-decoration: none;
}

.support-main {
  width: min(820px, 100%);
  margin-inline: auto;
  padding: 48px 22px 64px;
}

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

h1 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(38px, 7vw, 62px);
  line-height: 1;
}

h2 {
  margin-bottom: 8px;
  color: #244c2d;
  font-size: clamp(23px, 4vw, 31px);
}

p,
li,
label {
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.5;
}

.support-lead {
  max-width: 700px;
  margin-bottom: 38px;
  font-weight: 700;
}

.support-section {
  padding: 26px 0;
  border-top: 3px solid rgb(23 36 49 / 20%);
}

.support-section:last-of-type {
  border-bottom: 3px solid rgb(23 36 49 / 20%);
}

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

.field-label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.field-label input[type="text"] {
  width: min(520px, 100%);
  min-height: 52px;
  padding: 8px 12px;
  border: 3px solid #153f5a;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.toggle-label input {
  width: 26px;
  height: 26px;
  accent-color: var(--green);
}

.support-actions,
.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-button,
.support-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border: 3px solid #153f5a;
  border-radius: 7px;
  background: var(--yellow);
  color: #172431;
  box-shadow: 0 3px 0 #153f5a;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.support-button.secondary,
.support-link.secondary {
  background: #fff;
}

.support-button.danger {
  border-color: #75221d;
  background: #ffe4df;
  color: #75221d;
  box-shadow: 0 3px 0 #75221d;
}

.support-status {
  min-height: 30px;
  margin: 0;
  color: #1e6b32;
  font-weight: 900;
  text-align: left;
}

.support-nav {
  margin-top: 34px;
}

@media (max-width: 480px) {
  .support-main {
    padding-top: 34px;
  }

  .support-actions,
  .support-links {
    align-items: stretch;
    flex-direction: column;
  }
}

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