:root {
  --ink: #17221e;
  --forest: #102c28;
  --forest-deep: #071613;
  --forest-soft: #173c35;
  --ivory: #f5f0e7;
  --paper: #fffdf8;
  --sand: #e9dfd1;
  --copper: #a85431;
  --copper-dark: #75331d;
  --green: #2c7656;
  --green-bright: #70d39a;
  --red: #a13b32;
  --line: rgba(23, 34, 30, 0.18);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #56635d;
  --shadow: 0 26px 90px rgba(17, 38, 32, 0.15);
  --sans: "DM Sans", sans-serif;
  --serif: "Fraunces", serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  width: min(1400px, calc(100% - 48px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--copper-dark);
  background: #ead9c6;
  border: 1px solid rgba(168, 84, 49, 0.35);
  border-radius: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.28em;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: #606d67;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:not(.nav-cta):hover {
  color: var(--copper-dark);
}

.nav-cta {
  padding: 11px 18px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 7vw;
  padding: 104px max(48px, calc((100vw - 1400px) / 2));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(16, 44, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 44, 40, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero::after {
  content: "";
  position: absolute;
  top: -270px;
  right: -220px;
  z-index: -1;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(168, 84, 49, 0.19);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(245, 240, 231, 0.88),
    0 0 0 91px rgba(168, 84, 49, 0.1);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0b08d;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  max-width: 800px;
  font-size: clamp(58px, 6.5vw, 98px);
}

h1 em {
  color: var(--copper);
  font-weight: 600;
}

h2 {
  font-size: clamp(44px, 5vw, 70px);
}

h3 {
  margin: 20px 0 12px;
  font-size: 25px;
  line-height: 1.22;
}

.hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: #46534e;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.52;
}

.hero-boundary {
  max-width: 690px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: #55625c;
  border-left: 3px solid var(--copper);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #102c28;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #fffdf8;
}

.button-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 12px 26px rgba(117, 51, 29, 0.2);
}

.button-primary:hover {
  background: var(--copper-dark);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 253, 248, 0.54);
  border-color: var(--forest);
}

.button-light {
  color: var(--forest);
  background: #f4eadf;
}

.hero-note {
  margin-top: 18px;
  color: #606d67;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-window {
  position: relative;
  overflow: hidden;
  color: #eaf2ed;
  background: var(--forest-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    18px 18px 0 rgba(117, 51, 29, 0.17),
    var(--shadow);
  rotate: 1deg;
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  color: #9eb2aa;
  background: #050f0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.receipt-paper {
  margin: 24px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(23, 34, 30, 0.1);
}

.receipt-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--ink);
}

.receipt-title small,
.receipt-title strong {
  display: block;
}

.receipt-title small {
  color: var(--copper-dark);
  font: 10px var(--mono);
  letter-spacing: 0.14em;
}

.receipt-title strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 27px;
}

.receipt-title > span {
  padding: 7px 10px;
  color: var(--green);
  border: 1px solid rgba(44, 118, 86, 0.36);
  font: 10px var(--mono);
  letter-spacing: 0.1em;
}

.receipt-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  margin: 18px 0;
}

.receipt-fields div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.receipt-fields dt {
  color: #606d67;
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receipt-fields dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.receipt-fields .positive {
  color: var(--green);
}

.commitments {
  margin-top: 26px;
}

.commitments p {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 12px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(23, 34, 30, 0.2);
}

.commitments span {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font: 9px var(--mono);
}

.commitments strong {
  font-size: 13px;
}

.commitments code {
  color: #68746e;
  font: 10px var(--mono);
}

.receipt-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 15px;
  color: #e9f3ee;
  background: var(--forest);
}

.receipt-total span {
  font: 9px var(--mono);
  letter-spacing: 0.11em;
}

.receipt-total code {
  font: 11px var(--mono);
}

.receipt-caption {
  margin: 0;
  padding: 16px 24px 22px;
  color: #9fb1a9;
  font: 10px/1.55 var(--mono);
}

.truth-strip {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.65fr;
  color: #dbe7e1;
  background: var(--forest);
  border-block: 1px solid #31534c;
}

.truth-strip span {
  padding: 19px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
}

.truth-strip span:last-child {
  border-right: 0;
}

.truth-strip strong {
  color: #f0b08d;
  font-weight: 500;
}

.moment-section {
  width: 100%;
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 7vw;
  padding: 130px max(48px, calc((100vw - 1280px) / 2));
  color: #edf6f1;
  background: var(--forest-deep);
}

