:root {
  --ink: #181715;
  --soft-ink: #57524a;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ded8cc;
  --red: #9e2f2b;
  --green: #0f6b57;
  --citron: #d3dc3d;
  --blue: #2f65a7;
  --shadow: 0 18px 60px rgba(24, 23, 21, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "IBM Plex Sans", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(24, 23, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 23, 21, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

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

.skip {
  background: var(--ink);
  color: var(--paper);
  left: 14px;
  padding: 10px 14px;
  position: absolute;
  top: -44px;
  z-index: 10;
}

.skip:focus {
  top: 14px;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: var(--citron);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand span:last-child {
  font-size: 18px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-links a,
.pill-link {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 12px;
  text-decoration: none;
}

.nav-links a:hover,
.pill-link:hover {
  border-color: var(--line);
  color: var(--ink);
}

.lang {
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}

.hero {
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  padding: 88px 24px 44px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 102px);
  line-height: 0.93;
  margin: 0;
  max-width: 820px;
}

.lead {
  color: var(--soft-ink);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.48;
  margin: 26px 0 0;
  max-width: 660px;
}

.hero-actions,
.inline-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: var(--citron);
}

.button.ghost {
  background: transparent;
}

.hero-board {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.9fr 1.1fr;
}

.phone-strip {
  align-self: center;
  display: grid;
  gap: 14px;
}

.phone-shot,
.service-visual {
  background: #eee8de;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-shot {
  border-radius: 26px;
}

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

.hero-note {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 20px;
}

.hero-note strong {
  font-size: 28px;
  line-height: 1;
}

.hero-note p {
  color: var(--soft-ink);
  line-height: 1.55;
  margin: 0;
}

.band {
  border-top: 1px solid var(--line);
  padding: 76px 24px;
}

.band.dark {
  background: var(--ink);
  color: var(--paper);
}

.band.green {
  background: var(--green);
  color: var(--paper);
}

.wrap {
  margin: 0 auto;
  max-width: var(--max);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2,
.page-title h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  margin: 0;
}

.section-head p,
.page-title p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}

.dark .section-head p,
.green .section-head p,
.green .muted,
.dark .muted {
  color: rgba(251, 250, 247, 0.72);
}

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

.service-card,
.download-card,
.text-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  overflow: hidden;
}

.service-card {
  display: grid;
  min-height: 100%;
}

.service-card .media {
  background: #eee8de;
  border-bottom: 1px solid var(--line);
}

.service-card .media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.service-card .body,
.download-card,
.text-card {
  padding: 22px;
}

.service-card h3,
.download-card h3,
.text-card h3 {
  font-size: 29px;
  line-height: 1;
  margin: 0 0 10px;
}

.service-card p,
.download-card p,
.text-card p,
.copy p,
.copy li {
  color: var(--soft-ink);
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  color: var(--green);
  font-weight: 800;
}

.metric-row {
  border-bottom: 1px solid rgba(251, 250, 247, 0.18);
  border-top: 1px solid rgba(251, 250, 247, 0.18);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.metric {
  padding: 26px 18px;
}

.metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 650;
}

.metric span {
  color: rgba(251, 250, 247, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.page-hero {
  margin: 0 auto;
  max-width: var(--max);
  padding: 76px 24px 48px;
}

.page-title {
  max-width: 780px;
}

.crumbs {
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

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

.detail-grid {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.service-visual {
  border-radius: 8px;
  padding: 18px;
}

.service-visual img {
  border: 1px solid var(--line);
  border-radius: 22px;
  max-height: 660px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
}

.copy h3 {
  font-size: 28px;
  margin: 34px 0 8px;
}

.copy ul {
  padding-left: 20px;
}

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

.download-card .icon {
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 58px;
  margin-bottom: 18px;
  object-fit: cover;
  width: 58px;
}

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

.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  margin: 0 auto;
  max-width: var(--max);
}

.site-footer h2,
.site-footer h3 {
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer a {
  display: block;
  text-decoration: none;
}

.legal {
  color: var(--soft-ink);
  font-size: 13px;
  margin: 28px auto 0;
  max-width: var(--max);
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

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

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

  .hero-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .nav,
  .hero,
  .page-hero,
  .band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-board {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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