/* Kuzy's presentation layer. The existing layouts and API-backed flows stay intact. */
:root {
  --motion-fast: 180ms;
  --motion-ui: 280ms;
  --motion-reveal: 560ms;
  --motion-cinema: 900ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Navigation and directional controls. No navigation interception or delay. */
.site-header {
  background: #0b0c0ee8;
  border-bottom-color: #ffffff14;
  transition:
    background var(--motion-ui),
    box-shadow var(--motion-ui);
}
.site-header.is-scrolled {
  background: #0b0c0efc;
  box-shadow: 0 8px 30px #0003;
  border-bottom-color: #44434b;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -20px;
  inset-inline: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-ui) var(--motion-ease);
}
.desktop-nav :is(a:hover, a:focus-visible, .active)::after {
  transform: scaleX(1);
}
.button {
  position: relative;
  isolation: isolate;
  border-radius: 2px;
  transition:
    background var(--motion-fast),
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast) var(--motion-ease);
}
.button-primary {
  box-shadow:
    inset 0 1px 0 #ffffff50,
    0 3px 0 #0003;
  background-image: linear-gradient(115deg, #ffffff12, transparent 60%);
}
.button svg,
.text-link svg {
  transition: transform var(--motion-fast) var(--motion-ease);
}
.button:active {
  transform: translateY(1px);
  box-shadow: none;
}
.text-link {
  background: linear-gradient(currentColor, currentColor) left
    calc(100% - 7px) / 0 1px no-repeat;
  transition:
    background-size var(--motion-ui) var(--motion-ease),
    color var(--motion-fast);
}
.text-link:hover,
.text-link:focus-visible {
  text-decoration: none;
  background-size: 100% 1px;
}
.menu-toggle span {
  transition: transform var(--motion-fast) var(--motion-ease);
}
.mobile-menu {
  box-shadow: 0 24px 30px #0005;
}

/* The existing Kuzy artwork becomes a framed editorial image, not a backdrop. */
.hero {
  min-height: auto;
  background: linear-gradient(125deg, #131419 0%, #0b0c0e 47%, #14121c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background: radial-gradient(#fff 0.6px, transparent 0.8px) 0 0 / 4px 4px;
}
.hero::after {
  display: none;
}
.hero-inner {
  position: relative;
  max-width: 1368px;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  column-gap: 18px;
  padding-top: 58px;
  padding-bottom: 22px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 20px;
}
.hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
}
.hero-line {
  display: block;
}
.hero-line > span {
  display: block;
}
.hero h1 em {
  font-style: normal;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 4px;
  text-underline-offset: 9px;
}
.hero-copy {
  max-width: 470px;
  margin-top: 30px;
}
.hero-actions {
  column-gap: 20px;
}
.hero-stage {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 465px;
  padding: 17px;
  border: 1px solid #66616e;
  margin-left: -8px;
  background: linear-gradient(135deg, #ffffff08, transparent 35%);
}
.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--text);
  pointer-events: none;
  z-index: 2;
}
.hero-stage::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.hero-stage::after {
  bottom: -1px;
  right: -1px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
}
.hero-art {
  position: absolute;
  z-index: 0;
  inset: 17px;
  display: block;
  overflow: hidden;
  background: #151019;
  clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 0 100%);
}
.hero-art img {
  object-position: 77% center;
  opacity: 1;
  filter: saturate(0.75);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #07080b85,
    transparent 28%,
    transparent 65%,
    #07080bf5
  );
}
.hero-stage-top,
.hero-stage-bottom {
  position: absolute;
  z-index: 1;
  inset-inline: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font: 0.75rem var(--font-mono);
  color: #e8e3ef;
}
.hero-stage-top {
  top: 34px;
}
.hero-stage-top span:last-child {
  width: 26px;
  height: 3px;
  background: var(--purple);
}
.hero-stage-bottom {
  bottom: 34px;
  border-top: 1px solid #ffffff40;
  padding-top: 15px;
}
.hero-stage-bottom strong {
  font: 1.35rem var(--font-display);
  letter-spacing: -0.045em;
}
.hero-stage-bottom > span {
  max-width: 135px;
  text-align: right;
  font-size: 0.75rem;
  line-height: 1.6;
}
.hero-caption {
  grid-column: 1 / -1;
  margin-top: 35px;
  color: var(--muted);
  border-color: #ffffff20;
}
.hero-caption .text-link {
  min-height: 24px;
  font: 0.75rem var(--font-mono);
}

