@charset "UTF-8";

main {
  margin-top: 68px;
}
section {
  padding: var(--pad-2xl) 0;
}
.title-area {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  margin-bottom: var(--gap-2xl);
}
.title-area h3 {
  font-size: var(--h-lg);
  font-weight: 600;
}
.title-area p {
  font-size: var(--h-xs);
  font-weight: 300;
}
.title-zone {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

/* section - hero */
#hero {
  position: relative;
  height: 1012px;
  background: url("/img/screen/place/bg_hero.png") center / auto 100% no-repeat
    #f0f0f0;
  overflow: hidden;
}
#hero .width-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  z-index: 1;
}
#hero .hero-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero .hero-area ul {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  margin-bottom: var(--gap-md);
}
#hero .hero-area .title {
  margin-bottom: var(--gap-xl);
}

/* hero 애니메이션 */
.hero-area {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-up 0.9s ease-out 1.3s forwards;
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* pin 애니메이션 */
.hero-anim {
  position: absolute;
  inset: 0;
  top: 0;
  left: 50%;
  width: 1920px;
  transform: translateX(-50%);
  z-index: 0;
}
.pin {
  position: absolute;
  width: 48px;
  opacity: 0;
  animation:
    pin-show 0.8s cubic-bezier(0.22, 1.2, 0.36, 1) forwards,
    pin-float 1.4s ease-in-out 1.92s infinite;
}
.pin.reverse {
  animation-name: pin-show-reverse, pin-float-reverse;
}
.pin1 {
  left: 124px;
  bottom: 186px;
  animation-delay: 0s, 1.93s;
}
.pin2 {
  top: 198px;
  left: 205px;
  animation-delay: 0.18s, 2.11s;
}
.pin3 {
  left: 341px;
  bottom: 143px;
  animation-delay: 0.36s, 2.29s;
}
.pin4 {
  left: 816px;
  bottom: 44px;
  animation-delay: 0.54s, 2.47s;
}
.pin5 {
  top: 27px;
  right: 545px;
  animation-delay: 0.72s, 2.65s;
}
.pin6 {
  top: 420px;
  right: 111px;
  animation-delay: 0.9s, 2.83s;
}
.pin7 {
  top: 59px;
  right: 127px;
  animation-delay: 1.08s, 3.01s;
}
/* pin 등장 */
@keyframes pin-show {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.7);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pin-show-reverse {
  0% {
    opacity: 0;
    transform: translateY(100px) scaleX(-1) scale(0.7);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleX(-1) scale(1);
  }
}
/* pin 둥둥 */
@keyframes pin-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes pin-float-reverse {
  0%,
  100% {
    transform: translateY(0) scaleX(-1);
  }
  50% {
    transform: translateY(-14px) scaleX(-1);
  }
}

/* section - QnA */
#qna .contents-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-2xl);
}
#qna .qna-list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--gap-lg);
}
#qna .qna-list li:not(:last-child) {
  margin-bottom: var(--gap-xl);
}
#qna .qna-list .card {
  padding: var(--pad-lg) var(--pad-xl);
  border: 1px solid transparent;
  border-radius: var(--r-20);
  word-break: break-all;
}
#qna .qna-list .question {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
}
#qna .qna-list .question .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--brdr-def);
  border-radius: var(--r-full);
}
#qna .qna-list .question .card {
  max-width: 430px;
  border-color: var(--brdr-def);
  border-top-left-radius: var(--r-4);
}
#qna .qna-list .answer.card {
  width: 100%;
  max-width: 490px;
  background: var(--bk);
}
#qna .qna-list .answer.card > * + * {
  margin-top: var(--gap-xs);
}

#qna .dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}
#qna .dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
}
#qna .dots span:nth-child(1) {
  background: var(--prmr);
}
#qna .dots span:nth-child(2) {
  background: var(--prmr-50);
}
#qna .dots span:nth-child(3) {
  background: var(--prmr-10);
}

/* section - manage */
#manage .symbol-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap-3xl);
}
#manage .symbol-area .symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}
#manage .symbol-area .symbol img {
  width: 120px;
  aspect-ratio: 1 / 1;
}
#manage .symbol-area .symbol p:last-child {
  margin-top: var(--gap-2xs);
}

