:root {
  --ink: #121611;
  --charcoal: #18211c;
  --evergreen: #0d513f;
  --green: #167a62;
  --paper: #f7f2e7;
  --white: #ffffff;
  --amber: #f4b942;
  --coral: #d95f43;
  --mist: #dce8e2;
  --muted: #65726d;
  --shadow: 0 18px 50px rgba(10, 20, 15, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(18, 22, 17, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: flex;
  align-items: center;
  width: min(360px, 52vw);
  min-width: 220px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(86vh - 78px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(13, 81, 63, 0.92), rgba(24, 33, 28, 0.96)),
    radial-gradient(circle at 100% 20%, rgba(244, 185, 66, 0.28), transparent 36%),
    var(--charcoal);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 78%, transparent 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 116px) 0 clamp(48px, 7vw, 78px);
}

.hero-copy,
.status-panel,
.body-copy,
.privacy-block,
.verify-card,
.confirmation-card,
.priority-card,
.resource-link,
.contact-card,
.contact-details,
.leslie-quote,
.quote-script {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

.hero .eyebrow,
.dove-dot {
  color: var(--amber);
}

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

h1 {
  max-width: 100%;
  margin-bottom: 4px;
  font-size: clamp(4rem, 10vw, 8.25rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title-stack {
  display: inline-grid;
  max-width: 100%;
  gap: 4px;
  text-transform: none;
}

.hero-title-place {
  display: block;
  justify-self: start;
  color: var(--white);
  font-size: clamp(2.35rem, 5.4vw, 4.7rem);
  line-height: 0.9;
}

.hero-title-name {
  display: block;
  justify-self: start;
  font-size: clamp(3.75rem, 9.4vw, 7.4rem);
  line-height: 0.86;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-title-alliance {
  display: block;
  justify-self: start;
  font-size: clamp(3.75rem, 9.4vw, 7.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2.6vw, 2.05rem);
  font-weight: 800;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-accessibility-note {
  max-width: 780px;
  margin: 0 0 28px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-accessibility-note h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.hero-accessibility-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 12px 26px rgba(244, 185, 66, 0.25);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.status-panel,
.contact-card {
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.panel-label {
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-panel ul,
.check-list {
  margin: 0;
  padding-left: 20px;
}

.status-panel li + li,
.check-list li + li {
  margin-top: 10px;
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-light {
  background: var(--white);
}

.section-deep {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 81, 63, 0.96), rgba(18, 22, 17, 0.98)),
    var(--evergreen);
}

.section-paper {
  background: var(--paper);
}

.section-verify {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 33, 28, 0.96), rgba(13, 81, 63, 0.95)),
    var(--charcoal);
}

.section-confirmation {
  background: var(--white);
}

.split,
.privacy-layout,
.contact-layout,
.verify-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.body-copy {
  color: #324039;
  font-size: 1.08rem;
}

.body-copy p:last-child,
.privacy-block p:last-child,
.contact-layout p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.priority-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.priority-card,
.resource-link,
.privacy-block {
  border-radius: 8px;
}

.priority-card {
  min-height: 288px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.priority-card p {
  color: rgba(255, 255, 255, 0.78);
}

.number {
  display: block;
  margin-bottom: 56px;
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 900;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mist);
}

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mist);
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.process-item p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-lede {
  color: #405047;
  font-size: 1.05rem;
}

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

.privacy-block {
  padding: 22px;
  background: var(--white);
  border: 1px solid #e4ded0;
}

.privacy-full {
  grid-column: 1 / -1;
}

.example {
  padding: 16px;
  color: #2a372f;
  background: #edf4f0;
  border-left: 4px solid var(--green);
}

.confirmation-intro {
  max-width: 920px;
  margin-bottom: 30px;
}

.confirmation-intro p:not(.eyebrow) {
  max-width: 780px;
  color: #405047;
  font-size: 1.08rem;
}

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

.confirmation-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid #e4ded0;
}

.confirmation-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.confirmation-card p {
  margin-bottom: 0;
  color: #405047;
}

.communication-log {
  background:
    linear-gradient(180deg, var(--paper), #ffffff 76%),
    var(--paper);
}

.log-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.log-lede {
  max-width: 780px;
  color: #405047;
  font-size: 1.06rem;
}

.track-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.track-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid #e4ded0;
  border-radius: 8px;
}

.track-row.is-live {
  border-color: #b7d8ca;
  background: #f4fbf7;
}

.track-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(244, 185, 66, 0.18);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.track-row.is-live .track-dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 122, 98, 0.16);
}

.track-row h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.track-row p {
  margin-bottom: 0;
  color: #405047;
}

.track-row strong {
  justify-self: end;
  padding: 6px 9px;
  color: var(--evergreen);
  background: #edf4f0;
  border: 1px solid #c9ddd4;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.track-row.is-live strong {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.track-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--evergreen);
  font-weight: 900;
}

.post-feed {
  position: sticky;
  top: 104px;
  padding: 18px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.feed-header h3 {
  margin-bottom: 0;
}

.feed-header span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.feed-empty,
.feed-item {
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.feed-item + .feed-item {
  margin-top: 12px;
}

.feed-meta {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feed-empty h4,
.feed-item h4 {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.08;
}

.feed-empty p:not(.feed-meta),
.feed-item p:not(.feed-meta) {
  color: rgba(255, 255, 255, 0.82);
}

.feed-empty .button {
  margin-top: 4px;
}

.feed-item a {
  color: var(--amber);
  font-weight: 900;
}

.verify-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

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

.verify-card {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.verify-card h3 {
  color: var(--white);
}

.verify-card ul {
  margin: 0;
  padding-left: 20px;
}

.verify-card li + li {
  margin-top: 10px;
}

.verify-card p,
.verify-card li {
  color: rgba(255, 255, 255, 0.8);
  overflow-wrap: anywhere;
}

.danger-card {
  border-color: rgba(244, 185, 66, 0.42);
}

.verify-wide {
  grid-column: 1 / -1;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.resource-link:hover,
.resource-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.resource-link span {
  color: rgba(255, 255, 255, 0.74);
}

.section-contact {
  background:
    linear-gradient(90deg, rgba(247, 242, 231, 0.95), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.contact-layout {
  align-items: center;
}

.contact-layout > div > p {
  max-width: 680px;
  color: #405047;
  font-size: 1.05rem;
}

.accessibility-note {
  max-width: 740px;
  margin: 26px 0 22px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e4ded0;
}

.accessibility-note h3 {
  margin-bottom: 12px;
}

.accessibility-note p {
  font-size: 1rem;
}

.accessibility-note p:last-child {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.66fr) minmax(320px, 1.34fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  color: var(--white);
  background: var(--charcoal);
}

.contact-details {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.contact-details strong {
  font-size: 1.35rem;
}

.contact-details a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.leslie-quote {
  position: relative;
  justify-self: end;
  width: min(100%, 660px);
  margin: 0;
  text-align: right;
}

.quote-script {
  position: relative;
  margin: 0;
  padding: 25px;
  color: var(--white);
  border: 2px solid;
  border-color: var(--amber);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.42rem, 2.45vw, 2.25rem);
  font-weight: 800;
  line-height: 1.16;
}

.quote-script::after {
  position: absolute;
  right: 50px;
  bottom: -62px;
  z-index: 3;
  width: 60px;
  height: 60px;
  border: 2px solid;
  border-color: var(--amber);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0 0 0;
  content: "";
}

.quote-script::before {
  position: absolute;
  right: 50px;
  bottom: -3px;
  z-index: 2;
  width: 80px;
  border: 6px solid var(--charcoal);
  content: "";
}

.quote-script .quote-line {
  display: block;
}

.quote-script .quote-line + .quote-line {
  margin-top: 9px;
}

.quote-mark,
.quote-punctuation {
  color: var(--white);
}

.quote-emphasis {
  color: var(--amber);
}

.quote-attribution {
  position: relative;
  z-index: 1;
  margin: 0 150px 0 0;
  padding-top: 15px;
  padding-right: 12px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.quote-attribution strong {
  font-weight: 800;
}

.quote-attribution cite {
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

@media (max-width: 1120px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .leslie-quote {
    justify-self: stretch;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
}

.footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p:first-child {
  color: var(--white);
  font-weight: 800;
}

.footer-copy p:last-child {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.footer-copy a {
  color: var(--amber);
  font-weight: 900;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .privacy-layout,
  .contact-layout,
  .verify-layout,
  .log-layout {
    grid-template-columns: 1fr;
  }

  .status-panel {
    max-width: 560px;
  }

  .post-feed {
    position: static;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(420px, 100%);
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .priority-grid,
  .resource-grid,
  .privacy-blocks,
  .confirmation-grid,
  .verify-cards {
    grid-template-columns: 1fr;
  }

  .privacy-full,
  .verify-wide {
    grid-column: auto;
  }

  .process-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.9rem);
    line-height: 0.9;
  }

  .quote-script {
    padding: 22px;
    font-size: clamp(1.12rem, 5.4vw, 1.48rem);
  }

  .quote-script::before {
    right: 34px;
    width: 72px;
  }

  .quote-script::after {
    right: 34px;
  }

  .quote-attribution {
    margin-right: 88px;
    padding-right: 10px;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .status-panel,
  .contact-card,
  .priority-card,
  .privacy-block,
  .confirmation-card,
  .verify-card,
  .resource-link,
  .feed-empty,
  .feed-item,
  .post-feed {
    padding: 18px;
  }

  .track-row {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .track-row strong {
    grid-column: 2;
    justify-self: start;
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 3.9rem);
  }

  .hero-title-place {
    font-size: clamp(1.8rem, 8.8vw, 2.55rem);
  }

  .hero-title-name {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-title-alliance {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .quote-script {
    padding: 18px;
    font-size: clamp(1rem, 4.9vw, 1.18rem);
  }

  .quote-script::before,
  .quote-script::after {
    display: none;
  }

  .quote-attribution {
    margin-right: 0;
    padding-right: 0;
  }
}

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

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