:root {
  color-scheme: dark;
  --background: #10110f;
  --surface: #1a1b18;
  --text: #eeeadd;
  --muted: #a5a299;
  --line: #35362f;
  --accent: #d4f06a;
  --accent-soft: #2b3219;
  --shell: 70rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: var(--background);
}

a {
  color: inherit;
  text-decoration-color: #6f7168;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: currentColor;
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(212, 240, 106, 0.36);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.55rem 0.85rem;
  border-radius: 0.25rem;
  background: var(--accent);
  color: var(--background);
  transform: translateY(-160%);
}

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

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

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-inner {
  min-height: 5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 550;
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 0.8fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
  padding-block: clamp(5rem, 11vw, 8.5rem);
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--accent);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  line-height: 1.12;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.summary {
  padding-block: 1.5rem;
  border-block: 1px solid var(--line);
}

.summary dl {
  margin: 0;
}

.summary dl div + div {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.summary dt {
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary dd {
  margin: 0;
  font-weight: 560;
  line-height: 1.45;
}

.section {
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 9ch;
}

.product {
  align-self: start;
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  border-block: 1px solid var(--line);
}

.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-title h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.status {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 680;
  letter-spacing: 0.03em;
}

.status::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 0;
  background: currentColor;
  content: "";
}

.product p {
  max-width: 35rem;
  margin-bottom: 1.25rem;
  font-size: 1.16rem;
}

.product .product-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product .product-links {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
}

.text-link,
.prose a {
  color: var(--accent);
  font-weight: 620;
}

.company-copy > p:last-child {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 3px solid var(--accent);
  background: var(--surface);
}

.contact-card h3 {
  margin-bottom: 1.5rem;
}

address {
  margin-bottom: 1.5rem;
  font-style: normal;
}

.contact-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  margin-bottom: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-line > span {
  color: var(--muted);
}

.email {
  direction: rtl;
  justify-self: start;
  unicode-bidi: bidi-override;
}

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

.footer-inner {
  min-height: 7rem;
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-main {
  min-height: calc(100vh - 12rem);
  padding-block: clamp(4rem, 9vw, 7rem);
}

.prose {
  max-width: 46rem;
}

.prose h1 {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
}

.prose h2 {
  margin-top: 3rem;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.prose p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose ul {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose li + li {
  margin-top: 0.65rem;
}

.prose strong {
  color: var(--text);
}

.prose .policy-meta {
  margin: -0.75rem 0 3.5rem;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-summary {
  margin-block: 2.5rem 3.5rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--line);
}

.policy-summary p:last-child,
.policy-summary ul:last-child {
  margin-bottom: 0;
}

.prose .page-intro {
  margin-bottom: 3.5rem;
  color: var(--text);
  font-size: 1.25rem;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent);
  font-weight: 620;
}

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

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding-block: 1rem;
  }

  .header-inner nav {
    width: 100%;
    gap: 1.25rem;
  }

  .hero,
  .section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding-block: 4.5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .section-heading h2 {
    max-width: 14ch;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding-block: 1.5rem;
  }
}

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