﻿@charset "UTF-8";
/* Homepage V2 entry point. Compiled by BuildWebCompiler
   (compilerconfig.json) to css/homepage.css + .min.css.
   Loaded only by Views/HomepageV2.cshtml.
   Font stack matches dashboard-v2.scss (same brand type system).
   NOTE: BuildWebCompiler can miss edits made only to imported
   partials - touch this entry file when a partial-only change
   refuses to compile. (entry-dirty: 2026-08-04a) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap");
:root {
  --hp-green: #6ca437;
  --hp-green-deep: #548128;
  --hp-green-soft: #8cc158;
  --hp-navy: #677a92;
  --hp-navy-deep: #4d5d73;
  --hp-bg: #f5f6f4;
  --hp-bg-panel: #ffffff;
  --hp-bg-panel-2: #fafaf8;
  --hp-bg-tag: #eef0ec;
  --hp-border: #e5e7e1;
  --hp-border-strong: #d4d7cf;
  --hp-text: #1a2636;
  --hp-text-muted: #64707e;
  --hp-text-dim: #8a94a0;
  --hp-text-inverse: #ffffff;
  --hp-accent: var(--hp-green);
  --hp-accent-deep: var(--hp-green-deep);
  --hp-accent-soft: rgba(108, 164, 55, 0.12);
  --hp-accent-soft-2: rgba(108, 164, 55, 0.20);
  --hp-link: #4d7724;
  --hp-phase-1: #6ca437;
  --hp-phase-2: #d89b3f;
  --hp-phase-3: #2fb6a3;
  --hp-phase-4: #7b6fd1;
  --hp-phase-5: #5b8fd9;
  --hp-shadow-sm: 0 1px 2px rgba(26, 38, 54, 0.04), 0 1px 1px rgba(26, 38, 54, 0.03);
  --hp-shadow: 0 2px 4px rgba(26, 38, 54, 0.04), 0 4px 12px rgba(26, 38, 54, 0.06);
  --hp-shadow-lg: 0 8px 24px rgba(26, 38, 54, 0.08), 0 2px 6px rgba(26, 38, 54, 0.04);
  --hp-font-display: var(--tenant-font-display, "Instrument Serif", Georgia, serif);
  --hp-font-body: var(--tenant-font-body, "Montserrat", -apple-system, sans-serif);
  --hp-font-mono: "JetBrains Mono", "Consolas", monospace;
  --hp-ease: cubic-bezier(.22, 1, .36, 1);
  --hp-radius: 14px;
  --hp-radius-sm: 8px;
  --hp-nav-h: 76px;
  --hp-nav-h-condensed: 62px;
  --hp-nav-glass: rgba(255, 255, 255, 0.82);
  --hp-footer-bg: #1a2636;
  --hp-footer-text: #e7ecf2;
  --hp-footer-muted: #9aa7b5;
}

:root[data-theme=dark] {
  --hp-bg: #0f1722;
  --hp-bg-panel: #18222f;
  --hp-bg-panel-2: #1e2a39;
  --hp-bg-tag: #24303f;
  --hp-border: #263444;
  --hp-border-strong: #334357;
  --hp-text: #e7ecf2;
  --hp-text-muted: #9aa7b5;
  --hp-text-dim: #8b97a6;
  --hp-text-inverse: #0f1722;
  --hp-accent: #8cc158;
  --hp-accent-deep: #6ca437;
  --hp-accent-soft: rgba(140, 193, 88, 0.14);
  --hp-accent-soft-2: rgba(140, 193, 88, 0.24);
  --hp-link: #8cc158;
  --hp-phase-1: #8cc158;
  --hp-phase-2: #e6b370;
  --hp-phase-3: #5fcfbe;
  --hp-phase-4: #a99ce8;
  --hp-phase-5: #8cb1e3;
  --hp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
  --hp-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
  --hp-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.44);
  --hp-nav-glass: rgba(24, 34, 47, 0.82);
  --hp-footer-bg: #0b111a;
  --hp-footer-text: #e7ecf2;
  --hp-footer-muted: #9aa7b5;
}

#site-header,
#site-footer,
.dashboard-action-banner {
  display: none !important;
}

html {
  scroll-padding-top: 80px;
}

.hp-root {
  font-family: var(--hp-font-body);
  color: var(--hp-text);
  background: var(--hp-bg);
  line-height: 1.6;
  overflow-x: clip;
}
.hp-root *,
.hp-root *::before,
.hp-root *::after {
  box-sizing: border-box;
}
.hp-root img {
  max-width: 100%;
  height: auto;
}
.hp-root a {
  color: inherit;
}
.hp-root button {
  font-family: inherit;
}

.hp-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.hp-section-tint {
  background: var(--hp-bg-panel-2);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
}

.hp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 720px) {
  .hp-container {
    padding: 0 18px;
  }
}
.hp-eyebrow {
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-accent-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hp-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--hp-accent);
  flex: none;
}

.hp-title {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--hp-text);
  margin: 0 0 14px;
}
.hp-title em {
  font-style: italic;
  color: var(--hp-accent-deep);
}

.hp-lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--hp-text-muted);
  max-width: 56ch;
  margin: 0;
}

.hp-section-head {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease), background-color 0.25s var(--hp-ease), color 0.25s var(--hp-ease);
}
.hp-btn:hover {
  transform: translateY(-2px);
}
.hp-btn:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-btn-primary {
  background: var(--hp-accent);
  color: var(--hp-text-inverse, #ffffff);
  box-shadow: var(--hp-shadow);
}
.hp-btn-primary:hover {
  background: var(--hp-accent-deep);
  color: var(--hp-text-inverse, #ffffff);
  box-shadow: var(--hp-shadow-lg);
}

.hp-btn-ghost {
  background: transparent;
  color: var(--hp-text);
  border-color: var(--hp-border-strong);
}
.hp-btn-ghost:hover {
  border-color: var(--hp-accent);
  color: var(--hp-accent-deep);
}

.hp-on-photo .hp-btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hp-on-photo .hp-btn-ghost:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.hp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--hp-ease), transform 0.55s var(--hp-ease);
  transition-delay: var(--hp-delay, 0s);
}
.hp-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 720px) {
  .hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
html:not(.hp-js) .hp-reveal,
html.hp-no-observer .hp-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hp-root *,
  .hp-root *::before,
  .hp-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hp-reveal {
    opacity: 1;
    transform: none;
  }
}
html[data-motion=reduce] .hp-root *,
html[data-motion=reduce] .hp-root *::before,
html[data-motion=reduce] .hp-root *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html[data-motion=reduce] .hp-reveal {
  opacity: 1;
  transform: none;
}

.hp-bp-host {
  position: relative;
}
.hp-bp-host > .hp-container {
  position: relative;
  z-index: 1;
}

.hp-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  color: var(--hp-border-strong);
  opacity: var(--hp-bp-opacity, 0.5);
}
.hp-blueprint svg {
  position: absolute;
  top: -80px;
  height: calc(100% + 160px);
  width: 62%;
  min-width: 420px;
  display: block;
}

.hp-blueprint-left svg {
  left: 0;
}

.hp-blueprint-right svg {
  right: 0;
}

:root[data-theme=dark] .hp-blueprint {
  opacity: var(--hp-bp-opacity-dark, 0.34);
}

@media (max-width: 900px) {
  .hp-blueprint {
    opacity: var(--hp-bp-opacity, 0.3);
  }
  .hp-blueprint svg {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 640px) {
  .hp-blueprint {
    display: none;
  }
}
.hp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--hp-nav-h);
  display: flex;
  align-items: center;
  font-family: var(--hp-font-body);
  color: var(--hp-text);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--hp-ease), height 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease), color 0.3s var(--hp-ease);
}

.hp-nav-inner {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hp-nav-spacer {
  height: var(--hp-nav-h-condensed);
}

.hp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.hp-nav-logo img {
  display: block;
  height: 44px;
  width: auto;
  transition: filter 0.3s var(--hp-ease);
  border-radius: 0;
}
.hp-nav-logo:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-nav-wordmark {
  font-family: var(--hp-font-display);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hp-nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
  margin: 0 auto;
}

.hp-nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
  padding: 6px 0;
}
.hp-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--hp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--hp-ease);
}
.hp-nav-link:hover::after, .hp-nav-link:focus-visible::after {
  transform: scaleX(1);
}
.hp-nav-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.hp-nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hp-nav-chev {
  width: 11px;
  height: 11px;
  transition: transform 0.25s var(--hp-ease);
}

.hp-nav-item:hover .hp-nav-chev,
.hp-nav-item:focus-within .hp-nav-chev {
  transform: rotate(180deg);
}

.hp-nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  box-shadow: var(--hp-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--hp-ease), transform 0.2s var(--hp-ease), visibility 0s linear 0.2s;
  pointer-events: none;
}
.hp-nav-mega::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: var(--hp-bg-panel);
  border-left: 1px solid var(--hp-border);
  border-top: 1px solid var(--hp-border);
  transform: rotate(45deg);
}

.hp-nav-item:hover .hp-nav-mega,
.hp-nav-item:focus-within .hp-nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.hp-nav-mega-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-nav-mega .hp-nav-mega-card {
  position: relative;
  display: block;
  padding: 10px 14px 10px 16px;
  border-radius: var(--hp-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--hp-text);
  text-decoration: none;
  transition: background-color 0.18s var(--hp-ease), color 0.18s var(--hp-ease);
}
.hp-nav-mega .hp-nav-mega-card::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: var(--hp-accent);
  transform: scaleY(0);
  transition: transform 0.18s var(--hp-ease);
}
.hp-nav-mega .hp-nav-mega-card:hover, .hp-nav-mega .hp-nav-mega-card:focus-visible {
  background: var(--hp-accent-soft);
  color: var(--hp-accent-deep);
  outline: none;
}
.hp-nav-mega .hp-nav-mega-card:hover::before, .hp-nav-mega .hp-nav-mega-card:focus-visible::before {
  transform: scaleY(1);
}

.hp-nav-account {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.hp-nav-account-trigger {
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
}

.hp-nav-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hp-nav-account .hp-nav-mega {
  left: auto;
  right: 0;
  min-width: 280px;
}
.hp-nav-account .hp-nav-mega::before {
  left: auto;
  right: 22px;
}

.hp-nav-account.is-open .hp-nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.hp-account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 14px;
  border-bottom: 1px solid var(--hp-border);
  margin-bottom: 6px;
}

.hp-account-head-avatar {
  cursor: default;
  flex: none;
}

.hp-account-who {
  min-width: 0;
}

.hp-account-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--hp-text);
  letter-spacing: -0.01em;
}

.hp-account-email {
  font-size: 0.78rem;
  color: var(--hp-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-account-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--hp-accent-soft);
  color: var(--hp-accent-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hp-account-section + .hp-account-section {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--hp-border);
}

.hp-account-caption {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-dim);
  padding: 4px 12px 6px;
}

.hp-account-profile {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--hp-radius-sm);
  background: var(--hp-bg-panel-2);
  margin-bottom: 3px;
}

.hp-account-profile-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--hp-text);
}

.hp-account-profile-type {
  font-size: 0.72rem;
  color: var(--hp-text-dim);
}

.hp-account-profile-more {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--hp-text-dim);
  padding: 4px 12px;
}

.hp-account-invested {
  display: flex;
  flex-direction: column;
  padding: 2px 12px 10px;
}

.hp-account-invested-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-dim);
}

.hp-account-invested-value {
  font-family: var(--hp-font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--hp-text);
}

.hp-account-tier {
  padding: 0 12px 4px;
}

.hp-account-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hp-text-muted);
  margin-bottom: 5px;
}

.hp-account-tier-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--hp-bg-tag);
  overflow: hidden;
}

.hp-account-tier-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hp-accent), var(--hp-accent-deep));
  transition: width 0.6s var(--hp-ease);
}

.hp-account-tier-next {
  font-size: 0.68rem;
  color: var(--hp-text-dim);
  margin-top: 5px;
}

.hp-nav-account-menu .hp-nav-mega-card {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-nav-account-menu .hp-nav-mega-card i, .hp-nav-account-menu .hp-nav-mega-card svg, .hp-nav-account-menu .hp-nav-mega-card .icon {
  flex: none;
  width: 16px;
  color: var(--hp-text-muted);
}

.hp-nav-mega-card.is-logout {
  color: #d05a4c;
}
.hp-nav-mega-card.is-logout::before {
  background: #d05a4c;
}
.hp-nav-mega-card.is-logout:hover, .hp-nav-mega-card.is-logout:focus-visible {
  background: rgba(208, 90, 76, 0.12);
  color: #d05a4c;
}

.hp-nav-overlay-account {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hp-nav-overlay-account .hp-account-head {
  border-bottom-color: var(--hp-border);
  padding-left: 0;
  padding-right: 0;
}

.hp-nav-overlay-sublink.is-logout {
  color: #d05a4c;
}
.hp-nav-overlay-sublink.is-logout:hover, .hp-nav-overlay-sublink.is-logout:focus-visible {
  color: #d05a4c;
}

.hp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  margin-left: auto;
}

.hp-nav-cta {
  padding: 12px 22px;
  font-size: 0.88rem;
}

.hp-nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--hp-border-strong);
  background: transparent;
  transition: border-color 0.25s var(--hp-ease), background-color 0.25s var(--hp-ease);
}
.hp-nav-avatar:hover {
  border-color: var(--hp-accent);
  background: var(--hp-accent-soft);
}
.hp-nav-avatar:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-nav-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex: none;
}
.hp-nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--hp-ease), top 0.3s var(--hp-ease);
}
.hp-nav-burger span:first-child {
  top: 17px;
}
.hp-nav-burger span:last-child {
  top: 25px;
}
.hp-nav-burger[aria-expanded=true] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}
.hp-nav-burger[aria-expanded=true] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}
.hp-nav-burger:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-nav-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.hp-nav-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--hp-accent);
  transform: scaleX(var(--hp-scroll, 0));
  transform-origin: left;
}

html.hp-js .hp-nav.is-top {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  color: #ffffff;
}
html.hp-js .hp-nav.is-top .hp-nav-logo img {
  filter: brightness(0) invert(1);
}
html.hp-js .hp-nav.is-top .hp-btn-ghost.hp-nav-cta {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}
html.hp-js .hp-nav.is-top .hp-btn-ghost.hp-nav-cta:hover {
  color: #ffffff;
  border-color: #ffffff;
}
html.hp-js .hp-nav.is-top .hp-nav-avatar {
  border-color: rgba(255, 255, 255, 0.45);
}
html.hp-js .hp-nav.is-top .hp-nav-avatar:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}
html.hp-js .hp-nav.is-top .hp-nav-link:focus-visible,
html.hp-js .hp-nav.is-top .hp-nav-logo:focus-visible,
html.hp-js .hp-nav.is-top .hp-nav-burger:focus-visible {
  outline-color: #ffffff;
}

body:has(.hp-nav-overlay.is-open) .hp-nav.is-top .hp-nav-logo img {
  filter: none;
}

.hp-nav.is-scrolled {
  height: var(--hp-nav-h-condensed);
  background: var(--hp-nav-glass);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow-sm);
  color: var(--hp-text);
}
.hp-nav.is-scrolled .hp-nav-logo img {
  filter: none;
}

@media (max-width: 1024px) {
  .hp-nav-links {
    display: none;
  }
  .hp-nav-burger {
    display: block;
  }
  .hp-nav-ctas {
    margin-left: auto;
  }
}
@media (max-width: 720px) {
  .hp-nav .hp-nav-ctas {
    display: none;
  }
  .hp-nav .hp-nav-logo img {
    height: 36px;
  }
  .hp-nav .hp-nav-burger {
    margin-left: auto;
  }
}
.hp-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1190;
  background: var(--hp-bg);
  color: var(--hp-text);
  font-family: var(--hp-font-body);
  display: flex;
  flex-direction: column;
  padding: calc(var(--hp-nav-h) + 20px) 28px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.hp-nav-overlay[hidden] {
  display: none;
}

.hp-nav-overlay-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hp-text);
  cursor: pointer;
}
.hp-nav-overlay-close span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 21px;
  height: 2px;
  background: currentColor;
}
.hp-nav-overlay-close span:first-child {
  transform: rotate(45deg);
}
.hp-nav-overlay-close span:last-child {
  transform: rotate(-45deg);
}
.hp-nav-overlay-close:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4vh;
}

.hp-nav-overlay-link {
  font-family: var(--hp-font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.2;
  color: var(--hp-text);
  text-decoration: none;
  align-self: flex-start;
}
.hp-nav-overlay-link:hover {
  color: var(--hp-accent-deep);
}
.hp-nav-overlay-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 4px;
}

.hp-nav-overlay-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-nav-overlay-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hp-root .hp-nav-overlay-toggle {
  font-family: var(--hp-font-display);
}
.hp-nav-overlay-toggle .hp-nav-chev {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--hp-ease);
}
.hp-nav-overlay-toggle[aria-expanded=true] .hp-nav-chev {
  transform: rotate(180deg);
}

.hp-nav-overlay-sub {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 4px 14px;
}

.hp-nav-overlay-group.is-open .hp-nav-overlay-sub {
  display: flex;
}

.hp-nav-overlay-sublink {
  font-family: var(--hp-font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hp-text-muted);
  text-decoration: none;
}
.hp-nav-overlay-sublink:hover, .hp-nav-overlay-sublink:focus-visible {
  color: var(--hp-accent-deep);
}

.hp-nav-overlay-ctas {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hp-nav-overlay-link,
.hp-nav-overlay-ctas {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--hp-ease), transform 0.5s var(--hp-ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.hp-nav-overlay.is-open .hp-nav-overlay-link,
.hp-nav-overlay.is-open .hp-nav-overlay-ctas {
  opacity: 1;
  transform: none;
}

html:not(.hp-js) .hp-nav {
  position: absolute;
  height: auto;
  min-height: var(--hp-nav-h);
  padding: 8px 0;
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
  color: var(--hp-text);
}
html:not(.hp-js) .hp-nav-logo img {
  filter: none;
}
html:not(.hp-js) .hp-nav-burger,
html:not(.hp-js) .hp-nav-overlay {
  display: none !important;
}
html:not(.hp-js) .hp-nav-progress {
  display: none;
}
@media (max-width: 1024px) {
  html:not(.hp-js) .hp-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}
@media (max-width: 720px) {
  html:not(.hp-js) .hp-nav-links {
    display: none;
  }
}

.hp-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .hp-hero {
    min-height: 95vh;
  }
}
.hp-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.hp-hero-media .hp-hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: hp-hero-kenburns 20s ease-out forwards;
  will-change: transform;
}

@keyframes hp-hero-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.is-scrolling-driven .hp-hero-media .hp-hero-photo {
  animation: none;
  will-change: transform;
}

.hp-hero-media .hp-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 0.6s var(--hp-ease);
  will-change: transform, opacity;
  pointer-events: none;
}

.hp-hero-media.is-video-live .hp-hero-video {
  opacity: 1;
}

.hp-hero-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(10, 16, 26, 0.78) 0%, rgba(10, 16, 26, 0.62) 42%, rgba(10, 16, 26, 0.34) 75%, rgba(10, 16, 26, 0.28) 100%), linear-gradient(180deg, rgba(10, 16, 26, 0.25) 0%, rgba(10, 16, 26, 0) 30%, rgba(10, 16, 26, 0) 60%, rgba(10, 16, 26, 0.45) 100%);
}
.hp-hero-scrim::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjAiIGhlaWdodD0iMTYwIj48ZmlsdGVyIGlkPSJnIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC44NSIgbnVtT2N0YXZlcz0iMiIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjxmZUNvbG9yTWF0cml4IHR5cGU9InNhdHVyYXRlIiB2YWx1ZXM9IjAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTYwIiBoZWlnaHQ9IjE2MCIgZmlsdGVyPSJ1cmwoI2cpIi8+PC9zdmc+");
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}
.hp-hero-scrim::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f1722;
  opacity: var(--hp-hero-scrim-boost, 0);
  pointer-events: none;
}

.hp-hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: clamp(96px, 13vh, 150px);
  padding-bottom: clamp(40px, 6vh, 72px);
}

.hp-hero-content {
  max-width: 660px;
}

.hp-hero .hp-eyebrow {
  color: var(--hp-green-soft);
}
.hp-hero .hp-eyebrow::before {
  background: var(--hp-green-soft);
}

.hp-hero .hp-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.06;
  color: #ffffff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hp-hero .hp-title em {
  color: var(--hp-green-soft);
}

.hp-hero .hp-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
}

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

.hp-hero-rotator {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  text-align: left;
  transition: width 0.45s var(--hp-ease);
}

.hp-hero-rotator-word {
  display: inline-block;
  transition: opacity 0.22s ease, transform 0.22s var(--hp-ease);
}
.hp-hero-rotator-word.is-out {
  opacity: 0;
  transform: translateY(-0.3em);
}
.hp-hero-rotator-word.is-pre {
  opacity: 0;
  transform: translateY(0.3em);
  transition: none;
}

.hp-hero-rotator-measure {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  html.hp-js .hp-hero .hp-hero-sweep-seg {
    color: transparent;
    background-image: linear-gradient(115deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 62%), linear-gradient(#ffffff, #ffffff);
    background-size: 60% 100%, 100% 100%;
    background-repeat: no-repeat;
    background-position: -120% 0, 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    animation: hp-hero-sweep 1.1s ease-in-out 1.2s 1 both;
  }
  html.hp-js .hp-hero .hp-hero-sweep-seg:nth-of-type(2) {
    animation-delay: 1.45s;
  }
}
@keyframes hp-hero-sweep {
  from {
    background-position: -120% 0, 0 0;
  }
  to {
    background-position: 220% 0, 0 0;
  }
}
@keyframes hp-hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hp-hero-in {
  animation: hp-hero-enter 0.7s var(--hp-ease) both;
}

.hp-hero-in-1 {
  animation-delay: 0.05s;
}

.hp-hero-in-2 {
  animation-delay: 0.16s;
}

.hp-hero-in-3 {
  animation-delay: 0.3s;
}

.hp-hero-in-4 {
  animation-delay: 0.44s;
}

.hp-hero-form {
  margin-top: 34px;
  max-width: 540px;
  --hp-hero-field-radius: 30px;
  --hp-hero-cta-hover: #5f9330;
}
.hp-hero-form .form-container {
  margin: 0;
  padding: 0;
}
.hp-hero-form form {
  margin: 0;
}
.hp-hero-form .row {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0 0 0 8px;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--hp-hero-field-radius);
  box-shadow: var(--hp-shadow-lg);
}
.hp-hero-form .row::before, .hp-hero-form .row::after {
  display: none;
}
.hp-hero-form .row:focus-within {
  box-shadow: var(--hp-shadow-lg), 0 0 0 3px rgba(255, 255, 255, 0.55);
}
.hp-hero-form .form-group {
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: flex;
}
.hp-hero-form .form-group:first-child {
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
.hp-hero-form .form-group:last-child {
  flex: 0 0 auto;
  max-width: none;
}
.hp-hero-form .form-control {
  width: 100%;
  height: auto;
  padding: 15px 22px;
  background: transparent !important;
  border: 0 !important;
  min-height: 0 !important;
  border-radius: var(--hp-hero-field-radius);
  box-shadow: none;
  font-family: var(--hp-font-body);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--hp-text);
}
.hp-hero-form .form-control::placeholder {
  color: var(--hp-text-dim);
  opacity: 1;
}
.hp-hero-form .form-control:focus, .hp-hero-form .form-control:focus-visible {
  outline: none;
  box-shadow: none;
  background: transparent;
}
.hp-hero-form button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 28px;
  background: var(--hp-accent) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 0 var(--hp-hero-field-radius) var(--hp-hero-field-radius) 0 !important;
  box-shadow: none !important;
  font-family: var(--hp-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s var(--hp-ease), transform 0.25s var(--hp-ease);
}
.hp-hero-form button[type=submit]:hover {
  background: var(--hp-hero-cta-hover) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}
.hp-hero-form button[type=submit]:active {
  background: var(--hp-hero-cta-hover) !important;
  filter: brightness(0.93);
  transform: none !important;
  box-shadow: none !important;
}
.hp-hero-form button[type=submit]:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: -4px !important;
}
.hp-hero-form button[type=submit]:focus:not(:focus-visible) {
  outline: none;
}
.hp-hero-form .field-validation-error {
  position: absolute;
  top: calc(100% + 8px);
  left: 22px;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(146, 34, 24, 0.92);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.4;
}

.hp-hero-alt {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.hp-hero-alt a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--hp-ease);
}
.hp-hero-alt a:hover {
  color: var(--hp-green-soft);
}
.hp-hero-alt a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 2px;
}

.hp-hero-scroll-cue {
  align-self: center;
  width: 44px;
  height: 44px;
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(10, 16, 26, 0.35);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.25s var(--hp-ease), background-color 0.25s var(--hp-ease), transform 0.25s var(--hp-ease);
  animation: hp-hero-cue-pulse 3.2s var(--hp-ease) 2s infinite;
}
.hp-hero-scroll-cue svg {
  display: block;
}
.hp-hero-scroll-cue:hover {
  border-color: #ffffff;
  background: rgba(10, 16, 26, 0.55);
  transform: translateY(2px);
}
.hp-hero-scroll-cue:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@keyframes hp-hero-cue-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  }
  55% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@media (max-width: 1024px) {
  .hp-hero-content {
    max-width: 580px;
  }
}
@media (max-width: 720px) {
  .hp-hero {
    min-height: 0;
  }
  .hp-hero-inner {
    padding-top: 108px;
    padding-bottom: 44px;
  }
  .hp-hero-scrim {
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.72) 0%, rgba(10, 16, 26, 0.62) 55%, rgba(10, 16, 26, 0.72) 100%);
  }
  .hp-hero .hp-lead {
    font-size: 1rem;
  }
  .hp-hero-form {
    margin-top: 26px;
    --hp-hero-field-radius: 24px;
  }
  .hp-hero-form .row {
    min-height: 54px;
  }
  .hp-hero-form .form-control {
    padding: 13px 18px;
  }
  .hp-hero-form button[type=submit] {
    padding: 0 18px;
    font-size: 0.76rem;
  }
  .hp-hero-scroll-cue {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
}
.hp-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hp-stat-value {
  font-family: var(--hp-font-mono);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--hp-text);
}

.hp-stat-label {
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}

.hp-stat-strip {
  width: 100%;
  background: rgba(11, 17, 27, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hp-stat-strip .hp-stat-value {
  color: #ffffff;
}
.hp-stat-strip .hp-stat-label {
  color: rgba(255, 255, 255, 0.62);
}

.hp-stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.hp-stat-strip-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 720px) {
  .hp-stat-strip {
    background: rgba(11, 17, 27, 0.96);
  }
  .hp-stat-strip-grid,
  .hp-stat-strip-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hp-stat-strip-grid:not(.hp-stat-strip-grid-4) .hp-stat:last-child {
    grid-column: 1/-1;
  }
  .hp-stat-strip .hp-stat-value {
    font-size: 1.5rem;
  }
}
.hp-ticker {
  background: var(--hp-bg-panel);
  border-bottom: 1px solid var(--hp-border);
}

.hp-ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 44px;
}

.hp-ticker-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hp-font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-accent-deep);
}
.hp-ticker-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hp-accent);
}

.hp-ticker-list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.hp-ticker-item {
  display: inline;
  font-family: var(--hp-font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hp-text-muted);
}
.hp-ticker-item + .hp-ticker-item::before {
  content: "·";
  margin: 0 10px;
  color: var(--hp-text-dim);
}

.hp-ticker .hp-ticker-link {
  color: inherit;
  text-decoration: underline !important;
  text-decoration-color: var(--hp-text-dim) !important;
  text-underline-offset: 2px;
}

.hp-ticker .hp-ticker-link:hover,
.hp-ticker .hp-ticker-link:focus-visible {
  color: var(--hp-accent-deep);
  text-decoration-color: currentColor !important;
}

.hp-ticker-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36px, #000 calc(100% - 36px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 36px, #000 calc(100% - 36px), transparent);
}

.hp-ticker.is-tape .hp-ticker-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: hp-tape-scroll var(--hp-tape-duration, 36s) linear infinite;
}

.hp-ticker.is-tape:hover .hp-ticker-list,
.hp-ticker.is-tape:focus-within .hp-ticker-list {
  animation-play-state: paused;
}

.hp-ticker.is-tape .hp-ticker-item {
  display: block;
  position: relative;
  white-space: nowrap;
  padding-right: 46px;
}
.hp-ticker.is-tape .hp-ticker-item::before {
  content: none;
}
.hp-ticker.is-tape .hp-ticker-item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--hp-accent);
  opacity: 0.55;
}

@keyframes hp-tape-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 720px) {
  .hp-ticker-inner {
    gap: 12px;
  }
  .hp-ticker-badge {
    font-size: 0;
    gap: 0;
    letter-spacing: 0;
  }
  .hp-ticker-item {
    font-size: 0.68rem;
  }
}
.hp-how-steps {
  position: relative;
}

.hp-how-connector {
  position: absolute;
  top: 26px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  display: block;
  pointer-events: none;
}
.hp-how-connector.hp-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.hp-how-connector path {
  fill: none;
  stroke: var(--hp-accent);
  opacity: 0.45;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s var(--hp-ease) 0.3s;
}
.hp-how-connector.is-in path {
  stroke-dashoffset: 0;
}

html:not(.hp-js) .hp-how-connector path,
html.hp-no-observer .hp-how-connector path {
  stroke-dashoffset: 0;
}

.hp-how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hp-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hp-bg);
  border: 1px solid var(--hp-border-strong);
  font-family: var(--hp-font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hp-accent-deep);
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

.hp-how-card {
  display: block;
  width: 100%;
  flex: 1;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-sm);
  padding: 24px 22px 26px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease);
}
.hp-how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-border-strong);
}
.hp-how-card:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-how-step-title {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--hp-text);
  margin: 0 0 8px;
}

.hp-how-step-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--hp-text-muted);
}

@media (hover: hover) and (pointer: fine) {
  html.hp-js .hp-how-step {
    position: relative;
  }
  html.hp-js .hp-how-step::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--hp-radius);
    background: radial-gradient(240px circle at var(--hp-mx, 50%) var(--hp-my, 50%), var(--hp-accent-soft) 0%, rgba(108, 164, 55, 0) 70%);
    opacity: 0;
    transition: opacity 0.35s var(--hp-ease);
    pointer-events: none;
  }
  html.hp-js .hp-how-step:hover::after {
    opacity: 1;
  }
}
@media (max-width: 1080px) and (min-width: 721px) {
  .hp-how-list {
    gap: 16px;
  }
  .hp-how-card {
    padding: 20px 16px 22px;
  }
  .hp-how-step-title {
    font-size: 1.15rem;
  }
}
@media (max-width: 720px) {
  .hp-how-connector {
    display: none;
  }
  .hp-how-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hp-how-list::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--hp-border-strong);
  }
  .hp-how-step {
    display: block;
    position: relative;
    padding-left: 70px;
  }
  .hp-how-num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
  .hp-how-card {
    text-align: left;
  }
}
.hp-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hp-news-controls {
  display: flex;
  gap: 10px;
  flex: none;
  padding-bottom: 6px;
}

.hp-news-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hp-border-strong);
  background: var(--hp-bg-panel);
  color: var(--hp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--hp-ease), color 0.25s var(--hp-ease), transform 0.25s var(--hp-ease);
}
.hp-news-btn:hover:not(:disabled) {
  border-color: var(--hp-accent);
  color: var(--hp-accent-deep);
  transform: translateY(-2px);
}
.hp-news-btn:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-news-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.hp-news-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--hp-border-strong) transparent;
}
.hp-news-track::-webkit-scrollbar {
  height: 6px;
}
.hp-news-track::-webkit-scrollbar-track {
  background: transparent;
}
.hp-news-track::-webkit-scrollbar-thumb {
  background: var(--hp-border-strong);
  border-radius: 999px;
}
.hp-news-track:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .hp-news-track {
    cursor: grab;
  }
  .hp-news-track.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
  }
}

.hp-news-photo-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border: 0;
}
.hp-news-photo-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: -3px;
}

.hp-news-card {
  flex: none;
  width: clamp(255px, 30vw, 335px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-sm);
}
.hp-news-card .hp-why-photo-frame img {
  height: 100%;
}

.hp-news-mark {
  margin: 0;
  min-height: 42px;
  display: flex;
  align-items: flex-end;
  color: var(--hp-text-muted);
  border-bottom: 1px solid var(--hp-border);
  padding-bottom: 12px;
}

.hp-news-mark .hp-news-logo-link {
  display: block;
  line-height: 0;
  border: 0;
  text-decoration: none;
}
.hp-news-mark .hp-news-logo {
  display: block;
  border-radius: 0;
  height: var(--hp-logo-h, 20px);
  width: auto;
  max-width: 100%;
  filter: grayscale(1) opacity(0.72);
}
.hp-news-mark .hp-news-logo-invert {
  filter: invert(1) grayscale(1) opacity(0.72);
}

:root[data-theme=dark] .hp-news-logo {
  filter: brightness(0) invert(1) opacity(0.8);
}

.hp-news-mark-serif {
  font-family: var(--hp-font-display);
  font-size: 1.22rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hp-news-mark-mono {
  font-family: var(--hp-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-news-credit {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--hp-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8, 12, 18, 0.66);
}

.hp-news-quote {
  margin: 0;
  flex: 1 1 auto;
}
.hp-news-quote p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--hp-text);
}

.hp-news-link {
  align-self: flex-start;
  font-family: var(--hp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hp-accent-deep);
  border-bottom: 1px solid var(--hp-accent-soft-2);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--hp-accent), var(--hp-accent));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: color 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease), background-size 0.35s var(--hp-ease);
}
.hp-news-link::after {
  content: " →";
}
.hp-news-link:hover {
  color: var(--hp-accent);
  border-color: transparent;
  background-size: 100% 1px;
}
.hp-news-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .hp-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hp-news-card {
    width: min(78vw, 300px);
  }
}
.hp-cycle {
  --hp-phase-1-ink: var(--hp-green-deep);
  --hp-phase-2-ink: #96630f;
  --hp-phase-3-ink: #157d6f;
  --hp-phase-4-ink: #5d4fb0;
  --hp-phase-5-ink: #3b6cb5;
  --hp-phase-1-soft: rgba(108, 164, 55, 0.14);
  --hp-phase-2-soft: rgba(216, 155, 63, 0.16);
  --hp-phase-3-soft: rgba(47, 182, 163, 0.14);
  --hp-phase-4-soft: rgba(123, 111, 209, 0.14);
  --hp-phase-5-soft: rgba(91, 143, 217, 0.14);
}

:root[data-theme=dark] .hp-cycle {
  --hp-phase-1-ink: var(--hp-phase-1);
  --hp-phase-2-ink: var(--hp-phase-2);
  --hp-phase-3-ink: var(--hp-phase-3);
  --hp-phase-4-ink: var(--hp-phase-4);
  --hp-phase-5-ink: var(--hp-phase-5);
  --hp-phase-1-soft: rgba(140, 193, 88, 0.16);
  --hp-phase-2-soft: rgba(230, 179, 112, 0.16);
  --hp-phase-3-soft: rgba(95, 207, 190, 0.16);
  --hp-phase-4-soft: rgba(169, 156, 232, 0.16);
  --hp-phase-5-soft: rgba(140, 177, 227, 0.16);
}

.hp-cycle-grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hp-cycle-grid > * {
  min-width: 0;
}

.hp-cycle-figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 460px;
}

.hp-cycle-ring {
  display: block;
  width: 100%;
  height: auto;
}

.hp-cycle-arc {
  fill: none;
  stroke-width: 26;
  stroke-linecap: round;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.35s var(--hp-ease), stroke-width 0.35s var(--hp-ease);
}
.hp-cycle-arc.is-active {
  opacity: 1;
  stroke-width: 30;
}

.hp-cycle-arc-1 {
  stroke: var(--hp-phase-1);
}

.hp-cycle-arc-2 {
  stroke: var(--hp-phase-2);
}

.hp-cycle-arc-3 {
  stroke: var(--hp-phase-3);
}

.hp-cycle-arc-4 {
  stroke: var(--hp-phase-4);
}

.hp-cycle-arc-5 {
  stroke: var(--hp-phase-5);
}

.hp-cycle-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hp-cycle-center-item {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 58%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s var(--hp-ease), transform 0.3s var(--hp-ease), visibility 0s linear 0.3s;
}
.hp-cycle-center-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.35s var(--hp-ease) 0.08s, transform 0.35s var(--hp-ease) 0.08s, visibility 0s;
}

.hp-cycle-center-name {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--hp-text);
}

.hp-cycle-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}

.hp-cycle-chip-1 {
  background: var(--hp-phase-1-soft);
  color: var(--hp-phase-1-ink);
}

.hp-cycle-chip-2 {
  background: var(--hp-phase-2-soft);
  color: var(--hp-phase-2-ink);
}

.hp-cycle-chip-3 {
  background: var(--hp-phase-3-soft);
  color: var(--hp-phase-3-ink);
}

.hp-cycle-chip-4 {
  background: var(--hp-phase-4-soft);
  color: var(--hp-phase-4-ink);
}

.hp-cycle-chip-5 {
  background: var(--hp-phase-5-soft);
  color: var(--hp-phase-5-ink);
}

.hp-cycle-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.hp-cycle-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 12px 11px;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-sm);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease);
}
.hp-cycle-tab:hover {
  border-color: var(--hp-border-strong);
}
.hp-cycle-tab:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}

.hp-cycle-tab-num {
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--hp-text-dim);
  transition: color 0.25s var(--hp-ease);
}

.hp-cycle-tab-name {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--hp-text);
}

.hp-cycle-tab-1.is-active {
  background: var(--hp-phase-1-soft);
  border-color: var(--hp-phase-1);
}
.hp-cycle-tab-1.is-active .hp-cycle-tab-num {
  color: var(--hp-phase-1-ink);
}

.hp-cycle-tab-2.is-active {
  background: var(--hp-phase-2-soft);
  border-color: var(--hp-phase-2);
}
.hp-cycle-tab-2.is-active .hp-cycle-tab-num {
  color: var(--hp-phase-2-ink);
}

.hp-cycle-tab-3.is-active {
  background: var(--hp-phase-3-soft);
  border-color: var(--hp-phase-3);
}
.hp-cycle-tab-3.is-active .hp-cycle-tab-num {
  color: var(--hp-phase-3-ink);
}

.hp-cycle-tab-4.is-active {
  background: var(--hp-phase-4-soft);
  border-color: var(--hp-phase-4);
}
.hp-cycle-tab-4.is-active .hp-cycle-tab-num {
  color: var(--hp-phase-4-ink);
}

.hp-cycle-tab-5.is-active {
  background: var(--hp-phase-5-soft);
  border-color: var(--hp-phase-5);
}
.hp-cycle-tab-5.is-active .hp-cycle-tab-num {
  color: var(--hp-phase-5-ink);
}

.hp-cycle-panels {
  display: grid;
  min-height: 220px;
}

.hp-cycle-detail {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.3s var(--hp-ease), transform 0.3s var(--hp-ease), visibility 0s linear 0.3s;
}
.hp-cycle-detail.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.35s var(--hp-ease) 0.08s, transform 0.35s var(--hp-ease) 0.08s, visibility 0s;
}
.hp-cycle-detail:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.hp-cycle-detail-eyebrow {
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hp-cycle-detail-1 .hp-cycle-detail-eyebrow {
  color: var(--hp-phase-1-ink);
}

.hp-cycle-detail-2 .hp-cycle-detail-eyebrow {
  color: var(--hp-phase-2-ink);
}

.hp-cycle-detail-3 .hp-cycle-detail-eyebrow {
  color: var(--hp-phase-3-ink);
}

.hp-cycle-detail-4 .hp-cycle-detail-eyebrow {
  color: var(--hp-phase-4-ink);
}

.hp-cycle-detail-5 .hp-cycle-detail-eyebrow {
  color: var(--hp-phase-5-ink);
}

.hp-cycle-detail-title {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--hp-text);
  margin: 0 0 12px;
}

.hp-cycle-detail-text {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--hp-text-muted);
  max-width: 46ch;
}

.hp-cycle-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hp-accent-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--hp-ease);
}
.hp-cycle-link:hover {
  border-bottom-color: var(--hp-accent-deep);
}
.hp-cycle-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}

.hp-cycle-progress {
  margin-top: 22px;
  width: 120px;
  height: 2px;
  border-radius: 2px;
  background: var(--hp-border);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--hp-ease);
}
.hp-cycle-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--hp-accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.hp-cycle.is-auto .hp-cycle-progress {
  opacity: 1;
}
.hp-cycle.is-auto .hp-cycle-progress span.is-run {
  animation: hp-cycle-progress 5s linear;
}

@keyframes hp-cycle-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: no-preference) and (min-width: 1025px) {
  html.hp-js:not([data-motion=reduce]) .hp-cycle-pinwrap {
    position: relative;
    min-height: 200vh;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-pinwrap > .hp-cycle {
    position: sticky;
    top: 0;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle.is-pin-scrub .hp-cycle-arc {
    transition: opacity 0.35s var(--hp-ease), stroke-width 0.35s var(--hp-ease);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring .hp-cycle-arc {
    transition: opacity 0.35s var(--hp-ease), stroke-width 0.35s var(--hp-ease), stroke-dasharray 0.9s var(--hp-ease) var(--hp-arc-delay, 0s);
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring .hp-cycle-arc-2 {
    --hp-arc-delay: 0.12s;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring .hp-cycle-arc-3 {
    --hp-arc-delay: 0.24s;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring .hp-cycle-arc-4 {
    --hp-arc-delay: 0.36s;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring .hp-cycle-arc-5 {
    --hp-arc-delay: 0.48s;
  }
  html.hp-js:not([data-motion=reduce]) .hp-cycle-ring:not(.is-drawn) .hp-cycle-arc {
    stroke-dasharray: 0.5 1067.64;
  }
}
@media (max-width: 1100px) and (min-width: 721px) {
  .hp-cycle-grid {
    grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
  }
  .hp-cycle-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .hp-cycle-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hp-cycle-figure {
    max-width: 320px;
    margin: 0 auto;
  }
  .hp-cycle-tabs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--hp-border-strong) transparent;
  }
  .hp-cycle-tabs::-webkit-scrollbar {
    height: 4px;
  }
  .hp-cycle-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  .hp-cycle-tabs::-webkit-scrollbar-thumb {
    background: var(--hp-border-strong);
    border-radius: 999px;
  }
  .hp-cycle-tab {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 10px 14px;
  }
  .hp-cycle-panels {
    min-height: 250px;
  }
}
.hp-vi {
  --hp-vi-glow: 2.5px;
}
.hp-vi .hp-vi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 0;
  align-items: start;
}
.hp-vi .hp-vi-col {
  display: contents;
}
.hp-vi .hp-section-head {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.hp-vi .hp-vi-lead {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.hp-vi .hp-vi-stack {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
}
.hp-vi .hp-vi-figure {
  grid-column: 2;
  grid-row: 1/-1;
  align-self: start;
  position: sticky;
  top: calc(var(--hp-nav-h) + 28px);
}
.hp-vi .hp-vi-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-vi .hp-vi-item {
  border: 1px solid var(--hp-border);
  border-left: 4px solid var(--hp-tier, var(--hp-border-strong));
  border-radius: var(--hp-radius-sm);
  background: var(--hp-bg-panel);
  box-shadow: var(--hp-shadow-sm);
  overflow: hidden;
  transition: transform 0.5s var(--hp-ease), opacity 0.5s var(--hp-ease), border-color 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease);
}
.hp-vi .hp-vi-item:hover {
  border-color: var(--hp-border-strong);
}
.hp-vi .hp-vi-item.is-open, .hp-vi .hp-vi-item.is-focus {
  border-color: var(--hp-tier, var(--hp-accent));
  box-shadow: var(--hp-shadow);
}
@media (hover: hover) and (pointer: fine) {
  html.hp-js .hp-vi .hp-vi-item:hover {
    transform: translateY(-2px);
  }
}
.hp-vi.is-narrating .hp-vi-item:not(.is-focus) {
  border-left-color: var(--hp-border-strong);
}
.hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-num,
.hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-chev {
  opacity: 0.4;
}
.hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-name {
  opacity: 0.65;
}
.hp-vi .hp-vi-item-h {
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.hp-vi .hp-vi-tier {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--hp-text-muted);
  transition: color 0.25s var(--hp-ease);
}
.hp-vi .hp-vi-tier:hover {
  color: var(--hp-text);
}
.hp-vi .hp-vi-tier[aria-expanded=true] {
  color: var(--hp-text);
}
.hp-vi .hp-vi-tier:focus:not(:focus-visible) {
  outline: none;
}
.hp-vi .hp-vi-tier:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: -3px;
  border-radius: var(--hp-radius-sm);
}
.hp-vi .hp-vi-tier-chev {
  flex: 0 0 auto;
  margin-left: auto;
  display: block;
  width: 16px;
  height: 16px;
  color: var(--hp-tier, var(--hp-text-dim));
  transition: transform 0.25s var(--hp-ease), opacity 0.35s var(--hp-ease);
}
.hp-vi .hp-vi-tier-chev svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hp-vi .hp-vi-tier[aria-expanded=true] .hp-vi-tier-chev {
  transform: rotate(180deg);
}
.hp-vi .hp-vi-tier-1 {
  --hp-tier: var(--hp-phase-1);
}
.hp-vi .hp-vi-tier-2 {
  --hp-tier: var(--hp-phase-2);
}
.hp-vi .hp-vi-tier-3 {
  --hp-tier: var(--hp-phase-3);
}
.hp-vi .hp-vi-tier-4 {
  --hp-tier: var(--hp-phase-4);
}
.hp-vi .hp-vi-tier-5 {
  --hp-tier: var(--hp-phase-5);
}
.hp-vi .hp-vi-tier-num {
  flex: 0 0 auto;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--hp-tier, var(--hp-text-dim));
  transition: opacity 0.35s var(--hp-ease);
}
.hp-vi .hp-vi-tier-name {
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: opacity 0.35s var(--hp-ease);
}
.hp-vi.hp-section .hp-vi-stack .hp-vi-item {
  opacity: 0;
  transform: translateY(14px);
}
.hp-vi .hp-vi-stack.is-in .hp-vi-item {
  opacity: 1;
  transform: none;
  transition-delay: var(--hp-delay, 0s);
}
.hp-vi .hp-vi-figure {
  margin: 0;
  display: flex;
  justify-content: center;
}
.hp-vi .hp-vi-building {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  color: var(--hp-border-strong);
  overflow: visible;
}
.hp-vi .hp-vi-b-shell {
  color: var(--hp-text-dim);
  opacity: 0.4;
  stroke-width: 1.3;
}
.hp-vi .hp-vi-b-camera {
  transform-box: view-box;
  transform-origin: 50% 50%;
  transition: transform 0.4s var(--hp-ease);
}
.hp-vi .hp-vi-building[data-focus="1"] .hp-vi-b-camera {
  transform: translateY(-9px) scale(1.03);
}
.hp-vi .hp-vi-building[data-focus="2"] .hp-vi-b-camera {
  transform: translateY(-4px) scale(1.03);
}
.hp-vi .hp-vi-building[data-focus="3"] .hp-vi-b-camera {
  transform: scale(1.03);
}
.hp-vi .hp-vi-building[data-focus="4"] .hp-vi-b-camera {
  transform: translateY(4px) scale(1.03);
}
.hp-vi .hp-vi-building[data-focus="5"] .hp-vi-b-camera {
  transform: translateY(8px) scale(1.03);
}
.hp-vi .hp-vi-b-part {
  opacity: 0;
  transition: opacity 0.5s var(--hp-ease), color 0.45s var(--hp-ease), filter 0.4s var(--hp-ease), transform 0.4s var(--hp-ease);
}
.hp-vi .hp-vi-b-part path:not([stroke-dasharray]) {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.7s var(--hp-ease);
}
.hp-vi .hp-vi-b-part.is-built {
  opacity: 0.72;
  color: var(--hp-text-dim);
}
.hp-vi .hp-vi-b-part.is-built path:not([stroke-dasharray]) {
  stroke-dashoffset: 0;
}
.hp-vi .hp-vi-b-part.is-built.is-active {
  opacity: 1;
  stroke-width: 1.9;
  transform: translateY(-7px);
  filter: drop-shadow(0 0 var(--hp-vi-glow, 2.5px) currentColor);
}
.hp-vi .hp-vi-b-part[data-tier="1"].is-active {
  color: var(--hp-phase-1);
}
.hp-vi .hp-vi-b-part[data-tier="2"].is-active {
  color: var(--hp-phase-2);
}
.hp-vi .hp-vi-b-part[data-tier="3"].is-active {
  color: var(--hp-phase-3);
}
.hp-vi .hp-vi-b-part[data-tier="4"].is-active {
  color: var(--hp-phase-4);
}
.hp-vi .hp-vi-b-part[data-tier="5"].is-active {
  color: var(--hp-phase-5);
}
.hp-vi .hp-vi-b-hits rect {
  fill: none;
  stroke: none;
  pointer-events: all;
  cursor: pointer;
}
.hp-vi .hp-vi-detail {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  transition: grid-template-rows 0.25s var(--hp-ease), visibility 0s linear 0.25s;
}
.hp-vi .hp-vi-detail.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.25s var(--hp-ease), visibility 0s linear 0s;
}
.hp-vi .hp-vi-detail-inner {
  min-height: 0;
}
.hp-vi .hp-vi-detail-text {
  margin: 0;
  padding: 0 18px 16px 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--hp-text-muted);
}
.hp-vi .hp-vi-spotlight {
  margin: 0 18px 18px 18px;
  padding: 2px 0 2px 16px;
  border-left: 3px solid var(--hp-tier, var(--hp-border-strong));
}
.hp-vi .hp-vi-spotlight-marklink {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  border-radius: var(--hp-radius-sm);
  transition: opacity 0.2s var(--hp-ease);
}
.hp-vi .hp-vi-spotlight-marklink:hover {
  opacity: 0.72;
}
.hp-vi .hp-vi-spotlight .hp-vi-spotlight-mark {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
  margin: 0 0 12px;
}
.hp-vi .hp-vi-spotlight-name {
  margin: 0 0 8px;
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-text);
}
.hp-vi .hp-vi-spotlight-role {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--hp-text-muted);
}
.hp-vi .hp-vi-spotlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-vi .hp-vi-spotlight-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--hp-text-muted);
}
.hp-vi .hp-vi-spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hp-tier, var(--hp-border-strong));
}
.hp-vi .hp-vi-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hp-accent-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--hp-ease);
}
.hp-vi .hp-vi-link:hover {
  border-bottom-color: var(--hp-accent-deep);
}
.hp-vi .hp-vi-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-vi .hp-vi-link-ext {
  font-size: 0.95em;
  line-height: 1;
  transform: translateY(-1px);
}

:root[data-theme=dark] .hp-vi {
  --hp-vi-glow: 1.5px;
}

:root[data-theme=dark] .hp-vi .hp-vi-spotlight-mark--invert {
  filter: invert(1);
}

:root[data-theme=dark] .hp-vi .hp-vi-spotlight-mark--chip {
  padding: 7px 11px;
  border-radius: var(--hp-radius-sm);
  background: #f6f7f9;
}

@media (max-width: 900px) {
  .hp-vi .hp-vi-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .hp-vi .hp-vi-figure {
    display: none;
  }
  .hp-vi .hp-section-head,
  .hp-vi .hp-vi-lead,
  .hp-vi .hp-vi-stack {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }
  .hp-vi .hp-section-head {
    margin-bottom: 0;
  }
  .hp-vi .hp-vi-lead {
    margin-bottom: 0;
  }
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) {
    border-left-color: var(--hp-tier, var(--hp-border-strong));
  }
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-num,
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-chev,
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-name {
    opacity: 1;
  }
}
@media (max-width: 720px) {
  .hp-vi.hp-section .hp-vi-stack .hp-vi-item {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hp-vi.hp-section .hp-vi-stack .hp-vi-item,
  .hp-vi .hp-vi-stack.is-in .hp-vi-item {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }
  .hp-vi .hp-vi-detail,
  .hp-vi .hp-vi-tier-chev,
  .hp-vi .hp-vi-figure,
  .hp-vi .hp-vi-b-camera {
    transition: none;
  }
  .hp-vi .hp-vi-b-camera {
    transform: none !important;
  }
  .hp-vi .hp-vi-item:hover {
    transform: none;
  }
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-num,
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-chev,
  .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-name {
    opacity: 1;
  }
}
html[data-motion=reduce] .hp-vi.hp-section .hp-vi-stack .hp-vi-item,
html[data-motion=reduce] .hp-vi .hp-vi-stack.is-in .hp-vi-item {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0s;
}
html[data-motion=reduce] .hp-vi .hp-vi-detail,
html[data-motion=reduce] .hp-vi .hp-vi-tier-chev,
html[data-motion=reduce] .hp-vi .hp-vi-figure,
html[data-motion=reduce] .hp-vi .hp-vi-b-camera {
  transition: none;
}
html[data-motion=reduce] .hp-vi .hp-vi-b-camera {
  transform: none !important;
}
html[data-motion=reduce] .hp-vi .hp-vi-item:hover {
  transform: none;
}
html[data-motion=reduce] .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-num,
html[data-motion=reduce] .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-chev,
html[data-motion=reduce] .hp-vi.is-narrating .hp-vi-item:not(.is-focus) .hp-vi-tier-name {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hp-vi .hp-vi-b-part,
  .hp-vi .hp-vi-b-part.is-built {
    opacity: 0.72;
    color: var(--hp-text-dim);
    transition: none;
  }
  .hp-vi .hp-vi-b-part path,
  .hp-vi .hp-vi-b-part.is-built path {
    stroke-dashoffset: 0;
    transition: none;
  }
  .hp-vi .hp-vi-b-part.is-active,
  .hp-vi .hp-vi-b-part.is-built.is-active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
html[data-motion=reduce] .hp-vi .hp-vi-b-part,
html[data-motion=reduce] .hp-vi .hp-vi-b-part.is-built {
  opacity: 0.72;
  color: var(--hp-text-dim);
  transition: none;
}
html[data-motion=reduce] .hp-vi .hp-vi-b-part path,
html[data-motion=reduce] .hp-vi .hp-vi-b-part.is-built path {
  stroke-dashoffset: 0;
  transition: none;
}
html[data-motion=reduce] .hp-vi .hp-vi-b-part.is-active,
html[data-motion=reduce] .hp-vi .hp-vi-b-part.is-built.is-active {
  opacity: 1;
  filter: none;
  transform: none;
}

html:not(.hp-js) .hp-vi.hp-section .hp-vi-stack .hp-vi-item {
  opacity: 1;
  transform: none;
}
html:not(.hp-js) .hp-vi .hp-vi-detail {
  grid-template-rows: 1fr;
  visibility: visible;
}
html:not(.hp-js) .hp-vi .hp-vi-tier-chev {
  display: none;
}
html:not(.hp-js) .hp-vi .hp-vi-b-part {
  opacity: 0.9;
}
html:not(.hp-js) .hp-vi .hp-vi-b-part path {
  stroke-dashoffset: 0;
}

.hp-reno {
  --hp-reno-ink: #8a5a0d;
}

:root[data-theme=dark] .hp-reno {
  --hp-reno-ink: var(--hp-phase-2);
}

.hp-reno .hp-eyebrow {
  color: var(--hp-reno-ink);
}
.hp-reno .hp-eyebrow::before {
  background: var(--hp-phase-2);
}

.hp-reno .hp-title em {
  color: var(--hp-reno-ink);
}

.hp-reno-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

html:not(.hp-js) .hp-reno-switch {
  display: none;
}

.hp-reno-tab {
  appearance: none;
  border: 1px solid var(--hp-border, rgba(26, 38, 54, 0.16));
  background: transparent;
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.hp-reno-tab:hover {
  color: var(--hp-reno-ink);
  border-color: var(--hp-phase-2);
}
.hp-reno-tab:focus-visible {
  outline: 2px solid var(--hp-phase-2);
  outline-offset: 2px;
}
.hp-reno-tab.is-active {
  color: var(--hp-reno-ink);
  border-color: var(--hp-phase-2);
  background: color-mix(in srgb, var(--hp-phase-2) 14%, transparent);
}

@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .hp-reno-tab.is-active {
    background: rgba(216, 155, 63, 0.14);
  }
}
.hp-reno-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 22px;
  margin: -6px 0 16px;
}

html:not(.hp-js) .hp-reno-rooms,
.hp-reno-rooms[hidden] {
  display: none;
}

.hp-reno-room {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 1px;
  min-height: 44px;
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.18s ease;
}
.hp-reno-room::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  background: transparent;
  transition: background-color 0.18s ease;
}
.hp-reno-room:hover {
  color: var(--hp-reno-ink);
}
.hp-reno-room:focus-visible {
  outline: 2px solid var(--hp-phase-2);
  outline-offset: 2px;
}
.hp-reno-room.is-active {
  color: var(--hp-reno-ink);
}
.hp-reno-room.is-active::after {
  background: var(--hp-phase-2);
}

.hp-reno-room[hidden] {
  display: none;
}

.hp-reno-caption {
  margin: 14px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--hp-text-dim);
}
.hp-reno-caption strong {
  color: var(--hp-text);
  font-weight: 600;
}

.hp-reno-stage {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
  user-select: none;
  -webkit-user-select: none;
}

.hp-reno-stage img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.hp-reno-stage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hp-reno-clip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hp-reno-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hp-reno-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 6px rgba(15, 23, 34, 0.4);
}

.hp-reno-handle-grip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(15, 23, 34, 0.35);
}
.hp-reno-handle-grip svg {
  display: block;
}

.hp-reno-stage.is-focused .hp-reno-handle-grip {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 5px var(--hp-accent), 0 4px 14px rgba(15, 23, 34, 0.35);
}

.hp-reno-range {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: pan-y;
}

html:not(.hp-js) .hp-reno-range,
html:not(.hp-js) .hp-reno-handle-grip {
  display: none;
}

@media (max-width: 720px) {
  .hp-reno-stage {
    aspect-ratio: 4/3;
  }
  .hp-reno-handle-grip {
    width: 40px;
    height: 40px;
  }
  .hp-reno-switch {
    margin-bottom: 14px;
  }
  .hp-reno-tab {
    font-size: 0.66rem;
    padding: 9px 13px;
  }
}
.hp-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hp-why-photo {
  margin: 0;
}

.hp-why-photo-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
  background: var(--hp-bg-tag);
}
.hp-why-photo-frame img {
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hp-why-photo-frame img {
    height: 100%;
    transform: none !important;
  }
}
.hp-why-text {
  margin: 0 0 16px;
  font-size: clamp(0.96rem, 1.3vw, 1.05rem);
  color: var(--hp-text-muted);
  max-width: 58ch;
}

.hp-why-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
}
.hp-why-chips li {
  background: var(--hp-bg-tag);
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hp-why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .hp-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hp-why-photo-frame img {
    height: 100%;
    transform: none !important;
  }
  .hp-why-chips li {
    white-space: normal;
  }
}
.hp-offerings .hp-off-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.hp-offerings .hp-off-head-copy {
  min-width: 0;
}
.hp-offerings .hp-off-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--hp-bg-tag);
  border: 1px solid var(--hp-border);
  border-radius: 999px;
  flex: none;
}
.hp-offerings .hp-off-tab {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--hp-text-muted);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.25s var(--hp-ease), color 0.25s var(--hp-ease), box-shadow 0.25s var(--hp-ease);
}
.hp-offerings .hp-off-tab:hover {
  color: var(--hp-text);
}
.hp-offerings .hp-off-tab:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-offerings .hp-off-tab.is-active {
  background: var(--hp-bg-panel);
  color: var(--hp-text);
  box-shadow: var(--hp-shadow-sm);
}
.hp-offerings .hp-off-tab-count {
  font-family: var(--hp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--hp-accent-soft);
  color: var(--hp-text);
}
.hp-offerings .hp-off-tab.is-active .hp-off-tab-count {
  background: var(--hp-accent-soft-2);
}
.hp-offerings .hp-off-panels {
  position: relative;
}
.hp-offerings .hp-off-panel {
  display: none;
}
.hp-offerings .hp-off-panel.is-active {
  display: block;
  animation: hp-off-fade 0.35s var(--hp-ease);
}
.hp-offerings .hp-off-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.hp-offerings .hp-off-grid > .hp-off-card:only-child {
  grid-column: 1/-1;
  justify-self: center;
  width: min(100%, 420px);
}
.hp-offerings .hp-off-card {
  display: flex;
  flex-direction: column;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--hp-text);
  box-shadow: var(--hp-shadow-sm);
  transition: transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease), opacity 0.55s var(--hp-ease);
}
.hp-offerings .hp-off-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-border-strong);
}
.hp-offerings .hp-off-card:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-offerings .hp-off-card.hp-reveal.is-in:hover {
  transform: translateY(-4px);
}
.hp-offerings .hp-off-media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--hp-bg-tag);
}
.hp-offerings .hp-off-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--hp-ease);
}
.hp-offerings .hp-off-card:hover .hp-off-media img {
  transform: scale(1.04);
}
.hp-offerings .hp-off-media-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-accent-soft);
}
.hp-offerings .hp-off-media-fallback span {
  font-family: var(--hp-font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--hp-accent-deep);
}
@supports not (aspect-ratio: 3/2) {
  .hp-offerings .hp-off-media {
    height: 0;
    padding-bottom: 66.667%;
  }
  .hp-offerings .hp-off-media img,
  .hp-offerings .hp-off-media-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.hp-offerings .hp-off-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hp-font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text);
  background: var(--hp-bg-panel);
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: var(--hp-shadow-sm);
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-offerings .hp-off-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hp-chip-dot, var(--hp-text-dim));
  flex: none;
}
.hp-offerings .hp-off-chip-accent {
  --hp-chip-dot: var(--hp-accent);
}
.hp-offerings .hp-off-chip-navy {
  --hp-chip-dot: var(--hp-navy);
}
.hp-offerings .hp-off-chip-teal {
  --hp-chip-dot: var(--hp-phase-3);
}
.hp-offerings .hp-off-chip-amber {
  --hp-chip-dot: var(--hp-phase-2);
}
.hp-offerings .hp-off-chip-neutral {
  --hp-chip-dot: var(--hp-text-dim);
  background: var(--hp-bg-tag);
  color: var(--hp-text-muted);
}
.hp-offerings .hp-off-chip-new {
  left: auto;
  right: 12px;
  background: var(--hp-accent-deep);
  color: #ffffff;
}
.hp-offerings .hp-off-chip-new::before {
  display: none;
}
.hp-offerings .hp-off-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.hp-offerings .hp-off-title {
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--hp-text);
  margin: 0;
}
.hp-offerings .hp-off-blurb {
  margin: 0;
  margin-top: auto;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--hp-text-muted);
}
.hp-offerings .hp-off-more {
  margin-top: clamp(32px, 5vw, 48px);
  text-align: center;
}
@media (max-width: 1024px) {
  .hp-offerings .hp-off-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
@media (max-width: 720px) {
  .hp-offerings .hp-off-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hp-offerings .hp-off-tabs {
    max-width: 100%;
  }
  .hp-offerings .hp-off-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

@media (hover: hover) and (pointer: fine) {
  @supports (mask-composite: exclude) or (-webkit-mask-composite: xor) {
    html.hp-js .hp-offerings .hp-off-card {
      position: relative;
    }
    html.hp-js .hp-offerings .hp-off-card::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border-radius: var(--hp-radius);
      padding: 1px;
      background: radial-gradient(220px circle at var(--hp-mx, 50%) var(--hp-my, 50%), var(--hp-accent) 0%, rgba(108, 164, 55, 0) 72%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s var(--hp-ease);
      pointer-events: none;
      z-index: 1;
    }
    html.hp-js .hp-offerings .hp-off-card:hover::after {
      opacity: 1;
    }
  }
}
html:not(.hp-js) .hp-offerings .hp-off-panel {
  display: block;
}

@keyframes hp-off-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hp-map .hp-map-panel {
  position: relative;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow);
  padding: clamp(14px, 2.4vw, 24px);
}
.hp-map .hp-map-canvas {
  position: relative;
  width: 100%;
  height: clamp(360px, 52vh, 560px);
  border-radius: var(--hp-radius-sm);
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: var(--hp-bg-tag);
}
.hp-map .maplibregl-ctrl-group {
  border-radius: var(--hp-radius-sm);
  box-shadow: var(--hp-shadow-sm);
  overflow: hidden;
}
.hp-map .maplibregl-ctrl-attrib {
  font-family: var(--hp-font-mono);
  font-size: 0.6rem;
}
.hp-map .hp-map-marker {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none !important;
}
.hp-map .hp-map-marker:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 1px;
  border-radius: 50%;
}
.hp-map .hp-map-marker-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hp-pin-color, var(--hp-text-dim));
  border: 2.5px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--hp-ease), box-shadow 0.2s var(--hp-ease);
}
.hp-map .hp-map-marker::after {
  content: attr(data-hp-name);
  position: absolute;
  bottom: calc(100% - 7px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.88);
  color: #fff;
  font-family: var(--hp-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s var(--hp-ease);
}
.hp-map .hp-map-marker:hover::after,
.hp-map .hp-map-marker:focus-visible::after {
  opacity: 1;
}
.hp-map .hp-map-marker:hover,
.hp-map .hp-map-marker:focus-visible {
  z-index: 4;
}
.hp-map .hp-map-marker.is-status-open {
  --hp-pin-color: var(--hp-accent);
}
.hp-map .hp-map-marker.is-status-funded {
  --hp-pin-color: var(--hp-phase-2);
}
.hp-map .hp-map-marker.is-status-sold {
  --hp-pin-color: var(--hp-text-dim);
}
.hp-map .hp-map-marker:hover .hp-map-marker-dot,
.hp-map .hp-map-marker.is-active .hp-map-marker-dot {
  transform: scale(1.4);
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.45);
}
.hp-map .hp-map-marker.is-status-open::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--hp-accent);
  opacity: 0;
  animation: hp-map-radar 2.8s ease-out infinite;
}
.hp-map .hp-map-card {
  position: absolute;
  top: clamp(14px, 2vw, 26px);
  right: clamp(14px, 2vw, 26px);
  z-index: 5;
  width: min(300px, 100% - 28px);
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-sm);
  box-shadow: var(--hp-shadow-lg);
  padding: 16px 18px;
  text-align: left;
}
.hp-map .hp-map-card[hidden],
.hp-map .hp-map-card [hidden] {
  display: none;
}
.hp-map .hp-map-card-close {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hp-text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.hp-map .hp-map-card-close:hover {
  color: var(--hp-text);
  background: var(--hp-bg-tag);
}
.hp-map .hp-map-card-close:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 1px;
}
.hp-map .hp-map-card-media {
  margin: -16px -18px 12px;
  border-radius: var(--hp-radius-sm) var(--hp-radius-sm) 0 0;
  overflow: hidden;
}
.hp-map .hp-map-card-media img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.hp-map .hp-map-card-name {
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--hp-text);
  margin: 0 24px 8px 0;
}
.hp-map .hp-map-card-addr {
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  color: var(--hp-text-muted);
  margin: -4px 0 8px;
}
.hp-map .hp-map-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--hp-font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--hp-text-muted);
  background: var(--hp-bg-tag);
  border-radius: 999px;
  padding: 6px 11px;
  margin: 0 0 12px;
}
.hp-map .hp-map-card-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hp-text-dim);
  flex: none;
}
.hp-map .hp-map-card.is-status-open .hp-map-card-chip-dot {
  background: var(--hp-accent);
}
.hp-map .hp-map-card.is-status-funded .hp-map-card-chip-dot {
  background: var(--hp-phase-2);
}
.hp-map .hp-map-card.is-status-sold .hp-map-card-chip-dot {
  background: var(--hp-text-dim);
}
.hp-map .hp-map-card-badge {
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--hp-bg-tag);
  border: 1px solid var(--hp-border);
  color: var(--hp-text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.hp-map .hp-map-card-meta {
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-map .hp-map-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.hp-map .hp-map-card-row dt {
  font-family: var(--hp-font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}
.hp-map .hp-map-card-row dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--hp-text);
  text-align: right;
}
.hp-map .hp-map-cluster {
  -webkit-appearance: none;
  appearance: none;
  transition: none !important;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border: 2.5px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  background: var(--hp-accent-deep);
  color: #fff;
  font-family: var(--hp-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.hp-map .hp-map-cluster:hover {
  background: var(--hp-accent);
}
.hp-map .hp-map-cluster:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-map .hp-map-you {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hp-navy, #677a92);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.hp-map .hp-map-tools {
  position: absolute;
  top: calc(clamp(14px, 2.4vw, 24px) + 55px);
  left: calc(clamp(14px, 2.4vw, 24px) + 10px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - clamp(14px, 2.4vw, 24px) * 2 - 74px);
}
.hp-map .hp-map-locate {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--hp-border);
  background: color-mix(in srgb, var(--hp-bg-panel) 88%, transparent);
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--hp-shadow-sm);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: color 0.2s var(--hp-ease), border-color 0.2s var(--hp-ease);
}
.hp-map .hp-map-locate:hover {
  color: var(--hp-text);
  border-color: var(--hp-border-strong);
}
.hp-map .hp-map-locate:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-map .hp-map-locate.is-busy {
  opacity: 0.6;
  cursor: progress;
}
.hp-map .hp-map-locate-status {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--hp-text-muted);
}
.hp-map .hp-map-basemap {
  position: absolute;
  top: calc(clamp(14px, 2.4vw, 24px) + 10px);
  left: calc(clamp(14px, 2.4vw, 24px) + 10px);
  z-index: 3;
  display: flex;
  padding: 3px;
  gap: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hp-bg-panel) 88%, transparent);
  border: 1px solid var(--hp-border);
  box-shadow: var(--hp-shadow-sm);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hp-map .hp-map-basemap-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s var(--hp-ease), color 0.2s var(--hp-ease);
}
.hp-map .hp-map-basemap-btn.is-active {
  background: var(--hp-accent);
  color: #fff;
}
.hp-map .hp-map-basemap-btn:hover:not(.is-active) {
  color: var(--hp-text);
}
.hp-map .hp-map-basemap-btn:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-map .hp-map-panel.is-satellite .hp-map-marker-dot {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}
.hp-map .maplibregl-ctrl-group {
  background: var(--hp-bg-panel);
  box-shadow: 0 0 0 1px var(--hp-border);
}
.hp-map .maplibregl-ctrl-group button + button {
  border-top-color: var(--hp-border);
}
.hp-map .maplibregl-ctrl-group button {
  background: transparent;
}
.hp-map .maplibregl-ctrl-group button .maplibregl-ctrl-icon {
  filter: var(--hp-map-ctrl-icon-filter, none);
}
.hp-map .maplibregl-ctrl-group button:hover {
  background: var(--hp-bg-tag);
}
.hp-map .maplibregl-ctrl-attrib {
  background: color-mix(in srgb, var(--hp-bg-panel) 82%, transparent) !important;
  color: var(--hp-text-muted);
}
.hp-map .maplibregl-ctrl-attrib a {
  color: var(--hp-text-muted);
}
.hp-map .hp-map-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
}
.hp-map .hp-map-card-street {
  display: inline-flex;
  font-family: var(--hp-font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--hp-border-strong);
  padding-bottom: 2px;
}
.hp-map .hp-map-card-street:hover {
  color: var(--hp-accent-deep);
  border-color: var(--hp-accent);
}
.hp-map .hp-map-card-street:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-map .hp-map-card-link {
  display: inline-flex;
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--hp-accent-deep);
  text-decoration: none;
}
.hp-map .hp-map-card-link:hover {
  text-decoration: underline;
}
.hp-map .hp-map-card-link:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-map .hp-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: clamp(12px, 1.6vw, 18px);
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
}
.hp-map .hp-map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(12px, 1.6vw, 18px);
}
.hp-map .hp-map-city {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--hp-border);
  background: var(--hp-bg-panel);
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s var(--hp-ease), border-color 0.2s var(--hp-ease), color 0.2s var(--hp-ease);
}
.hp-map .hp-map-city:hover {
  color: var(--hp-text);
  border-color: var(--hp-border-strong);
}
.hp-map .hp-map-city.is-active {
  background: var(--hp-accent);
  border-color: var(--hp-accent);
  color: #fff;
}
.hp-map .hp-map-city:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-map .hp-map-city-count {
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}
.hp-map .hp-map-empty {
  margin: 12px 0 0;
  font-size: 0.86rem;
  color: var(--hp-text-muted);
}
.hp-map .hp-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  text-align: left;
}
.hp-map button.hp-map-legend-item {
  cursor: pointer;
  transition: opacity 0.2s var(--hp-ease), color 0.2s var(--hp-ease);
}
.hp-map button.hp-map-legend-item:hover {
  color: var(--hp-text);
}
.hp-map button.hp-map-legend-item:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 3px;
}
.hp-map button.hp-map-legend-item[aria-pressed=false] {
  opacity: 0.45;
  text-decoration: line-through;
}
.hp-map .hp-map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hp-text-dim);
  flex: none;
}
.hp-map .hp-map-legend-dot.is-open {
  background: var(--hp-accent);
  animation: hp-map-legend-pulse 2.8s ease-out infinite;
}
.hp-map .hp-map-legend-dot.is-funded {
  background: var(--hp-phase-2);
}
.hp-map .hp-map-listing {
  margin-top: clamp(24px, 4vw, 36px);
}
.hp-map .hp-map-list-title {
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  margin: 0 0 14px;
}
.hp-map .hp-map-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 32px;
}
.hp-map .hp-map-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--hp-border);
  font-size: 0.9rem;
}
.hp-map .hp-map-list-locate {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  flex: none;
  padding: 3px 10px;
  border: 1px solid var(--hp-border-strong);
  border-radius: 999px;
  background: none;
  color: var(--hp-text-muted);
  font-family: var(--hp-font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hp-map .hp-map-list-locate:hover {
  color: var(--hp-accent-deep);
  border-color: var(--hp-accent);
}
.hp-map .hp-map-list-locate:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-map .hp-map-list a {
  color: var(--hp-text);
  text-decoration: none;
  font-weight: 600;
}
.hp-map .hp-map-list a:hover {
  color: var(--hp-accent-deep);
  text-decoration: underline;
}
.hp-map .hp-map-list a:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}
.hp-map .hp-map-list-status {
  font-family: var(--hp-font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-text-muted);
  white-space: nowrap;
}
.hp-map .hp-map-list-addr {
  font-family: var(--hp-font-mono);
  font-size: 0.64rem;
  color: var(--hp-text-dim);
}
@media (max-width: 720px) {
  .hp-map .hp-map-panel {
    padding: 10px;
  }
  .hp-map .hp-map-canvas {
    height: clamp(320px, 62vh, 460px);
  }
  .hp-map .hp-map-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    box-shadow: var(--hp-shadow-sm);
  }
  .hp-map .hp-map-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

html.hp-js .hp-map .hp-map-listing {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

html:not(.hp-js) .hp-map .hp-map-canvas,
html:not(.hp-js) .hp-map .hp-map-card,
.hp-map.is-map-failed .hp-map-canvas,
.hp-map.is-map-failed .hp-map-card {
  display: none;
}

.hp-map.is-map-failed .hp-map-listing {
  position: static;
  width: auto;
  height: auto;
  margin: clamp(24px, 4vw, 36px) 0 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

:root[data-theme=dark] .hp-map {
  --hp-map-ctrl-icon-filter: invert(1) brightness(1.6);
}
:root[data-theme=dark] .hp-map .hp-map-panel:not(.is-satellite) .maplibregl-canvas {
  filter: brightness(2.1) saturate(1.2) contrast(0.88);
}
:root[data-theme=dark] .hp-map .hp-map-marker-dot {
  border-color: #f2f6fa;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}
:root[data-theme=dark] .hp-map .hp-map-cluster {
  border-color: #f2f6fa;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
:root[data-theme=dark] .hp-map .hp-map-marker::after {
  background: rgba(20, 27, 38, 0.95);
  box-shadow: 0 0 0 1px var(--hp-border-strong);
}

@keyframes hp-map-radar {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes hp-map-legend-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--hp-accent-soft-2);
  }
  70% {
    box-shadow: 0 0 0 7px transparent;
  }
  100% {
    box-shadow: 0 0 0 7px transparent;
  }
}
.hp-marquee {
  padding: 48px 0;
  background: var(--hp-bg);
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  overflow: hidden;
}

.hp-marquee-caption {
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-text-dim);
  text-align: center;
  margin: 0 0 32px;
  padding: 0 18px;
}

.hp-marquee-viewport {
  overflow: hidden;
}

.hp-marquee-track {
  display: flex;
  width: max-content;
  animation: hp-marquee 45s linear infinite;
  will-change: transform;
}

.hp-marquee-dup {
  display: contents;
}

.hp-marquee-item {
  flex: none;
  width: clamp(200px, 24vw, 320px);
  aspect-ratio: 3/2;
  margin-right: 18px;
  border-radius: var(--hp-radius-sm);
  overflow: hidden;
}
.hp-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.35s var(--hp-ease);
}
.hp-marquee-item:hover img {
  filter: none;
}

.hp-marquee:hover .hp-marquee-track {
  animation-play-state: paused;
}

@keyframes hp-marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hp-marquee-track {
    animation: none;
  }
}
html[data-motion=reduce] .hp-marquee-track {
  animation: none;
}

.hp-testimonials-head {
  text-align: center;
  margin-bottom: 44px;
}
.hp-testimonials-head .hp-eyebrow {
  justify-content: center;
}
.hp-testimonials-head .hp-eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--hp-accent);
  flex: none;
}

.hp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.hp-tcard:last-child:nth-child(odd) {
  grid-column: 1/-1;
  width: calc(50% - 11px);
  justify-self: center;
}

.hp-tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--hp-bg-panel);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  padding: 28px 30px 24px;
  box-shadow: var(--hp-shadow-sm);
}

.hp-tcard-theme {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
  font-family: var(--hp-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-accent-deep);
}
.hp-tcard-theme::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hp-border);
}

.hp-tcard-stage {
  position: relative;
  flex: 1;
  min-height: 12.5em;
}

.hp-quote {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--hp-ease);
}
.hp-quote.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hp-quote blockquote {
  margin: 0;
}
.hp-quote blockquote::before {
  content: "“";
  display: block;
  font-family: var(--hp-font-display);
  font-size: 3.4rem;
  line-height: 0;
  margin-bottom: -0.35em;
  color: var(--hp-accent);
  opacity: 0.55;
}
.hp-quote blockquote p {
  margin: 0;
  font-family: var(--hp-font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.4;
  color: var(--hp-text);
}
.hp-quote figcaption {
  margin-top: 20px;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hp-quote-name {
  color: var(--hp-accent-deep);
}

.hp-quote-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 18px;
}

.hp-quote-dot {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hp-quote-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hp-border-strong);
  transition: background-color 0.25s var(--hp-ease), transform 0.25s var(--hp-ease);
}
.hp-quote-dot:hover::before {
  background: var(--hp-text-dim);
}
.hp-quote-dot[aria-current=true]::before {
  background: var(--hp-accent-deep);
  transform: scale(1.25);
}
.hp-quote-dot:focus-visible {
  outline: 2px solid var(--hp-accent);
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .hp-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hp-tcard:last-child:nth-child(odd) {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .hp-tcard-stage {
    min-height: 16em;
  }
}
.hp-cta {
  position: relative;
  background: var(--hp-footer-bg);
  text-align: center;
  overflow: hidden;
}

.hp-cta::before,
.hp-cta::after {
  content: "";
  position: absolute;
  width: clamp(480px, 60vw, 900px);
  height: clamp(480px, 60vw, 900px);
  border-radius: 50%;
  pointer-events: none;
}

.hp-cta::before {
  top: -35%;
  left: -18%;
  background: radial-gradient(closest-side, rgba(84, 129, 40, 0.3), rgba(84, 129, 40, 0) 72%);
}

.hp-cta::after {
  bottom: -40%;
  right: -16%;
  background: radial-gradient(closest-side, rgba(77, 93, 115, 0.42), rgba(77, 93, 115, 0) 72%);
}

html.hp-js .hp-cta::before {
  animation: hp-cta-drift-a 30s ease-in-out infinite alternate;
}

html.hp-js .hp-cta::after {
  animation: hp-cta-drift-b 38s ease-in-out infinite alternate;
}

@keyframes hp-cta-drift-a {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(6%, 4%, 0);
  }
}
@keyframes hp-cta-drift-b {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-5%, -6%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hp-cta::before,
  .hp-cta::after {
    animation: none;
  }
}
html[data-motion=reduce] .hp-cta::before,
html[data-motion=reduce] .hp-cta::after {
  animation: none;
}

.hp-cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.hp-root .hp-cta-title {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--hp-footer-text);
  margin: 0 0 16px;
}
.hp-root .hp-cta-title em {
  font-style: italic;
  color: var(--hp-green-soft);
}

.hp-cta-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(231, 236, 242, 0.78);
  margin: 0 0 34px;
}

.hp-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hp-cta-btn-solid {
  background: #ffffff;
  color: var(--hp-green-deep);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28), 0 0 26px rgba(140, 193, 88, 0.22);
}
.hp-cta-btn-solid:hover {
  background: #ffffff;
  color: var(--hp-green-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34), 0 0 40px rgba(140, 193, 88, 0.34);
}

:root[data-theme=dark] .hp-cta-btn-solid,
:root[data-theme=dark] .hp-cta-btn-solid:hover {
  color: var(--hp-green-deep) !important;
  -webkit-text-fill-color: var(--hp-green-deep) !important;
}

.hp-cta .hp-cta-btn-outline {
  background: transparent;
  color: var(--hp-footer-text);
  border-color: rgba(231, 236, 242, 0.45);
}
.hp-cta .hp-cta-btn-outline:hover {
  border-color: var(--hp-footer-text);
  color: var(--hp-footer-text);
}

.hp-cta .hp-btn:focus-visible {
  outline-color: var(--hp-footer-text);
}

.hp-cta-trust {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: 38px 0 0;
  padding: 0;
}

.hp-cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--hp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-footer-muted);
}
.hp-cta-trust-item svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .hp-cta-trust {
    flex-direction: column;
    gap: 14px;
  }
}
.hp-footer {
  background: var(--hp-footer-bg);
  color: var(--hp-footer-text);
  padding-top: clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.hp-footer a {
  color: var(--hp-footer-text);
  text-decoration: none;
  transition: color 0.25s var(--hp-ease);
}
.hp-footer a:hover {
  color: var(--hp-green-soft);
  text-decoration: underline;
}
.hp-footer a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: 2px;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
}

.hp-footer .hp-footer-name {
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--hp-footer-text);
  margin: 0 0 14px;
}

.hp-footer-mission {
  color: var(--hp-footer-muted);
  font-size: 0.95rem;
  max-width: 34ch;
  margin: 0 0 26px;
}

.hp-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.hp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease);
}
.hp-footer-social a:hover {
  color: var(--hp-green-soft);
  border-color: var(--hp-green-soft);
  text-decoration: none;
}
.hp-footer-social a svg {
  display: block;
}

.hp-footer .hp-footer-heading {
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-footer-muted);
  margin: 6px 0 18px;
}

.hp-footer-links,
.hp-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
.hp-footer-links li + li,
.hp-footer-contact li + li {
  margin-top: 10px;
}

.hp-footer-address {
  color: var(--hp-footer-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

.hp-footer-contact {
  margin-bottom: 24px;
}

.hp-footer-podcasts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-footer-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: color 0.25s var(--hp-ease), border-color 0.25s var(--hp-ease);
}
.hp-footer-chip:hover {
  color: var(--hp-green-soft);
  border-color: var(--hp-green-soft);
  text-decoration: none;
}

.hp-footer-wordmark {
  overflow: hidden;
  margin: clamp(56px, 8vw, 96px) 0 clamp(24px, 4vw, 40px);
  padding: 0 12px;
  text-align: center;
}
.hp-footer-wordmark .hp-footer-wordmark-inner {
  display: block;
  font-family: var(--hp-font-display);
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 10.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.14);
  transform: translateY(102%);
  transition: transform 0.9s var(--hp-ease);
}
.hp-footer-wordmark.is-in .hp-footer-wordmark-inner {
  transform: translateY(0);
}

html:not(.hp-js) .hp-footer-wordmark .hp-footer-wordmark-inner,
html.hp-no-observer .hp-footer-wordmark .hp-footer-wordmark-inner {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hp-footer-wordmark .hp-footer-wordmark-inner {
    transform: none;
  }
}
html[data-motion=reduce] .hp-footer-wordmark .hp-footer-wordmark-inner {
  transform: none;
}

.hp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 22px;
  padding-bottom: 26px;
}

.hp-footer-copy {
  color: var(--hp-footer-muted);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hp-footer-wordmark .hp-footer-wordmark-inner {
    white-space: normal;
  }
  .hp-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/homepage.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-tokens.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-base.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_hp-buttons.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-blueprint.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-nav.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-hero.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-stats.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-ticker.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-how-it-works.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-news.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-cycle.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-vi.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-reno.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-why.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-offerings.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-map.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-marquee.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-testimonials.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-cta.scss%22,%22file:///C:/NV%2520Website/neighborhood-ventures/neighborhood.ventures/test/Demo/scss/_homepage-footer.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQQ;ACER;EAEE;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAUA;EAWA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAGA;EACA;EACA;EAGA;EAGA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAGA;EAEA;EACA;EACA;EACA;EAIA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAGA;EACA;EACA;EACA;;;AC/GF;AAAA;AAAA;EAGE;;;AAIF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EAGE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;;AAMJ;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;IACE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AClHF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EAIA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;;AD0EJ;EACE;EACA;;AAEA;EACE;EACA;;;AAMJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAMJ;EACE;IACE;IACA;IACA;;;AAQJ;AAAA;EAEE;EACA;;;AAGF;EACE;AAAA;AAAA;IAGE;IACA;IACA;;EAGF;IACE;IACA;;;AAMJ;AAAA;AAAA;EAGE;EACA;EACA;;;AAGF;EACE;EACA;;;AE3LF;EACE;;AAIA;EACE;EACA;;;AAUJ;EACE;EACA;EACA;EAMA;EAEA;EACA;EAOA;;AAEA;EACE;EAIA;EACA;EAGA;EACA;EACA;;;AAIJ;EACE;;;AAGF;EACE;;;AAKF;EACE;;;AAMF;EACE;IAME;;EAEA;IACE;IACA;;;AAKN;EACE;IACE;;;ACrFJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOF;EACE;;;AAKF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EAQA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EAEE;;AAGF;EACE;EACA;;;AAQJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EAEE;EACA;EACA;;AAGF;EAEE;;;AAOJ;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAIF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAKJ;EACE;;AAEA;EAAY;;AAEZ;EAEE;EACA;;;AAKJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAIJ;EACE;;AAEA;EAEE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;;;AAMF;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EAAmB;;AACnB;EAAkB;;AAGhB;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAKF;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;;AAEA;EACE;EACA;;AAIJ;AAAA;AAAA;EAGE;;;AAaJ;EACE;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAMJ;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;;AAIJ;EAIE;IACE;;EAGF;IACE;;EAKF;IACE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EAAmB;;AACnB;EAAkB;;AAElB;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;;AAMJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAUA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAEE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAKF;AAAA;EAEE;EACA;EACA;EACA;;;AAIA;AAAA;EAEE;EACA;;;AAYF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;AAAA;EAEE;;AAGF;EACE;;AAGF;EACE;IACE;IACA;IACA;;;AAIJ;EACE;IACE;;;;AC34BN;EACE;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;IACE;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAQF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;;AAGF;EACE;IAAO;;EACP;IAAK;;;AASP;EACE;EACA;;;AAWF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EAGA,YACE;;AAcF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EAGE;;;AAIJ;EACE;EACA;EACA;;;AAcF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;AAGA;EACE;EACA;;AAKF;EACE;EACA;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAgBF;EACE;IACE;IACA,kBACE;IAKF;IACA;IACA;IACA;IACA;IACA;;EAKF;IACE;;;AAIJ;EACE;IAAO;;EACP;IAAK;;;AAKP;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;;;AAGF;EAAgB;;;AAChB;EAAgB;;;AAChB;EAAgB;;;AAChB;EAAgB;;;AAShB;EACE;EACA;EAIA;EAaA;;AAEA;EACE;EACA;;AAGF;EACE;;AAWF;EACE;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;;AAIA;EAEE;;AAMF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAMF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EAMA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EAEE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAQA;EAIA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOA;EACE;EACA;EAKA;EACA;;AAMF;EACE;EACA;EACA;EACA;;AAaF;EACE;EACA;;AAKF;EACE;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;;AAON;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAOA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;IAAK;;EACL;IAAM;;EACN;IAAO;;;AAKT;EACE;IACE;;;AAIJ;EACE;IACE;;EAGF;IACE;IACA;;EAGF;IAEE;;EAMF;IACE;;EAGF;IACE;IAKA;;EAEA;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;IACA;IACA;;;ACrpBJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;IAGE;;EAGF;AAAA;IAEE;IACA;IACA;IACA;;EAKF;IACE;;EAGF;IACE;;;AClFJ;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;;;AASJ;EACE;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;;;AASF;EACE;EACA;EACA;EAEA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;EACA;;AAGA;EACE;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;IAAO;;EACP;IAAK;;;AAGP;EACE;IACE;;EAGF;IAEE;IACA;IACA;;EAGF;IACE;;;ACnJJ;EACE;;;AAMF;EACE;EAEA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AAGF;EACE;;;AAKJ;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAWF;EACE;IACE;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;;EAGF;IACE;;;AAKJ;EACE;IACE;;EAGF;IACE;;EAGF;IACE;;;AAMJ;EACE;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAGF;IACE;;;AC9MJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAMF;EA/BF;IAgCI;;EAEA;IACE;IAEA;IACA;;;;AAQN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EAWA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAZA;EACE;;;AAgBJ;EACE;EASA;EACA;EACA;EACA;EACA;EACA;;;AAUA;EACE;EACA;EACA;EACA;;AAGF;EACE;EAIA;EAMA;EACA;EACA;EAKA;;AAKF;EACE;;;AAMJ;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAWF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAKA;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;;AAMJ;EACE;IACE;IACA;IACA;;EAGF;IACE;;;AC9SJ;EAOE;EACA;EACA;EACA;EACA;EAKA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;;AAKA;EACE;;;AAMJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EAAkB;;;AAClB;EAAkB;;;AAClB;EAAkB;;;AAClB;EAAkB;;;AAClB;EAAkB;;;AAIlB;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EAAmB;EAAoC;;;AACvD;EAAmB;EAAoC;;;AACvD;EAAmB;EAAoC;;;AACvD;EAAmB;EAAoC;;;AACvD;EAAmB;EAAoC;;;AAIvD;EACE;EAEA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EAA4B;EAAoC;;AAAiC;EAAoB;;;AACrH;EAA4B;EAAoC;;AAAiC;EAAoB;;;AACrH;EAA4B;EAAoC;;AAAiC;EAAoB;;;AACrH;EAA4B;EAAoC;;AAAiC;EAAoB;;;AACrH;EAA4B;EAAoC;;AAAiC;EAAoB;;;AAMrH;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EAA8C;;;AAC9C;EAA8C;;;AAC9C;EAA8C;;;AAC9C;EAA8C;;;AAC9C;EAA8C;;;AAE9C;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;;AAQJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;AAEA;EACE;;;AAIJ;EACE;IAAO;;EACP;IAAK;;;AAoCP;EAEI;IACE;IACA;;EAGF;IACE;IACA;;EAOF;IACE;;;AAaN;EAEI;IACE;;EAIF;IAAiC;;EACjC;IAAiC;;EACjC;IAAiC;;EACjC;IAAiC;;EAEjC;IACE;;;AAON;EACE;IACE;;EAGF;IAEE;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;IACA;;EAMF;IACE;IACA;IAKA;IACA;IACA;IACA;IACA;IACA;IACA;IAIA;IACA;;EAEA;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAIJ;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;;;AC5dJ;EA+GE;;AA3EA;EACE;EACA;EACA;EACA;EACA;EACA;;AAKF;EACE;;AAGF;EACE;EACA;EAEA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAuBF;EACE;EACA;EACA;EACA;EACA;;AAmBF;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,YACE;;AAKF;EACE;;AAMF;EAEE;EACA;;AAQJ;EACE;IACE;;;AAaJ;EACE;;AAEA;AAAA;EAEE;;AAGF;EACE;;AAQJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAQF;EACE;;AAMF;EACE;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;;AAKF;EAAgB;;AAChB;EAAgB;;AAChB;EAAgB;;AAChB;EAAgB;;AAChB;EAAgB;;AAEhB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAUF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;EAGA;EACA;;AAWF;EACE;EACA;EACA;;AAeF;EACE;EACA;EACA;;AAOF;EAAkD;;AAClD;EAAkD;;AAClD;EAAkD;;AAClD;EAAkD;;AAClD;EAAkD;;AAUlD;EACE;EACA,YACE;;AASF;EACE;EACA;EACA;;AAaJ;EACE;EACA;;AAEA;EAA+B;;AAOjC;EACE;EACA;EACA;EAIA;;AAQF;EAAyC;;AACzC;EAAyC;;AACzC;EAAyC;;AACzC;EAAyC;;AACzC;EAAyC;;AAazC;EACE;EACA;EACA;EACA;;AA4BF;EACE;EACA;EACA;EACA;EACA,YACE;;AAGF;EACE;EACA;EACA,YACE;;AAKN;EAGE;;AAOF;EACE;EAGA;EACA;EACA;EACA;;AAmBF;EACE;EACA;EACA;;AAWF;EACE;EACA;EAKA;EACA;EACA;;AAEA;EACE;;AAOJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAQN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAKJ;EACE;EACA;EACA;;;AAMJ;EACE;;;AAqBF;EACE;;;AAGF;EAGE;EACA;EAIA;;;AAKF;EAEI;IACE;IACA;;EAQF;IACE;;EAOF;AAAA;AAAA;IAGE;IACA;IACA;;EAGF;IAAmB;;EACnB;IAAc;;EAKd;IACE;;EAEA;AAAA;AAAA;IAGE;;;AAaR;EACE;IACE;IACA;IACA;IACA;;;AASJ;EACE;AAAA;IAEE;IACA;IACA;IACA;;EAQF;AAAA;AAAA;AAAA;IAIE;;EAGF;IAAyB;;EACzB;IAA2B;;EAIzB;AAAA;AAAA;IAGE;;;AAMJ;AAAA;EAEE;EACA;EACA;EACA;;AAGF;AAAA;AAAA;AAAA;EAIE;;AAGF;EAAyB;;AACzB;EAA2B;;AAGzB;AAAA;AAAA;EAGE;;;AAUN;EACE;AAAA;IAEE;IACA;IACA;;EAEA;AAAA;IACE;IACA;;EAMJ;AAAA;IAEE;IACA;IACA;;;AAOF;AAAA;EAEE;EACA;EACA;;AAEA;AAAA;EACE;EACA;;AAIJ;AAAA;EAEE;EACA;EACA;;;AAUF;EACE;EACA;;AAYF;EACE;EACA;;AAIF;EACE;;AAKF;EACE;;AAEA;EACE;;;ACl4BN;EAWE;;;AAGF;EACE;;;AAIF;EACE;;AAEA;EACE;;;AAIJ;EACE;;;AASF;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EAMA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAMJ;EACE;IACE;;;AAeJ;EACE;EACA;EACA;EAGA;;;AAGF;AAAA;EAEE;;;AAGF;EACE;EACA;EACA;EACA;EAIA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAEA;EACE;;;AAQN;EACE;;;AAKF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAMJ;EACE;EAMA;EACA;EACA;EACA;EAEA;EACA;;;AAQF;EACE;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;;;AAcF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;AAOJ;EACE,YACE;;;AAOJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;;;AAQF;AAAA;EAEE;;;AAKF;EACE;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;;ACtXJ;EACE;EACA;EACA;EACA;;;AAKF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;IACE;IACA;;;AAMJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMJ;EACE;IACE;;;AAIJ;EACE;IACE;;EAKF;IACE;IACA;;EAGF;IACE;;;AC/EF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAKF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAKF;EACE;EACA;EACA;;AAMA;EACE;EACA;EACA;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAOJ;EACE;;AAKF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;IACE;IACA;;EAGF;AAAA;IAEE;IACA;IACA;IACA;IACA;;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EAAuB;;AACvB;EAAuB;;AACvB;EAAuB;;AACvB;EAAuB;;AAEvB;EACE;EACA;EACA;;AAKF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAMJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;;AAWF;EACE;EACA;;AAKF;EACE;IACE;IACA;;;AAIJ;EACE;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;;;AAcN;EACE;IACE;MACE;;IAGF;MACE;MACA;MACA;MACA;MACA;MACA;MACA;MACA;MACA;MAEA;MACA;MACA;MACA;MACA;MACA;MACA;MACA;;IAGF;MACE;;;;AAQN;EACE;;;AAGF;EACE;IAAO;;EACP;IAAO;;;ACrXP;EACE;EACA;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAUA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AASF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAGA;;AAGF;AAAA;EAEE;;AAIF;AAAA;EAEE;;AAGF;EAAkC;;AAClC;EAAkC;;AAClC;EAAkC;;AAElC;AAAA;EAEE;EACA;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EAAsD;;AACtD;EAAsD;;AACtD;EAAsD;;AAEtD;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAQF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;;AAEA;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAMJ;EACE;;AAOF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAKF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAMJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EAKA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EAAU;;AAEV;EACE;EACA;;AAKF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AAOF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAKF;EACE;IACE;;EAGF;IACE;;EAIF;IACE;IACA;IACA;IACA;;EAGF;IACE;;;;AAON;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKF;AAAA;AAAA;AAAA;EAIE;;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAUF;EAGE;;AAaA;EACE;;AAKF;EACE;EACA;;AAGF;EACE;EACA;;AAKF;EACE;EACA;;;AAIJ;EACE;IAAO;IAAuB;;EAC9B;IAAO;IAAuB;;EAC9B;IAAO;IAAuB;;;AAGhC;EACE;IAAO;;EACP;IAAO;;EACP;IAAO;;;ACp4BT;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAKF;EACE;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;IACE;;;AAMJ;EACE;IACE;;;AAIJ;EACE;;;AC9EF;EACE;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAON;EACE;EACA;EACA;EACA;EACA;;;AAgBF;EACE;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;;AAMJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAoBA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;;;AAKF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAMJ;EACE;IACE;;EAKF;IACE;IACA;IACA;;;AAIJ;EAEE;IACE;;;AC9NJ;EACE;EACA;EACA;EACA;;;AAKF;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;;;AAIF;EACE;EACA;EACA;;;AAKF;EACE;EACA;EACA;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;IAAO;;EACP;IAAK;;;AAGP;EACE;IAAO;;EACP;IAAK;;;AAMP;EACE;AAAA;IAEE;;;AAIJ;AAAA;EAEE;;;AAKF;EACE;EACA;EACA;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAKF;EACE;EACA;EAGA;;AAGA;EACE;EACA;EACA;;;AASJ;AAAA;EAEE;EACA;;;AAcF;EACE;EACA;EACA;;AAEA;EACE;EACA;;;AAMJ;EACE;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACE;IACE;IACA;;;AChNJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;;AAON;EACE;EACA;EACA;;;AAOF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAEA;AAAA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAUJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;;AAMJ;AAAA;EAEE;;;AAGF;EACE;IACE;;;AAIJ;EACE;;;AAKF;EACE;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAKF;EACE;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA%22%7D */