/* section - report */
#report .report-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  padding: var(--pad-xl);
  border: 1px solid var(--brdr-def);
  border-radius: var(--r-20);
  background: var(--bk);
}
#report .report-card .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#report .report-card .title p {
  display: flex;
  align-items: center;
  gap: var(--gap-3xs);
}
#report .result-list li {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--pad-md) var(--pad-lg);
}
#report .result-list li:not(:last-child) {
  border-bottom: 1px solid var(--wh-op-10);
}
#report .result-list .dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: var(--r-full);
  background: var(--st-suc);
  z-index: 0;
}
#report .result-list .dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  transform: translate(-50%, -50%);
  background: transparent;
  z-index: -1;

  animation: dot-link 2s ease-in-out infinite;
}
@keyframes dot-link {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

#report .result-list .status {
  flex: 1;
  text-align: right;
  font-size: var(--body-sm);
  font-weight: 500;
}
#report .result-list .success .dot {
  background: var(--st-suc);
}
#report .result-list .success .dot::before {
  background: rgba(62, 192, 62, 0.2);
}
#report .result-list .success .status {
  color: var(--st-suc);
}
#report .result-list .error .dot {
  background: var(--st-err);
}
#report .result-list .error .dot::before {
  background: rgba(248, 42, 35, 0.2);
}
#report .result-list .error .status {
  color: var(--st-err);
}
#report .result-list .warning .dot {
  background: var(--st-warn);
}
#report .result-list .warning .dot::before {
  background: rgba(255, 176, 6, 0.2);
}
#report .result-list .warning .status {
  color: var(--st-warn);
}
#report .report-card .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* section - service */
#service .title-area {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gap-xs);
}
#service .contents-area {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
#service .service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
#service .service-list .card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  padding: var(--pad-xl);
  border: 1px solid var(--brdr-def);
  border-radius: var(--r-20);
}
#service .card .top-zone img {
  width: 60px;
  margin-bottom: var(--gap-sm);
}
#service .card .bottom-zone {
  padding-top: var(--pad-sm);
  border-top: 1px solid var(--brdr-def);
}
#service .card .bottom-zone > * + * {
  margin-top: var(--gap-3xs);
}
#service .service-btn-mo {
  display: none;
}

/* section - feature */
#feature {
  background: url("/img/screen/place/bg_deco_pin.png") no-repeat;
  background-position: 100px calc(100% - 20px);
  background-size: 224px auto;
}
#feature .title-area {
  margin-bottom: var(--gap-3xl);
}
#feature .feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-2xl) var(--gap-3xl);
  padding-left: 120px;
}
#feature .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-lg);
}
#feature .feature-list .value {
  width: 100px;
  line-height: 1.2;
}
#feature .feature-list .text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}

/* section - discovery */
#discovery .width-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-3xl);
}
#discovery .title-area {
  gap: var(--gap-lg);
  margin-bottom: 0;
}
#discovery .chart-area {
  width: 100%;
  max-width: 580px;
  padding: var(--pad-xl);
  background: var(--bg-def);
  border: 1px solid var(--brdr-def);
  border-radius: var(--r-20);
}
#discovery .top-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--pad-md);
}
#discovery .top-zone p {
  display: flex;
  align-items: center;
  gap: var(--gap-3xs);
}
#discovery .chart-zone {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-md);
  height: 240px;
  border-bottom: 1px solid var(--brdr-def);
  margin-bottom: var(--pad-xs);
}
#discovery .chart-zone .bar-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: var(--gap-2xs);
}
#discovery .chart-zone .bar {
  width: 40px;
  border-top-left-radius: var(--r-8);
  border-top-right-radius: var(--r-8);
}
#discovery .chart-zone .bar-item:nth-child(1) .bar {
  height: 62.08%;
  background: var(--prmr-50);
}
#discovery .chart-zone .bar-item:nth-child(2) .bar {
  height: 28.33%;
  background: var(--prmr-10);
}
#discovery .chart-zone .bar-item:nth-child(3) .bar {
  height: 87.5%;
  background: var(--prmr);
}
#discovery .chart-zone .bar-item:nth-child(4) .bar {
  height: 75%;
  background: var(--prmr-50);
}
#discovery .chart-zone .bar-item:nth-child(5) .bar {
  height: 75%;
  background: var(--prmr-10);
}
#discovery .label-zone {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-md);
}
#discovery .label-zone .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-3xs);
}

