:root {
  color-scheme: light;
  --ink: #17130f;
  --ink-soft: #41362b;
  --muted: #766a5e;
  --paper: #fff8e8;
  --paper-2: #f2e3c2;
  --brass: #b8812f;
  --brass-dark: #77511f;
  --teal: #2f9d92;
  --fog: rgba(225, 235, 228, 0.72);
  --line: rgba(61, 42, 20, 0.18);
  --shadow: 0 24px 70px rgba(34, 25, 16, 0.18);
  --content: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(47, 157, 146, 0.08), transparent 26%, rgba(184, 129, 47, 0.08) 74%, transparent),
    linear-gradient(180deg, #12303a 0%, #2f261c 34%, #f7ecd4 34%, #fffaf0 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.shell {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 248, 232, 0.14);
  background: rgba(18, 48, 58, 0.88);
  backdrop-filter: blur(18px);
  color: #fff8e8;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  inline-size: 46px;
  block-size: 46px;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.nav-links a,
.footer-links a {
  color: inherit;
}

.hero {
  padding: 58px 0 46px;
  color: #fff8e8;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a6f2e7;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  max-width: 66ch;
  color: rgba(255, 248, 232, 0.82);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 248, 232, 0.28);
  border-radius: var(--radius);
  color: #fff8e8;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--brass);
  background: var(--brass);
  color: #1b1309;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 232, 0.08);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section {
  padding: 54px 0;
}

.section h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lede {
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.7;
}

.proof-grid,
.screenshot-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.proof-card,
.shot,
.support-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 232, 0.84);
  box-shadow: 0 16px 36px rgba(34, 25, 16, 0.08);
}

.proof-card,
.support-card,
.policy-card {
  padding: 22px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
}

.proof-card p,
.support-card p,
.policy-card p,
.policy-card li {
  color: var(--ink-soft);
  line-height: 1.68;
}

.shot {
  overflow: hidden;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot div {
  padding: 14px 16px 16px;
  color: var(--ink-soft);
  font-weight: 780;
}

.policy-body {
  max-width: 820px;
  padding: 44px 0 56px;
}

.policy-body h1 {
  color: var(--ink);
}

.policy-body p,
.policy-body li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.policy-body ul {
  padding-left: 1.25rem;
}

.summary {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 28px 0 52px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

:where(a, button):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 74%, white);
  outline-offset: 4px;
}

@media (max-width: 880px) {
  .hero-grid,
  .proof-grid,
  .screenshot-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    max-width: 9ch;
  }
}