.moment-index {
  color: rgba(240, 176, 141, 0.75);
  font-family: var(--serif);
  font-size: clamp(110px, 16vw, 220px);
  line-height: 0.8;
}

.moment-copy {
  max-width: 940px;
}

.moment-copy h2 {
  max-width: 920px;
}

.moment-copy > p:not(.eyebrow) {
  max-width: 790px;
  margin-top: 30px;
  color: #becdc6;
  font-size: 19px;
}

.moment-copy blockquote {
  max-width: 800px;
  margin: 44px 0 0;
  padding: 22px 0 22px 26px;
  color: #fff;
  border-left: 4px solid var(--copper);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.25;
}

.section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0;
}

.section-heading {
  max-width: 980px;
}

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

.section-heading > p:last-child {
  max-width: 820px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 19px;
}

.drift-demo {
  margin-top: 66px;
  overflow: hidden;
  color: #eaf2ed;
  background: var(--forest-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #a7bbb2;
  background: #040d0b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font: 10px var(--mono);
  letter-spacing: 0.11em;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots i {
  width: 8px;
  height: 8px;
  background: #8c4c38;
  border-radius: 50%;
}

.demo-dots i:nth-child(2) {
  background: #a98f4d;
}

.demo-dots i:nth-child(3) {
  background: #4f8069;
}

.demo-body {
  display: grid;
  grid-template-columns: 1fr 120px 0.88fr;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 6vw, 72px);
}

.demo-file {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
}

.file-icon {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--forest);
  font: 12px var(--mono);
}

.demo-file small,
.demo-file strong,
.demo-file code,
.demo-result small,
.demo-result strong,
.demo-result code {
  display: block;
}

.demo-file small,
.demo-result small {
  color: #606d67;
  font: 9px var(--mono);
  letter-spacing: 0.12em;
}

.demo-file strong {
  margin: 7px 0;
  font-size: 20px;
}

.demo-file code {
  color: #64716b;
  font: 10px var(--mono);
}

.comparison {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-line {
  height: 1px;
  flex: 1;
  background: #59716a;
}

.comparison i {
  color: #efb08c;
  font-style: normal;
  font-size: 24px;
}

.demo-result {
  padding: 30px;
  background: #153a33;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.demo-result small {
  color: #9bb1a7;
}

.demo-result strong {
  margin: 18px 0 7px;
  color: var(--green-bright);
  font: 500 clamp(35px, 4vw, 54px) var(--mono);
}

.demo-result code {
  color: #adc0b8;
  font: 11px var(--mono);
}

.drift-demo[data-demo-state="mismatch"] .demo-result {
  background: #38201d;
  border-color: rgba(235, 139, 114, 0.35);
}

.drift-demo[data-demo-state="mismatch"] .demo-result strong {
  color: #f09a82;
}

.demo-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(34px, 6vw, 72px);
  color: var(--ink);
  background: #e8dfd1;
}

.demo-actions p {
  max-width: 680px;
  margin: 0;
  color: #56625d;
  font-size: 14px;
}

.demo-caveat {
  max-width: 1000px;
  margin: 28px 0 0;
  padding: 20px 24px;
  color: #4e5b55;
  background: var(--paper);
  border: 1px solid var(--line);
}

.demo-caveat strong {
  color: var(--copper-dark);
}

.contents-section {
  padding-top: 40px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contents-grid article {
  min-height: 320px;
  padding: 34px;
  background: var(--paper);
}

.contents-grid article.not-kept {
  background: #ede4d8;
}

.contents-grid span {
  color: var(--green);
  font: 10px var(--mono);
  letter-spacing: 0.13em;
}

.contents-grid .not-kept span {
  color: var(--copper-dark);
}

.contents-grid h3 {
  margin-top: 64px;
  font-family: var(--serif);
  font-size: 31px;
}

.contents-grid p {
  color: var(--muted);
}

.assurance-section {
  padding-top: 42px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.assurance-grid li {
  min-height: 300px;
  padding: 34px;
  background: var(--paper);
}

.assurance-grid li:not(.assurance-current) {
  background: #ede4d8;
}

.assurance-grid span {
  color: var(--copper-dark);
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
}

.assurance-grid .assurance-current span {
  color: var(--green);
}

.assurance-grid h3 {
  margin-top: 54px;
  font-family: var(--serif);
  font-size: 31px;
}

.assurance-grid p {
  color: var(--muted);
}

.assurance-boundary {
  margin: 26px 0 0;
  padding: 20px 24px;
  color: #4e5b55;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  font-size: 14px;
}

.assurance-boundary strong {
  color: var(--green);
}

.signal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 7vw;
  align-items: start;
  background: #ede4d8;
}

.signal-intro h2 {
  max-width: 720px;
}

.signal-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.signal-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--copper);
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.research-form {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

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

.research-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.research-form label > span {
  color: var(--muted);
  font-weight: 400;
}

.research-form input,
.research-form select,
.research-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #aeb8b2;
  border-radius: 0;
  font: 16px var(--sans);
}

