:root {
  color-scheme: dark;
  --yellow: #ffc928;
  --yellow-deep: #e9a900;
  --yellow-soft: rgba(255, 201, 40, 0.12);
  --ink: #070806;
  --surface: #11130f;
  --surface-2: #171a14;
  --surface-3: #1d2019;
  --text: #f8f7ef;
  --muted: #a7aa9d;
  --line: rgba(255, 255, 255, 0.09);
  --danger: #ff7068;
  --success: #bbef67;
  --container: 1180px;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 5px 5px;
  content: "";
  pointer-events: none;
  opacity: 0.38;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  padding: 16px 24px;
  border: 1px solid var(--yellow);
  border-radius: 12px;
  background: var(--yellow);
  box-shadow: 0 14px 36px rgba(255, 201, 40, 0.15);
  color: #111208;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.36),
    transparent 38%
  );
  content: "";
  opacity: 0.58;
}

.button > * {
  position: relative;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(255, 201, 40, 0.26);
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button .icon-fill {
  fill: currentColor;
  stroke: none;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.72rem;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: var(--text);
}

.button-outline::before {
  opacity: 0.1;
}
.button-outline:hover {
  border-color: var(--yellow);
  background: var(--yellow-soft);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(7, 8, 6, 0.9), rgba(7, 8, 6, 0.18));
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--yellow);
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}

.brand-type {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.075em;
  line-height: 1;
}
.brand-type strong {
  color: var(--yellow);
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.header-nav a {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 55px;
  background:
    radial-gradient(
      circle at 75% 48%,
      rgba(255, 201, 40, 0.115),
      transparent 31%
    ),
    radial-gradient(
      circle at 18% 32%,
      rgba(255, 201, 40, 0.05),
      transparent 28%
    ),
    linear-gradient(135deg, #080a07 0%, #0b0d09 55%, #060705 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 49.9%,
      rgba(255, 255, 255, 0.035) 50%,
      transparent 50.1%
    ),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 80px;
  content: "";
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    118deg,
    transparent 0 70px,
    rgba(255, 255, 255, 0.013) 71px 72px
  );
  opacity: 0.5;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 201, 40, 0.09);
  border-radius: 50%;
}
.orbit-one {
  width: 560px;
  height: 560px;
  top: 14%;
  right: 3%;
}
.orbit-two {
  width: 720px;
  height: 720px;
  top: 4%;
  right: -3%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-top: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 201, 40, 0.24);
  border-radius: 999px;
  background: rgba(255, 201, 40, 0.06);
  color: var(--yellow);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 201, 40, 0.12);
  animation: blink 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(4.6rem, 7vw, 7.25rem);
  line-height: 0.89;
}
.hero h1 span,
.section-header h2 span,
.final-copy h2 span {
  color: var(--yellow);
}

.hero-text {
  max-width: 580px;
  margin-top: 27px;
  color: #c9cbbc;
  font-size: 1.04rem;
  line-height: 1.75;
}
.hero-text strong {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.button-whatsapp {
  min-width: 284px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  text-decoration: none;
  Strong {
    white-space: nowrap;
    margin: 0 0 5px -35px;
  }
}
.text-link strong {
  color: var(--text);
}
.text-link svg {
  width: 15px;
  height: 15px;
}
.text-link:hover strong {
  color: var(--yellow);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 33px;
}
.avatar-stack {
  display: flex;
  padding-left: 8px;
}
.avatar-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--text);
  font-size: 0.59rem;
  font-weight: 800;
}
.avatar-stack span:nth-child(1) {
  background: #574626;
}
.avatar-stack span:nth-child(2) {
  background: #23433c;
}
.avatar-stack span:nth-child(3) {
  background: #3e3153;
}
.avatar-stack span:last-child {
  background: var(--yellow);
  color: var(--ink);
}
.proof-stars {
  color: var(--yellow);
  font-size: 0.69rem;
  letter-spacing: 2px;
  line-height: 1;
}
.social-proof p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 690px;
}
.visual-halo {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 201, 40, 0.24),
    rgba(255, 201, 40, 0.035) 48%,
    transparent 69%
  );
  filter: blur(2px);
  transform: translateX(-50%);
}
.hero-visual::after {
  position: absolute;
  right: -5%;
  bottom: 0;
  left: -2%;
  z-index: 2;
  height: 27%;
  background: linear-gradient(
    0deg,
    var(--ink),
    rgba(7, 8, 6, 0.72) 38%,
    transparent
  );
  content: "";
}
.hero-visual img {
  position: absolute;
  right: -2%;
  bottom: -3%;
  z-index: 1;
  width: min(100%, 560px);
  height: 680px;
  object-fit: cover;
  object-position: center 16%;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.38));
  animation: chimpFloat 5s ease-in-out infinite;
}

