/* HS PRO CSS Foundation
   Reset, design tokens, typography and base document behavior.
   Page-specific styling belongs in /css/pages/. */

:root {
  --hs-red: #d11328;
  --hs-bg: #050505;
  --hs-black: #000000;
  --hs-panel: #101010;
  --hs-text: #ffffff;
  --hs-muted: #a6a6a6;
  --hs-line: rgba(255, 255, 255, 0.12);
  --hs-line-strong: rgba(255, 255, 255, 0.22);
  --hs-footer-text: #d7d7d7;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f7f7f5;
  color: var(--hs-text);
  font-family: "Fira Sans", Inter, Arial, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}





/* Shared series hero */

.page > .hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page > .hero .heroImage,
.page > .hero .heroVideo {
  display: block;
  width: 100%;
  height: auto;
}

.page > .hero .heroOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;

  padding: clamp(28px, 5vw, 58px);

  color: #ffffff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    transparent 100%
  );
}

.page > .hero .heroOverlay .eyebrow {
  margin-bottom: 12px;

  color: var(--hs-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page > .hero .heroOverlay h1 {
  margin: 0 0 12px;

  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.page > .hero .heroOverlay p {
  max-width: 760px;
  margin: 0;

  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.45;
}