    :root {
      --black: #171313;
      --black-2: #211b1d;
      --black-3: #302729;
      --white: #ffffff;
      --off-white: #fbfaf9;
      --pink: #ed3b98;
      --pink-2: #d72986;
      --pink-soft: #cf6296;
      --magenta: #9f0764;
      --magenta-dark: #760044;
      --yellow: #fff227;
      --yellow-soft: #fff79a;
      --green: #139d31;
      --green-light: #58d817;
      --muted: #c8bdc1;
      --radius: 28px;
      --shadow: 0 24px 60px rgba(0, 0, 0, .24);
      --checkout: "https://checkout.payt.com.br/963b0fdc7ee90c1e8c9b1418948147e9";
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      color: var(--white);
      background: var(--black);
      font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.45;
      overflow-x: hidden;
    }

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

    a { color: inherit; }

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

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

    .section {
      position: relative;
      padding: clamp(72px, 8vw, 112px) 0;
      overflow: hidden;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--yellow);
      font-size: clamp(.72rem, 1.2vw, .9rem);
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 840px;
      margin: 0;
      font-size: clamp(2rem, 4.7vw, 4.5rem);
      line-height: 1.02;
      letter-spacing: -.055em;
    }

    .accent-pink { color: var(--pink); }
    .accent-yellow { color: var(--yellow); }
    .accent-green { color: var(--green-light); }

    .ticker {
      position: relative;
      z-index: 20;
      width: 100%;
      overflow: hidden;
      color: var(--white);
      background: var(--magenta);
      border-bottom: 1px solid rgba(255,255,255,.12);
      font-size: 12px;
      font-weight: 600;
      white-space: nowrap;
    }

    .ticker--yellow {
      color: var(--black);
      background: var(--yellow);
      border-bottom: 0;
    }

    .ticker__track {
      display: flex;
      width: max-content;
      animation: ticker 24s linear infinite;
    }

    .ticker__track span {
      padding: 8px 24px;
    }

    .hero-alert {
      font-size: clamp(.88rem, 1.35vw, 1.08rem);
      white-space: normal;
      text-align: center;
    }

    .hero-alert .ticker__track {
      display: flex;
      width: 100%;
      justify-content: center;
      animation: none;
    }

    .hero-alert .ticker__track span {
      width: 100%;
      padding: 12px 20px;
    }

    .hero-alert__line {
      display: block;
      font-weight: 700;
      white-space: nowrap;
    }

    @keyframes ticker {
      to { transform: translateX(-50%); }
    }

    .cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      min-height: 62px;
      padding: 10px 62px;
      color: var(--white);
      background: linear-gradient(90deg, #058928 0%, var(--green-light) 100%);
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 999px;
      box-shadow: 0 12px 34px rgba(20, 197, 53, .24), inset 0 1px 0 rgba(255,255,255,.28);
      font-size: clamp(.91rem, 1.2vw, 1.05rem);
      font-weight: 800;
      line-height: 1.2;
      text-decoration: none;
      text-align: center;
      text-transform: uppercase;
      transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
    }

    .cta:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(20, 197, 53, .32), inset 0 1px 0 rgba(255,255,255,.32);
    }

    .cta:focus-visible {
      outline: 4px solid rgba(255, 242, 39, .75);
      outline-offset: 4px;
    }

    .cta__arrow {
      position: absolute;
      top: 50%;
      right: 12px;
      display: grid;
      flex: 0 0 40px;
      width: 40px;
      height: 40px;
      place-items: center;
      border: 1px solid rgba(255,255,255,.65);
      border-radius: 50%;
      font-size: 22px;
      line-height: 1;
      transform: translateY(-50%);
    }

    .media-slot {
      position: relative;
      display: grid;
      min-height: 240px;
      place-items: center;
      overflow: hidden;
      color: rgba(255,255,255,.72);
      background:
        linear-gradient(135deg, rgba(237,59,152,.24), rgba(255,242,39,.13)),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
        var(--black-2);
      border: 1px dashed rgba(255,255,255,.38);
      border-radius: 22px;
      text-align: center;
    }

    .media-slot > img {
      position: absolute;
      z-index: 2;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .media-slot--contain > img { object-fit: contain; }

    .media-slot.has-image {
      border: 0;
      background: transparent;
    }

    .media-slot.has-image .media-slot__label { display: none; }

    .media-slot__label {
      z-index: 1;
      max-width: 210px;
      padding: 18px;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.45;
      text-transform: uppercase;
    }

    .hero {
      padding: 0 0 clamp(72px, 8vw, 112px);
      background:
        radial-gradient(circle at 78% 35%, rgba(237,59,152,.13), transparent 30%),
        var(--black);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
      gap: clamp(36px, 5vw, 72px);
      align-items: center;
      padding-top: clamp(56px, 7vw, 88px);
    }

    .hero h1 {
      max-width: 680px;
      margin: 0;
      font-size: clamp(2.05rem, 3.55vw, 3.65rem);
      line-height: 1.04;
      letter-spacing: -.05em;
    }

    .hero__lead {
      max-width: 660px;
      margin: 26px 0 0;
      color: #eee7e9;
      font-size: clamp(1rem, 1.65vw, 1.24rem);
    }

    .hero__price-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(8px, 1.4vw, 18px);
      align-items: center;
      width: min(100%, 650px);
      margin: 34px auto 26px;
      text-align: center;
    }

    .hero__price-old,
    .hero__price-current,
    .timer-box {
      display: flex;
      min-width: 0;
      height: 100%;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .old-price {
      display: block;
      margin-bottom: 2px;
      color: var(--pink-soft);
      font-size: clamp(.74rem, 1.25vw, .92rem);
      font-weight: 700;
      text-decoration: line-through;
      white-space: nowrap;
    }

    .price-line__label {
      display: block;
      color: #ddd4d7;
      font-size: clamp(.7rem, 1.2vw, .9rem);
      font-weight: 700;
      white-space: nowrap;
    }

    .hero__price-current strong {
      display: block;
      width: 100%;
      max-width: 190px;
      padding: 12px 10px;
      color: var(--white);
      background: var(--pink-2);
      border-radius: 999px;
      font-size: clamp(1.2rem, 2.35vw, 1.9rem);
      line-height: 1;
      letter-spacing: -.04em;
      white-space: nowrap;
    }

    .timer-box {
      color: #d9cfd2;
      font-size: clamp(.7rem, 1.2vw, .9rem);
      font-weight: 700;
    }

    .timer-box__label { white-space: nowrap; }

    .timer {
      display: block;
      margin-top: 4px;
      color: var(--yellow);
      font-size: clamp(1rem, 2vw, 1.4rem);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .hero__proof {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 28px;
      margin-top: 26px;
      color: #d8cfd2;
      font-size: .84rem;
      font-weight: 600;
    }

    .hero__proof span::before {
      margin-right: 7px;
      color: var(--yellow);
      content: "●";
    }

    .hero__copy > .cta {
      display: flex;
      width: min(100%, 610px);
      min-height: 68px;
      margin-inline: auto;
      font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    }

    .hero__visual {
      position: relative;
      width: min(100%, 520px);
      aspect-ratio: 1;
      margin-inline: auto;
    }

    .hero__yellow-panel {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: var(--yellow);
      border: 2px solid var(--pink);
      border-radius: 32px;
      box-shadow: var(--shadow);
    }

    .hero__yellow-panel .media-slot {
      width: 100%;
      height: 100%;
      min-height: 0;
      color: var(--black);
      background: transparent;
      border-color: rgba(23,19,19,.42);
      border-radius: inherit;
    }

    .hero__yellow-panel .media-slot > img {
      object-fit: cover;
      object-position: center;
    }

    .results {
      padding-top: 0;
      background: #130f10;
    }

    .results__head {
      padding-top: clamp(64px, 7vw, 92px);
      text-align: center;
    }

    .results__head .section-title {
      margin-inline: auto;
      max-width: 900px;
      font-size: clamp(2rem, 4.4vw, 4rem);
    }

    .results__viewport {
      margin-top: 42px;
      margin-inline: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .results__rail {
      display: flex;
      width: max-content;
      animation: testimonials 28s linear infinite;
      will-change: transform;
    }

    .results__rail:hover { animation-play-state: paused; }

    .results__group {
      display: flex;
      gap: 14px;
      padding-right: 14px;
    }

    @keyframes testimonials {
      to { transform: translateX(-50%); }
    }

    .result-card {
      flex: 0 0 clamp(240px, 21vw, 300px);
      min-height: 390px;
      padding: 8px;
      background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 24px;
    }

    .result-card .media-slot {
      height: 100%;
      min-height: 372px;
      border-radius: 17px;
    }

    .results__cta {
      display: flex;
      justify-content: center;
      margin-top: 34px;
    }

    .results__cta .cta {
      width: min(100%, 620px);
      min-height: 72px;
      font-size: clamp(1.05rem, 1.55vw, 1.22rem);
    }

    .audience {
      padding-top: 88px;
      background: linear-gradient(180deg, var(--magenta) 0%, #ae0870 100%);
    }

    .audience__panel {
      position: relative;
      padding: clamp(70px, 7vw, 92px) clamp(22px, 5vw, 66px) clamp(34px, 5vw, 58px);
      background: var(--black);
      border: 2px solid var(--yellow);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .floating-emoji {
      position: absolute;
      z-index: 2;
      top: -52px;
      left: 50%;
      display: grid;
      width: 104px;
      height: 104px;
      place-items: center;
      background: radial-gradient(circle at 36% 30%, #fff8b2, var(--yellow) 42%, #ef9c00 100%);
      border: 6px solid rgba(255,255,255,.28);
      border-radius: 50%;
      box-shadow: 0 16px 36px rgba(0,0,0,.28);
      font-size: 56px;
      transform: translateX(-50%);
    }

    .audience__head {
      max-width: 820px;
      margin-inline: auto;
      text-align: center;
    }

    .audience__head .section-title {
      font-size: clamp(2rem, 4.1vw, 3.85rem);
    }

    .audience__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 42px;
    }

    .audience-card {
      overflow: hidden;
      background: var(--off-white);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 19px;
    }

    .audience-card:nth-child(3n + 2) { background: #f7d7e6; }
    .audience-card:nth-child(3n + 3) { background: #fff791; }

    .audience-card .media-slot {
      min-height: 180px;
      color: #685a5f;
      background: rgba(255,255,255,.72);
      border: 0;
      border-radius: 0;
    }

    .audience-card__copy {
      min-height: 150px;
      margin: 0;
      padding: 22px;
      color: var(--black);
      font-size: clamp(.88rem, 1.25vw, 1rem);
      font-weight: 600;
      text-align: center;
    }

    .audience__cta {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    .why {
      padding: 0;
      color: var(--white);
      background: var(--black);
    }

    .why__grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      min-height: 650px;
    }

    .why__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 70px 54px;
      background: var(--off-white);
    }

    .why__visual::after {
      position: absolute;
      z-index: 3;
      top: 58px;
      right: 26px;
      font-size: 78px;
      content: "💗";
      filter: drop-shadow(0 12px 14px rgba(0,0,0,.14));
    }

    .why__visual .media-slot {
      width: min(100%, 430px);
      min-height: 500px;
      color: #6c5c61;
      background: #f2e9ec;
      border-color: #a99199;
      box-shadow: 0 24px 52px rgba(34, 20, 25, .16);
      transform: rotate(-2deg);
    }

    .why__copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(58px, 7vw, 96px);
      text-align: center;
    }

    .why__copy .section-title {
      max-width: 650px;
      font-size: clamp(2rem, 4vw, 3.8rem);
    }

    .why__intro {
      max-width: 650px;
      margin: 22px auto 28px;
      color: #ded6d9;
      font-size: 1rem;
    }

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

    .why__steps li {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: center;
      min-height: 76px;
      padding: 14px 20px;
      background: linear-gradient(90deg, var(--pink-soft), var(--pink-2));
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 13px;
      font-size: clamp(.88rem, 1.3vw, 1rem);
      font-weight: 700;
      text-align: center;
    }

    .why__steps strong {
      display: grid;
      flex: 0 0 38px;
      width: 38px;
      height: 38px;
      place-items: center;
      color: var(--pink-2);
      background: var(--white);
      border-radius: 50%;
    }

    .comparison {
      color: var(--black);
      background: var(--off-white);
    }

    .comparison__grid {
      display: grid;
      grid-template-columns: 1fr 90px 1fr;
      gap: 26px;
      align-items: center;
    }

    .comparison-card {
      position: relative;
      min-height: 470px;
      padding: 70px 34px 36px;
      color: var(--white);
      background: linear-gradient(150deg, #4b4043 0%, var(--black-2) 70%);
      border-radius: 26px;
      box-shadow: var(--shadow);
    }

    .comparison-card--yes {
      background: linear-gradient(150deg, #342529 0%, var(--black) 66%);
      border: 2px solid var(--pink);
    }

    .comparison-card__emoji {
      position: absolute;
      top: -42px;
      left: 50%;
      font-size: 70px;
      filter: drop-shadow(0 12px 12px rgba(0,0,0,.2));
      transform: translateX(-50%);
    }

    .comparison-card h3 {
      margin: 0 0 24px;
      font-size: clamp(1.3rem, 2.25vw, 2rem);
      line-height: 1.1;
      text-align: center;
      text-transform: uppercase;
    }

    .comparison-card ul {
      display: grid;
      gap: 15px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .comparison-card li {
      display: flex;
      gap: 10px;
      color: #eee8ea;
      font-size: .95rem;
    }

    .comparison-card li::before {
      color: #ff6b9d;
      content: "✕";
      font-weight: 800;
    }

    .comparison-card--yes li::before {
      color: var(--green-light);
      content: "✓";
    }

    .comparison__x {
      display: grid;
      width: 84px;
      height: 84px;
      place-items: center;
      color: var(--pink-2);
      background: var(--white);
      border: 5px solid var(--pink-soft);
      border-radius: 50%;
      font-size: 44px;
      font-weight: 800;
      line-height: 1;
    }

    .comparison__cta {
      display: flex;
      justify-content: center;
      margin-top: 46px;
    }

    .contents {
      padding-top: 0;
      background: #120e0f;
    }

    .contents__grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: clamp(36px, 7vw, 96px);
      align-items: center;
      padding-top: clamp(64px, 8vw, 100px);
    }

    .contents__grid > div:first-child {
      text-align: center;
    }

    .contents__grid > div:first-child .section-title {
      margin-inline: auto;
    }

    .contents .section-title {
      font-size: clamp(2.15rem, 4.7vw, 4.65rem);
    }

    .contents__lead {
      max-width: 620px;
      margin: 22px auto 28px;
      color: #d7ced1;
    }

    .contents__list {
      display: grid;
      gap: 14px;
      width: fit-content;
      max-width: 100%;
      margin: 0 auto 34px;
      padding: 0;
      list-style: none;
    }

    .contents__list li {
      display: flex;
      gap: 12px;
      align-items: center;
      color: #f4eef0;
      font-size: .94rem;
      font-weight: 600;
      text-align: left;
    }

    .contents__list li::before {
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      background: var(--pink);
      border: 3px solid var(--pink);
      border-radius: 50%;
      box-shadow: inset 0 0 0 3px var(--black);
      content: "";
    }

    .contents__list li:nth-child(2)::before,
    .contents__list li:nth-child(5)::before { background: var(--yellow); border-color: var(--yellow); }
    .contents__list li:nth-child(3)::before { background: var(--white); border-color: var(--white); }
    .contents__list li:nth-child(4)::before { background: var(--green-light); border-color: var(--green-light); }

    .contents__grid > div:first-child > .cta {
      margin-inline: auto;
    }

    .contents__visual {
      position: relative;
      min-height: 540px;
    }

    .contents__visual::before {
      position: absolute;
      inset: 0 74px 0 52px;
      background: var(--yellow);
      border-radius: 24px;
      content: "";
      transform: rotate(1.5deg);
    }

    .contents__visual .media-slot {
      position: absolute;
      z-index: 2;
      inset: 34px 0 24px;
      min-height: 0;
      background: transparent;
      border-color: rgba(255,255,255,.42);
    }

    .contents__visual .media-slot > img { object-fit: contain; }

    .contents__emoji {
      position: absolute;
      z-index: 4;
      font-size: 66px;
      filter: drop-shadow(0 12px 12px rgba(0,0,0,.28));
    }

    .contents__emoji--one { top: -10px; right: 8px; }
    .contents__emoji--two { bottom: 12px; left: 0; }

    .offer {
      color: var(--black);
      background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, #a40065 0%, var(--pink-2) 52%, #a30062 100%);
    }

    .offer__head {
      text-align: center;
    }

    .offer__head .section-title {
      margin-inline: auto;
      max-width: 920px;
      color: var(--white);
      font-size: clamp(2.2rem, 5vw, 4.8rem);
    }

    .offer__head p {
      max-width: 700px;
      margin: 18px auto 0;
      color: #ffe5f3;
    }

    .offer__card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr .88fr;
      gap: 32px;
      max-width: 1000px;
      margin: 48px auto 0;
      padding: clamp(28px, 5vw, 58px);
      background: var(--off-white);
      border: 2px solid var(--yellow);
      border-radius: 32px;
      box-shadow: 0 30px 80px rgba(65,0,34,.34);
    }

    .offer__badge {
      position: absolute;
      top: -18px;
      left: 50%;
      padding: 9px 20px;
      color: var(--black);
      background: var(--yellow);
      border: 2px solid var(--black);
      border-radius: 999px;
      font-size: .73rem;
      font-weight: 800;
      text-transform: uppercase;
      transform: translateX(-50%) rotate(-1deg);
    }

    .offer__logo {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 18px;
      font-size: 1.05rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .offer__left h3 {
      margin: 0 0 26px;
      font-size: clamp(1.75rem, 3.4vw, 3rem);
      line-height: 1.06;
      letter-spacing: -.045em;
    }

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

    .offer__items li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      color: #392f32;
      font-size: .94rem;
      font-weight: 600;
    }

    .offer__items li::before {
      display: grid;
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      place-items: center;
      color: var(--white);
      background: var(--green);
      border-radius: 7px;
      content: "✓";
      font-weight: 800;
    }

    .offer__right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(24px, 4vw, 40px);
      color: var(--white);
      background: var(--black);
      border-radius: 24px;
      text-align: center;
    }

    .offer__anchor {
      margin-bottom: 6px;
      color: #9e9296;
      font-size: .84rem;
      text-decoration: line-through;
    }

    .offer__only {
      margin: 0;
      color: #d9d0d3;
      font-size: .82rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .offer__price {
      margin: 6px 0 18px;
      color: var(--yellow);
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.07em;
    }

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

    .offer__secure {
      margin: 14px 0 0;
      color: #bcb1b5;
      font-size: .68rem;
    }

    .summer {
      padding: 72px 0;
      background: linear-gradient(180deg, #98005d, #b30a72);
    }

    .summer__panel {
      position: relative;
      display: grid;
      grid-template-columns: .84fr 1.16fr;
      min-height: 560px;
      overflow: hidden;
      background: var(--black);
      border: 2px solid var(--yellow);
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .summer__copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(36px, 6vw, 74px);
      text-align: center;
    }

    .summer__copy .section-title {
      max-width: 720px;
      margin-inline: auto;
      font-size: clamp(2rem, 3.8vw, 3.65rem);
    }

    .summer__copy p:not(.eyebrow) {
      max-width: 700px;
      margin: 22px auto 0;
      color: #ded5d8;
    }

    .summer__copy .cta {
      width: min(100%, 540px);
      margin-top: 30px;
      font-size: 1.02rem;
      text-align: center;
    }

    .summer__visual {
      position: relative;
      min-height: 560px;
      background: var(--yellow);
    }

    .summer__visual .media-slot {
      position: absolute;
      inset: 16px;
      min-height: 0;
      color: var(--black);
      background: transparent;
      border-color: rgba(23,19,19,.38);
    }

    .summer__visual .media-slot > img {
      object-fit: cover;
      object-position: center;
    }

    .about {
      padding: 72px 0;
      background: #120e0f;
    }

    .about__panel {
      position: relative;
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      min-height: 590px;
      overflow: hidden;
      background: var(--black);
      border: 2px solid var(--yellow);
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .about__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(40px, 6vw, 76px);
    }

    .about__copy .section-title {
      max-width: 680px;
      font-size: clamp(2rem, 3.8vw, 3.55rem);
    }

    .about__copy p:not(.eyebrow) {
      max-width: 690px;
      margin: 19px 0 0;
      color: #ddd4d7;
    }

    .about__visual {
      position: relative;
      min-height: 590px;
      background: var(--yellow);
    }

    .about__visual .media-slot {
      position: absolute;
      inset: 16px;
      min-height: 0;
      color: var(--black);
      background: transparent;
      border-color: rgba(23,19,19,.38);
    }

    .about__visual .media-slot > img {
      object-fit: contain;
      object-position: center bottom;
    }

    .profile-chip {
      position: absolute;
      z-index: 4;
      top: 30px;
      right: 25%;
      display: flex;
      gap: 12px;
      align-items: center;
      width: min(330px, 60%);
      padding: 12px 16px;
      color: var(--white);
      background: #111;
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 18px;
      box-shadow: 0 16px 32px rgba(0,0,0,.3);
    }

    .profile-chip__avatar {
      display: grid;
      flex: 0 0 48px;
      width: 48px;
      height: 48px;
      place-items: center;
      overflow: hidden;
      background: #3a3033;
      border: 2px solid var(--pink);
      border-radius: 50%;
      font-size: .58rem;
      text-align: center;
    }

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

    .profile-chip__copy {
      min-width: 0;
      font-size: .58rem;
      line-height: 1.4;
    }

    .profile-chip__copy strong {
      display: block;
      overflow: hidden;
      font-size: .72rem;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .faq {
      text-align: center;
      background: var(--black);
    }

    .faq__icon {
      position: relative;
      display: grid;
      width: 92px;
      height: 92px;
      margin: 0 auto 24px;
      place-items: center;
      color: var(--black);
      background: var(--pink);
      border-radius: 18px;
      font-size: 44px;
      transform: rotate(45deg);
    }

    .faq__icon span { transform: rotate(-45deg); }

    .faq .section-title {
      margin-inline: auto;
      font-size: clamp(2rem, 4vw, 3.6rem);
    }

    .faq__list {
      display: grid;
      gap: 12px;
      max-width: 820px;
      margin: 42px auto 0;
      text-align: left;
    }

    .faq details {
      overflow: hidden;
      background: linear-gradient(90deg, #cb6092, var(--pink));
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px;
      box-shadow: 0 10px 26px rgba(0,0,0,.13);
    }

    .faq summary {
      position: relative;
      padding: 20px 62px 20px 24px;
      cursor: pointer;
      font-size: .96rem;
      font-weight: 800;
      list-style: none;
    }

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

    .faq summary::after {
      position: absolute;
      top: 50%;
      right: 22px;
      font-size: 24px;
      content: "+";
      transform: translateY(-50%);
      transition: transform .18s ease;
    }

    .faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

    .faq details p {
      margin: 0;
      padding: 0 24px 22px;
      color: #fff4f9;
      font-size: .9rem;
    }

    .footer {
      padding: 34px 0;
      color: #9e9296;
      background: #100c0d;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: .7rem;
      text-align: center;
    }

    .footer p {
      max-width: 820px;
      margin: 0 auto;
    }

    @media (max-width: 980px) {
      .hero__grid,
      .contents__grid,
      .offer__card,
      .summer__panel,
      .about__panel { grid-template-columns: 1fr; }

      .hero__grid { max-width: 760px; margin-inline: auto; }

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

      .why__grid { grid-template-columns: 1fr; }
      .why__visual { min-height: 590px; }
      .why__copy { order: -1; }

      .comparison__grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-inline: auto;
      }

      .comparison__x {
        margin: -8px auto;
      }

      .comparison-card { min-height: 0; }

      .contents__visual { min-height: 500px; }

      .offer__card { max-width: 720px; }
      .offer__right { min-height: 380px; }

      .summer__panel { max-width: 760px; margin-inline: auto; }
      .summer__visual { min-height: 520px; }
      .about__panel { max-width: 760px; margin-inline: auto; }
      .about__visual { min-height: 520px; }
      .profile-chip { right: 22px; }
    }

    @media (max-width: 640px) {
      .container { width: min(1180px, calc(100% - 32px)); }
      .section { padding: 60px 0; }

      .ticker { font-size: 10px; }
      .ticker__track span { padding: 7px 16px; }
      .hero-alert { font-size: clamp(.64rem, 3vw, .78rem); line-height: 1.35; }
      .hero-alert .ticker__track span { padding: 11px 16px; }

      .cta {
        width: 100%;
        min-height: 58px;
        padding: 10px 56px;
        font-size: .82rem;
      }

      .cta__arrow {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
      }

      .hero { padding-bottom: 62px; }
      .hero__grid { gap: 34px; padding-top: 42px; }
      .hero__copy { text-align: center; }
      .hero h1 { margin-inline: auto; font-size: clamp(1.72rem, 7.4vw, 2.12rem); line-height: 1.08; }
      .hero__lead { margin: 18px auto 0; font-size: .92rem; }
      .hero__price-row { width: 100%; gap: 6px; margin: 25px auto 23px; }
      .hero__price-current strong { padding: 10px 5px; font-size: clamp(1rem, 4.8vw, 1.22rem); }
      .old-price { font-size: clamp(.62rem, 2.8vw, .76rem); }
      .price-line__label,
      .timer-box { font-size: clamp(.59rem, 2.6vw, .72rem); }
      .timer { font-size: clamp(.95rem, 4.6vw, 1.16rem); }
      .hero__copy > .cta { min-height: 64px; font-size: .98rem; }
      .hero__proof { justify-content: center; gap: 10px 18px; font-size: .74rem; }
      .hero__visual { order: -1; width: min(100%, 430px); }
      .hero__yellow-panel { border-radius: 25px; }

      .results { padding-top: 0; }
      .results__head { padding-top: 56px; }
      .results__viewport { margin-inline: -16px; -webkit-mask-image: none; mask-image: none; }
      .results__rail { animation-duration: 24s; }
      .result-card { flex-basis: 78vw; }
      .result-card { min-height: 430px; }
      .result-card .media-slot { min-height: 412px; }
      .results__cta .cta { min-height: 66px; font-size: .98rem; }

      .audience { padding-top: 76px; }
      .audience__panel { padding: 62px 14px 24px; border-radius: 22px; }
      .floating-emoji { top: -40px; width: 82px; height: 82px; font-size: 44px; }
      .audience__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
      .audience-card { display: grid; grid-template-columns: 112px 1fr; align-items: stretch; }
      .audience-card .media-slot { min-height: 146px; }
      .audience-card__copy { display: flex; min-height: 146px; align-items: center; padding: 18px; text-align: left; }

      .why__copy { padding: 58px 16px 46px; }
      .why__steps li { min-height: 72px; padding: 13px 15px; }
      .why__visual { min-height: 500px; padding: 50px 32px; }
      .why__visual .media-slot { min-height: 410px; }
      .why__visual::after { top: 26px; right: 12px; font-size: 54px; }

      .comparison-card { padding: 58px 24px 28px; border-radius: 22px; }
      .comparison-card__emoji { top: -34px; font-size: 58px; }
      .comparison__x { width: 68px; height: 68px; font-size: 36px; }

      .contents { padding-top: 0; }
      .contents__grid { padding-top: 56px; }
      .contents__visual { min-height: 410px; }
      .contents__visual::before { inset: 0 34px 0 28px; }
      .contents__visual .media-slot { inset: 24px 0 14px; }
      .contents__emoji { font-size: 50px; }

      .offer__card { margin-top: 38px; padding: 38px 18px 18px; border-radius: 24px; }
      .offer__right { min-height: 340px; padding: 30px 18px; }
      .offer__price { font-size: 3.7rem; }

      .summer { padding: 52px 0; }
      .summer__panel { border-radius: 24px; }
      .summer__copy { padding: 48px 24px 34px; }
      .summer__visual { min-height: 430px; }
      .about { padding: 52px 0; }
      .about__panel { border-radius: 24px; }
      .about__copy { padding: 48px 24px 34px; text-align: center; }
      .about__copy .section-title { margin-inline: auto; }
      .about__copy p:not(.eyebrow) { margin-inline: auto; }
      .about__visual { min-height: 430px; }
      .profile-chip { top: auto; right: 20px; bottom: 24px; left: 20px; width: auto; }

      .faq__list { margin-top: 34px; }
      .faq summary { padding: 18px 54px 18px 18px; font-size: .88rem; }
      .faq details p { padding: 0 18px 20px; font-size: .82rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }
