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

:root {
  --page-bg: #edf4fc;
  --surface: #ffffff;
  --surface-cool: #f7fbff;
  --ink: #142033;
  --muted: #63728a;
  --line: #dce6f2;
  --navy: #07194f;
  --navy-2: #0a2f9c;
  --blue: #3053be;
  --blue-soft: #e5f0ff;
  --green: #25c744;
  --green-dark: #128c2b;
  --red: #e93131;
  --yellow: #f8cb45;
  --shadow: 0 18px 55px rgba(18, 35, 70, 0.13);
  --font: "Poppins", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary {
  font-family: inherit;
}

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

.container--narrow {
  width: min(840px, calc(100% - 36px));
}

.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 16px;
  background: #3053be;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.notice-bar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffdd54;
  box-shadow: 0 0 0 5px rgba(255, 221, 84, 0.18);
}

.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96)),
    radial-gradient(circle at 50% 0, rgba(21, 91, 212, 0.14), transparent 52%);
  padding: 26px 0 50px;
}

.hero__inner {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.center-title,
.copy-card h2,
.blue-band h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(30px, 5vw, 54px);
}

.hero__subhead {
  max-width: 840px;
  margin: 16px auto 25px;
  color: #31405a;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.video-panel {
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 6px;
  background: #11182a;
  box-shadow: var(--shadow);
}

.video-panel--large {
  min-height: 360px;
}

.video-panel--center {
  max-width: 760px;
  margin: 0 auto;
}

.video-panel__chrome {
  display: flex;
  gap: 7px;
  padding: 10px 12px;
  background: #eef3f8;
  border-bottom: 1px solid #d5dfeb;
}

.video-panel__chrome span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a9b7ca;
}

.video-panel__screen {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(21, 91, 212, 0.12), transparent),
    #f8fbff;
}

.dashboard-placeholder {
  display: grid;
  grid-template-columns: 110px 1fr;
  width: min(88%, 650px);
  height: min(210px, 56vw);
  overflow: hidden;
  border: 1px solid #c8d5e8;
  border-radius: 5px;
  background: #ffffff;
}

.dashboard-placeholder--dark {
  background: #0f1c38;
  border-color: rgba(255, 255, 255, 0.18);
}

.dashboard-placeholder__sidebar {
  background:
    linear-gradient(#dce6f5 0 11px, transparent 11px 21px) 15px 22px / 70px 22px repeat-y,
    #eff5fb;
  border-right: 1px solid #d5dfeb;
}

.dashboard-placeholder--dark .dashboard-placeholder__sidebar {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 0 11px, transparent 11px 21px) 15px 22px / 70px 22px repeat-y,
    #142650;
  border-right-color: rgba(255, 255, 255, 0.13);
}

