    :root {
      --cream: #F3EBDD;
      --cream-2: #EEE4D5;
      --ink: #111111;
      --ink-2: #242424;
      --muted: #6A675F;
      --red: #E8402C;
      --yellow: #E3A10A;
      --max: 1180px;
      --hair: rgba(17, 17, 17, .16);
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      background: var(--cream)
    }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: "Inter", system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

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

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

    button {
      font: inherit
    }

    ::selection {
      background: var(--red);
      color: #fff
    }

    .wrap {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto
    }

    .display {
      font-family: "Anton", sans-serif;
      font-weight: 400;
      letter-spacing: -.026em;
      line-height: .92;
      text-transform: uppercase
    }

    .label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .red {
      color: var(--red)
    }

    .muted {
      color: var(--muted)
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(243, 235, 221, .98);
      border-bottom: 1px solid var(--hair)
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px
    }

    .brand {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px
    }

    .nav a:not(.cta-small) {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 4px;
      padding-left: 20px;
      border-left: 1px solid var(--hair)
    }

    .lang-switch a {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .06em;
      padding: 4px 6px;
      color: var(--muted);
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s
    }

    .lang-switch a:hover {
      color: var(--red)
    }

    .lang-switch a[aria-current="true"] {
      color: var(--ink);
      border-color: var(--red)
    }

    .nav a:not(.cta-small):hover {
      color: var(--red)
    }

    .cta,
    .cta-small {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--red);
      color: white;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      transition: background .2s, color .2s
    }

    .cta {
      min-height: 56px;
      padding: 0 26px
    }

    .cta-small {
      min-height: 42px;
      padding: 0 18px
    }

    .cta:hover,
    .cta-small:hover {
      background: var(--ink);
      color: var(--cream)
    }

    .cta-dark {
      background: var(--ink);
      color: var(--cream)
    }

    .cta-dark:hover {
      background: var(--red);
      color: white
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      padding: 82px 0 96px;
      isolation: isolate
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: 72px;
      align-items: center
    }

    .hero-copy {
      position: relative;
      z-index: 3
    }

    .hero h1 {
      margin: 20px 0 0;
      font-size: clamp(78px, 10.2vw, 146px);
      max-width: 6.8ch
    }

    .hero .promise {
      margin: 30px 0 0;
      max-width: 660px;
      font-size: clamp(21px, 2.25vw, 28px);
      line-height: 1.35;
      font-weight: 600;
      letter-spacing: -.02em
    }

    .hero .sub {
      margin: 22px 0 0;
      max-width: 620px;
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink-2)
    }

    .buy-row {
      margin-top: 34px;
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      white-space: nowrap
    }

    .price strong {
      font-size: 34px;
      letter-spacing: -.04em
    }

    .micro {
      margin-top: 16px;
      font-size: 12px;
      line-height: 1.6;
      color: var(--muted)
    }

    .hero-art {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .shape {
      position: absolute;
      pointer-events: none;
      will-change: transform
    }

    .hero-red {
      width: 78%;
      height: 62%;
      right: -5%;
      top: 22%;
      background: var(--red);
      clip-path: polygon(16% 7%, 100% 0, 89% 100%, 0 88%);
      z-index: -2
    }

    .hero-yellow {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      left: 7%;
      top: 19%;
      background: var(--yellow);
      z-index: -1
    }

    .cover {
      position: relative;
      z-index: 2;
      width: min(78%, 420px);
      box-shadow: 0 18px 44px rgba(17, 17, 17, .12)
    }

    .section {
      padding: 112px 0
    }

    .section-tight {
      padding: 86px 0
    }

    .section-alt {
      background: var(--cream-2)
    }

    .section-dark {
      background: var(--ink);
      color: var(--cream)
    }

    .section-heading {
      margin: 18px 0 0;
      font-size: clamp(52px, 6.5vw, 86px);
      max-width: 10ch
    }

    .section-lead {
      margin: 26px 0 0;
      max-width: 740px;
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-2)
    }

    .section-dark .section-lead {
      color: rgba(243, 235, 221, .72)
    }

    .sales-intro {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 92px;
      align-items: start
    }

    .sales-copy {
      margin: 22px 0 0;
      max-width: 660px;
      font-size: 16px;
      line-height: 1.75;
      color: var(--muted)
    }

    .question-stack {
      padding-top: 34px
    }

    .question-stack>p {
      margin: 0;
      padding: 24px 0;
      border-top: 1px solid var(--hair);
      font-size: clamp(19px, 2vw, 26px);
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: -.022em
    }

    .question-stack>p:last-of-type {
      border-bottom: 1px solid var(--hair)
    }

    .question-note {
      margin-top: 24px;
      max-width: 520px;
      font-size: 13px;
      line-height: 1.65;
      color: var(--muted)
    }

    .solution-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 92px;
      align-items: start
    }

    .solution-list {
      display: grid
    }

    .solution-list article {
      padding: 27px 0;
      border-top: 1px solid var(--hair)
    }

    .solution-list article:last-child {
      border-bottom: 1px solid var(--hair)
    }

    .solution-list h3 {
      margin: 0 0 8px;
      font-size: clamp(20px, 2vw, 26px);
      letter-spacing: -.025em
    }

    .solution-list p {
      margin: 0;
      max-width: 610px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7
    }

    .author-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 80px;
      align-items: center
    }

    .author-copy h2 {
      margin: 18px 0 0;
      font-size: clamp(52px, 6vw, 82px)
    }

    .author-copy .role {
      margin: 18px 0 0;
      font-weight: 600
    }

    .author-copy .bio {
      margin: 26px 0 0;
      max-width: 560px;
      color: var(--ink-2);
      font-size: 16px;
      line-height: 1.75
    }

    .author-photo-wrap {
      position: relative;
      min-height: 610px;
      display: flex;
      align-items: flex-end;
      justify-content: center
    }

    .author-photo-wrap .shape-red {
      width: 78%;
      height: 58%;
      right: -4%;
      top: 18%;
      background: var(--red);
      clip-path: polygon(10% 8%, 100% 0, 87% 100%, 0 90%);
      z-index: 0
    }

    .author-photo {
      position: relative;
      z-index: 2;
      width: min(88%, 520px);
      filter: grayscale(1);
      mix-blend-mode: multiply
    }

    .refined-photo-wrap {
      min-height: 650px
    }

    .refined-photo-wrap .shape-red {
      width: 72%;
      height: 58%;
      right: -2%;
      top: 20%;
      opacity: 1
    }

    .author-frame {
      position: relative;
      z-index: 2;
      width: min(88%, 540px);
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--cream-2)
    }

    .author-frame .author-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 55% 50%;
      filter: grayscale(1) contrast(1.035);
      mix-blend-mode: normal
    }

    .author-last {
      margin-top: 14px !important
    }

    .final {
      position: relative;
      overflow: hidden
    }

    .final-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 80px;
      align-items: end
    }

    .final h2 {
      margin: 18px 0 0;
      font-size: clamp(64px, 8vw, 112px);
      max-width: 8.8ch
    }

    .final p {
      margin: 28px 0 0;
      max-width: 660px;
      color: rgba(243, 235, 221, .72);
      font-size: 17px;
      line-height: 1.7
    }

    .final-buy {
      text-align: right
    }

    .final-buy .price strong {
      font-size: 40px
    }

    .footer {
      background: var(--ink);
      color: rgba(243, 235, 221, .45);
      padding: 0 0 36px
    }

    .footer p {
      margin: 0;
      border-top: 1px solid rgba(243, 235, 221, .12);
      padding-top: 24px;
      font-size: 11px;
      line-height: 1.7
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease
    }

    [data-reveal].is-in {
      opacity: 1;
      transform: none
    }

    .mobile-buy {
      display: none
    }

    #guia {
      padding-top: 150px;
      padding-bottom: 150px;
    }

    #conteudo {
      background: var(--cream-2);
      padding-top: 150px;
      padding-bottom: 150px;
    }

    #autor {
      padding-top: 150px;
      padding-bottom: 150px;
    }

    #comprar {
      padding-top: 130px;
      padding-bottom: 130px;
    }

    .section,
    .hero,
    .final {
      position: relative;
    }

    .hero::after,
    #guia::before,
    #conteudo::before,
    #autor::before,
    #comprar::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, .16) 16%, rgba(17, 17, 17, .16) 84%, rgba(17, 17, 17, 0));
    }

    .hero::after {
      top: auto;
      bottom: 0;
    }

    #guia,
    #conteudo,
    #autor,
    #comprar {
      padding-top: 168px;
      padding-bottom: 168px;
      overflow: hidden;
    }

    #guia {
      background: var(--cream);
    }

    #conteudo {
      background: linear-gradient(180deg, var(--cream-2) 0%, #EFE6D9 100%);
    }

    #autor {
      background: var(--cream);
    }

    #comprar {
      padding-top: 152px;
      padding-bottom: 152px;
    }

    .section-shape {
      position: absolute;
      pointer-events: none;
      will-change: transform;
      z-index: 0;
      opacity: .92;
    }

    .hero .buy-row {
      gap: 18px 24px;
      align-items: flex-end;
    }

    .hero .cta,
    .final .cta {
      min-height: 62px;
      padding: 0 30px;
      font-size: 12px;
      letter-spacing: .09em;
    }

    #comprar .final-grid {
      grid-template-columns: 1fr 390px;
      gap: 72px;
      align-items: center;
    }

    .offer-card {
      position: relative;
      z-index: 2;
      background: rgba(243, 235, 221, .06);
      border: 1px solid rgba(243, 235, 221, .12);
      padding: 28px 28px 26px;
      backdrop-filter: blur(2px);
      text-align: right;
    }

    .offer-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(243, 235, 221, .55);
    }

    .offer-old {
      margin-top: 14px;
      font-size: 18px;
      color: rgba(243, 235, 221, .58);
      text-decoration: line-through;
      text-decoration-thickness: 1.5px;
    }

    .offer-price {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 4px;
      line-height: .82;
    }

    .offer-price .currency {
      font-family: "Anton", sans-serif;
      font-size: 40px;
      color: var(--cream);
      transform: translateY(10px);
    }

    .offer-price .value {
      font-family: "Anton", sans-serif;
      font-size: clamp(110px, 10vw, 148px);
      color: var(--cream);
      letter-spacing: -.06em;
    }

    .offer-price .cents {
      font-family: "Anton", sans-serif;
      font-size: 38px;
      color: var(--cream);
      transform: translateY(18px);
    }

    .offer-card .badge {
      display: inline-flex;
      margin-top: 8px;
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--yellow);
    }

    .offer-points {
      margin: 18px 0 0;
      padding: 18px 0 0;
      list-style: none;
      display: grid;
      gap: 10px;
      border-top: 1px solid rgba(243, 235, 221, .12);
    }

    .offer-points li {
      color: rgba(243, 235, 221, .8);
      font-size: 14px;
      line-height: 1.6;
      text-align: right;
    }

    .offer-card .cta {
      width: 100%;
      margin-top: 20px !important;
      background: var(--red);
      color: #fff;
    }

    .offer-card .cta:hover {
      background: #fff;
      color: var(--ink);
    }

    .offer-card .micro {
      margin-top: 12px;
      color: rgba(243, 235, 221, .52) !important;
    }

    #conteudo .solution-list article {
      position: relative;
    }

    #conteudo .solution-list article::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 48px;
      height: 2px;
      background: var(--red);
    }

    .mobile-buy {
      align-items: center;
    }

    .mobile-buy .mobile-buy-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mobile-buy .mobile-old {
      font-size: 11px;
      line-height: 1;
      color: rgba(243, 235, 221, .52);
      text-decoration: line-through;
    }

    .mobile-buy strong {
      font-family: "Anton", sans-serif;
      font-size: 34px;
      line-height: .9;
      letter-spacing: -.04em;
    }

    .mobile-buy .cta-small {
      background: var(--red);
      color: #fff;
    }

    .subtle-shape {
      position: absolute;
      pointer-events: none;
      will-change: transform;
      z-index: 0;
      width: 180px;
      height: 110px;
      background: var(--red);
      clip-path: polygon(0 24%, 88% 0, 100% 72%, 12% 100%);
      opacity: .08;
    }

    .subtle-content {
      right: 4%;
      top: 110px;
    }

    .subtle-dot {
      position: absolute;
      pointer-events: none;
      will-change: transform;
      z-index: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--yellow);
      opacity: .32;
    }

    .subtle-author {
      left: 5%;
      bottom: 86px;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 80;
      pointer-events: none;
      background-image: url("assets/paper-texture.png");
      background-repeat: repeat;
      opacity: .14;
      mix-blend-mode: multiply;
    }

    .header,
    main,
    .footer,
    .mobile-buy {
      position: relative;
    }

    .header {
      position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 120 !important;
      background: rgba(243, 235, 221, .985);
      border-bottom: 1px solid rgba(17, 17, 17, .12);
      isolation: isolate;
    }

    main {
      position: relative;
      padding-top: 72px;
    }

    section[id] {
      scroll-margin-top: 88px;
    }

    .mobile-buy {
      z-index: 130 !important;
    }

    @media (max-width:980px) {
      .nav a:not(.cta-small) {
        display: none
      }

      .nav .lang-switch a {
        display: inline-block
      }

      .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 88px
      }

      .hero-grid,
      .sales-intro,
      .solution-grid,
      .author-grid,
      .final-grid {
        grid-template-columns: 1fr;
        gap: 52px
      }

      .hero-art {
        min-height: 520px
      }

      .cover {
        width: min(72%, 380px)
      }

      .author-photo-wrap {
        min-height: 560px
      }

      .final-buy {
        text-align: left
      }

      #comprar .final-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:900px) {

      #guia,
      #conteudo,
      #autor {
        padding-top: 110px;
        padding-bottom: 110px;
      }

      #comprar {
        padding-top: 100px;
        padding-bottom: 100px;
      }

      .sales-intro,
      .solution-grid {
        grid-template-columns: 1fr;
        gap: 52px
      }

      .question-stack {
        padding-top: 0
      }

      .refined-photo-wrap {
        min-height: 560px
      }
    }

    @media (max-width:640px) {
      :root {
        --mobile-header: 62px;
      }

      html {
        scroll-padding-top: calc(var(--mobile-header) + 12px);
      }

      body {
        padding-bottom: 78px;
      }

      main {
        padding-top: var(--mobile-header);
      }

      section[id] {
        scroll-margin-top: calc(var(--mobile-header) + 14px);
      }

      .wrap {
        width: min(calc(100% - 32px), var(--max))
      }

      .header-inner {
        min-height: var(--mobile-header);
        gap: 12px
      }

      .brand {
        font-size: 11px;
        letter-spacing: .035em;
        line-height: 1.1;
        max-width: 145px
      }

      .nav {
        gap: 10px;
        margin-left: auto
      }

      .lang-switch {
        padding-left: 8px;
        gap: 2px
      }

      .lang-switch a {
        font-size: 9px;
        padding: 3px 4px;
        letter-spacing: .04em
      }

      .nav a:not(.cta-small) {
        display: none !important
      }

      .header .cta-small {
        display: inline-flex !important;
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
        letter-spacing: .06em;
        white-space: nowrap;
        background: var(--ink);
        color: var(--cream)
      }

      .header .cta-small:hover {
        background: var(--red);
        color: #fff
      }

      .hero {
        padding: 42px 0 62px;
        min-height: auto
      }

      .hero-grid {
        gap: 38px
      }

      .hero-copy {
        width: 100%
      }

      .hero .label {
        font-size: 9px;
        letter-spacing: .14em;
        line-height: 1.45;
        max-width: 90%
      }

      .hero h1 {
        margin-top: 16px;
        font-size: clamp(62px, 20vw, 88px);
        line-height: .88;
        max-width: 100%;
        overflow-wrap: normal
      }

      .hero .promise {
        margin-top: 24px;
        font-size: 20px;
        line-height: 1.35;
        max-width: 100%
      }

      .hero .sub {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.62;
        max-width: 100%
      }

      .hero .buy-row {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch
      }

      .hero .price {
        justify-content: flex-start
      }

      .hero .price strong {
        font-size: 32px
      }

      .hero .cta {
        width: 100%;
        min-height: 54px;
        padding: 0 18px;
        text-align: center
      }

      .hero .micro {
        margin-top: 12px;
        font-size: 11px;
        line-height: 1.5;
        max-width: 95%
      }

      .hero-art {
        min-height: 390px;
        margin-top: 2px
      }

      .cover {
        width: min(76%, 292px);
        box-shadow: 0 16px 34px rgba(17, 17, 17, .11)
      }

      .hero-red {
        width: 80%;
        height: 59%;
        right: -8%;
        top: 23%
      }

      .hero-yellow {
        width: 48px;
        height: 48px;
        left: 4%;
        top: 18%
      }

      #guia,
      #conteudo,
      #autor {
        padding-top: 78px !important;
        padding-bottom: 78px !important
      }

      #comprar {
        padding-top: 76px !important;
        padding-bottom: 82px !important
      }

      .section-heading {
        font-size: clamp(46px, 15vw, 66px);
        line-height: .92;
        max-width: 9.5ch
      }

      .section-lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.65
      }

      .sales-copy {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7
      }

      .sales-intro,
      .solution-grid,
      .author-grid,
      #comprar .final-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important
      }

      .question-stack {
        padding-top: 2px
      }

      .question-stack>p {
        padding: 18px 0;
        font-size: 18px;
        line-height: 1.4
      }

      .question-note {
        margin-top: 18px;
        font-size: 12px
      }

      .solution-list article {
        padding: 22px 0
      }

      .solution-list h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px
      }

      .solution-list p {
        font-size: 14px;
        line-height: 1.68
      }

      #conteudo .solution-list article::before {
        width: 32px
      }

      .author-grid {
        display: flex !important;
        flex-direction: column
      }

      .author-copy {
        order: 1
      }

      .author-photo-wrap {
        order: 2;
        min-height: 0 !important;
        width: 100%;
        margin-top: 2px;
        padding-top: 6px
      }

      .author-frame {
        width: 100% !important;
        max-width: 430px;
        aspect-ratio: 4/5;
        margin-inline: auto
      }

      .author-copy h2 {
        font-size: clamp(48px, 15vw, 68px)
      }

      .author-copy .role {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.5
      }

      .author-copy .bio {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.72
      }

      .final h2 {
        font-size: clamp(54px, 17vw, 76px);
        line-height: .9;
        max-width: 100%
      }

      .final p {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65
      }

      .offer-card {
        padding: 22px 20px 20px;
        width: 100%
      }

      .offer-label {
        font-size: 10px
      }

      .offer-old {
        margin-top: 12px;
        font-size: 15px
      }

      .offer-price {
        margin-top: 2px
      }

      .offer-price .currency {
        font-size: 28px;
        transform: translateY(8px)
      }

      .offer-price .value {
        font-size: clamp(88px, 27vw, 118px)
      }

      .offer-price .cents {
        font-size: 25px;
        transform: translateY(13px)
      }

      .offer-card .badge {
        margin-top: 6px;
        font-size: 10px
      }

      .offer-points {
        margin-top: 16px;
        gap: 8px
      }

      .offer-points li {
        font-size: 13px;
        line-height: 1.52
      }

      .offer-card .cta {
        min-height: 54px;
        padding: 0 16px;
        font-size: 11px
      }

      .mobile-buy {
        display: flex !important;
        position: fixed !important;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 68px;
        padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
        background: var(--ink);
        color: var(--cream);
        border-top: 1px solid rgba(243, 235, 221, .12);
        gap: 12px
      }

      .mobile-buy .mobile-buy-copy {
        flex: 0 0 auto
      }

      .mobile-buy .mobile-old {
        font-size: 9px
      }

      .mobile-buy strong {
        font-size: 28px
      }

      .mobile-buy .cta-small {
        flex: 1;
        min-height: 44px;
        padding: 0 14px;
        font-size: 10px
      }

      .subtle-shape,
      .subtle-dot {
        display: none !important
      }

      body::after {
        opacity: .10 !important
      }
    }

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

      [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none
      }

      .shape {
        transform: none !important
      }
    }
