:root {
  color-scheme: light;
  --ink: #0b1220;
  --text: #1a1a1a;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --surface-selected: #eef3f8;
  --line: #eeeeee;
  --brand: #2f6fd6;
  --brand-strong: #1e4e9d;
  --brand-soft: #eef3f8;
  --accent: #2f6fd6;
  --pin-food: #f07c24;
  --pin-shopping: #2563eb;
  --pin-collect: #16a34a;
  --pin-report: #c2413a;
  --pin-place: #8b3ed4;
  --shadow: 0 8px 28px rgba(11, 18, 32, 0.07);
  --radius: 14px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-strong);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.nav-shell,
.page-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 12px;
  align-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--surface-selected);
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--ink);
}

.page-shell {
  padding-block: 0 80px;
}

.hero {
  display: grid;
  min-height: 560px;
  padding-block: 74px 82px;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

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

.eyebrow::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.72;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 5px 14px rgba(47, 111, 214, 0.18);
}

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

.hero-panel,
.card,
.notice,
.legal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  border-radius: 18px;
}

.hero-panel .panel-title {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 800;
}

.fact-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.fact-list li {
  display: grid;
  align-items: start;
  gap: 11px;
  grid-template-columns: 24px 1fr;
}

.fact-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
}

.section {
  padding-block: 64px;
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
}

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

.card {
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px rgba(11, 18, 32, 0.05);
}

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

