@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

.ht-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  color: #191970;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ht-menu-open {
  overflow: hidden;
}

.ht-main {
  flex: 1;
  width: 100%;
}

.ht-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.ht-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #191970;
  border-bottom: 1px solid rgba(65, 105, 225, 0.28);
  box-shadow: 0 10px 30px rgba(25, 25, 112, 0.20);
}

.ht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  /* padding: 12px 0; */
  padding: 4px 0;
}

.ht-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ht-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ht-logo-mark {
    display: block;
    filter: brightness(1.75) contrast(1.15) drop-shadow(0 0px 0px rgba(65, 105, 225, 0.34));
}

.ht-logo-mark {
    width: 85px;
    height: auto;
}

.ht-flip-x {
  transform: scaleX(-1);
}

.ht-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ht-brand-name {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing: 0.3px;
  font-weight: 700;
  font-size: 18px;
  color: #F5F5F5;
}

.ht-brand-tagline {
  font-size: 12px;
  color: rgba(245, 245, 245, 0.84);
  margin-top: 2px;
}

.ht-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ht-nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ht-nav-item {
  display: flex;
  align-items: center;
}

.ht-nav-link {
  text-decoration: none;
  color: rgba(245, 245, 245, 0.92);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 9px 11px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.ht-nav-link:hover {
  color: #F5F5F5;
  border-color: rgba(65, 105, 225, 0.34);
  background: rgba(65, 105, 225, 0.14);
}

.ht-nav-link-active {
  border-color: rgba(255, 140, 0, 0.62);
  background: rgba(255, 140, 0, 0.18);
}

.ht-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  color: rgba(245, 245, 245, 0.95);
  cursor: pointer;
}

.ht-icon-button:focus-visible {
  outline: 2px solid rgba(102, 51, 153, 0.55);
  outline-offset: 3px;
  border-radius: 8px;
}

.ht-toggle-icon-burger {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.ht-toggle-icon-close {
  width: 22px;
  height: 22px;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}

.ht-burger-line {
  height: 2px;
  width: 100%;
  background: rgba(245, 245, 245, 0.92);
  border-radius: 2px;
}

.ht-close-line {
  position: absolute;
  width: 22px;
  height: 2px;
  background: rgba(245, 245, 245, 0.92);
  border-radius: 2px;
}

.ht-close-line-1 {
  transform: rotate(45deg);
}

.ht-close-line-2 {
  transform: rotate(-45deg);
}

.ht-menu-open .ht-toggle-icon-burger {
  display: none;
}

.ht-menu-open .ht-toggle-icon-close {
  display: inline-flex;
}

.ht-mobile-toggle {
    display: none;
    position: fixed;
    /* top: 32px; */
    top: 18px;
    right: 18px;
    z-index: 210;
}

.ht-hero {
  position: relative;
  padding: 22px 0 18px 0;
}

.ht-hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 14px;
  background: rgba(245, 245, 245, 0.92);
  border: 1px solid rgba(65, 105, 225, 0.18);
  box-shadow: 0 18px 60px rgba(25, 25, 112, 0.14);
  overflow: hidden;
}

.ht-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: min(640px, 100%);
}

.ht-hero-kicker-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ht-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(65, 105, 225, 0.22);
  background: rgba(65, 105, 225, 0.08);
  color: rgba(25, 25, 112, 0.90);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.ht-chip-strong {
  border-color: rgba(102, 51, 153, 0.32);
  background: rgba(102, 51, 153, 0.10);
  color: rgba(25, 25, 112, 0.95);
}

.ht-hero-title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 56px;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.2px;
  font-weight: 700;
  color: #191970;
}

.ht-hero-subtitle {
  margin: 0;
  color: rgba(25, 25, 112, 0.80);
  font-size: 16px;
  line-height: 1.75;
  max-width: 60ch;
}

.ht-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ht-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(65, 105, 225, 0.30);
  background: rgba(245, 245, 245, 0.92);
  color: rgba(25, 25, 112, 0.95);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.ht-button:hover {
  border-color: rgba(65, 105, 225, 0.42);
  background: rgba(65, 105, 225, 0.10);
  color: #191970;
}

.ht-button-primary {
  border-color: rgba(255, 140, 0, 0.60);
  background: rgba(255, 140, 0, 0.14);
}

.ht-button-primary:hover {
  border-color: rgba(255, 140, 0, 0.75);
  background: rgba(255, 140, 0, 0.18);
}

