:root {
  --bft-blue: #00b5cc;
  --black: #000000;
  --ink: #0a1114;
  --steel: #162126;
  --mist: #eef5f6;
  --line: #cbd8da;
  --white: #ffffff;
  --muted: #667479;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", "DIN Alternate", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --split-gutter: clamp(48px, 6vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.button,
.eyebrow,
.studio-name,
.date-lockup,
.offer-strip,
.checkout-topline,
.rating-value,
.stars,
.mobile-claim,
footer {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  line-height: 0.91;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: clamp(4.5rem, 8vw, 8.4rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--black);
  color: var(--white);
}

.brand {
  display: block;
  width: 175px;
  height: 50px;
  overflow: hidden;
}

.brand img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.studio-name {
  color: var(--bft-blue);
  font-size: 1.25rem;
  text-align: center;
}

.header-claim {
  padding: 11px 0 8px;
  border-bottom: 3px solid var(--bft-blue);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.88fr);
  min-height: calc(100vh - 84px);
  background: var(--black);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 84px var(--split-gutter) 88px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--bft-blue);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--ink);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: #d7e1e3;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px 13px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 1.35rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--bft-blue);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-outline {
  border-color: var(--white);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--bft-blue);
  background: var(--bft-blue);
  color: var(--black);
}

.microcopy {
  margin: 18px 0 0;
  color: #8fa0a5;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-left: 14px solid var(--bft-blue);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--bft-blue);
  content: "";
}

.hero-visual::before {
  left: 15px;
}

.hero-visual::after {
  left: 30px;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.date-lockup {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bft-blue);
  color: var(--black);
  line-height: 0.8;
}

.date-lockup div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 6px;
}

.date-lockup strong {
  font-size: 3.4rem;
}

.date-lockup span {
  font-size: 1.1rem;
}

.date-to {
  align-self: center;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.checkout-section {
  padding: 110px 0 130px;
  background: var(--mist);
}

.checkout-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.checkout-intro h2 {
  margin-bottom: 0;
}

.checkout-intro > p {
  max-width: 520px;
  margin: 0 0 10px;
  color: #46565b;
  font-size: 1.05rem;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.18rem;
  text-align: center;
}

.offer-strip span {
  padding: 18px 14px 14px;
}

.offer-strip span + span {
  border-left: 1px solid var(--line);
}

.checkout-shell {
  border: 1px solid #b9c8cb;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(10, 17, 20, 0.12);
}

.checkout-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px 14px;
  border-bottom: 1px solid #233239;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.checkout-topline > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-topline > span {
  color: #91a0a4;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
}

.secure-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bft-blue);
  box-shadow: 0 0 0 4px rgba(0, 181, 204, 0.15);
}

.checkout-frame-wrap {
  position: relative;
  min-height: 1130px;
  background: #f6f7f8;
}

#checkout-frame {
  display: block;
  width: 100%;
  min-height: 1130px;
  border: 0;
  background: var(--white);
}