/* section - faq */
#faq .contents-area {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
#faq .faq-list li {
  padding: var(--pad-lg);
  border-top: 1px solid var(--brdr-def);
  cursor: pointer;
}
#faq .faq-list li .question {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}
#faq .faq-list li .question span {
  width: 22px;
}
#faq .faq-list li .question p {
  flex: 1;
}
#faq .faq-list li .question .ic {
  transform: scaleY(-1);
}
#faq .faq-list li .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;

  padding-left: calc(22px + var(--gap-xs));
  padding-top: 0;
}
#faq .faq-list li .answer p {
  overflow: hidden;
  visibility: hidden;
}
#faq .faq-list li.is-active {
  background: var(--bg-sub);
}
#faq .faq-list li.is-active .question .ic {
  transform: scaleY(1);
}
#faq .faq-list li.is-active .answer {
  grid-template-rows: 1fr;
  padding-top: var(--gap-xs);
}
#faq .faq-list li.is-active .answer p {
  visibility: visible;
}

/* section - contact */
#contact {
  position: relative;
  background:
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(1, 2, 28, 0.88) 0%,
      rgba(1, 2, 28, 0.7) 100%
    ),
    url("/img/screen/place/bg_contact.jpg") lightgray center / cover no-repeat;
  overflow: hidden;
}
#contact .contents-area {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  padding: var(--pad-xl);
  background: var(--bk-op-30);
  border-radius: var(--r-20);
}
#contact .contact-form .input-zone {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-md);
}
#contact .contact-form .input-zone label {
  flex: 1;
}
#contact .contact-form .check-list {
  flex-direction: row;
  gap: var(--gap-md);
  color: var(--text-inv);
}
#contact .contents-area .info-text {
  color: var(--text-inv);
}
#contact .contact-anim {
  position: absolute;
  inset: 0;
  top: 0;
  left: 50%;
  width: 100%;
  min-width: 1920px;
  transform: translateX(-50%);
}
.contact-anim .ripple {
  --delay: 0s;
  position: absolute;
  width: 64px;
  height: 64px;
  pointer-events: none;
}
.contact-anim .ripple.sm {
  width: 40px;
  height: 40px;
}
.contact-anim .ripple span {
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  opacity: 0;
  border: 1.5px solid rgba(89, 140, 217, 0.4);
  animation: ripple-pulse 4s cubic-bezier(0.2, 0, 0.5, 1) infinite;
  animation-delay: var(--delay);
}
.contact-anim .ripple span:nth-child(2) {
  animation-delay: calc(var(--delay) + 0.9s);
}
.contact-anim .ripple span:nth-child(3) {
  animation-delay: calc(var(--delay) + 1.8s);
}
.contact-anim .ripple:nth-child(1) {
  --delay: 0s;
  left: 178px;
  bottom: 92px;
}
.contact-anim .ripple:nth-child(2) {
  --delay: 0.5s;
  left: 572px;
  bottom: 18px;
}
.contact-anim .ripple:nth-child(3) {
  --delay: 0.7s;
  top: 75px;
  right: 539px;
}
.contact-anim .ripple:nth-child(4) {
  --delay: 1.2s;
  top: 156px;
  right: 181px;
}
.contact-anim .ripple:nth-child(5) {
  --delay: 0.4s;
  top: 383px;
  right: 48px;
}

@keyframes ripple-pulse {
  0% {
    border-width: 1.5px;
    opacity: 0;
    scale: 1;
  }
  4% {
    opacity: 0.5;
    animation-timing-function: cubic-bezier(0.2, 0, 0.5, 1);
  }
  11% {
    opacity: 0.35;
    animation-timing-function: ease-in;
  }
  87.5%,
  100% {
    border-width: 0.3px;
    opacity: 0;
    scale: 3.5;
  }
}

/* sticky contact form */
#sticky-contact-form {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;

  background: var(--bk);
}
#sticky-contact-form .width-wrap {
  padding: var(--pad-sm) 0;
}
#sticky-contact-form .contents-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sticky-contact-form .contents-area .link-btn {
  display: none;
}
#sticky-contact-form .contact-form {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}
#sticky-contact-form .contact-form .input-zone {
  display: flex;
  align-items: center;
  gap: var(--gap-2xs);
}
#sticky-contact-form .contact-form .input-zone .input-field {
  max-width: 200px;
}

