:root {
  --bg: #0d0d0f;
  --panel: #171719;
  --text: #ffffff;
  --muted: #b8b8c3;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff0033;
  --red-dark: #c40028;
  --white-soft: #f5f5f7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 0, 51, 0.2), transparent 26rem),
    linear-gradient(180deg, #111113 0%, var(--bg) 45%, #080809 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(13, 13, 15, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 900;
}

.brand-mark {
  width: 2.25rem;
  height: 1.55rem;
  border-radius: 0.45rem;
  background: var(--red);
  position: relative;
  box-shadow: 0 0 24px rgba(255, 0, 51, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-left: 0.48rem solid #fff;
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
}

.site-nav {
  gap: 0.35rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 1.1rem;
  height: 0.12rem;
  margin: 0.25rem auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 4.8rem);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
}

.hero-content {
  width: min(100%, 82rem);
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: 100%;
  margin: 0 auto 1.1rem;
  font-size: clamp(2.4rem, 6.3vw, 6.5rem);
  line-height: 0.9;
  font-weight: 900;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.hero-text,
.intro p,
.contact p,
.service-card p,
.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 48rem;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 4rem);
  width: min(100%, 48rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.45rem;
  font-weight: 900;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 0, 51, 0.32);
}

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

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-media {
  position: relative;
  width: min(100%, 48rem);
  min-height: clamp(18rem, 41vw, 30rem);
}

.video-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 44rem);
  aspect-ratio: 16 / 10;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 32%),
    linear-gradient(155deg, #25252a, #0b0b0c 70%);
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 3.9rem 1.1rem 3.4rem;
  background:
    linear-gradient(90deg, rgba(255, 0, 51, 0.96) 0 18%, transparent 18% 22%, rgba(255, 255, 255, 0.13) 22% 100%),
    repeating-linear-gradient(180deg, transparent 0 2.2rem, rgba(255, 255, 255, 0.055) 2.2rem 2.32rem);
  border-radius: 0.5rem;
}

.video-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem;
}

.video-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.2rem;
  height: 5.2rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 44px rgba(255, 0, 51, 0.5);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-left: 1.25rem solid #fff;
  border-top: 0.82rem solid transparent;
  border-bottom: 0.82rem solid transparent;
}

.video-timeline {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.video-timeline span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
}

.metric-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  max-width: 13rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(23, 23, 25, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.metric-card strong {
  font-size: 2rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.metric-card-one {
  left: -6rem;
  top: 3rem;
}

.metric-card-two {
  right: -2rem;
  bottom: 2.2rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 16rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, var(--panel), rgba(23, 23, 25, 0.72));
}

.card-icon {
  display: inline-flex;
  margin-bottom: 2.6rem;
  color: var(--red);
  font-weight: 900;
}

.process {
  background: var(--white-soft);
  color: #111113;
}

.process .timeline p {
  color: #595965;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 0.55rem;
  background: #d8d8df;
}

.timeline div {
  padding: 1.35rem;
  background: #fff;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 51, 0.2), transparent 42%),
    var(--panel);
}

.contact div {
  max-width: 44rem;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .metric-card-one {
    left: 0;
    top: 0;
  }

  .metric-card-two {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 880px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: #151518;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .hero {
    padding-top: 2.5rem;
  }

  .hero-media {
    min-height: 21rem;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 13rem;
    line-height: 1.15;
  }

  h1 {
    font-size: clamp(1.55rem, 8.8vw, 2.8rem);
  }

  .hero-media {
    min-height: 18rem;
  }

  .metric-card {
    max-width: 10.5rem;
    padding: 0.8rem;
  }

  .metric-card strong {
    font-size: 1.55rem;
  }

  .play-button {
    width: 4rem;
    height: 4rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
