:root {
  --ink: #231f20;
  --muted: #67636a;
  --paper: #f8f6f1;
  --white: #ffffff;
  --navy: #231f20;
  --navy-soft: #383234;
  --lime: #dbaf5a;
  --gold: #dbaf5a;
  --gold-dark: #9b6b18;
  --gold-soft: #f6ead3;
  --green: #14805e;
  --green-soft: #e5f7ef;
  --coral: #d75b47;
  --coral-soft: #fff0ec;
  --violet: #6c5ce7;
  --violet-soft: #f0edff;
  --line: #e3ded5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, "Segoe UI", ui-sans-serif, -apple-system,
    BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 28px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: #4f5a66;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  background: var(--navy);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  padding: 12px 18px;
}

.hero {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: 650px;
  padding: 82px 28px 104px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(#d7c8ac 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  height: 190px;
  left: -46px;
  opacity: 0.42;
  position: absolute;
  top: 28px;
  width: 180px;
  z-index: -1;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  align-items: center;
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.11em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.pulse {
  background: var(--gold);
  border: 4px solid var(--gold-soft);
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

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

h1 {
  font-size: clamp(52px, 5vw, 76px);
  letter-spacing: -0.07em;
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 680px;
}

h1 span {
  color: var(--gold-dark);
  display: block;
}

.hero-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 530px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-proof span {
  align-items: center;
  color: #3d4854;
  display: inline-flex;
  font-size: 13px;
  font-weight: 650;
  gap: 8px;
}

.hero-proof span::before {
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.checker-shell {
  align-self: center;
  background: var(--white);
  border: 1px solid #e1e5de;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(26, 44, 35, 0.12);
  padding: 34px;
  position: relative;
}

.checker-shell::after {
  background: var(--lime);
  border-radius: 12px;
  bottom: -16px;
  content: "";
  height: 90px;
  position: absolute;
  right: -16px;
  width: 90px;
  z-index: -1;
}

.checker-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mini-label,
.section-kicker {
  color: var(--gold-dark);
  display: block;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin-bottom: 9px;
}

.checker-top h2 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.live-badge {
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 12px;
}

.live-badge::before {
  content: "●";
  font-size: 8px;
  margin-right: 6px;
}

.search-form label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 9px;
}

.search-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.input-wrap {
  align-items: center;
  background: #f6f8f4;
  border: 1px solid #d8ded5;
  border-radius: 14px;
  display: flex;
  min-width: 0;
  padding-left: 17px;
  transition: 0.2s ease;
}

.input-wrap:focus-within {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(219, 175, 90, 0.18);
}

.input-wrap > span {
  color: #99a29b;
  font-size: 15px;
}

.input-wrap input {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  padding: 16px 14px 16px 2px;
  width: 100%;
}

.search-row > button {
  background: var(--navy);
  border: 0;
  border-radius: 14px;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.search-row > button:hover:not(:disabled) {
  background: var(--navy-soft);
  transform: translateY(-1px);
}

.search-row > button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-error {
  color: var(--coral);
  font-size: 12px;
  margin: 8px 0 0;
}

.quick-search {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 24px;
}

.quick-search > span {
  color: #7c877f;
  font-size: 11px;
}

.quick-search button {
  background: transparent;
  border: 0;
  color: #56645a;
  cursor: pointer;
  font-size: 11px;
  padding: 2px 3px;
  text-decoration: underline;
  text-decoration-color: #bdc7be;
  text-underline-offset: 3px;
}

.result {
  align-items: flex-start;
  border: 1px solid;
  border-radius: 17px;
  display: flex;
  gap: 15px;
  min-height: 112px;
  padding: 20px;
}

.result-symbol,
.spinner {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex: 0 0 34px;
  font-size: 18px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
}

.result strong {
  display: block;
  font-size: 15px;
  margin: 1px 0 6px;
  overflow-wrap: anywhere;
}

.result p {
  color: #667068;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

.result-idle,
.result-checking {
  background: #f7f8f6;
  border-color: #e1e5df;
}

.result-idle .result-symbol {
  background: #e9ece7;
  color: #7b857d;
}

.result-available {
  background: var(--green-soft);
  border-color: #bfe8d5;
}

.result-available .result-symbol {
  background: var(--green);
  color: white;
}

.result-registered {
  background: var(--coral-soft);
  border-color: #f2c9bf;
}

.result-registered .result-symbol {
  background: var(--coral);
  color: white;
}

.result-unknown {
  background: #fff7de;
  border-color: #eddda6;
}

.result-unknown .result-symbol {
  background: #a27918;
  color: white;
}

.result-label {
  color: #667068;
  display: block;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  margin-bottom: 3px;
}

.sale-note {
  color: var(--violet);
  display: inline-block;
  font-size: 10px;
  font-weight: 750;
  margin-top: 9px;
}

.spinner {
  animation: spin 0.8s linear infinite;
  border: 3px solid #d9dfda;
  border-top-color: var(--gold-dark);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.status-section {
  background: var(--navy);
  color: var(--white);
  padding: 96px max(28px, calc((100vw - 1184px) / 2));
}

.section-heading {
  margin-bottom: 44px;
  max-width: 630px;
}

.section-heading h2,
.how-copy h2,
.roadmap-section h2 {
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1.06;
  margin-bottom: 17px;
}

.section-heading p {
  color: #aab9c3;
  line-height: 1.7;
  margin: 0;
}

.status-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.status-card {
  background: #2e292a;
  border: 1px solid #494143;
  border-radius: 20px;
  min-height: 290px;
  padding: 28px;
  position: relative;
}

.status-number {
  color: #6f8493;
  float: right;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.status-dot {
  border-radius: 50%;
  display: block;
  height: 12px;
  margin: 2px 0 38px;
  width: 12px;
}

.available-card .status-dot {
  background: #56c596;
  box-shadow: 0 0 0 7px rgba(86, 197, 150, 0.12);
}

.registered-card .status-dot {
  background: #ff8d7a;
  box-shadow: 0 0 0 7px rgba(255, 141, 122, 0.1);
}

.sale-card .status-dot {
  background: #a99dff;
  box-shadow: 0 0 0 7px rgba(169, 157, 255, 0.1);
}

.status-card h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 13px;
}

.status-card p {
  color: #aab9c3;
  font-size: 14px;
  line-height: 1.7;
}

.card-tag {
  border: 1px solid #395164;
  border-radius: 999px;
  bottom: 26px;
  color: #c3cfd6;
  font-size: 10px;
  font-weight: 750;
  left: 28px;
  padding: 7px 10px;
  position: absolute;
}

.how-section {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1184px;
  padding: 110px 28px;
}

.how-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 500px;
}

.how-copy a {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.how-copy a span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.how-copy a:hover span {
  transform: translateX(4px);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  padding: 0 0 28px;
}

.steps li + li {
  padding-top: 28px;
}

.steps > li > span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex: 0 0 42px;
  font-size: 13px;
  font-weight: 850;
  height: 42px;
  justify-content: center;
}

.steps h3 {
  font-size: 17px;
  margin: 2px 0 7px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.roadmap-section {
  align-items: center;
  background: var(--lime);
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 0.85fr;
  margin: 0 auto 80px;
  max-width: 1184px;
  padding: 65px;
}

.roadmap-section .section-kicker {
  color: #5d4315;
}

.roadmap-section h2 {
  margin: 0;
  max-width: 630px;
}

.roadmap-list {
  display: grid;
  gap: 10px;
}

.roadmap-list span {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(52, 76, 13, 0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 15px;
}

.roadmap-list span::before {
  content: "○";
  margin-right: 9px;
}

.roadmap-list .done::before {
  content: "✓";
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: #707c73;
  display: grid;
  font-size: 12px;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto;
  max-width: 1184px;
  padding: 34px 28px 45px;
}

.footer-brand {
  color: var(--ink);
  font-size: 15px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > span {
  justify-self: end;
  text-align: right;
}

@media (max-width: 980px) {
  .hero {
    gap: 48px;
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .checker-shell {
    width: 100%;
  }

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

  .status-card {
    min-height: 240px;
  }

  .how-section {
    gap: 60px;
  }

  .roadmap-section {
    margin-left: 28px;
    margin-right: 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  nav {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: 0;
    padding: 46px 18px 80px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .checker-shell {
    border-radius: 22px;
    padding: 23px;
  }

  .checker-shell::after {
    display: none;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row > button {
    min-height: 52px;
  }

  .status-section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .how-section,
  .roadmap-section {
    grid-template-columns: 1fr;
  }

  .how-section {
    gap: 48px;
    padding: 80px 18px;
  }

  .roadmap-section {
    margin: 0 18px 60px;
    padding: 34px 25px;
  }

  footer {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
    text-align: left;
  }

  footer p,
  footer > span {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
