:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5f6368;
  --line: #e0e0e0;
  --sun: #f7c325;
  --teal: #7cb4b8;
  --coral: #ee5e30;
  --mist: #f0faf8;
  --warm: #fff7d6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
  border-radius: 8px;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.navLinks a {
  border-radius: 8px;
  padding: 7px 8px;
  text-decoration: none;
}

.navLinks a:hover,
.navLinks a:focus-visible {
  color: #7f5b00;
}

.hero {
  border-top: 1px solid #f1f1f1;
  background: var(--warm);
}

.heroInner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 62px;
}

.eyebrow {
  color: #7f5b00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #2e2e2e;
  font-size: 19px;
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 40px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}

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

.visualFrame,
.toolPanel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
  overflow: hidden;
}

.visualFrame {
  padding: 16px;
}

.visualFrame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px;
}

.band {
  border-top: 1px solid #d5eadf;
  border-bottom: 1px solid #d5eadf;
  background: var(--mist);
}

.sectionHeader {
  max-width: 760px;
  margin: 0 0 32px;
}

.centerHeader {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.sectionText {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.grid3,
.grid2 {
  display: grid;
  gap: 18px;
}

.grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.55;
}

.card p {
  margin: 10px 0 0;
}

.plainList {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.plainList li {
  border-left: 4px solid var(--sun);
  padding-left: 12px;
}

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

.fact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.fact strong {
  display: block;
  margin-bottom: 5px;
}

.fact span {
  color: var(--muted);
  line-height: 1.5;
}

.toolPanel {
  padding: 22px;
}

.toolTitle {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}

.toolHint {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

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

label {
  display: grid;
  gap: 6px;
  color: #363636;
  font-size: 13px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

input:focus {
  border-color: #7f5b00;
  outline: 3px solid rgba(247, 195, 37, 0.34);
}

.results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.resultRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(224, 224, 224, 0.72);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  line-height: 1.4;
}

.resultRow strong {
  color: var(--ink);
  text-align: right;
}

.status {
  border-radius: 8px;
  background: #fff1eb;
  color: #a13d1e;
  font-weight: 900;
  line-height: 1.45;
  margin-top: 14px;
  padding: 12px;
}

.status.onTrack {
  background: #eef8f6;
  color: #2f767a;
}

.tableWrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #fffaf0;
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: #3e3e3e;
  line-height: 1.45;
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  border-left: 5px solid var(--sun);
  color: #4b4b4b;
  line-height: 1.6;
  margin: 24px 0 0;
  padding: 12px 0 12px 16px;
}

.posting {
  display: grid;
  gap: 16px;
}

.postingMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.tag {
  border: 1px solid rgba(124, 180, 184, 0.5);
  border-radius: 999px;
  background: rgba(124, 180, 184, 0.12);
  color: #2f767a;
  font-size: 13px;
  font-weight: 900;
  padding: 5px 9px;
}

.tag.warn {
  border-color: rgba(238, 94, 48, 0.38);
  background: #fff1eb;
  color: #a13d1e;
}

.smallLink {
  display: inline-block;
  margin-top: 12px;
  color: #6b4c00;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 0;
}

.footer {
  border-top: 1px solid var(--line);
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footerLinks a {
  border-radius: 8px;
  padding: 4px 6px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    justify-content: center;
    padding: 0 20px 5px;
  }

  .navLinks {
    display: none;
  }

  .heroInner,
  .grid3,
  .grid2,
  .facts {
    grid-template-columns: 1fr;
  }

  .heroInner {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .fieldGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 27px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