.research-form textarea {
  min-height: 112px;
  resize: vertical;
}

.research-form input:focus,
.research-form select:focus,
.research-form textarea:focus {
  outline: 3px solid rgba(183, 97, 57, 0.22);
  border-color: var(--copper-dark);
}

.form-message {
  margin-top: 20px;
}

.research-form .form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-consent a {
  color: var(--green);
}

.form-honey {
  position: absolute;
  left: -10000px;
}

.research-form button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #922f2f;
}

.guide-section {
  padding-top: 118px;
}

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

.guide-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.guide-grid .collector-link {
  margin-top: auto;
  color: var(--copper-dark);
}

.collectors-section {
  width: 100%;
  padding: 126px max(48px, calc((100vw - 1280px) / 2));
  color: #edf6f1;
  background: var(--forest);
}

.collectors-section .section-heading > p:last-child {
  color: #bfd0c8;
}

.collector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
}

.collector-grid article {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #153a33;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.collector-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.host-index {
  color: #f0b08d;
  font: 12px var(--mono);
}

.host-name {
  color: #dbe8e2;
  font: 500 10px var(--mono);
  letter-spacing: 0.13em;
}

.collector-grid h3 {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 37px;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 22, 18, 0.34);
}

.availability span {
  color: #aac0b6;
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
}

.availability strong {
  text-align: right;
  font: 500 10px var(--mono);
  letter-spacing: 0.06em;
}

.availability-waiting strong {
  color: #d8c8bd;
}

.availability-review strong {
  color: #f1b18d;
}

.availability-live strong {
  color: #9ce0b8;
}

.collector-grid > article > p:not(.collector-limit) {
  color: #c3d2cb;
}

.collector-grid dl {
  margin: 26px 0;
}

.collector-grid dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.collector-grid dt {
  color: #f0b08d;
  font: 9px var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collector-grid dd {
  margin: 6px 0 0;
  color: #e4eee9;
  font-size: 14px;
}

.collector-limit {
  margin-top: auto;
  padding: 17px;
  color: #afc2b9;
  background: rgba(6, 22, 18, 0.5);
  border-left: 3px solid #d88762;
  font-size: 13px;
}

.collector-link {
  display: inline-block;
  margin-top: 18px;
  color: #f1b18d;
  font-size: 14px;
  font-weight: 700;
}

.availability-note {
  margin: 18px 0 0;
  color: #aebfb7;
  font-size: 13px;
}

.collector-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.collector-link-secondary {
  color: #c4d4cc;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.closing-source-link {
  color: #f4c6aa;
  font-weight: 700;
}

.closing-status-link {
  color: #c8d8d0;
}

.activation-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
}

.activation-intro > p:last-child {
  color: var(--muted);
}

.fit-section .activation-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.fit-section .activation-intro > p + p {
  margin-top: 22px;
}

.activation-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.activation-columns > div {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.activation-columns > div:last-child {
  background: #ece2d5;
}

.activation-columns h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 30px;
}

