:root {
  color-scheme: light;
  --ink: #14202b;
  --muted: #52616d;
  --paper: #f5f7f8;
  --line: #d9e0e4;
  --teal: #0f766e;
  --green: #15803d;
  --red: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 5vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.header-label {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  min-height: min(70vh, 680px);
  display: flex;
  align-items: end;
  padding: 8vh 5vw;
  background:
    linear-gradient(90deg, rgba(9, 25, 33, .92), rgba(9, 25, 33, .46)),
    url("/hero-nfc.png") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #7dd3c7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 88px;
  line-height: .95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0;
  font-size: 20px;
  line-height: 1.6;
}

.service-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  color: #e7f5f2;
  font-size: 14px;
}

.state-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #fbbf24;
}

.state-dot.is-online {
  background: #4ade80;
}

.state-dot.is-offline {
  background: #fb7185;
}

.verification-band {
  padding: 48px 5vw 56px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(300px, 1.2fr);
  gap: 48px;
  align-items: end;
}

.section-kicker {
  color: var(--teal);
}

h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5vw;
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.reset-page {
  min-height: 100vh;
  background: #eef2f3;
}

.reset-main {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.reset-panel {
  width: min(460px, 100%);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reset-panel h1 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
}

.reset-copy {
  margin: 12px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.reset-panel form {
  display: grid;
  gap: 10px;
}

.reset-panel label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 650;
}

.reset-panel input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bcc7cd;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.reset-panel input:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(15, 118, 110, .18);
}

.reset-panel button {
  min-height: 46px;
  margin-top: 8px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.reset-panel button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.form-message {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--red);
  font-size: 13px;
  line-height: 1.6;
}

.form-message[data-kind="success"] {
  color: var(--green);
}

@media (max-width: 680px) {
  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: 620px;
    padding-bottom: 56px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
