:root {
  --plate-yellow: #f4d35e;
  --plate-highlight: #fff1a6;
  --plate-shadow: #d5ae2b;
  --asphalt: #171714;
  --asphalt-light: #2a2a24;
  --ink: #11110f;
  --paper: #fffbe8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(244, 211, 94, 0.2) 49.6% 50.4%, transparent 50.4%),
    radial-gradient(circle at 50% 18%, #36362e 0, var(--asphalt-light) 30%, var(--asphalt) 72%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 48px 20px 28px;
}

.construction-sign {
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--plate-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.plate {
  position: relative;
  width: min(760px, 100%);
  min-height: 330px;
  margin: 0 auto;
  padding: 38px 70px 32px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(150deg, var(--plate-highlight), var(--plate-yellow) 52%, var(--plate-shadow));
  border: 10px solid #e7bf39;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 3px rgba(17, 17, 15, 0.65),
    inset 0 0 30px rgba(255, 255, 255, 0.45),
    0 30px 70px rgba(0, 0, 0, 0.45);
  transform: rotate(-1deg);
}

.plate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(rgba(0, 0, 0, 0.75) 0.55px, transparent 0.7px);
  background-size: 5px 5px;
}

.plate-state,
.plate-number,
.plate-motto {
  position: relative;
  z-index: 1;
}

.plate-state {
  margin: 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.3rem, 6vw, 4.3rem);
  line-height: 1;
  transform: rotate(-2deg);
}

.plate-number {
  margin: 18px 0 8px;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 10vw, 6.6rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.78;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.7),
    3px 4px 0 rgba(0, 0, 0, 0.18);
}

.plate-motto {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bolt {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 17, 15, 0.8);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8c7, #9f852b 60%, #28230f);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.45);
}

.bolt--top-left { top: 25px; left: 29px; }
.bolt--top-right { top: 25px; right: 29px; }
.bolt--bottom-left { bottom: 25px; left: 29px; }
.bolt--bottom-right { right: 29px; bottom: 25px; }