/* A broadcast strip with real, unchanged achievements. */
.proof-strip {
  position: relative;
  background: #111216;
  padding-block: 30px;
}
.proof-item {
  position: relative;
  padding-left: 25px;
  border-left: 1px solid #4a4652;
}
.proof-item::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 25px;
  width: 35px;
  height: 2px;
  background: var(--purple);
  transform-origin: left;
}
.proof-item strong {
  font-size: 3.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proof-item strong small {
  font: 1rem var(--font-mono);
  color: var(--muted);
  margin-left: 4px;
}

/* Service rows use type and focused rails, with space for Content Studio media. */
.services {
  position: relative;
  background: linear-gradient(90deg, #11121780, transparent 42%);
}
.services .section-heading {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 0;
}
.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 1px;
  background: #67636f;
  transform-origin: left;
  transition: transform var(--motion-reveal) var(--motion-ease);
}
.services .service-list,
.product-grid {
  border-top: 0;
}
.service-card {
  padding-block: 40px;
}
.service-card,
.shop-product {
  transition:
    background var(--motion-ui),
    border-color var(--motion-ui);
}
.service-card::after,
.shop-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 90px;
  height: 2px;
  background: var(--service-accent, var(--purple));
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform var(--motion-ui) var(--motion-ease);
}
.service-num,
.product-code {
  font-size: 0.75rem;
  letter-spacing: 0;
}
.service-num::before,
.product-code::before {
  content: attr(data-mark);
  display: block;
  font: 3.2rem/1 var(--font-display);
  letter-spacing: -0.075em;
  color: #aaa5b4;
  margin-bottom: 17px;
  transition:
    color var(--motion-ui),
    transform var(--motion-ui) var(--motion-ease);
}
[data-service-key="nuke-service"] .service-num::before,
[data-product="nuke-service"] .product-code::before {
  -webkit-text-stroke: 1px #b5a998;
  color: transparent;
}
.service-tags span {
  padding-left: 10px;
  border-left: 1px solid #5b5662;
}
.shop-product {
  padding-block: 42px;
}
.product-code {
  padding-top: 7px;
}
.product-bottom {
  background: linear-gradient(125deg, #ffffff04, transparent);
}
.catalog-intro,
.purchase-hero,
.reviews-hero,
.policy-hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(125deg, #17171e, #0b0c0e 70%);
}
.catalog-intro::before,
.purchase-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 8%;
  width: 25%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 35px,
    #ffffff04 35px 36px
  );
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}
.purchase-price,
.reviews-score-card {
  border-left-width: 2px;
  border-left-color: var(--purple);
}