.card-kicker {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-split {
  display: grid;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
}

.feature-split p:last-child {
  margin-bottom: 0;
}

.limits {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.limits li {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.limits strong {
  display: block;
  color: var(--brand-strong);
  font-size: 1.06rem;
}

.legal-header {
  max-width: 800px;
  padding: 48px 0 38px;
}

.legal-header h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.effective-date {
  color: var(--muted);
  font-weight: 700;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 32px;
  grid-template-columns: 240px minmax(0, 1fr);
}

.toc {
  position: sticky;
  top: 104px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.toc p {
  margin-bottom: 9px;
  font-weight: 800;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
}

.toc a {
  display: inline-block;
  padding-block: 3px;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border-radius: 16px;
}

.prose section + section {
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  scroll-margin-top: 100px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.prose h3 {
  margin-top: 28px;
}

.prose p,
.prose li {
  max-width: 76ch;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

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

.notice {
  margin-block: 28px;
  padding: 20px 22px;
  border-left: 5px solid var(--brand);
  border-radius: 10px 16px 16px 10px;
  box-shadow: none;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.support-grid {
  display: grid;
  margin-top: 32px;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid .card {
  box-shadow: none;
}

.contact-card {
  display: grid;
  margin-block: 10px 44px;
  padding: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  background: var(--surface-soft);
  gap: 20px;
  grid-template-columns: 1fr auto;
}

.contact-card p {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.breadcrumb {
  display: flex;
  margin: 0 0 clamp(18px, 2vw, 28px);
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: #8b98aa;
  content: "/";
}

.hero-authority {
  display: grid;
  min-height: 0;
  padding-block: clamp(38px, 5.5vw, 72px) clamp(52px, 7vw, 88px);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.hero-copy {
  min-width: 0;
}

.hero-brand-lockup {
  display: inline-flex;
  width: 190px;
  margin-bottom: clamp(22px, 3vw, 34px);
  align-items: center;
  color: var(--ink);
  flex-direction: column;
}

.hero-brand-mark {
  display: block;
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.hero-brand-wordmark {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero-brand-signal {
  display: block;
  width: 180px;
  height: 18px;
  margin-top: 10px;
  object-fit: contain;
}

.hero-brand-tagline {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-authority h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
}

.hero-subtitle {
  display: block;
  margin-top: 0.18em;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.9vw, 2.15rem);
  letter-spacing: -0.035em;
}

.app-preview {
  width: min(100%, 400px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--text);
  justify-self: end;
}

.capture-orb {
  display: grid;
  width: 148px;
  height: 148px;
  margin: 4px auto 0;
  border: 10px solid var(--surface);
  border-radius: 50%;
  outline: 2px solid #a8c9f2;
  background: var(--brand);
  box-shadow: 0 9px 22px rgba(11, 18, 32, 0.2);
  place-items: center;
}

.capture-orb svg {
  width: 46px;
  height: 46px;
  fill: #f8f7f4;
}

.capture-label {
  margin: 14px 0 28px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
}

.preview-heading {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  gap: 8px;
}

.preview-count {
  display: grid;
  min-width: 28px;
  min-height: 24px;
  padding-inline: 8px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.78rem;
  place-items: center;
}

.preview-pin {
  display: grid;
  min-height: 76px;
  padding: 13px 14px 13px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: var(--surface);
  gap: 11px;
  grid-template-columns: 32px minmax(0, 1fr);
}

.preview-pin + .preview-pin {
  margin-top: 10px;
}

.preview-pin-food {
  border-left-color: var(--pin-food);
}

.preview-pin-collect {
  border-left-color: var(--pin-collect);
}

.preview-pin-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  place-items: center;
}

.preview-pin-food .preview-pin-icon {
  background: rgba(240, 124, 36, 0.14);
  color: var(--pin-food);
}

.preview-pin-collect .preview-pin-icon {
  background: rgba(22, 163, 74, 0.14);
  color: var(--pin-collect);
}

.preview-pin strong,
.preview-pin small {
  display: block;
}

.preview-pin strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.preview-pin small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.authority-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 26vw, 340px), 1fr));
}

.authority-card {
  display: flex;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 3px 18px rgba(11, 18, 32, 0.045);
  flex-direction: column;
}

.authority-grid .authority-card:nth-child(6n + 2) {
  border-left-color: var(--pin-food);
}

.authority-grid .authority-card:nth-child(6n + 3) {
  border-left-color: var(--pin-collect);
}

.authority-grid .authority-card:nth-child(6n + 4) {
  border-left-color: var(--pin-place);
}

.authority-grid .authority-card:nth-child(6n + 5) {
  border-left-color: var(--pin-report);
}

.authority-grid .authority-card:nth-child(6n + 6) {
  border-left-color: var(--pin-shopping);
}

.authority-card p {
  flex: 1;
  color: var(--muted);
}

.authority-card a {
  min-height: 44px;
  align-content: center;
  font-weight: 750;
}

.answer-first {
  max-width: 78ch;
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.definition-panel {
  margin-block: 28px 44px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  border-radius: 10px 14px 14px 10px;
  background: var(--surface);
  box-shadow: 0 3px 18px rgba(11, 18, 32, 0.045);
}

.definition-panel p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  max-width: 820px;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary {
  min-height: 44px;
  align-content: center;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.faq-list details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.semantic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.8rem, 1.5vw, 0.96rem);
}

.table-wrap {
  max-width: 1050px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: auto;
}

.semantic-table th,
.semantic-table td {
  padding: clamp(10px, 1.5vw, 16px);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.semantic-table th {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

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

.page-intro {
  max-width: 850px;
  padding-block: clamp(42px, 7vw, 76px) clamp(28px, 4vw, 46px);
}

.page-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 3.8rem);
}

.byline {
  color: var(--muted);
  font-size: 0.9rem;
}

.quiet-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.location-page {
  min-height: 100vh;
  background: var(--surface-soft);
}

.location-page [hidden] {
  display: none !important;
}

.location-nav {
  justify-content: flex-start;
}

.location-main {
  display: grid;
  width: min(calc(100% - 40px), 700px);
  min-height: calc(100vh - 65px);
  margin-inline: auto;
  padding-block: clamp(36px, 8vw, 80px);
  align-items: center;
}

.location-card {
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.location-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 8vw, 3.8rem);
}

.location-card .lede {
  margin-bottom: 26px;
}

.location-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--muted);
}

.location-choices {
  margin-top: 24px;
}

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

.provider-link {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.coordinate-copy-fallback {
  display: grid;
  margin-top: 16px;
  gap: 7px;
}

.coordinate-copy-fallback label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.coordinate-copy-value {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.location-privacy {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-shell {
  display: grid;
  padding-block: 32px;
  align-items: center;
  gap: 18px;
  grid-template-columns: 1fr auto;
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  min-height: 44px;
  align-content: center;
  font-size: 0.9rem;
}

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

  .hero {
    min-height: auto;
    padding-block: 54px;
  }

  .hero-authority {
    padding-block: 44px 68px;
  }

  .app-preview {
    justify-self: center;
  }

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

  .toc {
    position: static;
  }
}

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

  .nav-shell,
  .page-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    padding-block: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .nav-links {
    display: flex;
    width: 100%;
    padding-bottom: 4px;
    justify-content: space-between;
    gap: 0;
    overflow: visible;
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .nav-links a {
    justify-content: center;
    padding-inline: 4px;
    font-size: 0.72rem;
    text-align: center;
    white-space: nowrap;
  }

  .page-shell {
    padding-block: 0 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-brand-lockup {
    margin-inline: auto;
  }

  .hero-authority {
    padding-block: 34px 56px;
    gap: 34px;
  }

  .hero-authority h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-authority .lede {
    margin-inline: auto;
  }

  .hero-authority .actions {
    justify-content: center;
  }

  .app-preview {
    padding: 24px 18px;
  }

  .location-main {
    width: min(calc(100% - 28px), 700px);
    min-height: calc(100vh - 65px);
    padding-block: 24px;
  }

  .location-card {
    padding: 26px 20px;
  }

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

  .hero {
    gap: 28px;
  }

  .hero-panel,
  .feature-split,
  .legal-card,
  .contact-card {
    padding: 22px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  body {
    background: #fff;
  }

  .page-shell {
    width: 100%;
    padding: 0;
  }

  .legal-card {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
