:root {
  --bg: #fbfaf7;
  --ink: #171717;
  --muted: #6b6862;
  --line: #dfd9d0;
  --soft: #f1ede6;
  --accent: #7c4f2b;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 0.8rem;
}

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

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.brand {
  font-weight: 760;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
}

.eyebrow,
dt,
.domain {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 760;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.lede {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

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

.split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.apps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.app {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 150px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.app:hover strong,
.app:hover .domain {
  color: var(--accent);
}

.app strong {
  font-size: 22px;
}

.app span {
  color: var(--muted);
}

.domain {
  color: var(--muted);
  text-align: right;
  text-transform: none;
  letter-spacing: 0;
}

.about-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.about-copy p {
  margin-bottom: 18px;
}

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

.contact-card {
  background: var(--soft);
  padding: 28px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

dl div:first-child {
  padding-top: 0;
}

dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dd {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 1080px);
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .split,
  .about-section,
  .app,
  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .domain {
    text-align: left;
  }
}

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