:root {
  --black: #030404;
  --white: #ffffff;
  --teal: #0085CA;
  --red: #C8102E;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 62px);
  background: rgba(0, 0, 0, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 38px;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a,
.call-button,
.button {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 12px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid rgba(53, 184, 196, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.call-button {
  border-color: var(--red);
}

.call-button img,
.button img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: #050606;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 78% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.28) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 28%, rgba(0, 0, 0, 0.38) 56%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.96;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.08) contrast(1.04) brightness(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 48px));
  padding: 150px 0 76px;
  margin-left: clamp(24px, 6vw, 92px);
}

h1 {
  width: min(600px, 100%);
  margin: 0 0 26px;
  font-size: clamp(68px, 9.1vw, 126px);
  font-weight: 400;
  line-height: 0.9;
}

.block-word {
  display: block;
  width: fit-content;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transform-origin: left center;
}

.results-word {
  transform: scaleX(0.99);
}

.through-word {
  margin-top: 0.055em;
  font-size: 0.87em;
  transform: scaleX(0.91);
}

.instinct-word {
  display: block;
  width: 100%;
  margin-top: 0.015em;
  line-height: 0;
}

.instinct-word img {
  width: 100%;
  height: auto;
}

.hero-content p {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(242, 245, 245, 0.92);
  font-size: clamp(17px, 1.72vw, 20px);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
  color: rgba(242, 245, 245, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-credentials a {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.hero-credentials a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.button.primary {
  background: var(--red);
}

.button.outline {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.46);
}

.proof-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0 clamp(24px, 5vw, 86px);
  overflow: hidden;
  background: #050606;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-strip a {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 118px;
  padding: 24px clamp(20px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: normal;
  border: 0 !important;
}

.proof-strip a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -2px;
  width: 1px;
  height: calc(100% - 48px);
  background: rgba(255, 255, 255, 0.16);
}

.proof-strip img {
  width: clamp(36px, 3vw, 50px);
  flex: 0 0 auto;
}

.proof-strip span,
.proof-strip strong {
  display: block;
}

.proof-strip span {
  max-width: 300px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
}

.proof-strip strong {
  color: #f7fbfb;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: clamp(58px, 7vw, 80px) clamp(24px, 4vw, 64px);
}

.services,
.feature-section {
  color: #070808;
  background: #f3f3f1;
}

.section-title {
  margin-bottom: 34px;
}

.section-title h2,
.why-copy h2,
.feature-copy h2,
.cta-content h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(36px, 4.2vw, 48px);
}

.section-title span,
.red-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  background: var(--red);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #030404;
  border-radius: 3px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.service-photo {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  margin: -38px auto 18px;
  object-fit: contain;
}

.service-body {
  min-height: 206px;
  padding: 0 44px 28px;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-body p {
  margin: 0 0 26px;
  color: #f4f7f7;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.learn-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.learn-link::after {
  content: " ->";
}

.red-link {
  color: var(--red);
}

.why-band {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 6vw, 72px) clamp(24px, 4.5vw, 72px);
  color: var(--white);
  background: #030404;
}

.why-copy p {
  color: #f0f4f4;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid article {
  min-height: 150px;
  padding: 8px 28px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.why-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.why-grid h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: #f4f7f7;
  font-size: 13px;
  line-height: 1.45;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 7vw, 78px) clamp(24px, 4.5vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 330px;
}

.feature-copy p {
  max-width: 340px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}

.feature-copy .button {
  margin-top: 16px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: #070808;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.comparison-table > div {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.comparison-table .table-head {
  min-height: 42px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table .dark {
  grid-column: 1;
  grid-row: 1;
  background: #050606;
}

.comparison-table .teal {
  grid-column: 2;
  grid-row: 1;
  background: #0085CA;
}

.comparison-table .table-vs {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  z-index: 2;
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  color: #070808;
  background: #d8d8d6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 216, 214, 0.55);
  font-size: 10px;
  font-weight: 900;
}

.table-left {
  grid-column: 1;
}

.table-right {
  grid-column: 2;
}

.table-row-1 {
  grid-row: 2;
}

.table-row-2 {
  grid-row: 3;
}

.table-row-3 {
  grid-row: 4;
}

.table-row-4 {
  grid-row: 5;
}

.table-mark {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
  z-index: 2;
  width: 76px;
  min-height: 76px;
  padding: 0;
  background: transparent;
}

.table-mark img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.table-mark-1 {
  grid-row: 2;
}

.table-mark-2 {
  grid-row: 3;
}

.table-mark-3 {
  grid-row: 4;
}

.table-mark-4 {
  grid-row: 5;
}

.cta-section {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  color: var(--white);
  background: #030404;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #030404 0%, rgba(3, 4, 4, 0.94) 42%, rgba(3, 4, 4, 0.2) 100%);
}

.cta-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 56%;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  padding: 52px 0 46px;
  margin-left: clamp(24px, 4.5vw, 72px);
}

.cta-content h2 {
  margin-bottom: 6px;
}

.cta-content p {
  margin: 0 0 26px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  min-height: 44px;
  padding: 12px clamp(24px, 4vw, 62px);
  color: var(--white);
  background: #050606;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.site-footer span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 24px;
  vertical-align: middle;
  background: var(--red);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .proof-strip {
    justify-content: flex-start;
    grid-template-columns: 1fr !important;
    padding-inline: clamp(20px, 6vw, 44px);
  }

  .proof-strip a {
    min-height: 0;
    padding: 22px 0;
  }

  .proof-strip a:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .service-grid,
  .why-band,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding-top: 190px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .call-button,
  .button {
    width: 100%;
  }

  .proof-strip {
    justify-content: flex-start;
    padding-inline: 14px;
    grid-template-columns: 1fr !important;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .comparison-table > div {
    min-height: 50px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .table-mark img {
    width: 64px;
    height: 64px;
  }

  .cta-media {
    width: 100%;
    opacity: 0.44;
  }

  .proof-strip a {
    min-height: 0;
    padding: 20px 6px;
    border: 0;
  }
}