.frame-loader {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  background: #f6f7f8;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.frame-loader span {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  border: 4px solid #d9e4e6;
  border-top-color: var(--bft-blue);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.frame-loader p {
  margin: 0;
}

.frame-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.checkout-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration-color: var(--bft-blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.reassurance {
  padding: 92px 0;
  background: var(--bft-blue);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.statement-number {
  margin: 0;
  border-top: 5px solid var(--black);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.3;
}

.reassurance h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.reassurance .eyebrow {
  color: var(--black);
}

.reassurance-grid > p:last-child {
  margin: 32px 0 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.training-section {
  padding: 130px 0 150px;
  background: var(--black);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  column-gap: 80px;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: #9aabad;
  font-size: 1.05rem;
}

.training-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 22px;
  align-items: start;
}

.training-panel {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--steel);
}

.training-panel-offset {
  margin-top: 82px;
}

.training-panel img {
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.training-panel::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.training-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.training-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--bft-blue);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
}

.training-copy p {
  max-width: 390px;
  margin: 0;
  color: #c7d3d5;
}

.training-panel-type {
  min-height: 520px;
  margin-top: 170px;
  background: var(--bft-blue);
  color: var(--black);
}

.training-panel-type::after {
  display: none;
}

.training-panel-type .training-copy p,
.training-panel-type .training-copy > span {
  color: var(--black);
}

.type-art {
  position: absolute;
  top: 18px;
  left: -11px;
  font-family: var(--display);
  font-size: 11rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.13;
  writing-mode: vertical-rl;
}

.proof-section {
  padding: 92px 0;
  border-top: 1px solid #243238;
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rating-value {
  color: var(--bft-blue);
  font-size: clamp(6rem, 11vw, 10rem);
  line-height: 0.72;
}

.stars {
  display: block;
  color: var(--bft-blue);
  font-size: 1.7rem;
  letter-spacing: 0.12em;
}

.rating p {
  margin: 8px 0 0;
  color: #a4b1b4;
  font-family: var(--display);
  font-weight: 900;
}

blockquote {
  margin-bottom: 0;
  padding-left: 36px;
  border-left: 5px solid var(--bft-blue);
}

blockquote p {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

blockquote cite {
  color: #9aabad;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coaches-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: var(--black);
  color: var(--white);
}

.coaches-image {
  min-height: 760px;
  overflow: hidden;
}

.coaches-image img {
  height: 100%;
  object-fit: cover;
}

.coaches-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px var(--split-gutter) 100px 78px;
}

.coaches-copy p:not(.eyebrow) {
  max-width: 600px;
  color: #c2ced0;
}

.coaches-copy .button {
  margin-top: 20px;
}

.steps-section {
  padding: 120px 0;
  background: var(--white);
}

.section-heading-compact {
  display: block;
  max-width: 880px;
  margin-bottom: 55px;
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 38px;
  align-items: center;
  min-height: 180px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  color: var(--bft-blue);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
}

.steps-list h3 {
  margin-bottom: 8px;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding: 130px 0;
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.faq-title {
  position: sticky;
  top: 42px;
  align-self: start;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid #aebdc0;
}

.faq-list summary {
  position: relative;
  padding: 28px 52px 25px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--bft-blue);
  content: "+";
  font-size: 2rem;
}

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

.faq-list details p {
  max-width: 620px;
  padding: 0 40px 26px 0;
  color: var(--muted);
}

.find-section {
  padding: 110px 0;
  background: var(--bft-blue);
}

.find-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 70px;
  align-items: stretch;
}

.find-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.find-section .eyebrow {
  color: var(--black);
}

.find-section h2 {
  margin-bottom: 34px;
}

address {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-style: normal;
}

address strong {
  margin-bottom: 10px;
}

address a {
  margin-top: 8px;
  font-weight: 700;
}

.find-copy .button {
  margin-top: 34px;
}

.map-shell {
  min-height: 460px;
  overflow: hidden;
  border: 5px solid var(--black);
  background: var(--black);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.find-section .button-primary {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.find-section .button-primary:hover,
.find-section .button-primary:focus-visible {
  background: var(--white);
  color: var(--black);
}

footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: var(--black);
  color: #78878b;
  font-size: 0.78rem;
  text-align: center;
}

footer span:first-child {
  color: var(--bft-blue);
  text-align: left;
}

footer span:last-child {
  text-align: right;
}

.mobile-claim {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  background: var(--bft-blue);
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-claim.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  background: var(--black);
  color: var(--white);
}

.thanks-shell {
  width: min(860px, 100%);
  text-align: center;
}

.thanks-logo {
  width: 260px;
  margin: 0 auto 64px;
}

.thanks-shell h1 {
  margin-inline: auto;
  color: var(--bft-blue);
}

.thanks-shell > p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: #cad5d7;
  font-size: 1.1rem;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 54px 0;
  padding: 1px;
  background: #26353a;
  text-align: left;
}

.thanks-steps div {
  padding: 28px;
  background: var(--ink);
}

.thanks-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--bft-blue);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
}