.price-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 165px;
  flex-direction: column;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(20, 22, 16, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}
.price-card-one {
  top: 24%;
  left: 0;
  transform: rotate(-3deg);
}
.price-card-two {
  right: -1%;
  bottom: 28%;
  transform: rotate(3deg);
}
.price-label {
  color: var(--yellow);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.price-card strong {
  margin: 3px 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}
.price-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.scan-line {
  position: absolute;
  top: 14%;
  right: 11%;
  z-index: 5;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: 0 0 14px var(--yellow);
  opacity: 0.55;
  animation: scan 4s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i {
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* Marquees */
.deal-ticker {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 14px 0;
  background: var(--yellow);
  color: var(--ink);
}
.ticker-track,
.stores-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
}
.ticker-group span {
  padding: 0 28px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.ticker-group i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
}

.stores {
  overflow: hidden;
  padding: 35px 0 38px;
  border-bottom: 1px solid var(--line);
  background: #0b0c09;
}
.stores-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}
.stores-heading p {
  color: #5d6057;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.stores-heading span {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.stores-window {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.stores-group {
  display: flex;
  min-width: 100vw;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
}
.stores-group span {
  padding: 0 34px;
  color: #575a51;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s;
}
.stores-group span:hover {
  color: #aaac9e;
}

/* Shared sections */
.section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}
.section-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 57px;
}
.section-header h2,
.comparison-header h2,
.final-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6.25rem);
}
.section-header > p {
  max-width: 430px;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.comparison-header h2 {
  line-height: 1.15;
}
.how {
  background:
    radial-gradient(
      circle at 85% 28%,
      rgba(255, 201, 40, 0.055),
      transparent 26%
    ),
    var(--ink);
}
.how::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 201, 40, 0.16),
    transparent
  );
  content: "";
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.step-card:hover {
  border-color: rgba(255, 201, 40, 0.3);
  background-color: var(--surface-2);
  transform: translateY(-7px);
}
.step-ghost {
  position: absolute;
  top: -14px;
  right: 12px;
  color: rgba(255, 201, 40, 0.045);
  font-family: var(--display);
  font-size: 8.5rem;
  line-height: 1;
}
.step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}
.step-top > span {
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.step-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(255, 201, 40, 0.2);
  border-radius: 12px;
  background: var(--yellow-soft);
  color: var(--yellow);
}
.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.step-card h3 {
  position: relative;
  margin-bottom: 13px;
  font-size: 1.75rem;
}
.step-card p {
  position: relative;
  color: var(--muted);
  font-size: 0.84rem;
}
.card-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.step-card:hover .card-line {
  opacity: 1;
  transform: scaleX(1);
}

