:root {
  --paper: #f5f6fb;
  --paper-light: #ffffff;
  --paper-deep: #e8e8f3;
  --ink: #211745;
  --ink-2: #5635db;
  --teal: #049c95;
  --teal-dark: #076c68;
  --gold: #b8ef45;
  --gold-light: #dcff94;
  --red: #ff655b;
  --green: #37bd7e;
  --blue: #3475f5;
  --text: #282940;
  --muted: #676a7a;
  --white: #ffffff;
  --line: rgba(33, 23, 69, .14);
  --shadow: 0 18px 42px rgba(60, 47, 112, .13);
  --shadow-deep: 0 28px 70px rgba(44, 31, 90, .2);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 24px;
}

.center {
  text-align: center;
}

.topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  border-bottom: 3px solid var(--gold);
  color: rgba(255, 255, 255, .76);
  background: var(--ink);
  font-size: .76rem;
}

.topbar strong {
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: .92rem;
}

.topbar span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.section {
  position: relative;
  padding: 92px 0;
}

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

.section--ink {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section--teal {
  overflow: hidden;
  color: var(--white);
  background: var(--teal-dark);
}

.section--signal {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e8dcc6;
}

.section--extras {
  color: var(--white);
  background: #152b2c;
}

.section--bundle {
  overflow: hidden;
  background: #eadcc2;
}

.section--faq {
  color: var(--white);
  background: var(--ink-2);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 auto 18px;
  font-size: clamp(2.25rem, 4.4vw, 3.55rem);
  text-wrap: balance;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--light h2 {
  color: var(--paper-light);
}

.section-heading--light p {
  color: rgba(255, 255, 255, .72);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 11px;
  border-left: 5px solid var(--gold);
  color: var(--paper-light);
  background: var(--teal);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--ink);
  border-left-color: var(--paper-light);
  background: var(--gold);
}

.eyebrow--red {
  background: var(--red);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 6px 0 rgba(6, 26, 57, .28);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(6, 26, 57, .28);
}

.btn--primary {
  color: var(--paper-light);
  background: var(--ink);
}

.btn--gold {
  color: var(--ink);
  background: var(--gold);
}

.btn--outline {
  color: var(--ink);
  background: transparent;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  border-bottom: 8px solid var(--ink);
  background: var(--paper-light);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(6, 26, 57, .14);
  transform: rotate(45deg);
}

.hero::before {
  top: 90px;
  left: -90px;
}

.hero::after {
  right: -90px;
  bottom: 150px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__copy {
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 9.4vw, 8.4rem);
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
}

.hero__lead {
  max-width: 780px;
  margin: 0 auto;
  color: #4e5558;
  font-size: 1.08rem;
}

.hero-stage {
  position: relative;
  width: min(100%, 1030px);
  height: 420px;
  margin: 34px auto 20px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 20px;
  border-radius: 50%;
  background: rgba(6, 26, 57, .18);
  filter: blur(14px);
}

.hero-stage__item {
  position: absolute;
  top: 26px;
  width: 28%;
  aspect-ratio: 4 / 5;
  border: 5px solid var(--paper-light);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
}

.hero-stage__item--far-left {
  top: 73px;
  left: 1%;
  z-index: 1;
  width: 23%;
  transform: rotate(-7deg);
}

.hero-stage__item--left {
  top: 42px;
  left: 18%;
  z-index: 2;
  width: 25%;
  transform: rotate(-3deg);
}

.hero-stage__item--center {
  top: 0;
  left: 36%;
  z-index: 5;
  width: 28%;
}

.hero-stage__item--right {
  top: 42px;
  right: 18%;
  z-index: 2;
  width: 25%;
  transform: rotate(3deg);
}

.hero-stage__item--far-right {
  top: 73px;
  right: 1%;
  z-index: 1;
  width: 23%;
  transform: rotate(7deg);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 26px;
}

.text-link {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.hero__numbers {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(4, 1fr);
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__numbers div {
  display: flex;
  min-height: 90px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
}

.hero__numbers div:last-child {
  border-right: 0;
}

.hero__numbers strong {
  color: var(--ink);
  font-family: Oswald, Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero__numbers div:nth-child(2) strong {
  color: var(--gold);
}

.hero__numbers div:nth-child(3) strong {
  color: var(--red);
}

.hero__numbers div:nth-child(4) strong {
  color: var(--teal);
}

.hero__numbers span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.gallery {
  width: 100%;
  margin: 42px 0 48px;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 10px 9px 28px;
  animation: galleryScroll 56s linear infinite;
  will-change: transform;
}

.gallery__track--reverse {
  animation-direction: reverse;
  animation-duration: 62s;
}

.gallery:hover .gallery__track {
  animation-play-state: paused;
}

.gallery__item {
  position: relative;
  width: 252px;
  height: 342px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 4px solid var(--paper-light);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 10px 10px 0 rgba(216, 154, 22, .28), var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--gold);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.benefit {
  min-width: 0;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit__number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.benefit:nth-child(2) .benefit__number {
  color: var(--red);
}

.benefit:nth-child(3) .benefit__number {
  color: var(--teal);
}

.benefit:nth-child(4) .benefit__number {
  color: var(--blue);
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.benefit p {
  color: var(--muted);
  font-size: .88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.split__copy h2,
.bundle__copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  text-wrap: balance;
}

.split__copy > p,
.bundle__copy > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.check-list,
.plan__list,
.modal__list {
  list-style: none;
}

.check-list {
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 13px 10px 13px 30px;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 700;
}

.check-list li::before,
.plan__list li::before,
.modal__list li::before {
  content: "+";
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 900;
}

.split__visual {
  position: relative;
  min-height: 560px;
}

.split__visual > img {
  position: absolute;
  top: 0;
  left: 5%;
  width: 70%;
  aspect-ratio: 4 / 5;
  border: 5px solid var(--paper-light);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 18px 18px 0 var(--ink), var(--shadow-deep);
  transform: rotate(-3deg);
}

.split__note {
  position: absolute;
  right: 0;
  bottom: 35px;
  z-index: 2;
  width: 52%;
  padding: 24px;
  border: 3px solid var(--ink);
  color: var(--paper-light);
  background: var(--red);
  box-shadow: 10px 10px 0 var(--gold);
}

.split__note strong,
.split__note span {
  display: block;
}

.split__note strong {
  margin-bottom: 8px;
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.55rem;
}

.split__note span {
  font-size: .78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 rgba(6, 26, 57, .13);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-bottom: 2px solid var(--ink);
  object-fit: cover;
}

.product-card__body {
  padding: 22px 20px 24px;
}

.product-card h3 {
  min-height: 2.2em;
  margin-bottom: 13px;
  font-size: 1.28rem;
}

.product-card strong {
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 8px;
  border-left: 4px solid var(--gold);
  color: var(--teal-dark);
  background: #efe4cf;
  font-size: .65rem;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
  font-size: .82rem;
}

.product-card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  align-items: stretch;
}

.product-card--feature > img {
  height: 100%;
  aspect-ratio: 16 / 9;
  border-right: 2px solid var(--ink);
  border-bottom: 0;
  object-fit: cover;
}

.product-card--feature .product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card--dark {
  border-color: var(--gold);
  background: var(--paper-light);
  box-shadow: 8px 8px 0 rgba(216, 154, 22, .22);
}

.product-grid--extras .product-card__body {
  padding-inline: 16px;
}

.product-grid--extras .product-card h3 {
  font-size: 1.08rem;
}

.bundle {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 72px;
}

.bundle__collage {
  position: relative;
  min-height: 600px;
}

.bundle__img {
  position: absolute;
  width: 44%;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--paper-light);
  border-radius: 3px;
  object-fit: cover;
  box-shadow: var(--shadow-deep);
}

.bundle__img--one {
  top: 40px;
  left: 28%;
  z-index: 4;
}

.bundle__img--two {
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-5deg);
}

.bundle__img--three {
  top: 10px;
  right: 0;
  z-index: 2;
  transform: rotate(5deg);
}

.bundle__img--four {
  right: 5%;
  bottom: 0;
  z-index: 3;
  width: 36%;
  transform: rotate(2deg);
}

.bundle__copy > .btn {
  margin-top: 30px;
}

.bundle__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle__stats div {
  padding: 18px 10px;
  border-right: 1px solid var(--line);
}

.bundle__stats div:last-child {
  border-right: 0;
}

.bundle__stats strong,
.bundle__stats span {
  display: block;
}

.bundle__stats strong {
  color: var(--teal);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.35rem;
}

.bundle__stats span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
}

.pricing {
  background: var(--paper-light);
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 34px;
}

.plan {
  position: relative;
  min-width: 0;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-light);
  box-shadow: 12px 12px 0 #d8c8aa;
}

.plan--complete {
  border-color: var(--gold);
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--teal);
}

