:root {
  --ink: #08161c;
  --ink-soft: #35454c;
  --orange: #ef4b17;
  --orange-dark: #d83d0c;
  --paper: #ffffff;
  --mist: #f3f5f5;
  --line: #d9dfe1;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(8, 22, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-block;
  text-decoration: none;
}

.brand img {
  width: 245px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--orange);
}

.coverage {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--orange);
  border-radius: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
input:focus-visible,
.consent input:focus-visible {
  outline: 3px solid rgba(239, 75, 23, 0.3);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--orange);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 6.4vw, 6.1rem);
  font-weight: 800;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.text-link {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding: 1.25rem 1.1rem 0 0;
}

.hero-proof div + div {
  padding-left: 1.1rem;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  display: block;
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.hero-proof span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

.opportunity-panel {
  position: relative;
  padding: 1.4rem;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.opportunity-panel::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 74px;
  height: 74px;
  border-top: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
  content: "";
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.2rem 1.15rem;
}

.panel-heading p {
  margin-bottom: 0.1rem;
  font-size: 1.03rem;
  font-weight: 800;
}

.panel-heading div > span {
  color: #9eabb0;
  font-size: 0.8rem;
}

.live-label {
  padding: 0.35rem 0.5rem;
  border: 1px solid #516168;
  color: #dce3e5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity {
  margin-top: 0.8rem;
  padding: 1.25rem;
  background: #fff;
  color: var(--ink);
}

.opportunity-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.opportunity-topline time,
.opportunity-topline .lodged {
  color: #66747a;
  font-size: 0.74rem;
  font-weight: 700;
}

.type-badge {
  min-width: 42px;
  padding: 0.22rem 0.35rem;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.type-badge-cdc {
  background: var(--ink);
}

.opportunity h2 {
  margin: 1rem 0 0.35rem;
  font-size: 1.28rem;
}

.address {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.opportunity dl {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.opportunity dl div + div {
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
}

.opportunity dt {
  color: #6c797f;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opportunity dd {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  font-weight: 800;
}

.panel-note {
  margin: 0.9rem 0 0;
  color: #89989e;
  font-size: 0.72rem;
  text-align: center;
}

.signal-strip {
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid p {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem 2rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.signal-grid p + p {
  border-left: 1px solid var(--line);
}

.signal-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.9fr;
  align-items: end;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.steps article {
  min-height: 260px;
  padding: 2rem;
}

.steps article + article {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 3.8rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.steps p {
  max-width: 295px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.early-section {
  background: var(--ink);
  color: white;
}

.early-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow-light {
  color: #aeb9bd;
}

.early-statement h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 5rem);
}

.early-copy {
  align-self: end;
}

.early-copy > p {
  color: #c0c9cc;
  font-size: 1.05rem;
}

.quote-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3e4c51;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading.compact {
  display: block;
  margin-bottom: 0;
}

.section-heading.compact h2 {
  max-width: 560px;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.audience-list span {
  position: relative;
  padding: 1rem 1.8rem 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.audience-list span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.audience-list span::after {
  position: absolute;
  right: 0.8rem;
  color: var(--orange);
  content: "+";
}

.questions-section {
  padding-top: 0;
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

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

.questions details {
  border-bottom: 1px solid var(--line);
}

.questions summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.questions summary::-webkit-details-marker {
  display: none;
}

.questions summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0.4rem;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
  content: "+";
}

.questions details[open] summary::after {
  content: "−";
}

.questions details p {
  max-width: 680px;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  color: var(--ink-soft);
}

.register-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #101f25;
  color: white;
}

.register-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.register-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.register-copy > p:not(.eyebrow):not(.privacy-note) {
  color: #bcc6ca;
  font-size: 1.05rem;
}

.privacy-note {
  margin-top: 2rem;
  color: #89979c;
  font-size: 0.82rem;
}

.interest-form {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: white;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.field label span {
  color: #7c898e;
  font-size: 0.72rem;
  font-weight: 400;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #c6ced1;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.field input::placeholder {
  color: #929da1;
}

.field input[aria-invalid="true"] {
  border-color: #b52e0b;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.7rem;
  margin: 0.3rem 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0.1rem 0 0;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-status.success {
  color: #1f6a3b;
  font-weight: 700;
}

.form-status.error {
  color: #a52b0d;
  font-weight: 700;
}

footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand img {
  width: 210px;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.footer-copy {
  display: grid;
  gap: 0.3rem;
}

.source-note {
  color: #748187 !important;
  font-size: 0.72rem !important;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero {
    background: var(--paper);
  }

  .hero-grid,
  .early-grid,
  .audience-grid,
  .questions-grid,
  .register-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4rem;
  }

  .opportunity-panel {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr 1.5fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .early-copy {
    max-width: 650px;
  }

  .footer-inner {
    grid-template-columns: 210px 1fr;
  }

  .copyright {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 190px;
  }

  .coverage {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 0.9rem 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .opportunity-panel {
    padding: 1rem;
  }

  .opportunity-panel::before {
    top: -10px;
    right: -4px;
  }

  .opportunity dl {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .opportunity dl div + div {
    padding: 0.7rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-grid,
  .steps,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .signal-grid p {
    min-height: auto;
    padding: 1.2rem 0;
  }

  .signal-grid p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading {
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    margin-top: 1rem;
  }

  .steps article {
    min-height: auto;
    padding: 1.8rem 0;
  }

  .steps article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step-number {
    margin-bottom: 2rem;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list span:nth-child(odd) {
    border-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-brand img {
    width: 190px;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  .button {
    transition: none;
  }
}