.activation-columns ul {
  margin: 25px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.activation-columns li {
  margin: 12px 0;
}

.fit-boundary {
  margin: 28px 0 0;
  padding: 20px 24px;
  color: #4e5b55;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  font-size: 14px;
}

.fit-boundary strong {
  color: var(--copper-dark);
}

.limits-section {
  width: 100%;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 7vw;
  padding: 126px max(48px, calc((100vw - 1280px) / 2));
  color: #eef6f2;
  background: var(--forest-deep);
}

.limits-intro > p:not(.eyebrow) {
  color: #b9cbc2;
}

.limits-table {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.limits-row span {
  padding: 20px 24px;
  color: #d0ded7;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.limits-row small {
  display: none;
}

.limits-row span:last-child {
  border-right: 0;
}

.limits-row:last-child span {
  border-bottom: 0;
}

.limits-head span {
  color: #f1b18d;
  background: #102823;
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contest-separation {
  grid-column: 2;
  margin: 24px 0 0;
  padding: 20px 24px;
  color: #b8c9c1;
  background: #102823;
  border-left: 3px solid var(--copper);
  font-size: 14px;
}

.contest-separation a {
  display: block;
  margin-top: 9px;
  color: #f1b18d;
  font-weight: 700;
}

.faq-section {
  max-width: 1040px;
}

.faq-list {
  margin-top: 56px;
}

.faq-list details {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.faq-list details p {
  max-width: 850px;
  color: var(--muted);
}

.faq-list code {
  padding: 2px 5px;
  color: var(--copper-dark);
  background: #eee4d7;
  font-family: var(--mono);
  font-size: 0.84em;
}

.closing-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: center;
  padding: 116px max(48px, calc((100vw - 1280px) / 2));
  color: #edf6f1;
  background: var(--forest);
}

.closing-section h2 {
  max-width: 780px;
}

.closing-section > div:last-child p {
  max-width: 600px;
  color: #c1d1ca;
  font-size: 18px;
}

.closing-section .button {
  margin-top: 18px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px max(48px, calc((100vw - 1400px) / 2));
  color: #becbc5;
  background: #050e0c;
  border-top: 1px solid #2d4942;
}

.footer-brand {
  color: #fff;
}

.footer-brand small {
  color: #aebeb6;
}

footer p {
  max-width: 650px;
  margin: 0;
  font-size: 12px;
}

footer > div:last-child {
  display: flex;
  gap: 22px;
  font-size: 13px;
}

.reveal {
  animation: reveal-up 0.75s both;
}

.receipt-window.reveal {
  animation-delay: 0.14s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    animation: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .activation-section,
  .limits-section,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .receipt-window {
    max-width: 760px;
    rotate: none;
  }

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

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

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

  .assurance-grid li {
    min-height: auto;
  }

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

  .collector-grid article {
    min-height: auto;
  }

  .contest-separation {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .section {
    width: min(100% - 30px, 1280px);
  }

  .site-header {
    min-height: 74px;
  }

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

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero {
    padding: 64px 15px 76px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .receipt-paper {
    margin: 14px;
    padding: 22px 18px;
  }

  .receipt-fields {
    grid-template-columns: 1fr;
  }

  .receipt-title strong {
    font-size: 23px;
  }

  .truth-strip {
    grid-template-columns: 1fr;
  }

  .truth-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .truth-strip span:last-child {
    border-bottom: 0;
  }

  .moment-section {
    grid-template-columns: 1fr;
    padding: 90px 15px;
  }

  .moment-index {
    font-size: 96px;
  }

  .section {
    padding: 88px 0;
  }

  .demo-body {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .comparison {
    min-height: 72px;
    flex-direction: column;
    justify-content: center;
  }

  .comparison-line {
    width: 1px;
    height: 22px;
    flex: 0 0 22px;
  }

  .comparison i {
    line-height: 1;
    transform: rotate(90deg);
  }

  .demo-actions {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
  }

  .contents-section {
    padding-top: 20px;
  }

  .contents-grid,
  .activation-columns {
    grid-template-columns: 1fr;
  }

  .assurance-section {
    padding-top: 20px;
  }

  .contents-grid article {
    min-height: auto;
  }

  .contents-grid h3 {
    margin-top: 36px;
  }

  .assurance-grid h3 {
    margin-top: 36px;
  }

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

  .research-form {
    padding: 24px 20px;
  }

  .collectors-section,
  .limits-section,
  .closing-section {
    padding: 88px 15px;
  }

  .collector-grid article {
    padding: 28px 22px;
  }

  .limits-row,
  .limits-head {
    grid-template-columns: 1fr;
  }

  .limits-head {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .limits-row span {
    border-right: 0;
  }

  .limits-row small {
    display: block;
    margin-bottom: 9px;
    color: #f1b18d;
    font: 500 10px var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .limits-row span:first-child {
    background: #0e241f;
  }

  .limits-head span:first-child,
  .limits-head span:last-child {
    background: #17352f;
  }

  .closing-section {
    gap: 34px;
  }

  footer {
    padding: 44px 15px;
  }

  footer > div:last-child {
    flex-wrap: wrap;
  }
}
