:root {
  --navy: #071724;
  --navy-2: #0d2436;
  --ink: #111820;
  --muted: #5a6672;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --line: #dde5eb;
  --orange: #ff8a00;
  --orange-2: #ffc247;
  --green: #1f7a4d;
  --shadow: 0 24px 70px rgba(11, 24, 36, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.contactbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #06130d;
  color: #ecfff5;
  border-bottom: 1px solid rgba(37, 211, 102, .34);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.contactbar__inner {
  width: min(1120px, calc(100% - 28px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.contactbar__text {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.contactbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: #25d366;
  color: #06130d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .16), 0 8px 18px rgba(37, 211, 102, .18);
}

.contactbar__button:hover {
  background: #35e477;
}

.contactbar__icon {
  width: 20px;
  height: 20px;
  fill: #06130d;
  flex: 0 0 auto;
}

.topbar {
  position: sticky;
  top: 48px;
  z-index: 20;
  background: #b70808;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.topbar__inner {
  width: min(1120px, calc(100% - 28px));
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.topbar__message {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.topbar__timer {
  min-width: 78px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .2);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.topbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  background: #ffd32a;
  color: #17120a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .18);
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.hero {
  position: relative;
  min-height: calc(100vh - 54px);
  max-height: 720px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("assets/hero-energy-bill.png");
  background-size: cover;
  background-position: center right;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 15, 24, .98) 0%, rgba(5, 15, 24, .92) 35%, rgba(5, 15, 24, .55) 62%, rgba(5, 15, 24, .18) 100%),
    linear-gradient(180deg, rgba(5, 15, 24, .12), rgba(5, 15, 24, .75));
}

.hero__content {
  padding: 52px 0 66px;
}

.alert {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--orange-2);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(39px, 5.6vw, 66px);
  line-height: .96;
  font-weight: 900;
}

.hero__lead {
  max-width: 660px;
  margin: 20px 0 0;
  color: #dbe5ec;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #17120a;
  background: linear-gradient(180deg, #ffb02e, var(--orange));
  box-shadow: 0 16px 36px rgba(255, 138, 0, .28), inset 0 -3px 0 rgba(0, 0, 0, .18);
}

.button--dark {
  color: #fff;
  background: var(--navy-2);
  box-shadow: 0 16px 34px rgba(7, 23, 36, .18);
}

.button--large {
  min-height: 64px;
  padding-inline: 34px;
  font-size: 18px;
}

.microproof {
  color: #c7d3dd;
  font-size: 15px;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.section--problem {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.copy-block p,
.narrow p,
.offer__copy p,
.final-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.copy-block p {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.copy-block p:last-child {
  border-bottom: 0;
}

.section--curiosity {
  background: var(--soft);
}

.section--curiosity h2 {
  margin-bottom: 26px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section--contrast {
  background: var(--paper);
}

.section--contrast h2 {
  max-width: 850px;
  margin-bottom: 34px;
}

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

.comparison article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.comparison p,
.muted,
.result-list li {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.comparison__highlight {
  color: #fff;
  background: var(--navy-2) !important;
  border-color: var(--navy-2) !important;
  box-shadow: var(--shadow);
}

.comparison__highlight h3,
.comparison__highlight p {
  color: #fff;
}

.section--results {
  background: var(--navy);
}

.section--objections {
  background: var(--soft);
}

.objections {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.objections .muted {
  margin-top: 20px;
}

.objection-list {
  display: grid;
  gap: 14px;
}

.objection-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 24, 36, .06);
}

.objection-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.objection-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.results {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: start;
}

.section--results h2,
.section--results .muted {
  color: #fff;
}

.section--results .muted {
  margin-top: 22px;
  color: #cbd7df;
}

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

.result-list li {
  position: relative;
  min-height: 78px;
  padding: 22px 22px 22px 58px;
  color: #e6eef4;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.result-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 138, 0, .16);
}

.section--offer-signal {
  background: var(--soft);
}

.offer {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.offer__media {
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer__media-link {
  display: block;
  border-radius: 6px;
  outline-offset: 5px;
  transition: transform .18s ease, filter .18s ease;
}

.offer__media-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.offer__media-link:focus-visible {
  outline: 3px solid var(--orange);
}

.offer__media img {
  width: 100%;
  border-radius: 6px;
}

.offer__copy h2 {
  margin-bottom: 24px;
}

.offer__copy .button {
  margin-top: 8px;
}

.final-cta {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 0, .18), transparent 34%),
    var(--navy);
  color: #fff;
}

.final-cta__inner {
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin: 24px auto 30px;
  color: #d8e2ea;
}

.final-cta .disclaimer {
  margin: 22px auto 0;
  color: #93a7b6;
  font-size: 13px;
  line-height: 1.45;
}

.vsl-player {
  width: min(920px, 100%);
  margin: 34px auto 0;
}

.vsl-player__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #03080c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.vsl-player__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #03080c;
  cursor: pointer;
}

.vsl-player__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: rgba(255, 255, 255, .12);
}

.vsl-player__progress-fill {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0cbf5a, #42ef8f);
  box-shadow: 0 0 22px rgba(66, 239, 143, .42);
  transition: transform .22s linear;
}

.vsl-player__toggle,
.vsl-player__resume {
  appearance: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.vsl-player__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(560px, 100%);
  min-height: 70px;
  margin-top: 18px;
  padding: 0 26px;
  border-radius: 8px;
  color: #07130d;
  background: linear-gradient(180deg, #55f191, #12bf5d);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(18, 191, 93, .26), inset 0 -4px 0 rgba(0, 0, 0, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.vsl-player__toggle:hover,
.vsl-player__resume:hover {
  transform: translateY(-2px);
}

.vsl-player__toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.vsl-player__toggle-icon::before,
.vsl-player__toggle-icon::after {
  content: "";
  position: absolute;
  inset: 0;
}

.vsl-player__toggle-icon::before {
  width: 0;
  height: 0;
  margin: 2px 0 0 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.vsl-player__toggle-icon::after {
  display: none;
}

.vsl-player__toggle-pause,
.vsl-player--playing .vsl-player__toggle-play {
  display: none;
}

.vsl-player--playing .vsl-player__toggle-pause {
  display: inline;
}

.vsl-player--playing .vsl-player__toggle-icon::before,
.vsl-player--playing .vsl-player__toggle-icon::after {
  display: block;
  width: 8px;
  height: 24px;
  margin: 2px 0 0 4px;
  border: 0;
  background: currentColor;
}

.vsl-player--playing .vsl-player__toggle-icon::after {
  left: 14px;
}

.vsl-player__pause-offer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 8, 12, .82);
  backdrop-filter: blur(8px);
}

.vsl-player__pause-offer[hidden] {
  display: none;
}

.vsl-player__pause-card {
  width: min(720px, 100%);
  padding: 30px 34px 28px;
  border: 1px solid rgba(255, 138, 0, .36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0)),
    rgba(7, 23, 36, .95);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.vsl-player__pause-kicker {
  margin: 0 0 10px !important;
  color: var(--orange-2) !important;
  font-size: 13px !important;
  font-weight: 900;
  line-height: 1.25 !important;
  text-transform: uppercase;
}

.vsl-player__pause-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.vsl-player__pause-card p {
  margin: 0 0 14px !important;
  color: #d8e2ea !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.vsl-player__pause-list {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  color: #edf5fb;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  text-align: left;
}

.vsl-player__pause-list li {
  position: relative;
  padding-left: 22px;
}

.vsl-player__pause-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 138, 0, .16);
}

.vsl-player__pause-card .vsl-player__pause-urgency {
  margin-bottom: 20px !important;
  color: #fff4db !important;
  font-weight: 800;
}

.vsl-player__resume {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 26px;
  border-radius: 8px;
  color: #17120a;
  background: linear-gradient(180deg, #ffb02e, var(--orange));
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(255, 138, 0, .32), inset 0 -3px 0 rgba(0, 0, 0, .18);
  animation: vslResumePulse 2.4s ease-in-out infinite;
  transition: transform .18s ease, box-shadow .18s ease;
}

@keyframes vslResumePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 38px rgba(255, 138, 0, .28), inset 0 -3px 0 rgba(0, 0, 0, .18);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 22px 48px rgba(255, 138, 0, .46), inset 0 -3px 0 rgba(0, 0, 0, .18);
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    justify-content: space-between;
  }

  .contactbar__inner {
    justify-content: space-between;
  }

  .contactbar__text {
    text-align: left;
  }

  .topbar__message {
    max-width: 320px;
    text-align: left;
  }

  .hero {
    min-height: calc(100vh - 54px);
    max-height: none;
    align-items: end;
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 15, 24, .45) 0%, rgba(5, 15, 24, .9) 50%, rgba(5, 15, 24, .98) 100%),
      linear-gradient(90deg, rgba(5, 15, 24, .88), rgba(5, 15, 24, .35));
  }

  .hero__content {
    padding-top: 210px;
    padding-bottom: 44px;
  }

  .split,
  .results,
  .offer,
  .objections,
  .comparison {
    grid-template-columns: 1fr;
  }

  .split,
  .results,
  .offer,
  .objections {
    gap: 34px;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .contactbar__inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
  }

  .contactbar__text {
    text-align: center;
    font-size: 12px;
  }

  .contactbar__button {
    width: 100%;
    min-height: 36px;
  }

  .topbar__inner {
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 8px 0;
  }

  .topbar {
    top: 80px;
  }

  .topbar__message {
    max-width: none;
    font-size: 12px;
  }

  .topbar__timer {
    min-width: 70px;
    font-size: 17px;
  }

  .topbar__button {
    grid-column: 1 / -1;
    min-height: 30px;
    width: 100%;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: calc(100vh - 146px);
  }

  h1 {
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.04;
  }

  .hero__lead,
  .copy-block p,
  .narrow p,
  .offer__copy p,
  .final-cta p {
    font-size: 16px;
  }

  .vsl-player {
    margin-top: 24px;
  }

  .vsl-player__stage {
    border-radius: 6px;
  }

  .vsl-player__progress {
    height: 6px;
  }

  .vsl-player__toggle {
    min-height: 62px;
    gap: 10px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .vsl-player__pause-offer {
    padding: 14px;
  }

  .vsl-player__pause-card {
    padding: 18px;
  }

  .vsl-player__pause-card h3 {
    font-size: 22px;
  }

  .vsl-player__pause-card p {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .vsl-player__pause-list {
    gap: 5px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.28;
  }

  .vsl-player__pause-card .vsl-player__pause-urgency {
    margin-bottom: 14px !important;
  }

  .vsl-player__resume {
    width: 100%;
    min-height: 48px;
    font-size: 13px;
  }

  .alert {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .hero__content {
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .hero__lead {
    margin-top: 16px;
    line-height: 1.42;
  }

  .cta-row {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .microproof {
    width: 100%;
    text-align: center;
  }

  .comparison article {
    min-height: 0;
    padding: 22px;
  }

  .objection-list article {
    padding: 18px;
  }

  .objection-list h3 {
    font-size: 20px;
  }

  .objection-list p {
    font-size: 16px;
  }

  .result-list li {
    min-height: 0;
    padding: 18px 18px 18px 50px;
    font-size: 16px;
  }

  .result-list li::before {
    left: 18px;
    top: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .vsl-player__resume {
    animation: none;
  }
}