.center-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.center-action > span {
  color: #65685f;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

/* Comparison */
.comparison {
  border-block: 1px solid var(--line);
  background: #0b0d0a;
}
.comparison::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 58%,
    rgba(255, 201, 40, 0.07),
    transparent 48%
  );
  content: "";
}
.comparison .container {
  position: relative;
}
.comparison-header {
  margin-bottom: 50px;
  text-align: center;
}
.comparison-grid {
  display: grid;
  max-width: 980px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-inline: auto;
}
.compare-card {
  position: relative;
  padding: 37px 38px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.compare-bad {
  opacity: 0.78;
}
.compare-good {
  border-color: rgba(255, 201, 40, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 201, 40, 0.07), transparent 55%),
    var(--surface-2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
.best-choice {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 7px 13px;
  border-radius: 0 0 8px 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.compare-label {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.compare-label > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 500;
}
.compare-bad .compare-label > span {
  background: rgba(255, 112, 104, 0.1);
  color: var(--danger);
}
.compare-good .compare-label > span {
  background: var(--yellow-soft);
  color: var(--yellow);
}
.compare-label small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.compare-label h3 {
  font-size: 2rem;
}
.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c7c9be;
  font-size: 0.84rem;
}
.compare-card li > span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: none;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 1px;
}
.compare-bad li > span {
  color: var(--danger);
}
.compare-good li > span {
  color: var(--yellow);
}
.compare-note {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #696c64;
  font-size: 0.67rem;
  font-style: italic;
}

/* Testimonials */
.testimonials {
  background:
    radial-gradient(
      circle at 10% 60%,
      rgba(255, 201, 40, 0.04),
      transparent 25%
    ),
    var(--ink);
}
.section-header-centered {
  display: block;
  text-align: center;
}
.section-header-centered > p {
  max-width: 570px;
  margin: 22px auto 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote-card {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}
.quote-card:hover {
  border-color: rgba(255, 201, 40, 0.24);
  transform: translateY(-4px);
}
.quote-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 35px;
  height: 2px;
  background: var(--yellow);
  content: "";
}
.quote-top {
  display: flex;
  align-items: center;
  gap: 11px;
}
.quote-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}
.avatar-yellow {
  background: #755e20;
}
.avatar-green {
  background: #285348;
}
.avatar-purple {
  background: #513c68;
}
.avatar-blue {
  background: #315170;
}
.avatar-red {
  background: #713832;
}
.avatar-orange {
  background: #76512a;
}
.quote-top > div {
  min-width: 0;
}
.quote-top strong,
.quote-top small {
  display: block;
}
.quote-top strong {
  font-size: 0.76rem;
}
.quote-top small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.58rem;
}
.stars {
  margin-left: auto;
  color: var(--yellow);
  font-size: 0.62rem;
  letter-spacing: 1px;
}
.quote-card blockquote {
  margin: 20px 0;
  color: #cecfc6;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.7;
}
.verified {
  margin-top: auto;
  color: #60635a;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(125deg, #0d0f0b, #070806);
}
.final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
}
.final-glow {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 201, 40, 0.13),
    transparent 66%
  );
  transform: translateY(-50%);
}
.final-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}
.final-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 80px 0;
}
.final-copy > p {
  max-width: 470px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.final-actions .button {
  min-width: 210px;
  padding-inline: 20px;
  font-size: 0.7rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  color: #6c6f66;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.link-notice {
  min-height: 0;
  margin-top: 12px !important;
  color: var(--yellow) !important;
  font-size: 0.65rem !important;
}
.link-notice:empty {
  display: none;
}
.final-visual {
  position: relative;
  align-self: end;
  height: 680px;
}
.final-image-wrap {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 110%;
  height: 100%;
  overflow: hidden;
}
.final-image-wrap::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0b0d09 0%, transparent 34%),
    linear-gradient(0deg, #070806, transparent 24%);
  content: "";
}
.final-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 13%;
  filter: saturate(0.88) contrast(1.05);
}
.final-stamp {
  position: absolute;
  right: -8px;
  bottom: 70px;
  z-index: 3;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow:
    0 0 0 4px var(--yellow),
    0 18px 40px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.28;
  text-align: center;
  transform: rotate(9deg);
}

