:root {
  --red-dark: #8a0000;
  --red-base: #b60000;
  --red-hot: #ef1111;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.82);
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(45, 0, 0, 0.32);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--white);
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 15% 8%,
      rgba(255, 38, 38, 0.34),
      transparent 27vw
    ),
    radial-gradient(circle at 83% 24%, rgba(255, 0, 0, 0.22), transparent 32vw),
    radial-gradient(
      circle at 18% 72%,
      rgba(255, 24, 24, 0.3),
      transparent 34vw
    ),
    radial-gradient(circle at 86% 92%, rgba(125, 0, 0, 0.55), transparent 35vw),
    linear-gradient(145deg, #840000 0%, #ad0000 38%, #c70000 70%, #940000 100%);
  background-attachment: fixed;
}
body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  z-index: 0;
}
body::before {
  width: 82vw;
  height: 82vw;
  left: -48vw;
  top: 38vh;
  border: clamp(48px, 8vw, 130px) solid rgba(255, 20, 20, 0.22);
}
body::after {
  width: 86vw;
  height: 86vw;
  right: -61vw;
  bottom: -10vh;
  border: clamp(52px, 9vw, 145px) solid rgba(255, 58, 58, 0.13);
}

.sticky-logo {
  position: fixed;
  top: clamp(24px, 4.2vw, 52px);
  left: clamp(22px, 7.1vw, 92px);
  width: clamp(58px, 6vw, 92px);
  z-index: 50;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(60, 0, 0, 0.25));
}
.sticky-logo img {
  width: 100%;
  display: block;
}

main,
.section,
.shell {
  position: relative;
  z-index: 1;
}
.section {
  min-height: 100vh;
  overflow: visible;
  background: transparent;
}
.section::before,
.section::after {
  display: none !important;
}
.shell {
  width: min(1180px, calc(100% - 96px));
  min-height: 100vh;
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  padding-top: 58px;
}
.hero-copy {
  text-align: right;
  max-width: 475px;
  align-items: right;
  justify-content: right;
}
h1 {
  font-size: clamp(32px, 4.9vw, 45px);
  line-height: 0.86;
  letter-spacing: -2.5px;
  margin-bottom: 21px;
  font-weight: 1000;
}
.lead {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.18;
  margin: 0 0 65px;
  max-width: 500px;
  font-weight: 650;
  text-align: right;
}
.offer-card {
  width: min(360px, 100%);
  margin: 0 0 28px;
  padding: 17px 20px 18px;
  justify-self: end;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.17),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.offer-kicker {
  font-size: 11px;
  line-height: 1.05;
  margin: 0;
  font-weight: 1000;
}
.offer-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  margin: 3px 0 0;
  font-weight: 1000;
}
.offer-card small {
  display: block;
  font-size: 11px;
  font-style: italic;
  opacity: 0.88;
  margin-top: 3px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 25px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff1919, #db0000);
  color: white;
  text-decoration: none;
  font-weight: 1000;
  font-size: 17px;
  letter-spacing: -0.4px;
  box-shadow: 0 16px 35px rgba(91, 0, 0, 0.3);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}