.plan__flag {
  position: absolute;
  top: -18px;
  right: 26px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  font-size: .66rem;
  font-weight: 900;
}

.plan__top {
  min-height: 150px;
  text-align: center;
}

.plan__top > span {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 900;
}

.plan--complete .plan__top > span {
  color: var(--gold-light);
}

.plan__top h3 {
  margin: 9px 0 12px;
  font-size: 2rem;
}

.plan--complete .plan__top h3 {
  color: var(--paper-light);
}

.plan__top p {
  max-width: 430px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .84rem;
}

.plan--complete .plan__top p {
  color: rgba(255, 255, 255, .68);
}

.plan-stage {
  position: relative;
  height: 350px;
  margin: 16px 0 26px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.plan-stage img {
  position: absolute;
  top: 30px;
  width: 36%;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--paper-light);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.plan-stage img:nth-child(1) {
  left: 32%;
  z-index: 3;
}

.plan-stage img:nth-child(2) {
  left: 8%;
  z-index: 2;
  transform: rotate(-5deg);
}

.plan-stage img:nth-child(3) {
  right: 8%;
  z-index: 2;
  transform: rotate(5deg);
}

.plan-stage--complete img {
  width: 31%;
}

.plan-stage--complete img:nth-child(1) {
  left: 34.5%;
  z-index: 4;
}

.plan-stage--complete img:nth-child(2) {
  left: 6%;
}

.plan-stage--complete img:nth-child(3) {
  right: 6%;
}

.plan-stage--complete img:nth-child(4) {
  top: 106px;
  right: 22%;
  z-index: 5;
  width: 25%;
  transform: rotate(3deg);
}

.plan__list {
  margin-bottom: 26px;
}

.plan__list li {
  position: relative;
  padding: 11px 8px 11px 30px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
}

.plan__upgrade-note {
  display: grid;
  gap: 5px;
  margin: 18px 0 24px;
  padding: 16px;
  border: 1px solid rgba(255, 92, 87, .34);
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: rgba(255, 255, 255, .68);
}

.plan__upgrade-note strong {
  color: var(--red);
  font-size: .78rem;
}

.plan__upgrade-note span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.plan__redacao {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: -8px 0 24px;
  padding: 12px;
  border: 1px solid rgba(36, 194, 125, .34);
  border-radius: 6px;
  background: rgba(255, 255, 255, .62);
}

.plan__redacao img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
}