.signoff {
  padding: 42px 24px;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
}
.signoff p {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.signoff strong {
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #060705;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #55584f;
  font-size: 0.58rem;
}
.brand-footer .brand-mark {
  width: 31px;
  height: 31px;
}
.brand-footer .brand-type {
  font-size: 0.9rem;
}

.mobile-dock {
  display: none;
}

/* Progressive reveal: content remains visible without JavaScript */
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes chimpFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(410px);
    opacity: 0.75;
  }
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 130px 0 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    max-width: 690px;
    margin-inline: auto;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(4.3rem, 12vw, 7rem);
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .social-proof {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 660px);
    min-height: 660px;
    margin: 10px auto 0;
  }
  .hero-visual img {
    right: 50%;
    width: 580px;
    transform: translateX(50%);
    animation-name: chimpFloatMobile;
  }
  .price-card-one {
    left: 4%;
  }
  .price-card-two {
    right: 3%;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 90px 0;
  }
  .section-header {
    display: block;
  }
  .section-header > p {
    margin-top: 22px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    min-height: 270px;
  }
  .step-top {
    margin-bottom: 52px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .final-grid {
    grid-template-columns: 1fr;
  }
  .final-copy {
    max-width: 670px;
    margin-inline: auto;
    text-align: center;
  }
  .final-copy > p {
    margin-inline: auto;
  }
  .final-actions,
  .trust-row {
    justify-content: center;
  }
  .final-visual {
    height: 600px;
  }
  .final-image-wrap {
    right: 50%;
    width: min(100%, 630px);
    transform: translateX(50%);
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  @keyframes chimpFloatMobile {
    0%,
    100% {
      transform: translateX(50%) translateY(0);
    }
    50% {
      transform: translateX(50%) translateY(-9px);
    }
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }
  .container {
    width: min(calc(100% - 36px), var(--container));
  }
  .header-inner {
    min-height: 69px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .brand-type {
    font-size: 0.94rem;
  }
  .site-header .button {
    display: none;
  }
  .hero {
    padding-top: 104px;
  }
  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.58rem;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4rem);
  }
  .hero h1 span {
    display: block;
  }
  .hero-text {
    margin-top: 22px;
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 27px;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }
  .text-link {
    font-size: 0.7rem;
  }
  .social-proof {
    margin-top: 26px;
  }
  .social-proof p {
    font-size: 0.62rem;
  }
  .hero-visual {
    min-height: 520px;
    margin-top: 6px;
  }
  .hero-visual img {
    bottom: -2%;
    width: 430px;
    height: 520px;
  }
  .hero-visual::after {
    right: -20%;
    left: -20%;
  }
  .orbit-one {
    width: 380px;
    height: 380px;
    top: auto;
    right: -20%;
    bottom: 5%;
  }
  .orbit-two {
    display: none;
  }
  .price-card {
    width: 132px;
    padding: 12px;
  }
  .price-card strong {
    font-size: 1.35rem;
  }
  .price-card-one {
    top: 26%;
    left: 0;
  }
  .price-card-two {
    right: 0;
    bottom: 23%;
  }
  .scan-line {
    display: none;
  }
  .ticker-group span {
    padding: 0 20px;
    font-size: 0.85rem;
  }
  .stores {
    padding-block: 29px;
  }
  .stores-group span {
    padding-inline: 25px;
    font-size: 1.25rem;
  }
  .section {
    padding: 75px 0;
  }
  .section-header h2,
  .comparison-header h2,
  .final-copy h2 {
    font-size: clamp(2.7rem, 11.5vw, 3.5rem);
  }
  .section-header {
    margin-bottom: 38px;
  }
  .section-header > p {
    font-size: 0.84rem;
  }
  .step-card {
    min-height: 285px;
    padding: 25px;
  }
  .step-top {
    margin-bottom: 52px;
  }
  .center-action .button {
    width: 100%;
    text-align: center;
  }
  .comparison-header {
    margin-bottom: 37px;
  }
  .compare-card {
    padding: 32px 24px 26px;
  }
  .compare-label h3 {
    font-size: 1.7rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .quote-card:nth-child(n + 5) {
    display: none;
  }
  .final-cta {
    min-height: auto;
  }
  .final-grid {
    min-height: auto;
  }
  .final-copy {
    padding: 78px 0 38px;
  }
  .final-actions {
    flex-direction: column;
  }
  .final-actions .button {
    width: 100%;
  }
  .trust-row {
    gap: 8px 14px;
  }
  .final-visual {
    height: 470px;
  }
  .final-image-wrap {
    width: 480px;
  }
  .final-stamp {
    right: 2px;
    bottom: 52px;
    width: 92px;
    height: 92px;
    font-size: 1.1rem;
  }
  .signoff {
    padding: 34px 18px;
  }
  .signoff strong {
    text-decoration-thickness: 3px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(7, 8, 6, 0.87);
    backdrop-filter: blur(14px);
  }
  .mobile-dock .button {
    width: 100%;
    min-height: 53px;
  }
}

@media (max-width: 420px) {
  .hero-grid,
  .hero-copy,
  .hero-actions {
    width: 100%;
    min-width: 0;
  }
  .hero h1 {
    max-width: 100%;
    font-size: 13vw;
  }
  .section-header h2,
  .comparison-header h2,
  .final-copy h2 {
    font-size: 11vw;
  }
  .button {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
