:root {
  /* Unified with typical-users.html: warm "private file" palette, serif body, green accent. */
  --bg-primary: #f6f1e6;
  --bg-card: #fffdf6;
  --text-primary: #25211a;
  --text-secondary: #665f51;
  --text-muted: #857b68;
  --accent: #2f4a3c;
  --accent-deep: #243b30;
  --honey: #ecd9ae;
  --honey-deep: #d4b87a;
  --person: #245e9c;
  --teal: #2a6b6b;
  --context: #7a5c2e;
  --rose: #8c3a3a;
  --border: rgba(37, 33, 26, 0.14);
  --border-soft: rgba(37, 33, 26, 0.08);
  --radius: 12px;
  --wide-width: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font: var(--serif);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg-primary);
  font-size: 16px;
}

body {
  background:
    linear-gradient(90deg, rgba(37, 33, 26, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-primary) 0%, #fbf8f2 42%, #efe7d6 100%);
  background-size: 5rem 100%, auto;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--honey);
}

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

nav {
  background: rgba(246, 241, 230, 0.9);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.95rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.nav-inner,
.wrap {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.brand {
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 750;
  text-decoration: none;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 1.05rem;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(47, 74, 60, 0.07);
  border-color: rgba(47, 74, 60, 0.38);
  color: var(--accent-deep);
}

main {
  padding: 3.5rem 0 4rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  margin-bottom: 3.5rem;
}

.eyebrow {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text-primary);
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  max-width: 800px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin-bottom: 0.65rem;
}

h3 {
  font-size: 1.15rem;
}

p,
li {
  color: var(--text-secondary);
}

.tagline {
  font-size: 1.08rem;
  margin-top: 1rem;
  max-width: 660px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  align-items: center;
  background: var(--accent);
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(37, 33, 26, 0.18);
  color: var(--bg-primary);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.82rem 1.55rem;
  text-decoration: none;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-deep);
  box-shadow: 0 8px 22px rgba(37, 33, 26, 0.18);
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 253, 246, 0.78);
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--text-primary);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--bg-card);
  border-color: rgba(47, 74, 60, 0.42);
  color: var(--text-primary);
}

.visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 37, 43, 0.14);
  overflow: hidden;
}

.visual img {
  display: block;
  height: auto;
  width: 100%;
}

.visual figcaption {
  color: var(--text-muted);
  font-size: 0.86rem;
  padding: 0.85rem 1rem 1rem;
}

section {
  padding: 2.7rem 0;
}

.section-heading {
  margin-bottom: 1.25rem;
  max-width: 760px;
}

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

.card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--border);
  border-left: 3px solid var(--person);
  border-radius: 8px;
  padding: 1rem;
}

.card:nth-child(2) {
  border-left-color: var(--teal);
}

.card:nth-child(3) {
  border-left-color: var(--context);
}

.card:nth-child(4) {
  border-left-color: var(--rose);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card p,
.card li {
  font-size: 0.94rem;
}

.list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin-top: 0.7rem;
}

.list li {
  padding-left: 1rem;
  position: relative;
}

.list li::before {
  background: var(--teal);
  border-radius: 999px;
  content: "";
  height: 0.38rem;
  left: 0;
  position: absolute;
  top: 0.62rem;
  width: 0.38rem;
}

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

.faq {
  display: grid;
  gap: 0.8rem;
  max-width: 880px;
}

.faq article {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.faq h3 {
  margin-bottom: 0.35rem;
}

.cta {
  background: var(--text-primary);
  border-radius: 8px;
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.cta h2 {
  color: var(--bg-primary);
}

.cta p {
  color: rgba(246, 241, 230, 0.76);
  margin: 0 auto;
  max-width: 620px;
}

.cta .actions {
  justify-content: center;
}

.cta .button {
  background: var(--honey);
  border-color: var(--honey-deep);
  color: var(--text-primary);
}

.cta .button:hover,
.cta .button:focus-visible {
  background: var(--honey-deep);
}

footer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 1.2rem 0 1.6rem;
}

@media (max-width: 900px) {
  .hero,
  .grid,
  .split {
    grid-template-columns: 1fr;
  }
}

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

  main {
    padding-top: 2.4rem;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
