@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #0d0d0f;
  font-family: "Noto Sans KR", sans-serif;
  letter-spacing: -0.035em;
}

header,
main,
footer {
  max-width: 1180px;
  margin: auto;
}

header {
  height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.logo {
  color: #111;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

main {
  padding: 0 24px;
}


/* HERO */

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  color: #777b84;
  font-size: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.description {
  margin: 30px 0;
  color: #70747c;
  font-size: 19px;
  line-height: 1.6;
}

.main-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;

  padding: 17px 25px;

  border-radius: 999px;

  background: #161719;
  color: white;

  text-decoration: none;
  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


/* MASCOT */

.mascot-area {
  position: relative;
  height: 430px;

  display: grid;
  place-items: center;
}

.mascot {
  width: 290px;
  height: 220px;

  position: relative;

  border-radius: 52% 48% 45% 55% / 58% 55% 45% 42%;

  background:
    linear-gradient(
      145deg,
      #fff,
      #eef0f3 70%,
      #e1e4e8
    );

  filter:
    drop-shadow(0 25px 25px rgba(30,35,45,.12));

  transform: rotate(3deg);
}

.face {
  position: absolute;

  top: 100px;
  left: 97px;

  display: flex;
  align-items: center;
  gap: 17px;
}

.face i {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #111;
}

.face b {
  width: 22px;
  height: 12px;

  border-bottom: 3px solid #111;
  border-radius: 0 0 20px 20px;
}

.mascot-text {
  position: absolute;

  top: 40px;
  right: 30px;

  color: #a0a3aa;

  font-size: 14px;
  line-height: 1.5;

  transform: rotate(-8deg);
}


/* CONTENTS */

.contents {
  padding: 70px 0 100px;

  border-top: 1px solid #eceef1;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 15px;

  margin-bottom: 28px;
}

.section-title span {
  color: #999ca4;
  font-size: 11px;
}

.section-title h2 {
  margin: 0;
  font-size: 27px;
}

.content-card {
  min-height: 340px;

  position: relative;
  overflow: hidden;

  display: block;

  padding: 38px;

  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      #faf9ff,
      #efefff
    );

  color: #111;
  text-decoration: none;
}

.new {
  padding: 6px 9px;

  border-radius: 999px;

  background: #111;
  color: white;

  font-size: 9px;
  font-weight: 800;
}

.content-card h3 {
  margin: 24px 0 10px;

  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.07em;
}

.content-card p {
  color: #747881;
}

.heart {
  position: absolute;

  right: 13%;
  top: 50%;

  transform: translateY(-50%) rotate(-8deg);

  color: #c8c3f5;

  font-size: 150px;
  font-weight: 200;
}

.arrow {
  position: absolute;

  right: 30px;
  bottom: 30px;

  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #111;
  color: white;

  font-size: 23px;
}


/* ABOUT */

.about {
  padding: 90px 20px 110px;

  text-align: center;
}

.about p {
  margin: 0 0 17px;

  font-size: 30px;
  line-height: 1.5;
}

.about small {
  color: #888c94;
}


/* FOOTER */

footer {
  padding: 28px 24px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid #eee;

  color: #999ca4;

  font-size: 10px;
}


/* MOBILE */

@media (max-width: 720px) {

  header {
    padding: 0 20px;
  }

  main {
    padding: 0 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    min-height: auto;

    padding: 65px 0 25px;
  }

  .kicker {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .description {
    font-size: 17px;
  }

  .main-button {
    justify-content: space-between;
  }

  .mascot-area {
    height: 310px;
  }

  .mascot {
    width: 220px;
    height: 165px;
  }

  .face {
    top: 73px;
    left: 73px;

    gap: 13px;
  }

  .face i {
    width: 10px;
    height: 10px;
  }

  .face b {
    width: 18px;
    height: 10px;
  }

  .mascot-text {
    right: 5px;
    top: 30px;

    font-size: 12px;
  }

  .contents {
    padding: 50px 0 70px;
  }

  .content-card {
    min-height: 310px;

    padding: 29px;

    border-radius: 28px;
  }

  .content-card h3 {
    font-size: 40px;
  }

  .heart {
    right: 4%;
    top: 58%;

    font-size: 105px;
  }

  .about {
    padding: 70px 5px 90px;
  }

  .about p {
    font-size: 23px;
  }

  footer {
    margin: 0 20px;
    padding-left: 0;
    padding-right: 0;
  }
}
