

:root {
  
  --bg:        #FFFFFF;   
  --ink:       #111316;   
  --ink-soft:  #5b6068;   
  --panel:     #F2F4F7;   
  --panel-2:   #e8ebf1;   
  --line:      #e6e9ee;   
  --accent:    #4F7E9E;   
  --accent-ink:#365f7d;   

  
  --radius: 16px;
  --radius-lg: 28px;
  --pill: 100px;
  --maxw: 1180px;

  
  --tap: 44px;            

  
  --hero-wash:
    radial-gradient(110% 90% at 82% 0%, #e4f0fa 0%, #f2f7fc 45%, #ffffff 78%),
    linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
}

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


p, li {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.btn, nav a, .eyebrow-line, .mono, .fact-key, figcaption,
.topbar a, .topbar span, .est-scale span, .price-inline span {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}


html.scroll-smooth { scroll-behavior: smooth; }


main[id], main [id] { scroll-margin-top: calc(73px + 16px); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--ink-soft);
}

p { max-width: 68ch; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
a.link {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a.link:hover { color: var(--ink); }


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


.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


.skip-link {
  position: absolute; left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;               
  padding: 0 28px;
  border-radius: var(--pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.btn-dark { background: var(--ink); color: #fff; }

.btn-dark:hover { transform: translateY(-2px); background: #2a2f36; }
.btn-soft { background: var(--panel); color: var(--ink); }
.btn-soft:hover { transform: translateY(-2px); background: var(--panel-2); }

.btn-line { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-line:hover { transform: translateY(-2px); background: var(--panel-2); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .btn:hover { transform: none; }
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wordmark sup { color: var(--accent); font-weight: 600; }
.wordmark .wm-hvost, .cover-top .cover-mark .wm-hvost { color: var(--accent); }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-cta { display: none; }


.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;           
  border-radius: 50%;
  background: var(--panel);
  border: none;
  cursor: pointer;
  transition: background .25s ease;
}
.burger:hover { background: var(--panel-2); }
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after  { position: absolute; top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after  { transform: translateY(-6px) rotate(-45deg); }


.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.mobile-menu a {
  padding: 14px 4px;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  font-size: 17px;
  border-top: 1px solid var(--line);
}
.mobile-menu a:first-child { border-top: none; }
.mobile-menu .btn { margin-top: 12px; }
body.menu-open .mobile-menu { display: flex; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
  body.menu-open .mobile-menu { display: none; }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .wrap.nav { gap: 12px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 15px; }
  .nav-cta { padding: 0 18px; font-size: 14px; }
}



.section-pad { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { margin-bottom: 40px; }
.section-head .mono { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 48px); max-width: 640px; }


.contact-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
}
.contact-card .mono { display: block; margin-bottom: 18px; }
.contact-card h2 {
  font-size: clamp(24px, 3.6vw, 40px);
  max-width: 620px;
  margin: 0 auto 18px;
}
.contact-card p { margin: 0 auto; color: var(--ink-soft); max-width: 520px; }
.placeholder-note {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: var(--pill);
  border: 1px dashed var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}



body.wash-top {
  background-image: var(--hero-wash);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 560px;
}
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) 24px;
}
.page h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.page .updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 40px; display: block; }
.page h2 { font-size: 22px; margin: 36px 0 12px; }
.page p, .page li { color: #2b2f36; margin-bottom: 12px; }
.page ul { padding-left: 22px; }
.page .back { margin-top: 48px; display: inline-flex; }


.notfound {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
}
.notfound .code { font-family: 'JetBrains Mono', monospace; color: var(--ink-soft); letter-spacing: .2em; margin-bottom: 16px; }
.notfound h1 { font-size: clamp(30px, 6vw, 56px); margin-bottom: 16px; }
.notfound p { color: var(--ink-soft); margin-bottom: 32px; }


footer {
  padding: 64px 0 72px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.foot-brand { max-width: 360px; }
.foot-brand p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.foot-legal { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.foot-legal .mono { display: block; margin-bottom: 10px; }
.foot-legal a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-legal a:hover { color: var(--ink); }