/* The ordering rail connects the steps; it does not imply order status. */
.order-guide {
  position: relative;
  background: #111216;
}
.ordering-steps li {
  position: relative;
  border: 0;
  padding-bottom: 28px;
}
.ordering-steps li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 55px;
  bottom: -12px;
  width: 1px;
  background: #75668f;
  transform-origin: top;
  transition: transform 600ms var(--motion-ease);
}
.ordering-steps li:first-child::before {
  top: 35px;
}
.ordering-steps li:last-child::before {
  display: none;
}
.ordering-steps li > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 32px;
  height: 32px;
  background: #1b1823;
  border: 1px solid #75668f;
  color: #d5c3ff;
}
.ordering-steps h3 {
  padding-top: 3px;
}
.profile-section {
  position: relative;
  background: linear-gradient(135deg, #17161a 0%, #0b0c0e 60%);
}
.profile-signature {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  padding: 62px 20px 36px;
  border: 1px solid #48444f;
  background:
    repeating-linear-gradient(0deg, transparent 0 5px, #ffffff03 5px 6px),
    #101114;
}
.profile-signature::before {
  content: "KUZY";
  position: absolute;
  inset: 12px 0 auto;
  z-index: -1;
  font: clamp(3.5rem, 7vw, 6rem)/1 var(--font-display);
  letter-spacing: -0.065em;
  -webkit-text-stroke: 1px #514859;
  color: transparent;
}
.profile-signature img {
  width: min(320px, 100%);
  margin-bottom: 35px;
  filter: drop-shadow(8px 16px 0 #0005);
}
.profile-signature .mono {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.75rem;
}
.profile-copy {
  border-left: 2px solid #4a4256;
  padding-left: 30px;
}
.home-reviews {
  background: linear-gradient(120deg, #101114 0%, #15141a 100%);
}
.home-review-copy {
  position: relative;
}
.home-review-card:not(:has(img)) {
  grid-template-columns: 1fr;
  gap: 14px;
}
.home-review-card:not(:has(img)) .home-review-image {
  order: 2;
}
.review-wall-card:has(.review-image-missing) {
  grid-template-columns: 1fr;
  gap: 0;
}
.review-image-missing {
  display: none;
}
.home-review-copy::before {
  content: "“";
  display: block;
  height: 40px;
  font: 5.5rem/1 var(--font-display);
  color: #6d5d88;
  margin-bottom: 10px;
}
.home-review-image img,
.review-card-image img,
.order-result-gallery img {
  transition: transform 450ms var(--motion-ease);
}
.review-wall-card {
  transition:
    border-color var(--motion-ui),
    background var(--motion-ui);
}
.review-filters button {
  position: relative;
  transition:
    background var(--motion-fast),
    color var(--motion-fast),
    border-color var(--motion-fast);
}
.review-filters button.active {
  background: #201b2d;
  border-color: #a086cc;
  color: #e7dbff;
}
.review-carousel-controls button,
.order-dashboard-actions button,
.service-rewards,
.product-rewards {
  transition:
    background var(--motion-fast),
    border-color var(--motion-fast),
    color var(--motion-fast);
}
.final-cta {
  position: relative;
  border-top: 0;
  background: #0d0e11;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100% - var(--max)) / 2));
  width: 90px;
  height: 3px;
  background: var(--purple);
}

/* Checkout and tracking retain their useful, familiar controls. */
.order-summary,
.tracking-form,
.status-card {
  background: linear-gradient(140deg, #1b1921 0%, #111216 48%);
  box-shadow: 9px 9px 0 #0003;
}
.order-summary > .mono,
.tracking-gate-copy > .mono {
  display: inline-block;
  border-bottom: 1px solid #6e5b8e;
  padding-bottom: 10px;
}
input,
select,
textarea {
  transition:
    border-color var(--motion-fast),
    background var(--motion-fast),
    box-shadow var(--motion-fast);
}
.field.is-filled :is(input, select, textarea) {
  border-left: 2px solid #a891cf;
}
.field:focus-within label,
.tracking-form label:focus-within {
  color: #d9c9f4;
}
.live-summary [data-selected="true"] {
  color: #ded0f6;
}
.order-overview {
  border-top: 2px solid #9c85bc;
  background: linear-gradient(120deg, #1b1821, #101115 65%);
}
.order-status-panel {
  position: relative;
}
.order-status-top {
  padding-bottom: 22px;
  border-bottom: 1px solid #3c3548;
}
.order-live-dot {
  border-radius: 1px;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 5px #b9a0ff12;
}
.order-stage.complete::before {
  background: #82a68e;
}
.order-stage-marker {
  border-radius: 2px;
}
.order-stage.current .order-stage-marker {
  box-shadow: 0 0 0 4px #b9a0ff14;
}
.order-stage.current strong {
  color: #dbc9ff;
}
.order-eta-panel {
  background: #ffffff03;
}
.order-dates > div {
  padding-left: 14px;
  border-left: 2px solid #57515f;
}
.order-details-card > .mono,
.order-notes-card > .mono {
  color: #d0c8dc;
}
.tracking-gate-copy {
  position: relative;
}
.tracking-gate-copy::after {
  content: "";
  display: block;
  margin-top: 35px;
  width: 130px;
  height: 24px;
  border-top: 1px solid #74627f;
  background: repeating-linear-gradient(
      90deg,
      #64576d 0 1px,
      transparent 1px 16px
    )
    0 0 / 100% 5px no-repeat;
}
#copyOrderCode[data-copied="true"] {
  border-color: #9cddb4;
  color: #b3ebc8;
  background: #16251d;
}
.checkout-message:not(:empty),
.tracking-error:not(:empty),
.review-form-message:not(:empty) {
  border-left: 2px solid currentColor;
  padding-left: 12px;
}
.faq-list summary span {
  transition: transform var(--motion-ui) var(--motion-ease);
}
.faq-list details[open] {
  padding-left: 12px;
  border-left: 1px solid #756089;
}
.faq-list details {
  transition: padding var(--motion-ui);
}
.site-rewards-panel,
.support-panel {
  box-shadow: 0 20px 80px #0008;
}

/* A quiet, oversized signature closes every customer route. */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #08090b;
  padding-top: 48px;
}
.footer-wordmark::before {
  content: "KUZY";
}
.footer-wordmark {
  margin: 32px 0 0;
  font: clamp(5.2rem, 20vw, 17rem)/0.85 var(--font-display);
  letter-spacing: -0.085em;
  color: #18191d;
  user-select: none;
  pointer-events: none;
}
.footer-bottom {
  position: relative;
  margin-top: 20px;
}
.footer-links a,
.footer-contact a {
  transition:
    color var(--motion-fast),
    transform var(--motion-fast) var(--motion-ease);
}

@media (min-width: 1100px) {
  .order-guide {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .order-guide > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
    align-items: end;
  }
  .order-guide > div > .mono {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  .order-guide h2 {
    margin: 0;
  }
  .order-guide h2 br {
    display: none;
  }
  .order-guide > div > p {
    max-width: 460px;
  }
  .ordering-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }
  .ordering-steps li,
  .ordering-steps li:first-child {
    display: block;
    padding: 0;
  }
  .ordering-steps li > span {
    margin-bottom: 22px;
  }
  .ordering-steps li::before,
  .ordering-steps li:first-child::before {
    left: 44px;
    right: -18px;
    top: 15px;
    bottom: auto;
    width: auto;
    height: 1px;
    transform-origin: left;
  }
  .ordering-steps h3 {
    max-width: 220px;
  }
  .ordering-steps p {
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover svg,
  .text-link:hover svg {
    transform: translateX(3px);
  }
  .service-card:hover,
  .shop-product:hover,
  .service-card:focus-within,
  .shop-product:focus-within {
    background-color: #ffffff03;
    border-color: #696170;
  }
  :is(.service-card, .shop-product):is(:hover, :focus-within)::after {
    transform: scaleX(1);
  }
  :is(.service-card, .shop-product):hover
    :is(.service-num, .product-code)::before {
    color: var(--service-accent, var(--purple));
    transform: translateX(3px);
    -webkit-text-stroke: 0;
  }
  .home-review-image:hover img,
  .review-card-image:hover img,
  .order-result-gallery button:hover img {
    transform: scale(1.025);
  }
  .review-wall-card:hover {
    border-color: #706579;
    background: #ffffff02;
  }
  .footer-links a:hover,
  .footer-contact a:hover {
    transform: translateX(2px);
  }
  .review-carousel-controls button:hover,
  .order-dashboard-actions button:hover,
  .service-rewards:hover,
  .product-rewards:hover {
    background: #26222e;
    border-color: #94809c;
  }
}
@media (max-width: 1099px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 40px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
  }
  .hero-stage {
    min-height: 430px;
  }
  .hero-stage-top,
  .hero-stage-bottom {
    inset-inline: 27px;
  }
  .hero-stage-bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-stage-bottom > span {
    max-width: none;
    text-align: left;
  }
  .hero-stage-bottom strong {
    font-size: 1.15rem;
  }
  .profile-signature {
    min-height: 280px;
  }
}
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .hero-content {
    max-width: 590px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  .hero-stage {
    margin: 26px 0 0;
    min-height: 300px;
  }
  .hero-art img {
    object-position: 76% 55%;
    opacity: 1;
  }
  .hero-stage-bottom {
    flex-direction: row;
    align-items: center;
  }
  .hero-stage-bottom > span {
    max-width: 150px;
    text-align: right;
  }
  .hero-caption {
    margin-top: 24px;
  }
  .hero-caption > span:last-child {
    display: block;
  }
  .service-num,
  .product-code {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .service-num::before,
  .product-code::before {
    font-size: 2.4rem;
    margin: 0;
  }
  .proof-item {
    padding-left: 18px;
  }
  .proof-item::after {
    left: 18px;
  }
  .proof-item strong {
    font-size: 2.8rem;
  }
  .profile-copy {
    padding-left: 22px;
  }
  .profile-signature {
    min-height: 240px;
    padding: 55px 15px 25px;
  }
  .profile-signature::before {
    font-size: 3.5rem;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.4rem, 9.9vw, 3.3rem);
  }
  .hero-content {
    padding: 12px 0 0;
  }
  .hero-byline {
    margin-bottom: 20px;
  }
  .hero-copy {
    margin-top: 26px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero-stage {
    min-height: 245px;
    padding: 10px;
    margin-top: 22px;
  }
  .hero-art {
    inset: 10px;
  }
  .hero-stage-top {
    top: 25px;
  }
  .hero-stage-top,
  .hero-stage-bottom {
    inset-inline: 24px;
  }
  .hero-stage-bottom {
    bottom: 25px;
    gap: 15px;
  }
  .hero-stage-bottom strong {
    font-size: 1.1rem;
  }
  .hero-stage-bottom > span {
    max-width: 125px;
    font-size: 0.75rem;
  }
  .hero-caption {
    margin-top: 22px;
  }
  .hero-caption > span:last-child {
    display: none;
  }
  .proof-strip {
    padding-block: 26px 32px;
    gap: 20px 10px;
  }
  .proof-item {
    gap: 10px;
    padding-left: 10px;
  }
  .proof-item::after {
    left: 10px;
  }
  .proof-item strong {
    font-size: 2.35rem;
  }
  .proof-item strong small {
    font-size: 0.75rem;
    margin-left: 1px;
  }
  .proof-item > span {
    font-size: 0.75rem;
  }
  .service-card,
  .shop-product {
    padding-block: 28px;
  }
  .profile-signature {
    min-height: 210px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 44px 20px 22px;
    text-align: left;
  }
  .profile-signature::before {
    font-size: 4.5rem;
    left: 15px;
    text-align: left;
  }
  .profile-signature img {
    width: 150px;
    margin: 0;
  }
  .profile-signature .mono {
    font-size: 0.75rem;
  }
  .profile-copy {
    border-left: 0;
    padding-left: 0;
  }
  .footer-wordmark {
    margin-top: 30px;
  }
  .home-review-copy::before {
    height: 28px;
    font-size: 4rem;
  }
}

/* One-shot motion, progressively enhanced. Content is visible without JavaScript. */
@keyframes kuzy-headline {
  from {
    clip-path: inset(0 0 100% 0);
    transform: translateY(8px);
  }
  to {
    clip-path: inset(0 0 -15% 0);
    transform: none;
  }
}
@keyframes kuzy-frame {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes kuzy-ui {
  from {
    opacity: 0.55;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kuzy-panel {
  from {
    opacity: 0.7;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kuzy-review {
  from {
    opacity: 0.65;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kuzy-status {
  from {
    box-shadow: 0 0 0 10px #b9a0ff30;
  }
  to {
    box-shadow: 0 0 0 4px #b9a0ff14;
  }
}
@keyframes kuzy-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-line > span {
    animation: kuzy-headline 700ms var(--motion-ease) both;
  }
  .hero-line:nth-child(2) > span {
    animation-delay: 100ms;
  }
  .hero-byline {
    animation: kuzy-ui 400ms var(--motion-ease) both;
  }
  .hero-copy {
    animation: kuzy-ui 500ms var(--motion-ease) 150ms both;
  }
  .hero-stage {
    animation: kuzy-frame var(--motion-cinema) var(--motion-ease) 100ms both;
  }
  .hero-stage-top,
  .hero-stage-bottom {
    animation: kuzy-ui 350ms var(--motion-ease) 650ms both;
  }
  .hero-actions {
    animation: kuzy-ui 400ms var(--motion-ease) 200ms both;
  }
  .motion-ready .section-heading:not(.is-revealed)::after {
    transform: scaleX(0.12);
  }
  .motion-ready .ordering-steps li:not(.is-revealed)::before {
    transform: scaleY(0);
  }
  .proof-item.is-revealed::after {
    animation: kuzy-line 500ms var(--motion-ease);
  }
  .mobile-menu:not([hidden]) {
    animation: kuzy-panel 240ms var(--motion-ease);
  }
  .mobile-menu:not([hidden]) a {
    animation: kuzy-ui 280ms var(--motion-ease) both;
  }
  .mobile-menu a:nth-child(2) {
    animation-delay: 25ms;
  }
  .mobile-menu a:nth-child(3) {
    animation-delay: 50ms;
  }
  .mobile-menu a:nth-child(n + 4) {
    animation-delay: 75ms;
  }
  .review-wall-card,
  .home-review-card {
    animation: kuzy-review 280ms var(--motion-ease);
  }
  .site-rewards-panel,
  .review-lightbox:not([hidden]) > img,
  .order-image-lightbox:not([hidden]) > img {
    animation: kuzy-panel 280ms var(--motion-ease);
  }
  .order-dashboard:not([hidden]) {
    animation: kuzy-ui 300ms var(--motion-ease);
  }
  .order-stage.current .order-stage-marker {
    animation: kuzy-status 550ms var(--motion-ease);
  }
  .order-stage.complete::before {
    transform-origin: left;
    animation: kuzy-line 500ms var(--motion-ease);
  }
  .checkout-message:not(:empty),
  .tracking-error:not(:empty),
  .review-form-message:not(:empty),
  .faq-list details[open] p {
    animation: kuzy-ui 220ms var(--motion-ease);
  }
}
@media (min-width: 1100px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .ordering-steps li:not(.is-revealed)::before {
    transform: scaleX(0);
  }
}
@media (max-width: 800px) and (prefers-reduced-motion: no-preference) {
  .hero-stage {
    animation: kuzy-ui 400ms var(--motion-ease) 100ms both;
  }
  .hero-line > span {
    animation-duration: 450ms;
  }
  .hero-stage-top,
  .hero-stage-bottom {
    animation-delay: 200ms;
  }
  .order-stage.complete::before {
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-line > span,
  .hero-stage {
    clip-path: none;
  }
  .button,
  .button svg,
  .text-link svg,
  .service-num::before,
  .product-code::before,
  .home-review-image img,
  .review-card-image img,
  .order-result-gallery img,
  .footer-links a,
  .footer-contact a {
    transform: none !important;
  }
  .ordering-steps li::before,
  .section-heading::after {
    transform: none !important;
  }
}
