.hp-hero {
  --hp-ink: #102044;
  --hp-muted: #647796;
  --hp-blue: #2378ee;
  --hp-blue-dark: #155fc9;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  color: var(--hp-ink);
  background:
    radial-gradient(circle at 78% 42%, rgba(73, 145, 255, 0.20), transparent 31%),
    linear-gradient(145deg, #fbfdff 0%, #f2f7ff 58%, #e6f0ff 100%);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@supports (min-height: 100svh) {
  .hp-hero { min-height: 100svh; }
}

.hp-hero,
.hp-hero * {
  box-sizing: border-box;
}

.hp-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(780px, 60vw);
  aspect-ratio: 1;
  right: -12vw;
  top: 15%;
  border: 1px solid rgba(35, 120, 238, 0.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(35, 120, 238, 0.025),
    0 0 0 140px rgba(35, 120, 238, 0.016);
}

.hp-nav {
  position: relative;
  z-index: 5;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--hp-ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hp-brand img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 14px rgba(26, 84, 166, 0.20));
}

.hp-nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hp-nav-link {
  color: #536784;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hp-nav-link:hover { color: var(--hp-blue); }

.hp-nav-cta,
.hp-button {
  appearance: none;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hp-nav-cta {
  padding: 12px 19px;
  border-radius: 12px;
  color: #fff;
  background: var(--hp-blue);
  box-shadow: 0 11px 22px rgba(35, 120, 238, 0.22);
  font-size: 14px;
  font-weight: 800;
}

.hp-nav-cta:hover,
.hp-button.hp-primary:hover {
  background: var(--hp-blue-dark);
  transform: translateY(-1px);
}

.hp-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 64px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 44px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
}

.hp-copy {
  min-width: 0;
  max-width: 650px;
}

.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--hp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hp-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 9px;
  background: var(--hp-blue);
}

.hp-hero h1 {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hp-hero h1 span { color: var(--hp-blue); }

.hp-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--hp-muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.hp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 13px;
  color: var(--hp-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px #d8e4f3, 0 10px 22px rgba(43, 76, 126, 0.08);
  font-size: 15px;
  font-weight: 800;
}

.hp-button.hp-primary {
  color: #fff;
  background: var(--hp-blue);
  box-shadow: 0 14px 28px rgba(35, 120, 238, 0.25);
}

.hp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #7184a0;
  font-size: 13px;
  font-weight: 700;
}

.hp-proof span { white-space: nowrap; }

.hp-proof b {
  margin-right: 5px;
  color: #159566;
  font-size: 16px;
}

.hp-product-window {
  position: relative;
  min-width: 0;
  width: 100%;
  margin: 0;
}

.hp-window-bar,
.hp-video-controls {
  display: none;
}

.hp-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(174, 198, 228, 0.72);
  border-radius: 28px;
  background: #07142d;
  box-shadow:
    0 32px 70px rgba(31, 72, 139, 0.23),
    0 3px 14px rgba(31, 72, 139, 0.09);
}

.hp-hero-video {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  transform: none;
  background: #07142d;
}

@media (max-width: 1080px) {
  .hp-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
    gap: 38px;
  }

  .hp-hero h1 { font-size: clamp(48px, 5.6vw, 68px); }
}

@media (max-width: 860px) {
  .hp-hero { min-height: auto; }

  .hp-nav,
  .hp-hero-grid {
    width: min(680px, calc(100% - 40px));
  }

  .hp-nav { padding: 20px 0; }
  .hp-nav-link { display: none; }

  .hp-hero-grid {
    min-height: 0;
    padding: 54px 0 58px;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .hp-copy { max-width: 650px; }
  .hp-product-window { margin: 0; }
  .hp-video-frame { border-radius: 22px; }
}

@media (max-width: 560px) {
  .hp-nav,
  .hp-hero-grid {
    width: calc(100% - 28px);
  }

  .hp-brand { font-size: 16px; }
  .hp-brand img { width: 36px; height: 36px; }
  .hp-nav-cta { padding: 10px 14px; font-size: 13px; }

  .hp-hero-grid {
    padding: 42px 0 42px;
    gap: 34px;
  }

  .hp-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hp-hero h1 {
    font-size: clamp(39px, 12.5vw, 54px);
    line-height: 1;
  }

  .hp-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hp-button {
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .hp-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-top: 23px;
    font-size: 11px;
  }

  .hp-proof b { font-size: 14px; }
  .hp-video-frame { border-radius: 17px; }
}