.plan__redacao div {
  display: grid;
  gap: 4px;
}

.plan__redacao span {
  color: var(--teal-dark);
  font-size: .56rem;
  font-weight: 900;
}

.plan__redacao strong {
  color: var(--ink);
  font-size: .88rem;
}

.plan__redacao small {
  color: var(--muted);
  font-size: .67rem;
  line-height: 1.45;
}

.plan__price {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin: 4px 0 20px;
  padding: 14px 12px 12px;
  border-top: 1px solid rgba(33, 23, 69, .12);
  border-bottom: 1px solid rgba(33, 23, 69, .12);
  color: var(--ink);
}

.plan__price > span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan__discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1;
}

.plan__discount del {
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.plan__discount b {
  padding: 5px 7px;
  border-radius: 3px;
  color: #fff;
  background: var(--red);
  font-size: .57rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan__price--complete .plan__discount b {
  background: var(--teal-dark);
}

.plan__price > div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: .9;
}

.plan__price > .plan__discount {
  align-items: center;
  line-height: 1;
}

.plan__price strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.plan__price small {
  margin: 5px 3px 0;
  font-size: .88rem;
  font-weight: 800;
}

.plan__price--complete {
  border-color: rgba(7, 108, 104, .18);
  color: var(--teal-dark);
}

/* Clean product previews: hide the promotional CTA printed at the bottom of the source art. */
.product-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-card__media--crop img {
  width: 112%;
  max-width: none;
  height: 112%;
  margin-left: -6%;
}

.product-card--feature .product-card__media {
  height: 100%;
  aspect-ratio: 16 / 9;
  border-right: 1px solid rgba(33, 23, 69, .12);
}

.modal__covers img {
  aspect-ratio: 4 / 4.5;
  object-position: center top;
}

@media (max-width: 560px) {
  .product-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-card--feature .product-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 23, 69, .12);
  }
}

.plan--complete .plan__list li {
  border-bottom-color: rgba(255, 255, 255, .14);
}

.plan--complete .plan__list li::before {
  color: var(--gold);
}

.plan__micro {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .66rem;
  text-align: center;
}

