/* Static LifeHash holding pages. No remote assets or client-side scripts. */
:root {
  color-scheme: light dark;
  --background: #f5f7fc;
  --surface: #ffffff;
  --text: #10141c;
  --muted: #566072;
  --border: #dbe2ee;
  --accent: #3f6fd6;
  --accent-soft: #e7eefb;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b0e15;
    --surface: #131826;
    --text: #e7ebf3;
    --muted: #a0acc1;
    --border: #26304a;
    --accent: #6f9bf2;
    --accent-soft: #182339;
  }
}

* { box-sizing: border-box; }

body {
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-underline-offset: .22em; }
a:hover { text-decoration-thickness: .12em; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; border-radius: 2px; }
main:focus { outline: none; }
p, h1, h2 { margin: 0; }

.wrap {
  width: min(100% - 3rem, 68rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  z-index: 2;
  inset: 1rem auto auto 1rem;
  transform: translateY(-200%);
  padding: .6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .4rem;
}
.skip-link:focus { transform: none; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 750;
  letter-spacing: -.05em;
  text-decoration: none;
}
.brand span, .accent { color: var(--accent); }
.header-nav, .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem 1.5rem;
}
.header-nav a, .site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--muted);
  font-size: .875rem;
  text-decoration: none;
}
.header-nav a:hover, .site-footer a:hover { color: var(--accent); text-decoration: underline; }
.header-nav a[aria-current="page"] { color: var(--text); font-weight: 650; text-decoration: underline; }

.holding-main {
  display: flex;
  flex: 1;
  align-items: center;
  padding-block: clamp(4rem, 12vh, 9rem);
}
.hero { max-width: 50rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status-dot {
  width: .45rem;
  height: .45rem;
  flex: none;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 .3rem var(--accent-soft);
}
.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-statement {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.4;
  font-weight: 550;
  letter-spacing: -.02em;
}
.hero-description {
  max-width: 42ch;
  margin-top: .85rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.availability {
  max-width: 46ch;
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  color: var(--muted);
  font-size: .875rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.site-footer p { font-size: .8rem; }

.legal-main {
  max-width: 54rem;
  flex: 1;
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
}
.legal-heading { margin-bottom: 2rem; }
.legal-heading h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.effective-date { margin-top: 1rem; color: var(--muted); font-size: .875rem; }
.legal-content {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.legal-content section + section { margin-top: 2.25rem; }
.legal-content h2 {
  margin-bottom: .85rem;
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -.015em;
  scroll-margin-top: 1.5rem;
}
.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p { margin-top: .85rem; }
.legal-content ul { margin: 0; padding-left: 1.4rem; }
.legal-content li + li { margin-top: .65rem; }

@media (max-width: 480px) {
  .wrap { width: calc(100% - 2rem); }
  .site-header { padding-block: .85rem; }
  .header-nav { gap: 1rem; }
  .holding-main { padding-block: 4rem; }
  .hero h1 { letter-spacing: -.055em; }
  .hero-description { font-size: 1rem; }
  .site-footer { align-items: flex-start; gap: .75rem; }
  .site-footer nav { gap: .15rem 1.1rem; }
}

@media print {
  body { background: white; color: black; }
  .site-header, .site-footer, .skip-link { display: none; }
  .legal-main { width: 100%; max-width: none; padding: 0; }
  .legal-content { padding: 0; border: 0; background: white; }
  .legal-content section { break-inside: avoid; }
  a { color: inherit; }
}
