:root {
  --accent: #1498ff;
  --accent-deep: #005fbb;
  --accent-dark: #03172e;
  --gold: #e5c747;
  --white: #ffffff;
  --text: #a9a9a9;
  --muted: #696969;
  --black: #050505;
  --panel: #111111;
  --max: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  color: var(--white);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(20, 152, 255, 0.12), transparent 20rem),
    linear-gradient(90deg, rgba(12, 12, 12, 0.98), #000 24%, #000 76%, rgba(12, 12, 12, 0.98));
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0 45%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
}

.hero::before {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 0;
  width: 380px;
  height: 640px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 50%, #000 96%),
    linear-gradient(180deg, transparent 70%, #000 100%),
    url("assets/man-background.png") left top / 380px auto no-repeat;
  content: "";
  opacity: 0.76;
}

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

img,
svg {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 152, 255, 0.78);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 34px 0 34px;
  text-align: center;
}

.eyebrow,
h1,
.cta,
.site-footer nav {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 18px 6px;
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(20, 152, 255, 0.18);
  box-shadow: 0 0 22px rgba(20, 152, 255, 0.24);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 3.5px;
}

h1 {
  width: min(100%, 760px);
  margin: 0 auto;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.68);
}

h1 span,
h1 strong {
  display: block;
}

h1 .headline-kicker {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 48px);
}

h1 strong {
  margin-top: 7px;
  color: var(--white);
  font-size: clamp(50px, 7.7vw, 78px);
  font-weight: 400;
  white-space: normal;
  text-shadow: 0 0 24px rgba(20, 152, 255, 0.34);
}

h1 strong em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  width: min(100%, 545px);
  margin: 25px auto 0;
  color: #d3d3d3;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.page {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.video-section {
  padding-top: 34px;
  text-align: center;
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(100%, 720px);
  margin: 0 auto;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: #060606;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 34px rgba(20, 152, 255, 0.42);
  line-height: 0;
  cursor: pointer;
}

.video-frame img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(68px, 12vw, 88px);
  height: clamp(68px, 12vw, 88px);
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 35px rgba(20, 152, 255, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.play-button svg {
  width: 38%;
  fill: currentColor;
  transform: translateX(7%);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 450px);
  min-height: 62px;
  margin: 30px auto 0;
  padding: 16px 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 42px rgba(20, 152, 255, 0.27);
  font-size: clamp(20px, 4vw, 27px);
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

.cta svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #898989;
  font-size: 12px;
  font-weight: 400;
}

.lock {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 8px;
  color: #8a853d;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.lock::before {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
  transform: translateX(-50%);
}

.copy {
  width: min(100%, 640px);
  margin: 0 auto;
  padding-top: 37px;
}

.copy p {
  margin: 0 0 19px;
  color: #c6c6c6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.76;
}

.copy strong {
  color: var(--white);
  font-weight: 800;
}

.copy .accent,
.accent-center {
  color: var(--accent);
}

mark {
  color: var(--gold);
  background: transparent;
  font-weight: 800;
}

.callout {
  margin: 23px 0 24px;
  padding: 21px 25px 22px;
  color: #d8d8d8;
  border-left: 4px solid #d4a713;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(3, 23, 46, 0.82), rgba(14, 19, 24, 0.92));
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
}

.accent-center,
.white-center {
  width: min(100%, 540px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.accent-center {
  font-weight: 800;
}

.white-center {
  color: var(--white) !important;
  font-weight: 800;
}

.bottom-cta {
  padding: 22px 0 38px;
  text-align: center;
}

.bottom-cta .cta {
  margin-top: 0;
}

.cta-wide {
  width: min(100%, 455px);
}

.site-footer {
  padding: 24px 20px 36px;
  text-align: center;
  border-top: 1px solid rgba(20, 152, 255, 0.5);
  background: rgba(0, 0, 0, 0.74);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-bottom: 24px;
  color: #5d5d5d;
  font-size: 12px;
  letter-spacing: 2px;
}

.site-footer p {
  width: min(100%, 620px);
  margin: 0 auto 15px;
  color: #3f3f3f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .hero::before {
    top: 14px;
    left: 0;
    width: 220px;
    height: 520px;
    background-size: 220px auto;
    opacity: 0.26;
  }

  .hero-inner {
    padding: 28px 0 30px;
  }

  .eyebrow {
    margin-bottom: 24px;
    padding: 8px 13px 7px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  h1 .headline-kicker {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  h1 strong {
    font-size: clamp(42px, 11.5vw, 58px);
    white-space: normal;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .video-section {
    padding-top: 24px;
  }

  .cta {
    min-height: 62px;
    margin-top: 28px;
    padding: 16px 18px;
  }

  .copy {
    padding-top: 34px;
  }

  .copy p,
  .callout {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .page,
  .hero-inner {
    width: min(100% - 24px, var(--max));
  }

  h1 .headline-kicker {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  h1 strong {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .trust-row {
    flex-wrap: wrap;
    font-size: 11px;
  }

  .cta {
    gap: 9px;
    font-size: 20px;
  }

  .site-footer nav {
    gap: 28px;
  }
}