.message {
  max-width: 660px;
  margin: 52px auto 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--plate-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--plate-yellow);
  box-shadow: 0 0 0 7px rgba(244, 211, 94, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

.message h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.message > p:last-child {
  max-width: 550px;
  margin: 20px auto 0;
  color: rgba(255, 251, 232, 0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.request-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  width: min(820px, 100%);
  margin: 48px auto 24px;
  padding: 42px;
  color: var(--ink);
  text-align: left;
  background: var(--paper);
  border: 1px solid rgba(244, 211, 94, 0.65);
  border-top: 8px solid var(--plate-yellow);
  border-radius: 18px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
}

.form-kicker {
  margin: 0 0 12px;
  color: #8a6d00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.request-intro h3 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.request-intro > p:last-child {
  margin: 18px 0 0;
  color: #56564d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.request-form {
  min-width: 0;
}

.field + .field {
  margin-top: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.label-row span {
  flex: 0 0 auto;
  color: #76766d;
  font-size: 0.72rem;
}

input,
textarea {
  display: block;
  width: 100%;
  color: var(--ink);
  background: #fffef8;
  border: 2px solid #c9c6b6;
  border-radius: 9px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input {
  min-height: 50px;
  padding: 12px 14px;
}

textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #8a6d00;
  box-shadow: 0 0 0 4px rgba(244, 211, 94, 0.32);
}

::placeholder {
  color: #8a8980;
  opacity: 1;
}

.field-help {
  margin: 8px 0 0;
  color: #68685f;
  font-size: 0.76rem;
  line-height: 1.45;
}

.privacy-note {
  display: flex;
  gap: 10px;
  margin: 22px 0 18px;
  padding: 13px 14px;
  color: #45453e;
  background: #f4efd5;
  border-radius: 9px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.privacy-note p {
  margin: 0;
}

.privacy-icon {
  flex: 0 0 auto;
  color: #2e6c3b;
}

button {
  width: 100%;
  min-height: 52px;
  padding: 13px 22px;
  color: var(--plate-yellow);
  background: var(--ink);
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

button:hover {
  background: #292922;
}

button:focus-visible {
  outline: 4px solid rgba(138, 109, 0, 0.45);
  outline-offset: 3px;
}

button:active {
  transform: translateY(1px);
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #755c00;
  font-size: 0.8rem;
  font-weight: 750;
  text-align: center;
}

footer {
  height: 64px;
  display: grid;
  place-items: center;
  color: rgba(255, 251, 232, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

@media (max-width: 620px) {
  .page-shell {
    padding-top: 34px;
  }

  .plate {
    min-height: 245px;
    padding: 30px 42px 26px;
    border-width: 7px;
    border-radius: 25px;
  }

  .plate-number {
    margin-top: 14px;
  }

  .plate-motto {
    margin-top: 22px;
    letter-spacing: 0.08em;
  }

  .bolt {
    width: 14px;
    height: 14px;
  }

  .bolt--top-left { top: 19px; left: 20px; }
  .bolt--top-right { top: 19px; right: 20px; }
  .bolt--bottom-left { bottom: 19px; left: 20px; }
  .bolt--bottom-right { right: 20px; bottom: 19px; }

  .message {
    margin-top: 42px;
  }

  .request-card {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 38px;
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}

/* Research landing page */

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(244, 211, 94, 0.1) 49.8% 50.2%, transparent 50.2%),
    radial-gradient(circle at 50% 4%, #38382f 0, var(--asphalt-light) 28%, var(--asphalt) 68%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(23, 23, 20, 0.93);
  border-bottom: 1px solid rgba(244, 211, 94, 0.22);
  backdrop-filter: blur(14px);
}

.wordmark {
  color: var(--plate-yellow);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.wordmark span {
  padding: 0 0.16em;
  color: var(--paper);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a {
  color: rgba(255, 251, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--plate-yellow);
}

.site-header .nav-cta {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--plate-yellow);
  border-radius: 6px;
}

.site-header .nav-cta:hover {
  color: var(--ink);
  background: var(--plate-highlight);
}

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 94px;
  text-align: center;
}

.hero .plate {
  width: min(760px, 100%);
}

.hero-copy {
  max-width: 820px;
  margin: 58px auto 0;
}

.hero-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy > p:not(.status) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 251, 232, 0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.hero-copy blockquote {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 24px 28px;
  color: var(--plate-yellow);
  border-top: 1px solid rgba(244, 211, 94, 0.4);
  border-bottom: 1px solid rgba(244, 211, 94, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.7vw, 1.75rem);
  font-style: italic;
  line-height: 1.55;
}

.content-section,
.sources-section,
.findings-section,
.context-section,
.origins-section,
.request-card {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.content-section,
.sources-section,
.findings-section,
.context-section {
  padding: 88px 0;
}

.content-section {
  border-top: 1px solid rgba(244, 211, 94, 0.25);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-number,
.definition-label {
  margin: 0 0 12px;
  color: var(--plate-yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading h2,
.origins-copy h2,
.context-section h2,
.request-intro h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 251, 232, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.meaning-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  border-top: 7px solid var(--plate-yellow);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.card-index {
  margin: 0 0 28px;
  color: #8a6d00;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.meaning-card h3 {
  margin: 0 0 16px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.meaning-card > p:not(.card-index) {
  margin: 0 0 15px;
  color: #4f4f47;
  line-height: 1.65;
}

.meaning-card a {
  margin-top: auto;
  padding-top: 18px;
  color: #665000;
  border-top: 1px solid #ded8b9;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.origins-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: center;
  padding: 96px 0;
}

.origins-copy > p:not(.section-number) {
  color: rgba(255, 251, 232, 0.72);
  line-height: 1.75;
}

.button-link {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--plate-yellow);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.definition-card {
  padding: 38px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--plate-highlight), var(--plate-yellow));
  border: 8px solid #e7bf39;
  border-radius: 22px;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 15, 0.55), 0 28px 65px rgba(0, 0, 0, 0.35);
  transform: rotate(1deg);
}

.definition-card .definition-label {
  color: #5f4b00;
}

.definition {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.35;
}

.definition-rule {
  width: 70px;
  height: 5px;
  margin: 28px 0;
  background: var(--ink);
}

.definition-card > p:last-child {
  margin: 0;
  color: #554a1f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.context-section {
  padding-right: clamp(24px, 5vw, 70px);
  padding-left: clamp(24px, 5vw, 70px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 20px;
}

.context-section .section-number {
  color: #806500;
}

.context-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin: 32px 0 24px;
}

.context-columns p {
  margin: 0;
  color: #4f4f47;
  line-height: 1.75;
}

.text-link {
  color: #665000;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.findings-list {
  padding: 0;
  list-style: none;
  counter-reset: findings;
}

.findings-list li {
  position: relative;
  padding: 22px 20px 22px 72px;
  border-top: 1px solid rgba(244, 211, 94, 0.26);
  color: rgba(255, 251, 232, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
  counter-increment: findings;
}

.findings-list li::before {
  content: "0" counter(findings);
  position: absolute;
  top: 23px;
  left: 12px;
  color: var(--plate-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sources-section {
  border-top: 1px solid rgba(244, 211, 94, 0.25);
}

.source-list {
  padding: 0;
  list-style-position: inside;
}

.source-list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 251, 232, 0.13);
}

.source-list li::marker {
  color: var(--plate-yellow);
  font-weight: 900;
}

.source-list a,
.source-list span {
  display: block;
  margin-left: 28px;
}

.source-list a {
  color: var(--plate-yellow);
  font-weight: 850;
  line-height: 1.45;
}

.source-list span {
  margin-top: 6px;
  color: rgba(255, 251, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.request-card {
  margin-top: 48px;
  margin-bottom: 80px;
}

footer {
  width: min(1120px, calc(100% - 40px));
  height: auto;
  min-height: 80px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(244, 211, 94, 0.18);
  text-align: center;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .meaning-grid,
  .origins-section,
  .context-columns {
    grid-template-columns: 1fr;
  }

  .origins-section {
    gap: 42px;
  }

  .meaning-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .wordmark {
    font-size: 0.9rem;
  }

  .site-header .nav-cta {
    padding: 9px 11px;
    font-size: 0.67rem;
  }

  .content-section,
  .sources-section,
  .findings-section,
  .context-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .meaning-card {
    padding: 27px 24px;
  }
}
