:root {
  color-scheme: light;
  --ink: #17312b;
  --ink-soft: #35524b;
  --muted: #65756f;
  --evergreen: #23433c;
  --evergreen-deep: #18352f;
  --teal: #087f7a;
  --teal-soft: #dff2ee;
  --rust: #b65f3b;
  --rust-dark: #91472c;
  --gold: #d99b35;
  --paper: #ffffff;
  --canvas: #f3f7f5;
  --sage: #e7f0eb;
  --line: #d5e1db;
  --line-strong: #a9beb5;
  --focus: #126f9a;
  --danger: #8c2f39;
  --shadow: 0 16px 42px rgba(23, 49, 43, 0.11);
  --display: "Avenir Next", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --reading: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rust-dark);
}

a:focus-visible,
summary:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.06;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
}

p,
li,
dd {
  color: var(--ink-soft);
}

.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border: 2px solid var(--evergreen);
  border-radius: 4px;
  background: var(--paper);
  color: var(--evergreen);
  padding: 9px 13px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(213, 225, 219, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--evergreen-deep);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.brand:hover {
  color: var(--teal);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--evergreen);
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--evergreen);
  display: inline-grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
}

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

.site-nav a {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  background: var(--sage);
  color: var(--evergreen);
}

.site-nav a[aria-current="page"] {
  border-color: var(--line-strong);
  background: var(--teal-soft);
  color: var(--evergreen-deep);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--teal);
  background: var(--evergreen-deep);
  color: #f8fffc;
  padding: 76px 0 68px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 12px;
  background: var(--rust);
}

.page-hero h1,
.page-hero p {
  color: #f8fffc;
}

.eyebrow {
  margin-bottom: 16px;
  color: #8ee1d4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 0;
  color: #d5e8e2;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  background: #f8fffc;
  color: var(--evergreen-deep);
}

.button-primary:hover {
  background: #d9f4ee;
  color: var(--evergreen-deep);
}

.button-secondary {
  border-color: #79b9ae;
  background: transparent;
  color: #f8fffc;
}

.button-secondary:hover {
  border-color: #f8fffc;
  color: #f8fffc;
}

.main-content {
  padding: 68px 0 84px;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--rust-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.step {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 28px 26px 22px 0;
}

.step + .step {
  padding-left: 26px;
}

.step:last-child {
  border-right: 0;
}

.step-number {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.feature-band {
  margin-top: 72px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.feature-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 72px;
  padding-block: 52px;
}

.receipt-figure {
  margin: 0;
}

.receipt-frame {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  border: 1px solid #cfc8bc;
  border-radius: 6px;
  background: #f8f5ee;
  box-shadow: var(--shadow);
  padding: 16px;
  transform: rotate(-1.2deg);
}

.receipt-frame::before {
  content: "Privacy-safe sample";
  position: absolute;
  top: 18px;
  right: -22px;
  border: 1px solid #8d3f28;
  border-radius: 4px;
  background: var(--rust);
  color: #ffffff;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.receipt-frame img {
  width: 100%;
  border: 1px solid #ded8ce;
}

.receipt-figure figcaption {
  max-width: 390px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 13px;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.faq-section,
.troubleshooting-section {
  padding-top: 76px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 150ms ease;
}

.faq-list details[open] {
  background: var(--paper);
}

.faq-list summary {
  position: relative;
  min-height: 66px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 16px;
  color: var(--ink);
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  max-width: 790px;
  padding: 0 52px 24px 16px;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.issue {
  min-width: 0;
  background: var(--paper);
  padding: 28px;
}

.issue strong {
  color: var(--evergreen);
}

.contact-band {
  margin-top: 76px;
  border-left: 8px solid var(--rust);
  background: var(--evergreen);
  color: #f7fffc;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
}

.contact-band h2,
.contact-band p,
.contact-band a:not(.button) {
  color: #f7fffc;
}

.contact-band h2 {
  margin-bottom: 8px;
}

.contact-band p {
  max-width: 700px;
  margin-bottom: 0;
}

.legal-summary {
  border-left: 6px solid var(--teal);
  background: var(--paper);
  padding: 24px 28px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
}

.summary-item {
  min-width: 0;
  background: var(--sage);
  padding: 18px;
}

.summary-item strong {
  display: block;
  color: var(--evergreen-deep);
  font-size: 14px;
}

.summary-item span {
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
  padding-top: 60px;
}

.toc {
  position: sticky;
  top: 104px;
  align-self: start;
  border-left: 2px solid var(--line-strong);
  padding-left: 18px;
}

.toc-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 8px;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
}

.legal-article {
  min-width: 0;
}

.legal-article section {
  scroll-margin-top: 104px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 40px;
}

.legal-article section + section {
  padding-top: 42px;
}

.legal-article p,
.legal-article li,
.legal-article dd {
  font-family: var(--reading);
  font-size: 18px;
  line-height: 1.72;
}

.legal-article h2 {
  font-size: 27px;
}

.legal-article ul,
.legal-article ol {
  padding-left: 24px;
}

.legal-article li + li {
  margin-top: 9px;
}

.policy-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.policy-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.policy-table th,
.policy-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--sage);
  color: var(--evergreen-deep);
  font-family: var(--body);
  font-size: 13px;
  text-transform: uppercase;
}

.policy-table td {
  color: var(--ink-soft);
  font-family: var(--body);
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.note {
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--teal-soft);
  padding: 18px 20px;
}

.note strong {
  color: var(--evergreen-deep);
}

.metadata {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #c8ded7;
  font-size: 14px;
}

.metadata strong {
  color: #ffffff;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-copy {
  max-width: 580px;
}

.footer-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 14px;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-panel {
  width: min(540px, 100%);
  border-top: 6px solid var(--teal);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 38px;
}

.redirect-panel .button-primary {
  background: var(--evergreen);
  color: #ffffff;
}

@media (max-width: 860px) {
  .feature-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 42px;
  }

  .legal-layout {
    gap: 38px;
  }

  .toc {
    position: static;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
  }

  .toc ol {
    columns: 2;
  }

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

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 12px;
  }

  .site-header {
    position: static;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav a {
    justify-content: center;
    padding: 0 8px;
  }

  .page-hero {
    padding: 52px 0 48px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  h2 {
    font-size: 26px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .main-content {
    padding: 48px 0 64px;
  }

  .steps,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .feature-band,
  .faq-section,
  .troubleshooting-section,
  .contact-band {
    margin-top: 52px;
  }

  .feature-grid {
    padding-block: 42px;
  }

  .receipt-frame::before {
    right: 8px;
  }

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

  .contact-band {
    padding: 28px 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .toc ol {
    columns: 1;
  }

  .legal-article p,
  .legal-article li,
  .legal-article dd {
    font-size: 17px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .toc,
  .site-footer,
  .skip-link {
    display: none;
  }

  body,
  .page-hero,
  .main-content {
    background: #ffffff;
    color: #000000;
  }

  .page-hero {
    border-bottom: 2px solid #000000;
    padding: 28px 0;
  }

  .page-hero h1,
  .page-hero p,
  .page-hero .eyebrow,
  .metadata,
  .metadata strong {
    color: #000000;
  }

  .shell,
  .legal-layout {
    width: 100%;
    display: block;
  }

  .main-content,
  .legal-layout {
    padding-top: 28px;
  }

  a {
    color: #000000;
  }
}
