@font-face {
  font-family: "Paperlogy";
  src: url("./fonts/Paperlogy-7Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("./fonts/NotoSansKR-VF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}


@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --page-width: 860px;
  --hero-height: 1396px;
  --page-scale: 1;
  --accent: #df4f2c;
  --white: #f6f5f2;
  --motion-ease: ease-out;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #111;
}

body {
  min-width: var(--page-width);
  font-family: "Noto Sans KR", sans-serif;
}

.landing-page {
  width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}

.motion-reveal.motion-reveal--image {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.motion-reveal.is-visible {
  animation: motion-reveal-up 0.9s var(--motion-ease) var(--reveal-delay, 0s) forwards;
}

.motion-reveal.motion-reveal--image.is-visible {
  animation-name: motion-reveal-image;
}

@keyframes motion-reveal-up {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-reveal-image {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 859px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    position: relative;
  }

  .landing-page {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    transform: scale(var(--page-scale));
    transform-origin: top left;
  }
}

.hero {
  position: relative;
  width: var(--page-width);
  height: var(--hero-height);
  overflow: hidden;
  color: var(--white);
  background-color: #000;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./images/hero.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 1396px;
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transform-origin: center 72%;
  will-change: opacity, transform;
  pointer-events: none;
}

.hero.is-visible::before {
  animation: hero-product-in 1s var(--motion-ease) 0.4s forwards;
}

.hero__content {
  position: absolute;
  top: 151px;
  left: 50%;
  z-index: 2;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}

.hero__logo {
  display: block;
  width: 206px;
  height: 48px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-20px);
  will-change: opacity, transform;
}

.hero.is-visible .hero__logo {
  animation: hero-logo-in 0.8s var(--motion-ease) forwards;
}

.hero__edition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 29px;
  color: var(--accent);
  opacity: 0;
  will-change: opacity;
}

.hero.is-visible .hero__edition {
  animation: hero-fade-in 0.8s var(--motion-ease) 0.15s forwards;
}

.hero__edition span {
  width: 41px;
  height: 2px;
  background: currentColor;
}

.hero__edition p {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.8px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 0;
  font-family: "Paperlogy", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.31;
  letter-spacing: -3.9px;
}

.hero__title span {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  white-space: nowrap;
  will-change: opacity, transform;
}

.hero.is-visible .hero__title span {
  animation: hero-copy-up 0.9s var(--motion-ease) forwards;
}

.hero.is-visible .hero__title span:first-child {
  animation-delay: 0.3s;
}

.hero.is-visible .hero__title span:last-child {
  animation-delay: 0.45s;
}

.hero__footer {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 2;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 10px;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 18px);
  will-change: opacity, transform;
}

.hero.is-visible .hero__footer {
  animation: hero-footer-in 0.8s var(--motion-ease) 1.2s forwards;
}

