:root {
  color-scheme: dark;
  --bg: #0b0f15;
  --panel: rgba(18, 23, 32, 0.72);
  --panel-solid: #151b25;
  --text: #fff7ec;
  --muted: #c8d0db;
  --muted-soft: #8e99a8;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f5ad33;
  --accent-hover: #ffc154;
  --ink: #14100a;
  --surface: #f4efe7;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
}

.brand,
.top-action {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.brand {
  gap: 10px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
}

.top-action {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 15, 21, 0.72);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 112px 0 44px;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image::before,
.hero__image::after {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
}

.hero__image::before {
  background:
    linear-gradient(90deg, rgba(11, 15, 21, 0.96) 0%, rgba(11, 15, 21, 0.76) 45%, rgba(11, 15, 21, 0.34) 100%),
    linear-gradient(0deg, rgba(11, 15, 21, 1) 0%, rgba(11, 15, 21, 0) 42%);
}

.hero__image::after {
  background: linear-gradient(180deg, rgba(11, 15, 21, 0.78) 0%, rgba(11, 15, 21, 0) 32%);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.04);
}

.hero__content,
.offer-strip,
.footer {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 1140px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: #e5eaf1;
  font-size: 20px;
  line-height: 1.48;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(245, 173, 51, 0.25);
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.main-cta:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
  box-shadow: 0 26px 54px rgba(245, 173, 51, 0.3);
}

.main-cta--dark {
  background: var(--panel-solid);
  color: var(--text);
  box-shadow: none;
}

.main-cta--dark:hover {
  background: #202836;
  box-shadow: none;
}

.cta-note {
  color: var(--muted);
  font-size: 14px;
}

.proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin-top: 34px;
}

.proof {
  min-height: 90px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(14px);
}

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

.proof strong {
  margin-bottom: 8px;
  font-size: 23px;
}

.proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.offer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(20, 16, 10, 0.12);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.offer-strip .eyebrow {
  color: #9d6409;
}

.offer-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
}

.offer-strip p {
  max-width: 650px;
  margin-bottom: 0;
  color: #596271;
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  color: var(--muted-soft);
  font-size: 13px;
}

.sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  .top-action {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 96px 0 28px;
  }

  .hero__image::before {
    background:
      linear-gradient(90deg, rgba(11, 15, 21, 0.96) 0%, rgba(11, 15, 21, 0.78) 100%),
      linear-gradient(0deg, rgba(11, 15, 21, 1) 0%, rgba(11, 15, 21, 0) 48%);
  }

  h1 {
    max-width: 100%;
    font-size: 39px;
    line-height: 0.98;
  }

  .lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

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

  .main-cta {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .proofs {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .proof {
    min-height: 74px;
  }

  .offer-strip,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-strip {
    margin-bottom: 78px;
    padding: 22px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.has-sticky-cta .sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
    font-weight: 950;
  }
}