.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.fine-print {
  text-align: right;
  margin: 61px auto 0;
  max-width: 530px;
  font-size: 10px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.84);
}
.lock-dot {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 9px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 0;
  vertical-align: middle;
}
.lock-dot::before {
  content: "🔒";
  font-size: 9px;
}
.hero-art {
  justify-self: start;
  align-self: center;
}
.hero-art img {
  width: min(600px, 49vw);
  display: block;
  filter: drop-shadow(0 35px 40px rgba(46, 0, 0, 0.37));
  transform: translateX(-4px);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  color: white;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1.5px solid white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(52px, 8vw, 100px);
  padding-top: 40px;
}
.pain-title {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.pain-title img {
  width: min(320px, 30vw);
  filter: drop-shadow(0 24px 36px rgba(40, 0, 0, 0.34));
  z-index: 2;
  transform: translateX(250px);
}
@media screen and (max-width: 900px) {
  .pain-title img {
    transform: translateX(0);
  }
}
.speech {
  position: absolute;
  top: 94px;
  left: 48%;
  transform: translateX(-50%);
  padding: 13px 18px;
  border-radius: 12px 12px 12px 2px;
  background: rgba(151, 151, 151, 0.7);
  font-size: 16px;
  font-style: italic;
  z-index: 3;
  box-shadow: 0 18px 35px rgba(80, 0, 0, 0.18);
}
.pain-title h2 {
  position: absolute;
  left: 0;
  bottom: 164px;
  width: 53%;
  text-align: right;
  font-size: clamp(38px, 4vw, 59px);
  line-height: 0.93;
  letter-spacing: -2px;
  font-weight: 1000;
  z-index: 999;
}
.pain-title h3 {
  position: absolute;
  bottom: 104px;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 1000;
  z-index: 999;
}
.copy-block {
  max-width: 455px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 620;
}
.copy-block p {
  margin-bottom: 24px;
}

.logic-shell {
  padding-top: 92px;
}
.center-heading {
  text-align: center;
  margin-bottom: 68px;
}
.center-heading h2 {
  font-size: clamp(37px, 4.8vw, 57px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 15px;
  font-weight: 1000;
}
.center-heading p {
  font-size: clamp(17px, 1.8vw, 25px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}
.logic-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.16fr 0.88fr;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
}
.logic-art img {
  width: min(505px, 40vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 42px rgba(40, 0, 0, 0.38));
}
.callout {
  font-size: 16px;
  line-height: 1.18;
  font-weight: 640;
}
.left-callout {
  text-align: right;
  align-self: center;
}
.left-callout h3 {
  font-size: clamp(31px, 3.2vw, 43px);
  line-height: 0.92;
  font-weight: 1000;
  letter-spacing: -1.5px;
}
.right-callout {
  max-width: 360px;
}

.feature-section .shell {
  padding-top: 174px;
}
.feature-heading {
  margin-bottom: 82px;
}
.feature-heading h2 {
  font-size: clamp(36px, 4vw, 52px);
}
.feature-heading p {
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 21px);
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}
.feature-orb {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  box-shadow:
    inset 0 0 60px rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(72, 0, 0, 0.22);
}
.feature-orb h3 {
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 0.95;
  margin-bottom: 20px;
  font-weight: 1000;
}
.feature-orb p {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.22;
  margin: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.1fr 0.88fr;
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
  padding-top: 86px;
}
.price-offer {
  text-align: right;
}
.small-offer {
  margin-bottom: 28px;
}
.price-offer .cta {
  min-width: 260px;
}
.sub-note {
  margin: 13px 0 30px;
  font-size: 12px;
  font-weight: 800;
}
.price-offer .fine-print {
  margin-top: 45px;
  max-width: 500px;
}
.price-art {
  text-align: center;
}
.price-art h2 {
  font-size: clamp(35px, 4.5vw, 45px);
  line-height: 0.88;
  letter-spacing: -2px;
  font-weight: 1000;
  margin-bottom: 43px;
}
.price-art h2 span {
  font-size: 0.62em;
}
.price-art img {
  width: min(420px, 35vw);
  filter: drop-shadow(0 30px 44px rgba(40, 0, 0, 0.38));
}
.price-copy {
  max-width: 405px;
  font-weight: 680;
}
.price-copy h3 {
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.05;
  margin-bottom: 52px;
  font-weight: 1000;
}
.price-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 55px;
  font-size: 15px;
  line-height: 2;
  font-weight: 1000;
}
.price-copy p {
  font-size: 15px;
  line-height: 1.22;
}