.ht-hero-media {
  width: min(520px, 46%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-hero-image {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 10px; */
  /* box-shadow: 0 14px 46px rgba(25, 25, 112, 0.18); */
}

.ht-section {
  padding: 18px 0 34px 0;
}

.ht-section-title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  margin: 0 0 12px 0;
  font-size: 22px;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #191970;
}

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

.ht-card {
  border-radius: 10px;
  background: rgba(245, 245, 245, 0.92);
  border: 1px solid rgba(65, 105, 225, 0.14);
  padding: 18px;
  box-shadow: 0 16px 52px rgba(25, 25, 112, 0.12);
}

.ht-card-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12px;
  color: #191970;
}

.ht-card-text {
  margin: 0;
  color: rgba(25, 25, 112, 0.78);
  font-size: 13px;
  line-height: 1.75;
}

.ht-teaser-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ht-teaser {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  background: rgba(245, 245, 245, 0.92);
  border: 1px solid rgba(65, 105, 225, 0.14);
  padding: 18px;
}

.ht-teaser-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.55px;
  color: rgba(255, 140, 0, 0.95);
  text-transform: uppercase;
}

.ht-teaser-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12px;
  color: #191970;
}

.ht-teaser-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(25, 25, 112, 0.78);
}

.ht-article-wrap {
  padding: 24px 0 44px 0;
}

.ht-article {
  border-radius: 12px;
  background: rgba(245, 245, 245, 0.92);
  border: 1px solid rgba(65, 105, 225, 0.14);
  padding: 24px;
  box-shadow: 0 18px 60px rgba(25, 25, 112, 0.14);
}

.ht-article-title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  margin: 0 0 6px 0;
  font-size: 30px;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #191970;
}

.ht-article-meta {
  margin: 0 0 18px 0;
  font-size: 13px;
  color: rgba(25, 25, 112, 0.70);
}

.ht-article-h2 {
  margin: 18px 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12px;
  color: #191970;
}

.ht-article-p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(25, 25, 112, 0.82);
}

.ht-divider {
  height: 1px;
  width: 100%;
  background: rgba(65, 105, 225, 0.16);
  margin: 18px 0;
}

.ht-footer {
  border-top: 1px solid rgba(65, 105, 225, 0.22);
  background: #191970;
}

.ht-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.ht-footer-text {
  margin: 0;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.84);
}

.ht-footer-links {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ht-footer-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  color: rgba(245, 245, 245, 0.90);
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(245, 245, 245, 0.22);
  background: rgba(65, 105, 225, 0.16);
}

.ht-footer-link:hover {
  border-color: rgba(255, 140, 0, 0.55);
  background: rgba(255, 140, 0, 0.18);
  color: #F5F5F5;
}

.ht-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.ht-mobile-overlay-open {
  opacity: 1;
  pointer-events: auto;
}

.ht-mobile-scrim {
  width: 10vw;
  min-width: 44px;
  background: rgba(25, 25, 112, 0.62);
}

.ht-mobile-drawer {
  width: 90vw;
  /* background: #F5F5F5; */

  background: #191970;
  border-left: 1px solid rgba(65, 105, 225, 0.22);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
}

.ht-mobile-drawer-open {
  transform: translateX(0);
}

.ht-mobile-drawer-header {
    /* height: 109px; */
    height: 78px;
    
    border-bottom: 1px solid rgba(140, 190, 255, 0.14);
    display: flex;
    align-items: center;
    padding: 0 22px;
}

.ht-mobile-drawer-title {
    font-family: "Space Grotesk", Inter, system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 14px;
    color: rgba(233, 241, 255, 0.92);
    padding-right: 52px;
    display: none;
}

.ht-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 22px 18px;
  align-items: center;
}

.ht-mobile-nav-link {
  width: min(520px, calc(100% - 8px));
  text-decoration: none;
  text-align: center;
  color: rgba(25, 25, 112, 0.95);
  font-weight: 900;
  font-size: 16px;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(65, 105, 225, 0.22);
  background: rgba(245, 245, 245, 0.92);
}

.ht-mobile-nav-link:hover {
  border-color: rgba(255, 140, 0, 0.55);
  background: rgba(255, 140, 0, 0.16);
  color: #191970;
}

@media (max-width: 860px) {
  .ht-nav {
    display: none;
  }

  .ht-mobile-toggle {
    display: inline-flex;
  }

  .ht-logo-mark {
    width: 70px;
    height: auto;
  }

  .ht-hero-panel {
    flex-direction: column;
    padding: 22px;
  }

  .ht-hero-media {
    width: 100%;
  }

  .ht-hero-title {
    font-size: 40px;
  }

  .ht-grid-3 {
    grid-template-columns: 1fr;
  }

  .ht-teaser-list {
    grid-template-columns: 1fr;
  }
}