.plan--complete .plan__micro {
  color: rgba(255, 255, 255, .56);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.steps article {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.steps h3 {
  margin: 14px 0 8px;
  font-size: 1.32rem;
}

.steps p {
  color: var(--muted);
  font-size: .8rem;
}

.faq {
  max-width: 880px;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.faq__q {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--paper-light);
  background: transparent;
  font: 700 .92rem/1.4 Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq__q span {
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 1.6rem;
  transition: transform .2s ease;
}

.faq__item.open .faq__q span {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq__a p {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  color: rgba(255, 255, 255, .62);
  background: #041126;
  font-size: .72rem;
  text-align: center;
}

footer strong {
  color: var(--gold-light);
  font-family: Oswald, Inter, sans-serif;
  font-size: .95rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 20px;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 28, .78);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px;
  border: 3px solid var(--gold);
  border-radius: 6px;
  background: var(--paper-light);
  box-shadow: var(--shadow-deep);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal h3 {
  max-width: 530px;
  margin-bottom: 12px;
  font-size: 2.25rem;
}

.modal h3 span {
  color: var(--teal);
}

.modal__card > p {
  color: var(--muted);
  font-size: .88rem;
}

.modal__covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 24px 0;
}

.modal__covers img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.modal__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 14px;
  margin-bottom: 24px;
}

.modal__list li {
  position: relative;
  padding: 7px 4px 7px 24px;
  color: #394246;
  font-size: .76rem;
  font-weight: 700;
}

.modal__list li::before {
  left: 4px;
}

.modal__decline {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .product-grid,
  .product-grid--extras {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle {
    gap: 42px;
  }

  .bundle__collage {
    min-height: 520px;
  }

  .plan-stage {
    height: 310px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 74px 0;
  }

  .hero-stage {
    height: 350px;
  }

  .benefit-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2),
  .steps article:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n+2),
  .steps article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .bundle {
    grid-template-columns: 1fr;
  }

  .split__visual {
    min-height: 600px;
  }

  .split__visual > img {
    left: 14%;
    width: 62%;
  }

  .split__note {
    right: 8%;
  }

  .product-grid,
  .product-grid--extras {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bundle__collage {
    min-height: 620px;
  }

  .bundle__copy {
    text-align: center;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .plan {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .plan--complete {
    order: -1;
  }

  .plan-stage {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }

  .topbar {
    min-height: 34px;
    padding: 7px 12px;
  }

  .topbar span {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 2.28rem;
  }

  .section-heading p {
    font-size: .9rem;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: .62rem;
  }

  .hero {
    padding: 24px 0 24px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__copy > .eyebrow {
    max-width: 300px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 3.55rem;
  }

  .hero h1 span {
    display: block;
    margin-top: 7px;
  }

  .hero__lead {
    font-size: .88rem;
  }

  .hero-stage {
    height: 220px;
    margin: 20px auto 12px;
  }

  .hero-stage__item {
    top: 30px;
    width: 40%;
    border-width: 3px;
  }

  .hero-stage__item--far-left,
  .hero-stage__item--far-right {
    display: none;
  }

  .hero-stage__item--left {
    top: 34px;
    left: 3%;
    width: 35%;
  }

  .hero-stage__item--center {
    top: 0;
    left: 28%;
    width: 44%;
  }

  .hero-stage__item--right {
    top: 34px;
    right: 3%;
    width: 35%;
  }

  .hero__actions {
    flex-direction: column;
    gap: 13px;
    margin-top: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__numbers {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }

  .hero__numbers div {
    min-height: 60px;
    padding: 10px 7px;
  }

  .hero__numbers div:nth-child(2) {
    border-right: 0;
  }

  .hero__numbers div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .hero__numbers strong {
    font-size: 1.35rem;
  }

  .hero__numbers span {
    font-size: .54rem;
  }

  .btn {
    width: 100%;
    min-height: 51px;
    padding-inline: 18px;
    font-size: .78rem;
  }

  .gallery {
    margin: 32px 0 38px;
  }

  .gallery__track {
    gap: 13px;
    padding-inline: 7px;
  }

  .gallery__item {
    width: 188px;
    height: 255px;
    border-width: 3px;
    box-shadow: 7px 7px 0 rgba(216, 154, 22, .25), var(--shadow);
  }

  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:nth-child(2),
  .steps article,
  .steps article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child,
  .steps article:last-child {
    border-bottom: 0;
  }

  .benefit {
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 22px 12px;
  }

  .benefit__number {
    grid-row: 1 / 3;
    margin: 2px 0 0;
    font-size: 1.6rem;
  }

  .benefit h3 {
    margin-bottom: 5px;
    font-size: 1.28rem;
  }

  .benefit p {
    font-size: .78rem;
  }

  .split {
    gap: 38px;
  }

  .split__copy h2,
  .bundle__copy h2 {
    font-size: 2.38rem;
  }

  .split__visual {
    min-height: 430px;
  }

  .split__visual > img {
    left: 7%;
    width: 72%;
    border-width: 3px;
    box-shadow: 10px 10px 0 var(--ink), var(--shadow);
  }

  .split__note {
    right: 2%;
    bottom: 18px;
    width: 58%;
    padding: 16px;
    box-shadow: 7px 7px 0 var(--gold);
  }

  .split__note strong {
    font-size: 1.22rem;
  }

  .split__note span {
    font-size: .66rem;
  }

  .product-grid,
  .product-grid--extras {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 44% minmax(0, 1fr);
    box-shadow: 6px 6px 0 rgba(6, 26, 57, .12);
  }

  .product-card--feature {
    display: block;
  }

  .product-card > img {
    height: 100%;
    border-right: 2px solid var(--ink);
    border-bottom: 0;
  }

  .product-card--feature > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid rgba(33, 23, 69, .12);
  }

  .product-card__body,
  .product-grid--extras .product-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 16px 14px;
  }

  .product-card h3,
  .product-grid--extras .product-card h3 {
    min-height: 0;
    margin-bottom: 9px;
    font-size: 1.02rem;
  }

  .product-card strong {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 9px;
    padding: 4px 6px;
    font-size: .53rem;
  }

  .product-card p {
    font-size: .69rem;
    line-height: 1.5;
  }

  .bundle {
    gap: 36px;
  }

  .bundle__collage {
    min-height: 420px;
  }

  .bundle__img {
    width: 47%;
    border-width: 3px;
  }

  .bundle__img--one {
    top: 28px;
    left: 26.5%;
  }

  .bundle__img--four {
    width: 38%;
  }

  .bundle__stats span {
    font-size: .55rem;
  }

  .plans {
    gap: 40px;
  }

  .plan {
    padding: 28px 18px;
    box-shadow: 8px 8px 0 #d8c8aa;
  }

  .plan--complete {
    box-shadow: 8px 8px 0 var(--teal);
  }

  .plan__top {
    min-height: 0;
    margin-bottom: 18px;
  }

  .plan__top h3 {
    font-size: 1.7rem;
  }

  .plan__redacao {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .plan-stage {
    height: 270px;
    margin-bottom: 20px;
  }

  .plan-stage img {
    top: 28px;
    width: 40%;
  }

  .plan-stage img:nth-child(1) {
    left: 30%;
  }

  .plan-stage img:nth-child(2) {
    left: 4%;
  }

  .plan-stage img:nth-child(3) {
    right: 4%;
  }

  .plan-stage--complete img {
    width: 35%;
  }

  .plan-stage--complete img:nth-child(1) {
    left: 32.5%;
  }

  .plan-stage--complete img:nth-child(2) {
    left: 2%;
  }

  .plan-stage--complete img:nth-child(3) {
    right: 2%;
  }

  .plan-stage--complete img:nth-child(4) {
    top: 92px;
    right: 18%;
    width: 28%;
  }

  .plan__list li {
    font-size: .75rem;
  }

  .steps article {
    display: grid;
    grid-template-columns: 42px 1fr;
    padding: 20px 12px;
  }

  .steps span {
    grid-row: 1 / 3;
    font-size: 1.4rem;
  }

  .steps h3 {
    margin: 2px 0 4px;
    font-size: 1.18rem;
  }

  .steps p {
    font-size: .72rem;
  }

  .modal {
    padding: 10px;
  }

  .modal__card {
    max-height: calc(100vh - 20px);
    padding: 30px 18px 24px;
  }

  .modal h3 {
    font-size: 1.75rem;
  }

  .modal__covers {
    gap: 4px;
  }

  .modal__list {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 4px;
  }
}

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

  .gallery__track {
    animation-play-state: paused;
  }

  .btn,
  .faq__a,
  .faq__q span,
  .modal {
    transition: none;
  }
}

/* Visual direction v2: a colorful study interface, distinct from the PMES theme. */
body {
  background: var(--paper);
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.topbar {
  min-height: 40px;
  border-bottom: 4px solid var(--gold);
  color: rgba(255, 255, 255, .82);
  background: var(--ink-2);
  font-family: Manrope, sans-serif;
}

.topbar strong {
  color: var(--white);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.topbar span {
  border-left-color: rgba(255, 255, 255, .3);
}

.section {
  padding: 100px 0;
}

.section--paper,
.pricing {
  background: var(--paper-light);
}

.section--ink {
  background: #2a1848;
}

.section--teal {
  background: #076c68;
}

.section--signal {
  border-color: rgba(22, 84, 58, .12);
  background: #e6f8dd;
}

.section--extras {
  color: var(--text);
  background: #ffe6df;
}

.section--bundle {
  background: #e5f6ff;
}

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

.section-heading {
  max-width: 960px;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.section-heading p {
  font-size: 1rem;
}

.section--extras .section-heading--light h2,
.section--extras .section-heading--light p {
  color: var(--ink);
}

.section--extras .section-heading--light p {
  color: #6c5457;
}

.eyebrow {
  position: relative;
  padding: 0 0 0 18px;
  border: 0;
  color: var(--ink-2);
  background: transparent;
  font-family: Manrope, sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  position: absolute;
  top: .15em;
  bottom: .15em;
  left: 0;
  width: 7px;
  background: var(--red);
}

.eyebrow--gold {
  color: var(--gold-light);
}

.eyebrow--gold::before {
  background: var(--gold);
}

.eyebrow--red {
  color: #b73535;
}

.btn {
  min-height: 56px;
  border-color: var(--ink);
  border-radius: 6px;
  box-shadow: 0 5px 0 var(--ink);
  font-family: Manrope, sans-serif;
  font-size: .82rem;
}

.btn:hover {
  box-shadow: 0 2px 0 var(--ink);
}

.btn--primary {
  color: var(--white);
  background: var(--ink-2);
}

.btn--gold {
  color: var(--ink);
  background: var(--gold);
}

.btn--outline {
  color: var(--ink-2);
  border-color: var(--ink-2);
}

.hero {
  min-height: 0;
  padding: 58px 0 30px;
  border-bottom: 0;
  background: #eceffc;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  grid-template-areas:
    "copy stage"
    "actions stage"
    "numbers numbers";
  align-items: center;
  column-gap: 38px;
  text-align: left;
}

.hero__copy {
  grid-area: copy;
  max-width: 560px;
  margin: 0;
}

.hero h1 {
  margin: 14px 0 20px;
  font-size: clamp(4.5rem, 7.2vw, 7.5rem);
  line-height: .84;
  text-transform: none;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--ink-2);
}

.hero__promise {
  max-width: 540px;
  margin-bottom: 16px;
  color: #fb4e56;
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero__lead {
  max-width: 540px;
  margin: 0;
  color: #4f5369;
  font-size: 1rem;
}

.hero-stage {
  position: relative;
  grid-area: stage;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  align-self: center;
}

.hero-stage::before {
  display: none;
}

.hero-mockup {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-stage__legend {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(33, 23, 69, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(65, 53, 112, .12);
  backdrop-filter: blur(8px);
}

.hero-stage__legend span {
  padding: 10px 7px;
  border-right: 1px solid rgba(33, 23, 69, .12);
  color: var(--ink);
  font-size: .57rem;
  font-weight: 900;
  text-align: center;
}

.hero-stage__legend span:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.hero-stage__legend span:nth-child(2) {
  border-top: 4px solid var(--green);
}

.hero-stage__legend span:nth-child(3) {
  border-top: 4px solid var(--red);
}

.hero-stage__legend span:nth-child(4) {
  border-top: 4px solid #9a61ef;
  border-right: 0;
}

.hero__actions {
  grid-area: actions;
  justify-content: flex-start;
  margin-top: 34px;
}

.text-link {
  color: var(--ink-2);
}

.hero__numbers {
  grid-area: numbers;
  width: 100%;
  max-width: none;
  margin: 30px 0 0;
  border: 1px solid rgba(33, 23, 69, .15);
  border-radius: 6px;
  background: rgba(255, 255, 255, .62);
}

.hero__numbers div {
  min-height: 82px;
}

.hero__numbers strong {
  color: var(--ink-2);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.hero__numbers div:nth-child(2) strong {
  color: var(--green);
}

.hero__numbers div:nth-child(3) strong {
  color: var(--red);
}

.hero__numbers div:nth-child(4) strong {
  color: var(--blue);
}

.gallery__item {
  border: 0;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(10, 6, 30, .22);
}

.gallery__item img {
  border-radius: 6px 6px 0 0;
}

.gallery__item figcaption {
  color: var(--ink);
  background: var(--gold);
  font-family: Manrope, sans-serif;
}

.benefit-grid {
  gap: 14px;
  border: 0;
}

.benefit {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f7ff;
}

.benefit:nth-child(1) {
  border-top: 7px solid var(--blue);
}

.benefit:nth-child(2) {
  border-top: 7px solid var(--red);
  background: #fff2ef;
}

.benefit:nth-child(3) {
  border-top: 7px solid var(--green);
  background: #edfbf3;
}

.benefit:nth-child(4) {
  border-top: 7px solid #9a61ef;
  background: #f5efff;
}

.benefit__number,
.benefit:nth-child(2) .benefit__number,
.benefit:nth-child(3) .benefit__number,
.benefit:nth-child(4) .benefit__number {
  color: var(--ink-2);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.check-list li::before,
.plan__list li::before,
.modal__list li::before {
  content: "✓";
  color: var(--green);
}

.split__visual > img {
  border: 0;
  border-radius: 6px;
  box-shadow: 18px 18px 0 var(--ink-2), var(--shadow-deep);
}

.split__note {
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  box-shadow: 10px 10px 0 var(--gold);
}

.product-grid {
  gap: 18px;
}

.product-card,
.product-card--dark {
  border: 1px solid rgba(33, 23, 69, .12);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(49, 39, 89, .1);
}

.product-card:nth-child(4n+1) {
  border-top: 6px solid var(--blue);
}

.product-card:nth-child(4n+2) {
  border-top: 6px solid var(--green);
}

.product-card:nth-child(4n+3) {
  border-top: 6px solid var(--red);
}

.product-card:nth-child(4n+4) {
  border-top: 6px solid #9a61ef;
}

.product-card > img {
  border-bottom: 0;
}

.product-card strong {
  border-left: 0;
  border-bottom: 3px solid var(--gold);
  color: var(--ink-2);
  background: transparent;
}

.product-card p {
  color: var(--muted);
}

.bundle__img {
  border: 0;
  border-radius: 6px;
}

.bundle__stats {
  border-color: rgba(33, 23, 69, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .58);
}

.bundle__stats strong {
  color: var(--ink-2);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.plan {
  overflow: hidden;
  padding: 38px;
  border: 2px solid #a99bf0;
  border-radius: 6px;
  background: #f0efff;
  box-shadow: 12px 12px 0 #d8d3ff;
}

.plan::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  background: var(--blue);
}

.plan--complete {
  color: var(--text);
  border-color: #74bd7c;
  background: #e7f9dc;
  box-shadow: 12px 12px 0 #c1eea6;
}

.plan--complete::before {
  background: var(--green);
}

.plan__flag {
  top: 16px;
  right: 18px;
  color: var(--white);
  border-radius: 4px;
  background: var(--red);
}

.plan__top > span,
.plan--complete .plan__top > span {
  color: var(--ink-2);
}

.plan--complete .plan__top h3,
.plan--complete .plan__top p,
.plan--complete .plan__micro {
  color: var(--ink);
}

.plan--complete .plan__top p,
.plan--complete .plan__micro {
  opacity: .7;
}

.plan-stage {
  border-color: rgba(33, 23, 69, .15);
}

.plan-stage img {
  border: 3px solid var(--white);
  border-radius: 4px;
}

.plan--complete .plan__list li {
  border-bottom-color: rgba(33, 23, 69, .12);
}

.plan--complete .plan__list li::before {
  color: var(--green);
}

.steps {
  gap: 12px;
  border: 0;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.steps span {
  color: var(--ink-2);
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
}

.faq__q {
  font-family: Manrope, sans-serif;
}

.faq__q span {
  color: var(--gold);
}

footer {
  border-top-color: var(--gold);
  background: #17102f;
}

.modal__card {
  border: 0;
  border-top: 9px solid var(--gold);
  border-radius: 6px;
  background: #f6f5ff;
}

.modal h3 span {
  color: var(--ink-2);
}

.modal__covers img {
  border-color: var(--white);
  border-radius: 4px;
}

@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
    column-gap: 18px;
  }

  .hero h1 {
    font-size: 5.6rem;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "actions"
      "numbers";
  }

  .hero__copy {
    max-width: 680px;
    text-align: center;
  }

  .hero__copy .eyebrow {
    text-align: left;
  }

  .hero__promise,
  .hero__lead {
    margin-inline: auto;
  }

  .hero-stage {
    width: min(100%, 700px);
    margin: 26px auto 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .benefit {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 26px 0 20px;
  }

  .hero h1 {
    margin: 9px 0 13px;
    font-size: 3.5rem;
  }

  .hero h1 span {
    margin-top: 5px;
  }

  .hero__promise {
    max-width: 350px;
    margin-bottom: 10px;
    font-size: 1.16rem;
  }

  .hero__lead {
    max-width: 355px;
    font-size: .76rem;
    line-height: 1.5;
  }

  .hero-stage {
    height: 235px;
    aspect-ratio: auto;
    margin-top: 12px;
  }

  .hero-stage__legend {
    right: 0;
    bottom: -3px;
    left: 0;
  }

  .hero-stage__legend span {
    padding: 8px 3px;
    font-size: .45rem;
  }

  .hero__actions {
    gap: 9px;
    margin-top: 17px;
  }

  .hero__numbers {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 17px;
  }

  .hero__numbers div {
    min-height: 56px;
    padding: 7px 3px;
    border-bottom: 0;
  }

  .hero__numbers div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .hero__numbers strong {
    font-size: 1.05rem;
  }

  .hero__numbers span {
    margin-top: 4px;
    font-size: .4rem;
  }

  .hero__numbers div:nth-child(-n+2) {
    border-bottom: 0;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .gallery__item {
    box-shadow: 0 12px 28px rgba(10, 6, 30, .2);
  }

  .benefit,
  .benefit:nth-child(2),
  .steps article,
  .steps article:nth-child(2) {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .benefit {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 24px 18px;
  }

  .product-card {
    border-right: 1px solid rgba(33, 23, 69, .12);
    box-shadow: 0 12px 26px rgba(49, 39, 89, .1);
  }

  .product-card > img {
    border-right: 0;
  }

  .plan,
  .plan--complete {
    padding: 32px 18px 28px;
    box-shadow: 8px 8px 0 #d8d3ff;
  }

  .plan--complete {
    box-shadow: 8px 8px 0 #c1eea6;
  }

  .plan__flag {
    top: 14px;
    right: 12px;
    font-size: .54rem;
  }
}

/* Product mockups v2 */
.bundle__collage--mockup {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle__mockup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: multiply;
}

.plan-stage,
.plan-stage--complete {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plan-stage > img.plan-mockup,
.plan-stage--complete > img.plan-mockup,
.plan-stage > img.plan-mockup:nth-child(1),
.plan-stage--complete > img.plan-mockup:nth-child(1) {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  transform: none;
  mix-blend-mode: multiply;
}

@media (max-width: 760px) {
  .bundle__collage--mockup,
  .plan-stage,
  .plan-stage--complete {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Responsive device composition */
.bundle__collage--devices {
  min-height: 0;
  aspect-ratio: 4 / 3;
  position: relative;
}

.device-scene {
  position: absolute;
  inset: 4% 0 2%;
  isolation: isolate;
}

.device-laptop {
  position: absolute;
  top: 6%;
  left: 12%;
  width: 70%;
  z-index: 3;
  filter: drop-shadow(0 20px 22px rgba(19, 13, 52, .22));
}

.device-laptop__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 7px;
  overflow: hidden;
  background: #202635;
  border: 2px solid #0d111b;
  border-bottom-width: 10px;
  border-radius: 11px 11px 5px 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.device-laptop__screen::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 4px;
  height: 4px;
  z-index: 2;
  border-radius: 50%;
  background: #07090e;
}

.device-laptop__pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f8f5ec;
}

.device-laptop__pages img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-laptop__deck {
  position: relative;
  width: 112%;
  height: 96px;
  margin: -2px 0 0 -6%;
  transform: perspective(480px) rotateX(58deg);
  transform-origin: top center;
  background: linear-gradient(180deg, #e8ecf1 0%, #b8c0ca 68%, #8a94a1 100%);
  border: 1px solid #747e8b;
  border-radius: 3px 3px 16px 16px;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 2px rgba(255, 255, 255, .7), 0 8px 8px rgba(32, 38, 50, .16);
}

.device-keyboard {
  position: absolute;
  top: 8px;
  left: 11%;
  width: 78%;
  display: grid;
  gap: 3px;
  padding: 5px 6px;
  background: #555f6c;
  border: 1px solid #77818e;
  border-radius: 5px;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .28);
}

.device-keyboard__row {
  display: flex;
  height: 8px;
  gap: 3px;
}

.device-keyboard__row--function {
  height: 5px;
}

.device-keyboard__row--middle {
  padding-inline: 2.5%;
}

.device-keyboard__row--lower {
  padding-inline: 5%;
}

.device-keyboard__row i {
  min-width: 0;
  flex: 1;
  border: 1px solid #161b24;
  border-radius: 2px;
  background: linear-gradient(180deg, #404957 0%, #252c36 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 1px 1px rgba(0, 0, 0, .3);
}

.device-keyboard__row--space i:nth-child(4) {
  flex: 5;
}

.device-laptop__trackpad {
  position: absolute;
  left: 37%;
  bottom: 6px;
  width: 26%;
  height: 25px;
  border: 1px solid rgba(63, 72, 85, .52);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(235, 239, 244, .72), rgba(180, 188, 199, .58));
  box-shadow: inset 0 1px rgba(255, 255, 255, .7);
}

.device-tablet,
.device-phone {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  background: #151a24;
  border: 6px solid #171c27;
  box-shadow: 0 14px 28px rgba(19, 13, 52, .22);
}

.device-tablet {
  top: 15%;
  right: 1%;
  width: 29%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  transform: rotate(2deg);
}

.device-phone {
  top: 40%;
  left: 1%;
  width: 15%;
  aspect-ratio: 9 / 19;
  border-width: 5px;
  border-radius: 16px;
  transform: rotate(-3deg);
  z-index: 4;
}

.device-tablet img,
.device-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 760px) {
  .bundle__collage--devices {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .device-laptop__screen {
    padding: 4px;
    border-width: 1px;
    border-bottom-width: 7px;
    border-radius: 7px 7px 3px 3px;
  }

  .device-laptop__deck {
    height: 64px;
  }

  .device-keyboard {
    top: 5px;
    gap: 2px;
    padding: 3px 4px;
  }

  .device-keyboard__row {
    height: 5px;
    gap: 2px;
  }

  .device-keyboard__row--function {
    height: 3px;
  }

  .device-laptop__trackpad {
    height: 16px;
    bottom: 4px;
  }

  .device-tablet {
    border-width: 4px;
    border-radius: 7px;
  }

  .device-phone {
    border-width: 3px;
    border-radius: 10px;
  }
}
