:root {
  --color-bg: #141414;
  --color-white: #ffffff;
  --color-orange: #ff6816;
  --color-orange-dark: #cc280c;
  --font-display: 'Unbounded', 'Golos Text', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-text: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  overflow-x: hidden;
}

body {
  min-height: 100%;
}

.stage-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-text);
}

.stage--desktop {
  width: 1440px;
  height: 900px;
}

.stage--mobile {
  width: 390px;
  height: 1105px;
  display: none;
}

/* Below 900px the 1440-wide desktop composition no longer fits legibly;
   switch to the dedicated 390-wide mobile composition instead. */
@media (max-width: 899px) {
  .stage--desktop {
    display: none;
  }

  .stage--mobile {
    display: block;
  }
}

/* ---------- Background visual ---------- */

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 54.111%,
    rgba(0, 0, 0, 0.2) 81%
  );
  pointer-events: none;
}

/* ---------- Header logo ---------- */

.site-logo {
  position: absolute;
  left: 50px;
  top: 42px;
  width: 127px;
  height: 23.384px;
  display: block;
}

.site-logo__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 130.387px;
  height: 10.632px;
  display: block;
}

.site-logo__sub {
  position: absolute;
  left: 35.213px;
  top: 15.753px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 6.05px;
  line-height: 1.27;
  letter-spacing: 5.687px;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

/* ---------- Header CTA pill ---------- */

.header-cta {
  position: absolute;
  left: 1166px;
  top: 32px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:focus-visible,
.main-cta__button:focus-visible,
.site-logo:focus-visible,
.badge:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* ---------- Audit label block ---------- */

.audit-label {
  position: absolute;
  left: 78px;
  top: 582px;
  width: 257px;
  margin: 0;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.28px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
}

.audit-label__accent {
  color: var(--color-orange);
  font-weight: 600;
}

.audit-label__strong {
  font-weight: 700;
}

.audit-label__regular {
  font-weight: 400;
}

.audit-arc {
  position: absolute;
  top: 578px;
  width: 8.834px;
  height: 58px;
  display: block;
}

.audit-arc--left {
  left: 50px;
}

.audit-arc--right {
  left: 360.834px;
  transform: scaleX(-1);
}

/* ---------- Right column ---------- */

.right-col {
  position: absolute;
  left: 930px;
  top: 659px;
  width: 421px;
}

.right-col__desc {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: var(--color-white);
}

.badges {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.badge {
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  white-space: nowrap;
}

.stats {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.stat__value {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.36px;
  color: var(--color-orange);
}

.stat__label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.28px;
  color: var(--color-white);
  white-space: nowrap;
}

/* ---------- Main CTA row ---------- */

.main-cta {
  position: absolute;
  left: 930px;
  top: 815px;
  width: 460px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-cta__button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.main-cta__caption {
  margin: 0;
  width: 141px;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.28px;
  color: var(--color-white);
}

/* ---------- Headline ---------- */

.headline {
  position: absolute;
  left: 50px;
  top: 695px;
  width: 707px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40.938px;
  line-height: 1;
  letter-spacing: -0.8188px;
  text-transform: uppercase;
  color: var(--color-white);
}

.headline__script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 45.495px;
  color: var(--color-orange);
}

/* =====================================================================
   Mobile stage (390 x 1105) — node 798:2641
   ===================================================================== */

.m-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.m-hero-bg img {
  position: absolute;
  left: -0.43%;
  top: -12.24%;
  width: 100.5%;
  height: 112.2%;
  max-width: none;
  display: block;
}

.m-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 3.982%,
    rgba(0, 0, 0, 0.2) 61.584%
  );
  pointer-events: none;
}

/* ---------- Header logo ---------- */

.m-logo {
  position: absolute;
  left: 16px;
  top: 46px;
  width: 90px;
  height: 16.571px;
  display: block;
}

.m-logo__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 92.4px;
  height: 7.534px;
  display: block;
}

.m-logo__sub {
  position: absolute;
  left: 24.63px;
  top: 67.37%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.29px;
  line-height: 1.27;
  letter-spacing: 4.0326px;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

/* ---------- Header CTA pill ---------- */

.m-header-cta {
  position: absolute;
  left: 178px;
  top: 32px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.m-header-cta:focus-visible,
.m-cta__button:focus-visible,
.m-logo:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* ---------- Audit label block ---------- */

.m-audit-label {
  position: absolute;
  left: 68px;
  top: 134px;
  width: 257px;
  margin: 0;
  font-family: var(--font-text);
  font-size: 12px;
  line-height: normal;
  letter-spacing: -0.24px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
}

.m-audit-arc {
  position: absolute;
  top: 130px;
  width: 8.834px;
  height: 58px;
  display: block;
}

.m-audit-arc--left {
  left: 40px;
}

.m-audit-arc--right {
  left: 342px;
  transform: scaleX(-1);
}

/* ---------- Headline ---------- */

.m-headline {
  position: absolute;
  left: 16px;
  top: 559px;
  width: 332px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--color-white);
}

.m-headline__script {
  font-size: 30px;
  letter-spacing: -0.6px;
}

/* ---------- Right column ---------- */

.m-right-col {
  position: absolute;
  left: 16px;
  top: 730px;
  width: 360px;
}

.m-right-col__desc {
  margin: 0 0 16px;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: var(--color-white);
}

.m-badges {
  margin: 0 0 24px;
  flex-wrap: wrap;
  row-gap: 9px;
}

.m-stats {
  margin: 0;
  flex-wrap: wrap;
  column-gap: 17px;
  row-gap: 7px;
}

/* ---------- Main CTA ---------- */

.m-cta {
  position: absolute;
  left: 16px;
  top: 1002px;
  width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.m-cta__button {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.m-cta__caption {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.28px;
  color: var(--color-white);
}