.dashboard-placeholder__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.dashboard-placeholder__content span {
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(37, 199, 68, 0.2), rgba(21, 91, 212, 0.16)),
    linear-gradient(#d7e3f2, #d7e3f2);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(21, 91, 212, 0.35);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button::after {
  position: absolute;
  left: 30px;
  top: 22px;
  width: 0;
  height: 0;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #ffffff;
  border-top: 15px solid transparent;
  content: "";
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  overflow: hidden;
  border: 4px solid #17213c;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 18px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.offer-card__topline {
  width: calc(100% + 36px);
  margin: 0 -18px 6px;
  padding: 12px 10px;
  background: linear-gradient(90deg, #2140ae, #111936, #010205);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-stack {
  position: relative;
  width: min(100%, 270px);
  height: 160px;
}

.product-stack__box,
.product-stack__tablet,
.product-stack__phone,
.product-stack__sheet {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 12px 25px rgba(7, 25, 79, 0.22);
}

.product-stack__box {
  left: 32px;
  top: 8px;
  width: 128px;
  height: 142px;
  background:
    linear-gradient(#dfe7f8 0 14px, transparent 14px),
    linear-gradient(135deg, #132b7b, #0c57d8);
}

.product-stack__tablet {
  right: 12px;
  top: 34px;
  width: 116px;
  height: 78px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.18) 48% 52%, transparent 52%),
    linear-gradient(135deg, #112a6d, #0d7ddf);
}

.product-stack__phone {
  right: 78px;
  bottom: 2px;
  width: 46px;
  height: 92px;
  background:
    linear-gradient(#dfe7f8 0 9px, transparent 9px),
    linear-gradient(180deg, #123174, #24b8d5);
}

.product-stack__sheet {
  left: 0;
  bottom: 4px;
  width: 75px;
  height: 94px;
  background:
    linear-gradient(#ff5a5a 0 9px, transparent 9px 22px, #1bc94a 22px 31px, transparent 31px),
    #ffffff;
}

.product-stack--wide {
  width: min(100%, 480px);
  height: 245px;
}

.product-stack--wide .product-stack__box {
  left: 75px;
  width: 185px;
  height: 210px;
}

.product-stack--wide .product-stack__tablet {
  right: 25px;
  width: 195px;
  height: 120px;
}

.product-stack--wide .product-stack__phone {
  right: 155px;
  width: 64px;
  height: 122px;
}

.product-stack--pricing {
  height: 190px;
}

.offer-card__price {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.offer-card__save,
.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 13px 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #31df55, var(--green));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 199, 68, 0.26);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.cta-button--center {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.cta-button--large {
  width: 100%;
  min-height: 56px;
  font-size: 17px;
}

.rating-line {
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.section,
.explain-section {
  padding: 54px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 26px;
  align-items: start;
}

.split-layout--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.copy-card {
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.copy-card h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 14px;
  background: var(--blue);
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
}

.copy-card h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.copy-card p {
  margin: 0 0 16px;
  color: #293b58;
}

.copy-card--compact h2 {
  display: block;
  background: transparent;
  color: var(--navy);
  padding: 0;
}

.icon-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 28px;
  color: #2f3f58;
  font-weight: 600;
}

.icon-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.icon-list--danger li::before {
  background: var(--red);
  content: "x";
}

.icon-list--success li::before {
  background: var(--green);
  content: "✓";
}

.proof-rail {
  display: grid;
  gap: 16px;
}

.proof-shot {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 8px solid #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(37, 199, 68, 0.7) 0 7px, transparent 7px 100%) 24px 50px / 18px 120px repeat-x,
    linear-gradient(#eef4fb 0 16px, transparent 16px 100%) 22px 22px / 78% 28px repeat-y,
    #f9fcff;
  box-shadow: var(--shadow);
}

.proof-shot--chart::after {
  position: absolute;
  left: 42px;
  top: 70px;
  width: 160px;
  height: 92px;
  border: 4px solid var(--red);
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}

.proof-shot__tag,
.proof-shot__amount,
.proof-shot__caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  text-align: center;
}

.proof-shot__tag {
  bottom: 20px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.proof-shot__amount {
  top: 72px;
  color: #1e8f37;
  font-size: 28px;
  font-weight: 900;
}

.proof-shot__caption {
  top: 114px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.proof-shot--receipt {
  background:
    linear-gradient(#eef4fb 0 14px, transparent 14px 30px) 24px 22px / 70% 28px repeat-y,
    linear-gradient(180deg, #fff7d6 0 30%, #f9fcff 30%);
}

.proof-shot--tall {
  min-height: 430px;
}

.proof-shot--tall .proof-shot__amount {
  top: 46%;
}

.proof-shot--tall .proof-shot__caption {
  top: calc(46% + 42px);
}

.blue-band {
  padding: 66px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(62, 132, 255, 0.24), transparent 44%),
    linear-gradient(145deg, #061b62, #0c31a0 48%, #06143e);
  color: #ffffff;
}

.blue-band--proof {
  padding-top: 56px;
}

.blue-band h2 {
  max-width: 840px;
  margin: 0 auto 30px;
  font-size: clamp(28px, 4vw, 46px);
  text-align: center;
  text-transform: capitalize;
}

.video-wall {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.person-video {
  min-height: 160px;
  border: 5px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 42%, #ffd7b1 0 15%, transparent 16%),
    linear-gradient(180deg, transparent 0 56%, #223a68 57%),
    linear-gradient(135deg, #dcecff, #899fc8);
}

.person-video--tall {
  grid-row: span 2;
  min-height: 338px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.center-title {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
}

.section-heading p {
  max-width: 730px;
  margin: 10px auto 0;
  color: var(--muted);
  font-weight: 600;
}

.section-heading--light h2,
.section-heading--light p {
  color: #ffffff;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.bonus-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(18, 35, 70, 0.08);
}

.feature-card {
  padding: 17px;
  text-align: center;
}

.feature-card h3,
.bonus-card h3 {
  margin: 12px 0 7px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.feature-card p,
.bonus-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.feature-card span,
.bonus-card span {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.mini-screen,
.bonus-card__image,
.step-card__media {
  overflow: hidden;
  border: 5px solid #f5f8fc;
  border-radius: 6px;
  background:
    linear-gradient(#d7e4f5 0 11px, transparent 11px 24px) 14px 18px / 70% 24px repeat-y,
    linear-gradient(135deg, #132b7b, #0b7ed8);
}

.mini-screen {
  height: 92px;
}

.section--bonuses {
  background: #f7fbff;
}

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

.bonus-card {
  padding: 0 16px 16px;
  text-align: center;
}

.bonus-card strong {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  padding: 9px 8px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
}

.bonus-card__image {
  height: 108px;
  margin-top: 16px;
}

.section--community {
  background: #f2f7ff;
}

.ribbon-heading {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto -16px;
  padding: 10px 18px;
  border-radius: 2px;
  background: var(--blue);
  color: #ffffff;
  font-size: clamp(18px, 2.5vw, 27px);
  font-weight: 900;
  text-align: center;
}

.community-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.community-card h2,
.system-showcase__copy h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.community-card p,
.system-showcase__copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
}

.phone-stack {
  position: relative;
  height: 300px;
}

.phone-stack div {
  position: absolute;
  top: 20px;
  width: 138px;
  height: 250px;
  border: 9px solid #1d2b47;
  border-radius: 24px;
  background:
    linear-gradient(#d7e4f5 0 12px, transparent 12px 26px) 18px 40px / 80px 26px repeat-y,
    #ffffff;
  box-shadow: 0 18px 38px rgba(18, 35, 70, 0.2);
}

.phone-stack div:first-child {
  left: 70px;
  transform: rotate(-8deg);
}

.phone-stack div:last-child {
  left: 155px;
  transform: rotate(7deg);
}

.step-stack {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.step-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
  align-items: center;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.step-card span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 2px;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.step-card__media {
  height: 170px;
}

.section--formula {
  background: #f7fbff;
}

.formula-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.formula-box h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
}

.formula-box h3 {
  margin: 20px 0 0;
  color: var(--red);
  font-size: clamp(20px, 3vw, 30px);
  text-align: center;
}

.section--system {
  background: #ffffff;
}

.system-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  border-radius: 8px;
  background: #f2f7ff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.center-title {
  margin-bottom: 28px;
  text-align: center;
}

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

.review-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #ffd2a5 0 23%, transparent 24%),
    linear-gradient(180deg, transparent 0 58%, #20407a 59%),
    #dce8f8;
}

.review-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.section--story {
  background: #f7fbff;
}

.creator-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.creator-collage div {
  min-height: 160px;
  border: 6px solid #ffffff;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 35%, #ffd2a5 0 17%, transparent 18%),
    linear-gradient(180deg, transparent 0 56%, #213d6c 57%),
    linear-gradient(135deg, #f0dfc8, #9bc8ef);
  box-shadow: 0 10px 28px rgba(18, 35, 70, 0.12);
}

.creator-collage--travel div {
  background:
    linear-gradient(180deg, transparent 0 64%, rgba(15, 39, 92, 0.75) 65%),
    linear-gradient(135deg, #ffe4b8, #5eb6f0);
}

.blue-band--offer {
  padding-top: 58px;
}

.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 36px);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.pricing-card__label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.value-stack {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.value-stack li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f4f8fe;
  color: #34425b;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.value-stack strong {
  color: var(--red);
}

.pricing-card__total,
.pricing-card__today {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.pricing-card__today {
  margin: 4px 0 16px;
  color: var(--red);
  font-size: clamp(26px, 4vw, 40px);
}

.section--faq {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fbff;
}

.faq-list summary {
  position: relative;
  padding: 14px 44px 14px 16px;
  color: #23334f;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--blue);
  content: "+";
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-weight: 600;
}

.section--mindset {
  background: #f2f7ff;
}

.final-cta {
  padding: 54px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 118, 255, 0.26), transparent 40%),
    linear-gradient(145deg, var(--navy), #06143e);
  color: #ffffff;
  text-align: center;
}

.final-cta p {
  margin: 0 0 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 5vw, 48px);
}

.footer {
  padding: 40px 0 50px;
  background: #ffffff;
  color: #5d6c82;
  font-size: 12px;
  text-align: center;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 16px;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}
