:root {
  --hitw-bg: #07111F;
  --hitw-text: rgba(255, 255, 255, 0.92);
  --hitw-muted: rgba(255, 255, 255, 0.70);
  --hitw-border: rgba(255, 255, 255, 0.14);
  --hitw-surface: rgba(10, 18, 32, 0.42);
  --hitw-surface-2: rgba(10, 18, 32, 0.55);

  --hitw-blue: #50A5FF;
  --hitw-orange: #FFAA5A;
  --hitw-purple: #9673FF;
  --hitw-green: #74D6B3;
  --hitw-red: #FF6B6B;
}

.hitw-body {
  background: var(--hitw-bg);
  color: var(--hitw-text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.hitw-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(80, 165, 255, 0.14), rgba(7, 17, 31, 0) 70%),
    radial-gradient(900px 520px at 82% 18%, rgba(150, 115, 255, 0.12), rgba(7, 17, 31, 0) 72%),
    radial-gradient(900px 520px at 50% 92%, rgba(255, 170, 90, 0.10), rgba(7, 17, 31, 0) 68%),
    linear-gradient(180deg, rgba(8, 18, 34, 0.94), rgba(7, 17, 31, 1));
}

/* Header: match dark-page glass treatment */
.hitw-hero {
  --block-background: transparent;
  background: rgba(3, 10, 20, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.hitw-hero .hero-nav__logo {
  filter: brightness(0) invert(1);
}

.hitw-hero .hero-nav__link {
  color: #ffffff;
  opacity: 0.9;
}

.hitw-hero .hero-nav__link:hover,
.hitw-hero .hero-nav__link:focus {
  color: #ffffff;
  opacity: 1;
}

.hitw-hero .hero-nav__cta {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.40);
  color: rgba(255, 255, 255, 0.96);
}

.hitw-hero .hero-nav__cta:hover,
.hitw-hero .hero-nav__cta:focus {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
}

.hitw-nav__active {
  opacity: 1 !important;
  color: rgba(255, 255, 255, 0.98) !important;
  position: relative;
}

.hitw-nav__active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(80, 165, 255, 0.70);
}

.hitw-main {
  width: 100%;
}

.hitw-shell {
  width: 100%;
  max-width: 1400px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hitw-shell {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.hitw-section {
  padding: 96px 0;
}

@media (min-width: 992px) {
  .hitw-section {
    padding: 120px 0;
  }
}

.hitw-alt {
  background: rgba(10, 18, 32, 0.14);
}

.hitw-relationship {
  background: rgba(10, 18, 32, 0.24);
}

/* Reveal */
.hitw-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hitw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hitw-reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* Typography */

.hitw-eyebrow,
.hitw-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 18, 32, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
}

.hitw-eyebrow {
  margin-bottom: 18px;
}

.hitw-kicker {
  margin-bottom: 12px;
}

.hitw-h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 16px;
}

.hitw-h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.97);
  margin: 0 0 14px;
}

.hitw-lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--hitw-muted);
  margin: 0;
  max-width: 58ch;
}

.hitw-bodytext {
  color: var(--hitw-muted);
  line-height: 1.75;
  margin: 0 0 12px;
  max-width: 62ch;
}

.hitw-center {
  text-align: center;
}

.hitw-max {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */

.hitw-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hitw-actions--center {
  justify-content: center;
}

.hitw-btn-primary {
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(80, 165, 255, 0.40);
  background: rgba(80, 165, 255, 0.20);
  color: rgba(255, 255, 255, 0.98);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.hitw-btn-primary:hover {
  transform: translateY(-1px);
  background: rgba(80, 165, 255, 0.26);
  border-color: rgba(80, 165, 255, 0.52);
  color: rgba(255, 255, 255, 0.98);
}

.hitw-btn-secondary {
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 18, 32, 0.22);
  color: rgba(255, 255, 255, 0.92);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.hitw-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(10, 18, 32, 0.32);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.98);
}

/* Hero */

.hitw-hero2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .hitw-hero2__grid {
    grid-template-columns: 1fr 1.12fr;
    gap: 56px;
    align-items: center;
  }
}

/* Premium placeholders */

