@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). */
@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-phase-1: #6ca437;
  --hp-phase-2: #d89b3f;
  --hp-phase-3: #2fb6a3;
  --hp-phase-4: #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: #6b7888;
  --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-phase-1: #8cc158;
  --hp-phase-2: #e6b370;
  --hp-phase-3: #5fcfbe;
  --hp-phase-4: #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: #ffffff;
  box-shadow: var(--hp-shadow);
}
.hp-btn-primary:hover {
  background: var(--hp-accent-deep);
  color: #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;
}

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-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%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.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);
}
.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;
  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-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;
}

.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-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;
}

.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-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::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;
}

@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-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: 5px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  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.35);
}
.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-control {
  width: 100%;
  height: auto;
  padding: 15px 22px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  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: 999px;
  box-shadow: none;
  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-accent-deep) !important;
  color: #ffffff !important;
}
.hp-hero-form button[type=submit]:focus-visible {
  outline: 2px solid var(--hp-accent-deep);
  outline-offset: 2px;
}
.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);
}
.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;
}

@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-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;
}

@media (max-width: 720px) {
  .hp-stat-strip {
    background: rgba(11, 17, 27, 0.96);
  }
  .hp-stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hp-stat-strip .hp-stat:last-child {
    grid-column: 1/-1;
  }
  .hp-stat-strip .hp-stat-value {
    font-size: 1.5rem;
  }
}
.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 (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;
}

.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-mark {
  margin: 0;
  color: var(--hp-text-muted);
  border-bottom: 1px solid var(--hp-border);
  padding-bottom: 12px;
}

.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-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;
  transition: border-color 0.25s var(--hp-ease);
}
.hp-news-link::after {
  content: " →";
}
.hp-news-link:hover {
  border-color: var(--hp-accent);
}
.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: #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(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-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(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-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-tabs {
  display: grid;
  grid-template-columns: repeat(4, 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-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-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 (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(2, 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;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 2px;
  }
  .hp-cycle-tabs::-webkit-scrollbar {
    display: none;
  }
  .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-reno {
  --hp-reno-ink: #96630f;
}

: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-stage {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
}

.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-chip {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--hp-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #ffffff;
  background: rgba(15, 23, 34, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.hp-reno-chip-after {
  left: 14px;
}

.hp-reno-chip-before {
  right: 14px;
}

.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-chip {
    bottom: 10px;
    font-size: 0.64rem;
    padding: 5px 10px;
  }
  .hp-reno-chip-after {
    left: 10px;
  }
  .hp-reno-chip-before {
    right: 10px;
  }
}
.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-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-specs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-offerings .hp-off-spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.hp-offerings .hp-off-spec dt {
  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-offerings .hp-off-spec dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hp-text);
  text-align: right;
}
.hp-offerings .hp-off-funding {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-offerings .hp-off-track {
  height: 6px;
  border-radius: 999px;
  background: var(--hp-bg-tag);
  overflow: hidden;
}
.hp-offerings .hp-off-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--hp-accent);
  transition: width 1.1s var(--hp-ease);
}
.hp-offerings .hp-off-funding-meta {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  color: var(--hp-text-muted);
}
.hp-offerings .hp-off-raised {
  color: var(--hp-accent-deep);
  font-weight: 500;
}
.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;
  }
}

html:not(.hp-js) .hp-offerings .hp-off-panel {
  display: block;
}

@keyframes hp-off-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.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;
}
.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-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 21em;
}

.hp-quote {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  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;
  max-width: 54ch;
  position: relative;
  padding-top: 2.4rem;
}
.hp-quote blockquote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hp-font-display);
  font-size: 4.4rem;
  line-height: 1;
  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.3rem, 2.4vw, 1.8rem);
  line-height: 1.42;
  color: var(--hp-text);
}
.hp-quote figcaption {
  margin-top: 26px;
  font-family: var(--hp-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hp-quote-role {
  color: var(--hp-text-dim);
}
.hp-quote-role::before {
  content: "/";
  margin-right: 12px;
  color: var(--hp-border-strong);
}

.hp-quote-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}

.hp-quote-dot {
  width: 26px;
  height: 26px;
  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: 9px;
  height: 9px;
  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: 720px) {
  .hp-testimonials-stage {
    min-height: 27em;
  }
}
.hp-cta {
  background: var(--hp-accent-deep);
  text-align: center;
}
:root[data-theme=dark] .hp-cta {
  background: var(--hp-bg-panel-2);
  border-top: 1px solid var(--hp-border);
}

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

.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: #ffffff;
  margin: 0 0 16px;
}
.hp-cta-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
:root[data-theme=dark] .hp-cta-title {
  color: var(--hp-text);
}
:root[data-theme=dark] .hp-cta-title em {
  color: var(--hp-accent);
}

.hp-cta-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 34px;
}
:root[data-theme=dark] .hp-cta-sub {
  color: var(--hp-text-muted);
}

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

.hp-cta-btn-solid {
  background: #ffffff;
  color: var(--hp-accent-deep);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.hp-cta-btn-solid:hover {
  background: #ffffff;
  color: var(--hp-accent-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}
:root[data-theme=dark] .hp-cta-btn-solid {
  color: var(--hp-green-deep);
}

.hp-cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hp-cta-btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
}
:root[data-theme=dark] .hp-cta-btn-outline {
  color: var(--hp-text);
  border-color: var(--hp-border-strong);
}
:root[data-theme=dark] .hp-cta-btn-outline:hover {
  border-color: var(--hp-accent);
  color: var(--hp-accent);
}

.hp-cta .hp-btn:focus-visible {
  outline-color: #ffffff;
}

:root[data-theme=dark] .hp-cta .hp-btn:focus-visible {
  outline-color: var(--hp-accent);
}

.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;
  }
}