@media all and (max-width: 1200px) {
  /* section - QnA */
  #qna .qna-list li {
    flex-direction: column;
  }
  #qna .qna-list .question {
    flex-direction: column;
  }
  #qna .qna-list .question .card {
    max-width: 490px;
  }

  /* section - service */
  #service .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* section - feature */
  #feature {
    background-position: 48px calc(100% - 20px);
  }
  #feature .feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
    width: 100%;
    max-width: 510px;
    margin-left: auto;
    padding-left: 0;
  }

  /* section - discovery */
  #discovery .width-wrap {
    flex-direction: column;
    align-items: normal;
  }
  #discovery .chart-area {
    max-width: none;
  }

  /* section - faq */
  #faq .faq-list li .question span {
    width: 19px;
  }
  #faq .faq-list li .answer {
    padding-left: calc(19px + var(--gap-xs));
  }

  /* section - contact */
  #contact .contact-anim {
    display: none;
  }
}
@media all and (max-width: 1024px) {
  /* section - hero */
  #hero {
    height: calc(100vh - 68px);
    background: url("/img/screen/place/bg_hero_tb.png") center / cover no-repeat
      #f0f0f0;
  }

  .hero-area {
    animation-delay: 1s;
  }
  .hero-anim {
    width: 100%;
  }
  .pin1 {
    left: 7.91vw;
    bottom: 31.12vh;
    animation-delay: 0s, 1.63s;
  }
  .pin2 {
    top: 11.49vh;
    left: 14.94vw;
    animation-delay: 0.18s, 1.81s;
  }
  .pin5 {
    top: auto;
    right: 30.08vw;
    bottom: 16.18vh;
    animation-delay: 0.36s, 1.99s;
  }
  .pin6 {
    top: auto;
    right: 8.01vw;
    bottom: 42.61vh;
    animation-delay: 0.54s, 2.17s;
  }
  .pin3,
  .pin4,
  .pin7 {
    display: none;
  }
}
@media all and (max-width: 1000px) {
  #sticky-contact-form .contents-area .link-btn {
    display: flex;
  }
  #sticky-contact-form .contact-form {
    display: none;
  }
}
@media all and (max-width: 800px) {
  /* section - report */
  #report .report-card .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-lg);
  }
  /* section - service */
  #service .title-area .service-btn {
    display: none;
  }
  #service .contents-area {
    margin-bottom: var(--gap-2xl);
  }
  #service .service-list {
    grid-template-columns: repeat(1, 1fr);
  }
  #service .service-btn-mo {
    display: flex;
    background: var(--wh);
  }

  /* section - feature */
  #feature {
    background-image: none;
  }
  #feature .feature-list {
    max-width: none;
  }

  /* section - discovery */
  #discovery .chart-zone {
    height: 234px;
  }

  /* section - faq */
  #faq .faq-list li .question span {
    width: 17px;
  }
  #faq .faq-list li .answer {
    padding-left: calc(17px + var(--gap-xs));
  }

  /* section - contact */
  #contact {
    background:
      radial-gradient(
        50% 50% at 50% 50%,
        rgba(1, 2, 28, 0.88) 0%,
        rgba(1, 2, 28, 0.7) 100%
      ),
      url("/img/screen/place/bg_contact.jpg") lightgray 90% / cover no-repeat;
  }
  #contact .contact-form .input-zone {
    flex-direction: column;
    align-items: normal;
  }
}
@media all and (max-width: 500px) {
  /* section - hero */
  #hero {
    height: 755px;
    background: url("/img/screen/place/bg_hero_mo.png") center top / cover
      no-repeat #f0f0f0;
  }
  .hero-area {
    animation-delay: 0.8s;
  }
  .pin {
    width: 40px;
  }
  .pin1 {
    left: 8vw;
    bottom: 15.89vh;
  }
  .pin2 {
    top: 21.19vh;
    left: 18.13vw;
  }
  .pin5 {
    right: 5.33vw;
    bottom: 31.79vh;
  }
  .pin6 {
    display: none;
  }

  /* sticky contact form */
  #sticky-contact-form .contents-area p {
    max-width: 140px;
  }
}
