/* DeskWiz demo host — static shell only. Same brand tokens as the
   marketing site (brand/BRAND-SPEC.md); gold stays accent-only. */

:root {
  --navy: #041531;
  --blue: #014DC5;
  --gold: #FAB732;
  --gray: #5C6471;
  --gray-light: #93A4B8;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --border: #DCE3EC;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2 { font-weight: 700; line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: 1.9rem; }
h2 { font-size: 1.2rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.4rem; }
}

p { margin: 0 0 1em; }

a { color: var(--blue); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Required notice — first thing in the document, above the number. */
.demo-notice {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
}
.demo-notice p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.demo-header {
  padding: 24px 0 8px;
  text-align: center;
}
.demo-header img { margin: 0 auto; height: 30px; width: auto; }

main { padding: 24px 0 56px; text-align: center; }

.demo-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
  letter-spacing: 0.02em;
}

.demo-number-label {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.board-shell {
  border: 2px dashed var(--gray-light);
  border-radius: 10px;
  background: var(--off-white);
  padding: 28px 20px;
  margin: 24px 0;
}
.board-shell p { color: var(--gray); margin: 0; }

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 480px) {
  .button-row { flex-direction: row; justify-content: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 24px;
  border: 2px solid transparent;
  min-height: 48px;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 0.9rem;
}

.trade-choice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
@media (min-width: 480px) {
  .trade-choice-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

.trade-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--navy);
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  min-height: 48px;
}
.trade-choice:hover { border-color: var(--blue); color: var(--blue); }