.thanks-steps h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.thanks-steps p {
  margin: 0;
  color: #9eadaf;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 170px 1fr;
    padding-inline: 20px;
  }

  .studio-name {
    text-align: right;
  }

  .header-claim {
    display: none;
  }

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

  .hero-copy {
    min-height: 650px;
    padding: 78px 32px;
  }

  .hero-visual {
    min-height: 620px;
    border-top: 14px solid var(--bft-blue);
    border-left: 0;
  }

  .checkout-intro,
  .section-heading,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .offer-strip {
    grid-template-columns: 1fr;
  }

  .offer-strip span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reassurance-grid {
    grid-template-columns: 70px 1fr;
  }

  .reassurance-grid > p:last-child {
    grid-column: 2;
  }

  .training-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .training-panel-type {
    grid-column: 1 / -1;
    min-height: 360px;
    margin-top: 0;
  }

  .type-art {
    writing-mode: initial;
  }

  .coaches-section {
    grid-template-columns: 1fr;
  }

  .coaches-image {
    min-height: 640px;
  }

  .coaches-copy {
    padding: 90px 32px;
  }

  .faq-title {
    position: static;
  }

  .find-layout {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    gap: 36px;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(4.1rem, 21vw, 6rem);
  }

  h2 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 135px;
    height: 40px;
  }

  .studio-name {
    font-size: 1rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 64px 22px 74px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .date-lockup {
    right: 0;
    left: 0;
    justify-content: center;
    padding: 17px 18px;
  }

  .date-lockup strong {
    font-size: 2.8rem;
  }

  .checkout-section,
  .training-section,
  .steps-section,
  .faq-section {
    padding: 84px 0;
  }

  .checkout-intro {
    margin-bottom: 30px;
  }

  .checkout-frame-wrap {
    display: none;
  }

  #checkout-frame {
    min-height: 0;
  }

  .checkout-topline {
    align-items: flex-start;
    gap: 10px;
  }

  .checkout-topline > span {
    max-width: 110px;
    text-align: right;
  }

  .checkout-fallback {
    align-items: flex-start;
    flex-direction: column;
    border-top: 0;
    padding: 28px 22px 30px;
  }

  .reassurance {
    padding: 70px 0;
  }

  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reassurance-grid > p:last-child {
    grid-column: auto;
    margin-top: 0;
  }

  .statement-number {
    width: 60px;
  }

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

  .training-editorial {
    grid-template-columns: 1fr;
  }

  .training-panel,
  .training-panel img {
    min-height: 560px;
  }

  .training-panel-offset,
  .training-panel-type {
    margin-top: 0;
  }

  .training-panel-type {
    grid-column: auto;
    min-height: 360px;
  }

  .proof-section {
    padding: 76px 0;
  }

  .proof-grid {
    gap: 58px;
  }

  .rating {
    align-items: flex-end;
    gap: 18px;
  }

  .rating-value {
    font-size: 7.2rem;
  }

  .stars {
    font-size: 1.2rem;
  }

  blockquote {
    padding-left: 22px;
  }

  .coaches-image {
    min-height: 520px;
  }

  .coaches-copy {
    padding: 78px 22px;
  }

  .steps-list li {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .steps-list li > span {
    font-size: 3rem;
  }

  .faq-list summary {
    font-size: 1.4rem;
  }

  .find-section {
    padding: 82px 0;
  }

  .find-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .map-shell {
    min-height: 360px;
  }

  .map-shell iframe {
    min-height: 350px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 26px;
    text-align: left;
  }

  footer span:last-child {
    text-align: left;
  }

  .mobile-claim {
    display: flex;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .thanks-page {
    padding: 58px 22px 100px;
  }

  .thanks-logo {
    margin-bottom: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
