:root {
  color-scheme: dark;
  --ink: #f6f7f4;
  --muted: #a8b0b6;
  --soft: #d7dde0;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #050607;
  --panel: rgba(15, 17, 18, 0.82);
  --panel-solid: #101315;
  --red: #ff3b1f;
  --red-dark: #bf2011;
  --red-soft: #ff6a45;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 59, 31, 0.16), transparent 32%),
    linear-gradient(180deg, #050607 0%, #0d1011 48%, #050607 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(5, 6, 7, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 850;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

nav a:hover,
.nav-cta {
  color: var(--red-soft);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050607;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.97) 0%, rgba(5, 6, 7, 0.82) 34%, rgba(5, 6, 7, 0.14) 72%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.12) 48%, rgba(5, 6, 7, 0.58) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 122px clamp(20px, 5vw, 76px) 124px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 710px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3rem, 7.2vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 59, 31, 0.52);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 16px 36px rgba(255, 59, 31, 0.22);
  font-weight: 850;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(255, 59, 31, 0.3);
}

.offer {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: -58px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 0px);
}

.trust-strip div,
.steps article,
.check-list li {
  background: linear-gradient(180deg, rgba(20, 24, 26, 0.94), rgba(11, 13, 14, 0.94));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 112px;
  padding: 26px;
}

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

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px clamp(20px, 4vw, 0px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(255, 59, 31, 0.5);
  border-radius: 50%;
  background: rgba(255, 59, 31, 0.12);
  color: var(--red-soft);
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.25rem;
}

.steps p,
.split-section p,
.check-list {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
  padding-top: 40px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
}

.final-cta {
  max-width: 1120px;
  margin: 0 auto 42px;
  padding: 64px clamp(24px, 5vw, 70px);
  border: 1px solid rgba(216, 177, 95, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 59, 31, 0.14), transparent 36%),
    linear-gradient(180deg, #151719, #080909);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0.86) 48%, rgba(5, 6, 7, 0.2) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.45) 0%, rgba(5, 6, 7, 0) 100%);
  }

  .hero-content {
    padding: 330px 20px 76px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .trust-strip,
  .steps,
  .split-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .section {
    padding-top: 70px;
  }

  .steps article {
    min-height: 220px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    align-items: stretch;
  }

  .primary-button {
    width: 100%;
    min-height: 58px;
    text-align: center;
  }

  .offer {
    max-width: none;
  }
}