.hitw-frame {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(650px 380px at 30% 25%, rgba(80, 165, 255, 0.12), rgba(10, 18, 32, 0.10) 62%),
    radial-gradient(650px 380px at 70% 55%, rgba(150, 115, 255, 0.10), rgba(10, 18, 32, 0.06) 68%),
    rgba(10, 18, 32, 0.28);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.45),
    0 0 90px rgba(80, 165, 255, 0.10);
  overflow: hidden;
  min-height: 360px;
  backdrop-filter: blur(10px);
}

.hitw-frame--tall {
  min-height: 420px;
}

@media (min-width: 992px) {
  .hitw-frame {
    min-height: 520px;
  }
  .hitw-frame--tall {
    min-height: 560px;
  }
}

.hitw-frame__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 18, 32, 0.28);
}

.hitw-frame__title {
  margin-left: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.80);
}

.hitw-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.95;
}

.hitw-frame__dot--red { background: rgba(255, 107, 107, 0.95); }
.hitw-frame__dot--amber { background: rgba(255, 170, 90, 0.95); }
.hitw-frame__dot--green { background: rgba(116, 214, 179, 0.95); }
.hitw-frame__dot--blue { background: rgba(80, 165, 255, 0.95); }
.hitw-frame__dot--purple { background: rgba(150, 115, 255, 0.95); }
.hitw-frame__dot--orange { background: rgba(255, 170, 90, 0.95); }

.hitw-frame__body {
  padding: 18px;
}

.hitw-frame__placeholder {
  height: 100%;
  min-height: 260px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(10, 18, 32, 0.18);
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  letter-spacing: 0.02em;
}

/* Flow */

.hitw-sectionhead {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.hitw-flow__rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 992px) {
  .hitw-flow__rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
}

.hitw-flow__line {
  display: none;
}

@media (min-width: 992px) {
  .hitw-flow__line {
    display: block;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 44px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
      rgba(80, 165, 255, 0.0),
      rgba(80, 165, 255, 0.65),
      rgba(255, 170, 90, 0.55),
      rgba(150, 115, 255, 0.55),
      rgba(116, 214, 179, 0.55),
      rgba(80, 165, 255, 0.0)
    );
    opacity: 0.55;
    background-size: 220% 100%;
    animation: hitwLine 8.5s linear infinite;
  }
}

@keyframes hitwLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hitw-flow__line {
    animation: none;
  }
}

.hitw-step {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.46), rgba(10, 18, 32, 0.24));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 18px 16px;
  transition: transform 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(10px);
}

.hitw-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.20);
}

.hitw-step__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 18, 32, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 10px;
  box-shadow: 0 0 0 1px rgba(80, 165, 255, 0.08), 0 0 70px rgba(80, 165, 255, 0.06);
}

.hitw-step__icon svg {
  width: 22px;
  height: 22px;
}

.hitw-step__num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 8px;
}

.hitw-step__title {
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 8px;
}

.hitw-step__text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

/* Split sections */

.hitw-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .hitw-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  .hitw-split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hitw-split--reverse .hitw-split__visual { order: 1; }
  .hitw-split--reverse .hitw-split__text { order: 2; }
}

.hitw-stepcap {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 18, 32, 0.20);
}

.hitw-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.hitw-list li {
  padding: 7px 0;
  line-height: 1.55;
  position: relative;
  padding-left: 18px;
}

.hitw-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(80, 165, 255, 0.80);
  opacity: 0.9;
}

.hitw-list--two {
  columns: 1;
  column-gap: 24px;
}

@media (min-width: 992px) {
  .hitw-list--two {
    columns: 2;
  }
  .hitw-list--two li {
    break-inside: avoid;
  }
}

.hitw-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

@media (min-width: 992px) {
  .hitw-checks {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.hitw-check {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 32, 0.18);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
}

/* Relationship pillars */

.hitw-rel__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hitw-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

@media (min-width: 992px) {
  .hitw-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.hitw-pillar {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 18, 32, 0.20);
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.hitw-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
}

.hitw-pillar__title {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hitw-pillar__text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* Footer legibility */

.hitw-body .block-44 {
  background: transparent;
}

.hitw-body .block-44__divider {
  border-color: rgba(255, 255, 255, 0.16);
}

.hitw-body .block-44__copyrights {
  color: rgba(255, 255, 255, 0.72);
}