/* Corporate scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(6px);
  transition:
    opacity 0.82s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.82s cubic-bezier(0.2, 0.65, 0.2, 1),
    filter 0.82s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.from-left {
  transform: translate3d(-42px, 24px, 0);
}
.reveal.from-right {
  transform: translate3d(42px, 24px, 0);
}
.reveal.zoom-in {
  transform: scale(0.94) translate3d(0, 24px, 0);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.hero-art img,
.logic-art img,
.price-art img,
.pain-title img {
  transition: filter 0.35s ease;
}
.hero-art img:hover,
.logic-art img:hover,
.price-art img:hover,
.pain-title img:hover {
  filter: drop-shadow(0 34px 46px rgba(40, 0, 0, 0.43));
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none !important;
    filter: none;
    transition: none;
  }
}

@media (min-width: 1400px) {
  .shell {
    width: min(1280px, calc(100% - 130px));
  }
  .hero-art img {
    width: min(650px, 48vw);
  }
  .logic-art img {
    width: min(560px, 39vw);
  }
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 64px, 980px);
  }
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
  }
  .hero-art img {
    width: min(560px, 51vw);
  }
  .pain-grid {
    gap: 42px;
  }
  .logic-grid {
    grid-template-columns: 0.8fr 1.05fr 0.86fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }
  .sticky-logo {
    top: 18px;
    left: 18px;
    width: 70px;
  }
  .shell {
    width: min(100% - 36px, 720px);
    min-height: auto;
    padding: 105px 0 78px;
  }
  .section {
    min-height: auto;
  }
  .hero-grid,
  .pain-grid,
  .logic-grid,
  .price-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-copy {
    max-width: 620px;
    justify-self: center;
    order: 1;
  }
  .hero-art {
    justify-self: center;
    order: 2;
  }
  .hero-art img {
    width: min(520px, 100%);
    transform: none;
  }
  .lead {
    margin-bottom: 34px;
  }
  .fine-print {
    margin-top: 36px;
    text-align: center;
  }
  .scroll-cue {
    display: none;
  }
  .pain-title {
    min-height: 545px;
  }
  .pain-title img {
    width: min(285px, 72vw);
  }
  .pain-title h2 {
    left: 0;
    right: auto;
    bottom: 118px;
    width: 53%;
    font-size: clamp(32px, 10vw, 52px);
  }
  .pain-title h3 {
    left: 33%;
    bottom: 72px;
  }
  .speech {
    top: 40px;
    left: 52%;
    font-size: 13px;
  }
  .copy-block {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    font-size: 15px;
  }
  .center-heading {
    margin-bottom: 34px;
  }
  .logic-shell {
    padding-top: 105px;
  }
  .logic-art img {
    width: min(430px, 100%);
  }
  .left-callout,
  .right-callout {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }
  .feature-section .shell {
    padding-top: 105px;
  }
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 640px;
    margin: 0 auto;
  }
  .price-art {
    order: 1;
  }
  .price-offer {
    order: 2;
  }
  .price-copy {
    order: 3;
    text-align: center;
    margin: 0 auto;
  }
  .price-art img {
    width: min(390px, 100%);
  }
  .price-copy h3 {
    margin-bottom: 24px;
  }
  .price-copy ul {
    margin-bottom: 26px;
  }
}

@media (max-width: 560px) {
  .sticky-logo {
    width: 58px;
    top: 14px;
    left: 14px;
  }
  .shell {
    width: min(100% - 28px, 420px);
    padding: 86px 0 64px;
  }
  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }
  .lead {
    font-size: 15px;
  }
  .hero-copy {
    padding-top: 25px;
  }
  .offer-card {
    border-radius: 12px;
    padding: 15px 14px;
  }
  .cta {
    width: 100%;
    max-width: 320px;
  }
  .fine-print {
    font-size: 9px;
  }
  .pain-title {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
  .pain-title h2 {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    text-align: center;
    order: 2;
    margin-top: 20px;
  }
  .pain-title h3 {
    position: relative;
    left: auto;
    bottom: auto;
    order: 3;
    text-align: center;
    margin: 0;
  }
  .pain-title img {
    order: 1;
    width: min(260px, 78vw);
  }
  .speech {
    top: 0;
    left: 50%;
    width: max-content;
    max-width: 78%;
    font-size: 12px;
  }
  .center-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .feature-row {
    grid-template-columns: 1fr;
    max-width: 330px;
  }
  .feature-orb {
    padding: 42px;
  }
  .price-offer .cta {
    min-width: 0;
  }
  .price-art h2 {
    font-size: clamp(36px, 12vw, 49px);
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 22px, 360px);
  }
  .feature-orb {
    padding: 34px;
  }
}