@keyframes hero-logo-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes hero-copy-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-product-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-footer-in {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .motion-reveal.motion-reveal--image {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero::before,
  .hero__logo,
  .hero__edition,
  .hero__title span,
  .hero__footer {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__footer {
    transform: translateX(-50%);
  }
}

.brand-story {
  position: relative;
  width: 860px;
  height: 1175px;
  overflow: hidden;
  color: #f6f5f2;
  background-color: #080808;
  background-image: url("./images/brand-story-01.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 1175px;
  font-family: "Noto Sans KR", sans-serif;
}

.brand-story__content {
  position: absolute;
  top: 198px;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}

.brand-story__content h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.brand-story__copy {
  margin-top: 29px;
  color: #d0cfcf;
  font-size: 24px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: -0.03em;
}

.brand-story__copy p {
  margin: 0;
}

.brand-story__divider {
  display: block;
  width: 2px;
  height: 50px;
  margin: 20px auto 15px;
  background: #e9562e;
}

.news {
  width: 860px;
  height: 1247px;
  padding-top: 103px;
  overflow: hidden;
  color: #f6f5f2;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.news__header {
  text-align: center;
}

.news__header h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: -0.04em;
}

.news__header h2 span,
.news__header h2 strong {
  display: block;
}

.news__header h2 strong {
  color: #e9562e;
  font-weight: 700;
}

.news__header > p {
  margin: 19px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 50px;
}

.news__item {
  display: grid;
  grid-template-columns: 437px 338px;
  column-gap: 1px;
  min-height: 187px;
  margin-left: 48px;
}

.news__text {
  padding-right: 38px;
}

.news__line {
  position: relative;
  display: block;
  width: 367px;
  height: 1px;
  margin: 0 0 28px 30px;
  background: rgba(255, 255, 255, 0.45);
}

.news__line::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f05a2f;
  content: "";
  transform: translateY(-50%);
}

.news__source {
  margin: 0 0 18px;
  color: #e9562e;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.news__item h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.news__item img {
  display: block;
  width: 338px;
  height: 188px;
  object-fit: cover;
}

.package {
  position: relative;
  width: 860px;
  height: 1528px;
  overflow: hidden;
  color: #f6f5f2;
  background-color: #080808;
  background-image: url("./images/product-package-01.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 1528px;
  font-family: "Noto Sans KR", sans-serif;
  isolation: isolate;
}

.package__light-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("./images/product-package.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 1528px;
  clip-path: polygon(
    26% 0,
    74% 0,
    74% 0,
    26% 0,
    26% 0,
    26% 0
  );
  pointer-events: none;
  will-change: clip-path;
}

.package.is-visible .package__light-reveal {
  animation: package-light-down 1.2s var(--motion-ease) 0.15s forwards;
}

.package__header {
  position: relative;
  z-index: 2;
  padding-top: 85px;
  text-align: center;
}

.package__header h2 {
  margin: 0;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: -0.055em;
}

.package__header h2 span,
.package__header h2 strong {
  display: block;
}

.package__header h2 strong {
  color: #eb542d;
  font-weight: 700;
}

.package__header img {
  display: block;
  width: 386px;
  height: 121px;
  margin: -18px auto 0;
  object-fit: contain;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  will-change: opacity, clip-path;
}

.package.is-visible .package__header img {
  animation: package-divider-spread 1s var(--motion-ease) 0.35s forwards;
}

@keyframes package-divider-spread {
  from {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }

  to {
    clip-path: inset(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package__light-reveal {
    clip-path: polygon(26% 0, 74% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);
    animation: none;
  }

  .package__header img,
  .closing-story__header > img {
    opacity: 1;
    clip-path: inset(0);
    animation: none;
  }

  .core-feature__divider {
    opacity: 1;
    clip-path: inset(0);
    animation: none;
  }
}

.core-feature {
  position: relative;
  width: 860px;
  height: 1550px;
  overflow: hidden;
  color: #f6f5f2;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.core-feature__header {
  padding-top: 64px;
  text-align: center;
}

.core-feature__eyebrow {
  margin: 0;
  color: #c85334;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.42em;
}

.core-feature__divider {
  display: block;
  width: 386px;
  height: 121px;
  margin: -25px auto -17px;
  object-fit: contain;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  will-change: opacity, clip-path;
}

.core-feature.is-visible .core-feature__divider {
  animation: package-divider-spread 1s var(--motion-ease) 0.35s forwards;
}

.core-feature__header h2 {
  margin: 0;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

.core-feature__summary {
  margin: 15px 0 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

.core-feature__summary strong {
  color: #e9562e;
  font-size: 48px;
  font-weight: 700;
}

.core-feature__step {
  position: relative;
  width: 177px;
  height: 146px;
  margin: 30px auto 0;
  
}

.core-feature__step img {
  position: absolute;
  top: 0;
  left: 0;
  width: 177px;
  height: 193px;
}

.core-feature__step strong {
  position: absolute;
  top: 60px;
  left: 48.5%;
  color: #e9562e;
  font-family: "Pretendard";
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  transform: translateX(-50%);
}

.core-feature__name {
  position: relative;
  z-index: 2;
  margin: 3px 0 14px;
  color: #e9562e;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.core-feature__visual {
  position: relative;
  width: 860px;
  height: 719px;
}

.core-feature__visual > img {
  display: block;
  width: 860px;
  height: 719px;
}

.core-feature__measure {
  position: absolute;
  top: 314px;
  left: 164px;
  display: flex;
  align-items: center;
  width: 540px;
  gap: 11px;
}

.core-feature__measure span {
  flex: 1;
  height: 26px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0 1px,
    transparent 1px 10px
  );
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.core-feature__measure strong {
  padding: 0 5px;
  color: #fff;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}

.core-feature__copy {
  margin-top: -4px;
  text-align: center;
}

.core-feature__copy h4 {
  margin: 0;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.045em;
}

.core-feature__copy > span {
  display: block;
  width: 73px;
  height: 1px;
  margin: 19px auto 17px;
  background: #e9562e;
}

.core-feature__copy p {
  margin: 0;
  color: #d0cfcf;
  font-size: 20px;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: -0.045em;
}

.core-feature--02 {
  height: 1138px;
  padding-top: 28px;
}

.core-feature__step--02 {
  margin-top: 0px;
}

.core-feature__name--02 {
  margin: 3px 0 0;
  font-size: 42px;
}

.stand-system {
  position: relative;
  width: 860px;
  height: 645px;
  margin-top: 50px;
}

.stand-system__main {
  position: absolute;
  margin-top: -50px;
  left: 100px;
  z-index: 2;
  display: block;
  width: 700px;
  height: 700x;
  object-fit: contain;
  z-index: 2;
}

.stand-system__detail {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 1px solid #d94f2a;
  border-radius: 19px;
  background: #1a1a1a;
}

.stand-system__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stand-system__detail--top {
  top: 25px;
  left: 16px;
  width: 275px;
  height: 273px;
}

.stand-system__detail--bottom {
  top: 318px;
  left: 16px;
  width: 275px;
  height: 273px;
}

.stand-system__detail--right {
  top: 228px;
  right: 13px;
  width: 221px;
  height: 275px;
}

.stand-system__line {
  position: absolute;
  z-index: 1;
  display: block;
  border-color: #d94f2a;
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}

.stand-system__line::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e9562e;
  content: "";
}

.stand-system__line--top {
  top: 221px;
  left: 291px;
  width: 163px;
  height: 1px;
  border-width: 1px 0 0;
}

.stand-system__line--top::after {
  top: -5px;
  right: -5px;
}

.stand-system__line--bottom {
  top: 392px;
  left: 291px;
  width: 163px;
  height: 1px;
  border-width: 1px 0 0;
}

.stand-system__line--bottom::after {
  top: -5px;
  right: -5px;
}

.stand-system__line--right {
  top: 357px;
  right: 234px;
  width: 35px;
  height: 210px;
  border-width: 1px 0 0 1px;
}

.stand-system__line--right::after {
  bottom: -5px;
  left: -5px;
}

.core-feature__copy--02 {
  margin-top: -16px;
}

.core-feature__copy--02 h3 {
  margin: 0;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.045em;
}

.core-feature__copy--02 p {
  font-size: 20px;
  line-height: 2.15;
}

.core-feature__copy--02 em {
  color: #e9562e;
  font-style: normal;
}

.core-feature--03 {
  height: 1629px;
  padding-top: 31px;
}

.core-feature__step--03 {
  margin-top: 0;
}

.core-feature__name--03 {
    margin: 3px 0 0;
  font-size: 42px;
}

.stick-feature__main {
  display: block;
  width: 860px;
  height: 862px;
  object-fit: cover;
}

.stick-feature__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 17px;
}

.stick-feature__details article {
  position: relative;
  height: 379px;
  overflow: hidden;
  border: 1px solid #d94f2a;
  border-radius: 19px;
  background: #111;
}

.stick-feature__details article > img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: contain;
  margin-top: -20px;
}

.stick-feature-direction__image.stick-feature__image--first {
  margin-top: -10px;
  margin-left: -50px;
  width: 400px;
  height: 330px;
}

.stick-feature-direction__image.stick-feature__image--second {
  margin-top: -10px;
  margin-left: -30px;
  width: 330px;
  height: 330px;
}


.stick-feature__details h3 {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  margin: 0;
  color: #e9562e;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.stick-feature__reference-crop {
  position: absolute;
  inset: 0 0 0px;

}

.stick-feature__reference-crop img {
  position: absolute;
  top: -1080px;
  left: -571px;
  width: 860px;
  height: 1629px;
  max-width: none;
}

.stick-feature__copy {
  margin-top: 41px;
  text-align: center;
}

.stick-feature__copy p {
  margin: 0;
  color: #d0cfcf;
  font-size: 21px;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: -0.045em;
}

.stick-feature__copy em {
  color: #e9562e;
  font-style: normal;
}

.core-feature--04 {
  height: 1571px;
  padding-top: 31px;
}

.core-feature__step--04 {
  margin-top: 0;
}

.core-feature__name--04 {
  margin: 3px 0 0;
  font-size: 42px;
}

.fullset-feature__main {
  display: block;
  width: 860px;
  height: 805px;
  margin-top: -4px;
  object-fit: cover;
}

.fullset-feature__box {
  width: 824px;
  height: 390px;
  margin: 0 auto;
  border: 1px solid #d94f2a;
  border-radius: 18px;
  background: rgba(252, 250, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.fullset-feature__box > h3 {
  margin: 21px 0 7px;
  color: #e9562e;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.fullset-feature__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 342px;
}

.fullset-feature__items article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullset-feature__items article + article::before {
  position: absolute;
  top: 41px;
  left: 0;
  width: 1px;
  height: 223px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.fullset-feature__items img {
  display: block;
  width: 245px;
  height: 270px;
  object-fit: contain;
}

.fullset-feature__items--first {
  margin-top: -10px;
  margin-left: 10px;
  width: 400px;
  height: 330px;
}

.fullset-feature__items--second {
  margin-top: 0px;
  margin-left: 20px;
  width: 330px;
  height: 330px;
}

.fullset-feature__items--third {
  margin-top: -10px;
  margin-left: -30px;
  width: 330px;
  height: 330px;
}

.fullset-feature__items p {
  margin-top: -10px;
  margin-left: 75px;
  color: #e5e4e1;
  font-size: 23px;
  font-weight: 200;
  letter-spacing: -0.045em;
}

fullset-feature__item-pad {
  margin-top: -10px;
  margin-left: 75px;
  color: #e5e4e1;
  font-size: 23px;
  font-weight: 200;
  letter-spacing: -0.045em;
}

.fullset-feature__copy {
  margin-top: 24px;
  text-align: center;
}

.fullset-feature__copy p {
  margin: 0;
  color: #d0cfcf;
  font-size: 21px;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: -0.045em;
}

.fullset-feature__copy em {
  color: #e9562e;
  font-style: normal;
}

.brand-philosophy {
  position: relative;
  width: 860px;
  height: 1101px;
  overflow: hidden;
  color: #f6f5f2;
  background-color: #080808;
  background-image: url("./images/brand-philosophy.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 1101px;
  font-family: "Noto Sans KR", sans-serif;
}

.brand-philosophy__content {
  position: absolute;
  top: 83px;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}

.brand-philosophy__logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto;
}

.brand-philosophy__divider {
  display: block;
  width: 250px;
  height: 1px;
  margin: 30px auto 27px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 86, 46, 0.95) 50%,
    transparent
  );
}

.brand-philosophy h2 {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.055em;
}

.brand-philosophy h2 span {
  display: block;
}

.brand-philosophy h2 em {
  color: #e9562e;
  font-style: normal;
}

.assembly-notice {
  width: 860px;
  height: 324px;
  padding-top: 60px;
  color: #d0cfcf;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
  text-align: center;
}

.assembly-notice__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
  border: 1px solid #e9562e;
  border-radius: 50%;
  color: #e9562e;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
}

.assembly-notice h2 {
  margin: 0;
  color: #e9562e;
  font-size: 43px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.assembly-notice p {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: -0.04em;
}

.assembly-step {
  position: relative;
  width: 860px;
  height: 872px;
  overflow: hidden;
  color: #f6f5f2;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.assembly-step__rule {
  position: relative;
  height: 100px;
  overflow: visible;
}

.assembly-step__rule::before {
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  height: 1px;
  background: #d94f2a;
  content: "";
}

.assembly-step__rule span {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 88px;
  height: 90px;
  z-index: 1;
  transform: translateX(-50%);
}

.assembly-step__rule span img {
  position: absolute;
  inset: 0;
  width: 88px;
  height: 90px;
}

.assembly-step__rule span strong {
  position: absolute;
  top: 18px;
  left: 50%;
  color: #e9562e;
  font-size: 49px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.assembly-step > h2 {
  margin: 9px 0 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.assembly-step__visual {
  position: relative;
  height: 584px;
  margin-top: 34px;
}

.assembly-step__main {
  position: absolute;
  top: 0;
  left: 177px;
  z-index: 2;
  width: 520px;
  height: 630px;
  object-fit: contain;
}

.assembly-step__detail {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 2px solid #e9562e;
  border-radius: 50%;
  background: #080808;
}

.assembly-step__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assembly-step__detail--left {
  top: 125px;
  left: 36px;
  width: 250px;
  height: 250px;
}

.assembly-step__detail--right {
  top: 125px;
  right: 36px;
  width: 250px;
  height: 250px;
}

.assembly-step__connectors {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 860px;
  height: 584px;
  overflow: visible;
  pointer-events: none;
}

.assembly-step__connectors path {
  fill: none;
  stroke: #d94f2a;
  stroke-width: 1;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.assembly-step__connectors circle {
  fill: #e9562e;
}

.assembly-step__bottom-divider {
  position: absolute;
  bottom: 41px;
  left: 50%;
  width: 386px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 86, 46, 0.82) 50%,
    transparent
  );
  transform: translateX(-50%);
}

.assembly-step__instructions {
  position: absolute;
  right: 0;
  bottom: 112px;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.assembly-step__instructions article {
  width: 286px;
  text-align: center;
}

.assembly-step__instructions article:first-child {
  margin-left: 10px;
}

.assembly-step__instructions article:last-child {
  justify-self: end;
  margin-right: 18px;
}

.assembly-step__instructions h3 {
  margin: 0 0 10px;
  color: #e9562e;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.assembly-step__instructions p {
  margin: 0;
  color: #d0cfcf;
  font-size: 19px;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: -0.035em;
}

.assembly-direction {
  position: relative;
  width: 860px;
  height: 730px;
  overflow: hidden;
  color: #d0cfcf;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.assembly-direction__visual {
  position: relative;
  height: 518px;
}

.assembly-direction__image {
  position: absolute;
  display: block;
  object-fit: contain;
}

.assembly-direction__image--left {
  top: -10px;
  left: -30px;
  width: 500px;
  height: 468px;
}

.assembly-direction__image--right {
  top: -10px;
  right:-50px;
  width: 500px;
  height: 550px;
}

.assembly-direction__zoom {
  position: absolute;
  top: 131px;
  left: 324px;
  width: 202px;
  height: 275px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #111;
}

.assembly-direction__zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assembly-direction__rotate {
  position: absolute;
  top: 77px;
  left: 15 px;
  width: 146px;
  height: 146px;
  pointer-events: none;
}

.assembly-direction__rotate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assembly-direction__circle {
  position: absolute;
  top: 255px;
  left: 76px;
  width: 130px;
  height: 130px;
  pointer-events: none;
}

.assembly-direction__circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assembly-direction__arrow-right {
  position: absolute;
  top: 130px;
  right: 180px;
  width: 76px;
  height: 235px;
  pointer-events: none;
}

.assembly-direction__arrow-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assembly-direction__copy {
  margin-top: -10px;
  text-align: center;
}

.assembly-direction__copy h2 {
  margin: 0;
  color: #e9562e;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.assembly-direction__copy p {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: -0.04em;
}

.assembly-direction__divider {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: 386px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 86, 46, 0.82) 50%,
    transparent
  );
  transform: translateX(-50%);
}

.assembly-column {
  width: 860px;
  height: 715px;
  overflow: hidden;
  color: #d0cfcf;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.assembly-column__visual {
  position: relative;
  width: 520px;
  height: 520px;
  left: 50px;
  margin: 0 auto;
}

.assembly-column__visual > img {
  display: block;
  width: 520px;
  height: 520px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.assembly-column__focus {
  position: absolute;
  top: 127px;
  left: 125px;
  width: 190px;
  height: 190px;
  border: 2px dashed #e9562e;
  border-radius: 50%;
  z-index: 1;
}

.assembly-column__turn {
  position: absolute;
  top: 185px;
  left: 90px;
  color: #e9562e;
  font-size: 57px;
  font-weight: 300;
  line-height: 1;
}

.assembly-column__height {
  position: absolute;
  top: 180px;
  right: 240px;
  color: #f6f5f2;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
}

.assembly-column__copy {
  margin-top: 27px;
  text-align: center;
}

.assembly-column__copy h2 {
  margin: 0;
  color: #e9562e;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.assembly-column__copy p {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: -0.04em;
}

.assembly-pad {
  position: relative;
  width: 860px;
  height: 1241px;
  overflow: hidden;
  color: #d0cfcf;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.assembly-pad__rule {
  height: 100px;
}

.assembly-pad > h2 {
  margin: 10px 0 0;
  color: #f6f5f2;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.assembly-pad__visual {
  position: relative;
  height: 900px;
  margin-top: 36px;
}

.assembly-pad__main {
  position: absolute;
  top: 0;
  left: 210px;
  z-index: 2;
  width: 470px;
  height: 520px;
  object-fit: contain;
}

.assembly-pad__detail {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 2px solid #e9562e;
  border-radius: 50%;
  background: #080808;
}

.assembly-pad__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assembly-pad__detail--left {
  top: 493px;
  left: 40px;
  width: 345px;
  height: 345px;
}

.assembly-pad__detail--right {
  top: 493px;
  right: 40px;
  width: 345px;
  height: 345px;
}

.assembly-pad__connectors {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 860px;
  height: 900px;
  overflow: visible;
  pointer-events: none;
}

.assembly-pad__connectors path {
  fill: none;
  stroke: #d94f2a;
  stroke-width: 1;
  stroke-linejoin: miter;
}

.assembly-pad__connectors circle {
  fill: #e9562e;
}

.assembly-pad__instructions {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: -30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 53px;
  text-align: center;
}

.assembly-pad__instructions h3 {
  margin: 0 0 12px;
  color: #e9562e;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.assembly-pad__instructions p {
  margin: 0;
  color: #d0cfcf;
  font-size: 19px;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: -0.035em;
}

.assembly-pad__instructions article:first-child {
  margin-left: -25px;
}

.assembly-pad__instructions article:last-child {
  justify-self: end;
  margin-right: 73px;
}


.assembly-finish {
  position: relative;
  width: 860px;
  height: 1200px;
  overflow: hidden;
  color: #d0cfcf;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
}

.assembly-finish__rule {
  height: 100px;
}

.assembly-finish > h2 {
  margin: 10px 0 0;
  color: #f6f5f2;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: center;
}

.assembly-finish__visual {
  position: relative;
  height: 670px;
  margin-top: 25px;
}

.assembly-finish__main {
  position: absolute;
  top: 0;
  left: 90px;
  z-index: 2;
  width: 650px;
  height: 650px;
  object-fit: contain;
}

.assembly-finish__detail {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  width: 230px;
  height: 230px;
  border: 1px solid #e9562e;
  border-radius: 50%;
  background: #080808;
}

.assembly-finish__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assembly-finish__detail--left {
  top: 276px;
  left: 80px;
}

.assembly-finish__detail--right {
  top: 276px;
  right: 80px;
}

.assembly-finish__labels {
  position: absolute;
  top: 722px;
  right: 70px;
  left: 70px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #e9562e;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}


.assembly-finish__labels p:first-child {
  position: absolute;
  top: -20px;
  left: 60px;
}

.assembly-finish__labels p:last-child {
  position: absolute;
  top: -20px;
  right: 60px;
}

.assembly-finish__labels p {
  margin: 0;
}

.assembly-finish__notice {
  margin: -50px 0 0;
  color: #d0cfcf;
  font-size: 21px;
  font-weight: 300;
  text-align: center;
}

.assembly-finish__angle-box {
  width: 836px;
  height: 265px;
  margin: 27px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(252, 250, 255, 0.08);
  backdrop-filter: blur(14px);
}

.assembly-finish__angle-box h3 {
  margin: 24px 0 20px;
  color: #e9562e;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.assembly-finish__angles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 150px;
}

.assembly-finish__angles article {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 0 20px;
}

.assembly-finish__angles article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.assembly-finish__angles img {
  width: 280px;
  height: 165px;
  object-fit: contain;
}

.assembly-finish__angle-icon {
  display: flex;
  padding-top: 8px;
  padding-left: 0px;
  justify-content: center;
  width: 86px; 
  height: 86px;
  border: 2px solid #e9562e;
  border-radius: 50%;
  color: #e9562e;
  font-size: 54px;
  line-height: 1;
}

.assembly-finish__angle-icon--slope {
  transform: rotate(34deg);
}

.assembly-finish__angles p {
  position: absolute;
  bottom: 5px;
  left: 26px;
  margin: 0;
  color: #f6f5f2;
  font-size: 20px;
}

.product-details {
  width: 860px;
  height: 2643px;
  background-color: #080808;
  background-image: url("./images/detail.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 2643px;
}

.closing-story {
  position: relative;
  width: 860px;
  height: 988px;
  overflow: hidden;
  color: #f6f5f2;
  background-color: #080808;
  background-image: url("./images/brand-story-02.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 860px 988px;
  font-family: "Noto Sans KR", sans-serif;
  text-align: center;
}

.closing-story__header {
  padding-top: 95px;
}

.closing-story__header > p {
  margin: 0;
  color: #c85334;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.42em;
}

.closing-story__header > img {
  display: block;
  width: 386px;
  height: 121px;
  margin: -27px auto -21px;
  object-fit: contain;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  will-change: opacity, clip-path;
}

.closing-story.is-visible .closing-story__header > img {
  animation: package-divider-spread 1s var(--motion-ease) 0.35s forwards;
}

.closing-story__header h2 {
  margin: 0;
  color: #e9562e;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.closing-story__copy {
  margin-top: 84px;
}

.closing-story__copy p {
  margin: 0;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.045em;
}

.closing-story__copy em {
  color: #e9562e;
  font-style: normal;
}

.closing-story__copy > span {
  display: block;
  width: 45px;
  height: 1px;
  margin: 28px auto 20px;
  background: rgba(255, 255, 255, 0.8);
}

.closing-story__copy .closing-story__subcopy {
  color: #d0cfcf;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.75;
}

.closing-story__logo {
  position: absolute;
  bottom: 68px;
  left: 50%;
  display: block;
  width: 210px;
  height: auto;
  transform: translateX(-50%);
}

.floating-buy {
  position: fixed;
  bottom: max(26px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1px auto;
  align-items: center;
  align-content: center;
  column-gap: 26px;
  width: min(833px, calc(100vw - 16px));
  max-width: none;
  height: 128px;
  padding: 0 26px 0 0;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(ellipse at 84% 50%, rgba(234, 92, 42, 0.1), transparent 34%),
    linear-gradient(180deg, #151515 0%, #0b0c0c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset 0 0 0 2px rgba(234, 92, 42, 0.34),
    0 0 19px rgba(234, 92, 42, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  overflow: hidden;
  transform: translateX(-50%);
}

.floating-buy::before {
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
}

.floating-buy__info {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-left: 64px;
  text-align: center;
}

.floating-buy__info strong {
  color: #ea5c2a;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.floating-buy__info em {
  margin-top: 10px;
  color: #fff;
  font-size: 30px;
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.floating-buy__cta {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 76px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 35% 62%, rgba(255, 113, 48, 0.86), transparent 47%),
    linear-gradient(90deg, #e63d16 0%, #ea5c2a 58%, #ff5a32 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 229, 0.72),
    inset 0 -12px 21px rgba(116, 24, 8, 0.34),
    0 0 0 1px rgba(255, 151, 98, 0.76),
    0 0 20px rgba(234, 92, 42, 0.36);
}

.floating-buy__cta-text {
  color: #fff;
  font-size: 27px;
  font-family: "Pretendard";
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

@media (max-width: 859px) {
  .floating-buy {
    width: min(540px, calc(100vw - 12px)); /* 너무 넓어지지 않게 폭 제한 */
    max-width: none;
    height: clamp(78px, 12.5vw, 96px);

    bottom: max(14px, env(safe-area-inset-bottom));

    column-gap: clamp(14px, 3vw, 24px);
    grid-template-columns: 1fr 1px auto;
    padding: 0 clamp(8px, 1.6vw, 14px) 0 0;
  }

  .floating-buy::before {
    height: clamp(42px, 7vw, 56px);
  }

  .floating-buy__info {
    padding-left: clamp(14px, 4.5vw, 34px);
  }

  .floating-buy__info strong {
    font-size: clamp(12px, 3.4vw, 17px);
  }

  .floating-buy__info em {
    margin-top: 6px;
    font-size: clamp(19px, 5.2vw, 25px);
  }

  .floating-buy__cta {
    width: clamp(146px, 42vw, 200px);
    height: clamp(50px, 8.5vw, 64px);
  }

  .floating-buy__cta-text {
    font-size: clamp(18px, 4.6vw, 23px);
    font-weight: 600;
  }
}

.package__copy {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 2;
  width: 100%;
  margin: 0;
  color: #f6f5f2;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.045em;
  text-align: center;
  transform: translateX(-50%);
}

@keyframes package-light-down {
  0% {
    clip-path: polygon(
      26% 0,
      74% 0,
      74% 0,
      26% 0,
      26% 0,
      26% 0
    );
  }

  100% {
    clip-path: polygon(26% 0, 74% 0, 100% 100%, 100% 100%, 0 100%, 0 100%);
  }
}

.guidebook {
  position: relative;
  width: 860px;
  height: 1500px;
  overflow: hidden;
  color: #f5f4f1;
  background: #080808;
  font-family: "Noto Sans KR", sans-serif;
  isolation: isolate;
}

.guidebook__round-light {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 860px;
  height: 1435px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.guidebook.is-visible .guidebook__round-light {
  animation: guidebook-glow-in 1.2s var(--motion-ease) forwards;
}

.guidebook__round-light-image {
  position: absolute;
  left: 0;
  display: block;
  width: 860px;
  height: 1435px;
}

.guidebook__round-light-image--top {
  top: 0;
  clip-path: inset(0 0 50% 0);
}

.guidebook__round-light-image--bottom {
 bottom: -50px;
  clip-path: inset(50% 0 0 0);
}

.guidebook__header {
  padding-top: 104px;
  text-align: center;
}

.guidebook__header h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

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

.guidebook__header strong {
  color: #e9562e;
  font-weight: 700;
}

.guidebook__visual {
  position: relative;
  height: 850px;
  margin-top: 25px;
}

.guidebook__book {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 860px;
  height: 835px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  will-change: opacity, transform;
}

.guidebook.is-visible .guidebook__book {
  animation: guidebook-book-in 1.2s var(--motion-ease) forwards;
}

.guidebook__qr {
  position: absolute;
  top: 496px;
  right: 42px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
}

.guidebook__qr::before {
  --qr-fill-angle: 0deg;
  position: absolute;
  inset: 2px;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(
    from -41deg,
    #080808 0deg var(--qr-fill-angle),
    transparent var(--qr-fill-angle) 360deg
  );
  content: "";
}

.guidebook.is-visible .guidebook__qr::before {
  animation: guidebook-qr-fill 0.9s var(--motion-ease) forwards;
}

.guidebook__qr-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  fill: none;
  stroke: #e9562e;
  stroke-width: 2;
  transform: rotate(-131deg);
}

.guidebook__qr-ring circle {
  stroke-dasharray: 855;
  stroke-dashoffset: 855;
}

.guidebook.is-visible .guidebook__qr-ring circle {
  animation: guidebook-ring-draw 0.9s var(--motion-ease) forwards;
}

.guidebook__qr-dot {
  position: absolute;
  top: 23px;
  left: 38px;
  z-index: 2;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #e9562e;
  opacity: 0;
  transform: scale(0.96);
  will-change: opacity, transform;
}

.guidebook.is-visible .guidebook__qr-dot {
  animation: guidebook-dot-in 0.8s var(--motion-ease) 0.9s forwards;
}

.guidebook__qr-content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 24px)) scale(0.96);
  will-change: opacity, transform;
}

.guidebook__qr-content img {
  display: block;
  width: 151px;
  height: 151px;
}

.guidebook__qr-content strong {
  margin-top: 7px;
  color: #f6f5f2;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.guidebook.is-visible .guidebook__qr-content {
  animation: guidebook-qr-in 0.8s var(--motion-ease) 1.1s forwards;
}

.guidebook__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 283px;
  margin-top: 0;
  padding: 35px 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.guidebook__features article {
  position: relative;
  display: grid;
  grid-template-rows: 58px auto auto;
  align-content: start;
  padding: 0 13px;
}

.guidebook__features article + article {
  border-left: none;
}

.guidebook__features article + article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 205px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.guidebook__feature-icon {
  display: block;
  width: auto;
  height: 40px;
  margin: 0 auto;
  align-self: center;
}

.guidebook__features article:nth-child(2) .guidebook__feature-icon {
  height: 65px;
}

.guidebook__features article:nth-child(3) .guidebook__feature-icon {
  height: 68px;
}

.guidebook__features h3 {
  margin: 10px 0;
  color: #e9562e;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.guidebook__features p {
  margin: 0;
  color: #d0cfcf;
  font-size: 18px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: -0.04em;
}

.guidebook__features em {
  color: #e9562e;
  font-style: normal;
}

@keyframes guidebook-glow-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes guidebook-book-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes guidebook-ring-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@property --qr-fill-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes guidebook-qr-fill {
  to {
    --qr-fill-angle: 360deg;
  }
}

@keyframes guidebook-dot-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes guidebook-qr-in {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guidebook__round-light {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .guidebook__book,
  .guidebook__qr-dot {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .guidebook__qr-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: none;
  }

  .guidebook__qr-ring circle {
    stroke-dashoffset: 0;
    animation: none;
  }

  .guidebook__qr {
    animation: none;
  }

  .guidebook__qr::before {
    --qr-fill-angle: 360deg;
    animation: none;
  }
}
