@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300;1,400&display=swap");

:root {
  --white: #f8fbff;
  --mist: rgba(255, 255, 255, 0.18);
  --mist-strong: rgba(255, 255, 255, 0.28);
  --glass-line: rgba(255, 255, 255, 0.34);
  --honey: #ffd66e;
  --leaf: #81dc71;
  --night: #07152d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1d363a;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  background: #ffffff;
  min-height: 100vh;
  overflow: visible;
}

body::before {
  display: none;
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.background {
  display: none;
}

.ambient {
  display: none;
}

.ambient-one {
  top: 14vh;
  left: -12vw;
  background: #72c7ff;
}

.ambient-two {
  right: -16vw;
  bottom: 8vh;
  background: #fff0a9;
}

.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  min-height: 54px;
  padding: 0 clamp(48px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    padding 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
}

.site-header.hide {
  opacity: 0;
  transform: translateY(-140%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  transition: none;
}

.brand-symbol,
.brand-logo {
  display: block;
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand-symbol {
  width: 36px;
  height: auto;
}

.brand-logo {
  width: 124px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(12px, 1.1vw, 20px);
  min-width: 0;
  white-space: nowrap;
}

.download-button,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  background: transparent;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.nav-button {
  min-height: 44px;
  padding: 0 clamp(14px, 1.2vw, 22px);
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 700;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.download-button {
  justify-self: end;
  border-color: rgba(0, 0, 0, 0.22);
  background: transparent;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(0, 0, 0, 0.05);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-button.is-active {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(0, 0, 0, 0.045);
}

.download-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(0, 0, 0, 0.05);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 1480px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 54px;
    padding: 0 48px;
  }

  .brand {
    gap: 10px;
  }

  .main-nav {
    gap: 10px;
  }

  .nav-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .download-button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }
}

.section {
  position: relative;
  display: flex;
  height: 100vh;
  min-height: 100vh;
  padding: 130px clamp(28px, 6vw, 112px);
  scroll-margin-top: 0;
  background: #ffffff;
}

.empty-page {
  width: 100%;
  height: 100vh;
  background: #ffffff;
}

.hero-section {
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)), url("images/main-background.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-section::before {
  display: none;
  content: none;
}

.hero-content {
  position: absolute;
  top: 35%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
}

.main-logo {
  display: block;
  width: clamp(360px, 42vw, 760px);
  height: auto;
  object-fit: contain;
  filter: none;
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(29, 54, 58, 0.62);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 8.8vw, 168px);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.48), 0 0 72px rgba(124, 203, 255, 0.34);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.2vw, 82px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 0;
  color: rgba(29, 54, 58, 0.82);
  font-size: clamp(30px, 3.1vw, 58px);
  font-weight: 650;
  line-height: 1.2;
}

.intro-section {
  display: flex;
  min-height: 54vh;
  align-items: center;
  padding: 92px clamp(28px, 6vw, 112px) 58px;
  background: linear-gradient(180deg, #f8f7f2 0%, #fffaf0 100%);
}

.intro-content {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  margin-bottom: clamp(28px, 3vw, 44px);
  color: #183033;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 2.85vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: none;
}

.intro-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}

.intro-text-row p {
  margin: 0;
  color: rgba(24, 48, 51, 0.65);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.7;
}

.app-intro-section {
  min-height: 78vh;
  padding: 56px clamp(28px, 6vw, 112px) 64px;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.app-intro-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.app-preview-placeholder {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(240px, 0.58fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
  justify-content: center;
  text-align: left;
}

.intro-app-image {
  justify-self: end;
  display: block;
  width: min(56vw, 820px);
  max-width: 820px;
  max-height: 720px;
  object-fit: contain;
  filter: none;
}

.intro-app-note {
  max-width: 360px;
  align-self: end;
  padding-bottom: clamp(28px, 5vw, 70px);
}

.intro-app-note p {
  margin: 0;
  color: rgba(24, 48, 51, 0.62);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 300;
  line-height: 1.75;
}

.intro-app-note p + p {
  margin-top: 18px;
  color: rgba(24, 48, 51, 0.46);
}

.reward-section {
  min-height: 100vh;
  padding: 120px clamp(28px, 6vw, 112px);
  background: #f8f7f2;
}

.reward-content {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.reward-heading {
  text-align: center;
}

.reward-heading h2 {
  margin: 0;
  color: #183033;
  font-size: clamp(44px, 4.15vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.reward-heading h2 span {
  display: block;
  margin-bottom: 12px;
  color: rgba(24, 48, 51, 0.58);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 500;
  letter-spacing: 0;
}

.reward-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: center;
  margin-top: clamp(72px, 7vw, 104px);
}

.honey-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.honey-fill {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: min(52%, 260px);
  height: 0%;
  border-radius: 999px 999px 38px 38px;
  background: linear-gradient(180deg, rgba(255, 211, 82, 0.9), rgba(239, 146, 28, 0.92));
  opacity: 0;
  transform: translateX(-50%);
  transition: height 0.8s ease, opacity 0.8s ease;
  pointer-events: none;
}

.honey-jar-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(35vw, 520px);
  min-width: 320px;
  height: auto;
  object-fit: contain;
}

.reward-description {
  margin: 18px auto 0;
  color: rgba(24, 48, 51, 0.68);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 300;
  line-height: 1.7;
}

.mission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.mission-card {
  position: relative;
  min-height: 220px;
  border-radius: 28px;
  perspective: 1100px;
}

.mission-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1);
}

.mission-card:hover .mission-card-inner {
  transform: rotateY(180deg);
}

.mission-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 24px 60px rgba(24, 48, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backface-visibility: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mission-card-back {
  transform: rotateY(180deg);
  background: rgba(255, 250, 240, 0.72);
}

.mission-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(24, 48, 51, 0.46);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-card h3 {
  margin: 0;
  color: #183033;
  font-size: 24px;
  font-weight: 700;
}

.mission-card p {
  margin: 18px 0 0;
  color: rgba(24, 48, 51, 0.62);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.mission-card strong {
  display: block;
  margin-top: 22px;
  color: #e6a61f;
  font-size: 15px;
  font-weight: 800;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(230, 166, 31, 0.28);
  border-radius: 999px;
  background: rgba(255, 214, 110, 0.24);
  color: #183033;
  font-size: 13px;
  font-weight: 800;
}

.custom-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f7f2;
  overflow-x: hidden;
}

.custom-content {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 136px clamp(28px, 6vw, 112px) 72px;
  text-align: center;
}

.custom-builder {
  position: relative;
  isolation: isolate;
}

.custom-builder::before,
.custom-builder::after {
  position: absolute;
  z-index: -1;
  width: 36vw;
  height: 36vw;
  border-radius: 999px;
  content: "";
  filter: blur(2px);
  opacity: 0.58;
  pointer-events: none;
}

.custom-builder::before {
  top: 10vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(255, 219, 125, 0.34), transparent 66%);
}

.custom-builder::after {
  right: -11vw;
  bottom: 8vh;
  background: radial-gradient(circle, rgba(129, 220, 113, 0.25), transparent 64%);
}

.custom-title {
  margin: 0;
  color: #183033;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 4vw, 72px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: none;
}

.custom-preview {
  position: relative;
  width: min(980px, 64vw);
  min-width: 420px;
  margin-top: clamp(36px, 4.4vw, 72px);
  aspect-ratio: 1.48;
  border-radius: 42px;
  transform: translateZ(0);
  transition: transform 0.55s cubic-bezier(0.18, 0.82, 0.22, 1), filter 0.55s ease;
}

.custom-preview.is-pulsing {
  transform: scale(1.03);
}

.preview-glow {
  position: absolute;
  inset: 18% 10% 10%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 206, 89, 0.48), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(83, 169, 79, 0.22), transparent 50%);
  filter: blur(22px);
  opacity: 0.7;
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.45s ease;
}

.hive-preview-image {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: block;
  width: min(55vw, 980px);
  min-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 36px 44px rgba(62, 47, 20, 0.18));
  transform: translate(-50%, -50%);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.nature-layer,
.bee-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.nature-dot {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f5cf6e;
  box-shadow: 0 10px 24px rgba(102, 76, 29, 0.1);
  opacity: 0;
  transform: translateY(12px) scale(0.8);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.45s ease, border-radius 0.45s ease;
}

.nature-dot-one {
  left: 21%;
  top: 62%;
}

.nature-dot-two {
  left: 31%;
  top: 73%;
}

.nature-dot-three {
  right: 24%;
  top: 65%;
}

.nature-dot-four {
  right: 35%;
  top: 79%;
}

.mini-bee {
  position: absolute;
  display: block;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #5b3823 0 18%, #ffc83d 18% 42%, #5b3823 42% 54%, #ffc83d 54% 78%, #5b3823 78% 100%);
  box-shadow: 0 10px 18px rgba(83, 51, 20, 0.12);
  opacity: 0.74;
  animation: beeFloat 5.6s ease-in-out infinite;
}

.mini-bee::before,
.mini-bee::after {
  position: absolute;
  top: -10px;
  width: 15px;
  height: 16px;
  border-radius: 999px 999px 60% 60%;
  background: rgba(255, 255, 255, 0.78);
  content: "";
  transform-origin: bottom center;
}

.mini-bee::before {
  left: 8px;
  transform: rotate(-24deg);
}

.mini-bee::after {
  right: 7px;
  transform: rotate(24deg);
}

.bee-one {
  left: 20%;
  top: 24%;
}

.bee-two {
  right: 22%;
  top: 30%;
  width: 28px;
  height: 20px;
  animation-delay: -1.4s;
}

.bee-three {
  right: 32%;
  bottom: 26%;
  width: 24px;
  height: 17px;
  animation-delay: -2.6s;
}

.custom-preview[data-nature="flower"] .nature-dot,
.custom-preview[data-nature="forest"] .nature-dot,
.custom-preview[data-nature="stone"] .nature-dot {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-preview[data-nature="flower"] .nature-dot {
  background:
    radial-gradient(circle at 50% 50%, #f3c34f 0 22%, transparent 23%),
    radial-gradient(circle at 50% 8%, #ffffff 0 20%, transparent 21%),
    radial-gradient(circle at 92% 50%, #ffe3ec 0 20%, transparent 21%),
    radial-gradient(circle at 50% 92%, #ffffff 0 20%, transparent 21%),
    radial-gradient(circle at 8% 50%, #ffe3ec 0 20%, transparent 21%);
}

.custom-preview[data-nature="forest"] .nature-dot {
  width: 28px;
  height: 18px;
  border-radius: 999px 0 999px 0;
  background: linear-gradient(135deg, #70c862, #2f8a52);
}

.custom-preview[data-nature="stone"] .nature-dot {
  width: 32px;
  height: 22px;
  border-radius: 58% 42% 46% 54%;
  background: linear-gradient(145deg, #cbc5b6, #9c9689);
}

.custom-preview[data-decoration="light"] .preview-glow {
  opacity: 1;
  transform: scale(1.1);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 205, 77, 0.66), transparent 33%),
    radial-gradient(circle at 50% 72%, rgba(83, 169, 79, 0.2), transparent 52%);
}

.custom-preview[data-decoration="honey"] .hive-preview-image {
  filter:
    drop-shadow(0 38px 44px rgba(62, 47, 20, 0.18))
    drop-shadow(0 0 24px rgba(255, 178, 34, 0.2));
}

.custom-preview[data-decoration="sign"] .nature-layer::after {
  position: absolute;
  left: 27%;
  bottom: 20%;
  padding: 9px 14px;
  border: 1px solid rgba(103, 67, 28, 0.18);
  border-radius: 999px;
  background: rgba(255, 246, 220, 0.76);
  color: rgba(71, 51, 28, 0.75);
  box-shadow: 0 16px 26px rgba(77, 48, 18, 0.08);
  content: "BEEWARD";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.custom-preview[data-bee="fluffy"] .mini-bee {
  background:
    linear-gradient(90deg, #5b3823 0 16%, #ffe29a 16% 45%, #5b3823 45% 55%, #ffe29a 55% 82%, #5b3823 82% 100%);
  box-shadow: 0 0 0 5px rgba(255, 240, 196, 0.28), 0 10px 18px rgba(83, 51, 20, 0.1);
}

.custom-preview[data-bee="gold"] .mini-bee {
  background:
    linear-gradient(90deg, #6d421d 0 15%, #ffd95a 15% 45%, #8d5a20 45% 55%, #ffc326 55% 84%, #6d421d 84% 100%);
  box-shadow: 0 0 18px rgba(255, 196, 38, 0.44), 0 10px 18px rgba(83, 51, 20, 0.12);
}

.custom-area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  width: min(980px, 100%);
  height: auto;
  margin-top: clamp(28px, 3.6vw, 56px);
}

.option-group {
  padding: 20px;
  border: 1px solid rgba(24, 48, 51, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 20% 0%, rgba(255, 218, 115, 0.16), transparent 42%);
  box-shadow:
    0 20px 60px rgba(42, 52, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.option-group p {
  margin: 0 0 14px;
  color: rgba(24, 48, 51, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.option-card {
  min-height: 48px;
  border: 1px solid rgba(24, 48, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: #183033;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    0 8px 22px rgba(42, 52, 38, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 48, 51, 0.18);
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    0 14px 28px rgba(42, 52, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.option-card.is-active {
  transform: scale(1.05);
  border-color: rgba(24, 48, 51, 0.28);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 16px 34px rgba(63, 70, 44, 0.1),
    0 0 0 4px rgba(255, 204, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.save-hive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: clamp(26px, 3vw, 44px);
  padding: 0 34px;
  border: 1px solid rgba(24, 48, 51, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #183033;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(42, 52, 38, 0.045);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.save-hive-button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 48, 51, 0.28);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 36px rgba(42, 52, 38, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes beeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }

  50% {
    transform: translate3d(16px, -18px, 0) rotate(-7deg);
  }
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 112px);
  width: min(1520px, 100%);
  margin: 0 auto;
  align-items: center;
}

.glass-panel,
.chapter-card {
  border: 1px solid rgba(29, 54, 58, 0.14);
  background:
    linear-gradient(135deg, rgba(29, 54, 58, 0.075), rgba(29, 54, 58, 0.025)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72), transparent 28%);
  color: #1d363a;
  box-shadow: 0 28px 90px rgba(12, 39, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(130%);
}

.intro-copy {
  padding: clamp(38px, 5vw, 76px);
  border-radius: 28px;
}

.app-mockup {
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  perspective: 1200px;
}

.phone-shell {
  position: relative;
  width: min(310px, 72vw);
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 46px;
  background: linear-gradient(155deg, rgba(7, 24, 41, 0.72), rgba(255, 255, 255, 0.14));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: rotateX(8deg) rotateY(-13deg) translateZ(24px);
}

.phone-camera {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 58px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 214, 110, 0.8), transparent 16%),
    linear-gradient(180deg, rgba(85, 196, 255, 0.45), rgba(29, 97, 71, 0.5));
}

.screen-dot {
  position: absolute;
  top: 118px;
  left: 50%;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.phone-screen p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.phone-screen strong {
  font-size: 33px;
  line-height: 1;
}

.screen-bars {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.52fr;
  gap: 8px;
  margin-top: 26px;
}

.screen-bars span {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.chapter-section {
  align-items: center;
}

.chapter-content {
  width: min(1620px, 100%);
  margin: 0 auto;
}

.chapter-content h2 {
  max-width: 820px;
  color: rgba(15, 48, 66, 0.86);
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.46);
}

.chapter-section .eyebrow {
  color: rgba(13, 54, 72, 0.62);
}

.chapter-cards {
  display: flex;
  gap: 22px;
  min-height: 330px;
  margin-top: 54px;
  align-items: stretch;
}

.chapter-card {
  position: relative;
  flex: 1 1 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 32px;
  border-radius: 30px;
  color: #1d363a;
  transform: translateZ(0);
  transition: flex 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
}

.chapter-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(160deg, rgba(255, 214, 110, 0.22), rgba(108, 199, 255, 0.18));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.chapter-card span,
.chapter-card h3,
.chapter-card p {
  position: relative;
  z-index: 1;
}

.chapter-card span {
  margin-bottom: auto;
  color: rgba(29, 54, 58, 0.5);
  font-size: 18px;
  font-weight: 800;
}

.chapter-card h3 {
  margin-bottom: 0;
  font-size: clamp(31px, 2.2vw, 46px);
  line-height: 1;
}

.chapter-card p {
  max-width: 360px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(29, 54, 58, 0.74);
  font-size: 18px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease, max-height 0.5s ease, margin 0.5s ease;
}

.chapter-cards:has(.chapter-card:hover) .chapter-card {
  flex: 0.82 1 0;
  opacity: 0.58;
  transform: scale(0.96);
}

.chapter-cards .chapter-card:hover {
  z-index: 3;
  flex: 1.8 1 0;
  opacity: 1;
  box-shadow: 0 42px 110px rgba(26, 86, 90, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-16px) scale(1.045);
}

.chapter-card:hover::before {
  opacity: 1;
}

.chapter-card:hover p {
  max-height: 130px;
  margin-top: 22px;
  opacity: 1;
  transform: translateY(0);
}

.forest-section {
  min-height: 115vh;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-content.reveal {
  transform: translate(-50%, calc(-50% + 50px));
}

.hero-content.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.lift-reveal {
  transition-delay: 0.12s;
}

@media (max-width: 1080px) {
  .site-header {
    top: 18px;
    gap: 10px;
    min-height: 60px;
    padding: 0 24px;
  }

  .brand-symbol {
    width: 30px;
    height: 30px;
  }

  .brand-logo {
    width: 104px;
    height: auto;
  }

  .main-nav {
    gap: 6px;
  }

  .nav-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .download-button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .intro-text-row {
    gap: 28px;
  }

  .intro-app-image {
    width: min(64vw, 720px);
    max-width: 720px;
  }

  .intro-app-note {
    padding-bottom: 46px;
  }

  .reward-body {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .honey-container {
    min-height: 420px;
    order: 2;
  }

  .honey-jar-image {
    width: min(62vw, 440px);
  }

  .reward-heading,
  .reward-description {
    margin-right: auto;
    margin-left: auto;
  }

  .custom-content {
    padding: 118px 28px 64px;
  }

  .custom-preview {
    width: min(860px, 86vw);
    min-width: 0;
  }

  .hive-preview-image {
    width: min(86vw, 820px);
    min-width: 0;
  }

  .custom-area {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
  }

  .app-mockup {
    min-height: 560px;
  }

  .chapter-cards {
    flex-direction: column;
  }

  .chapter-card,
  .chapter-cards:has(.chapter-card:hover) .chapter-card,
  .chapter-cards .chapter-card:hover {
    flex: 1 1 auto;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    gap: 8px;
    min-height: 54px;
    padding: 0 12px;
  }

  .brand-symbol {
    width: 28px;
    height: 28px;
  }

  .brand-logo {
    display: none;
  }

  .main-nav {
    gap: 4px;
  }

  .nav-button {
    min-height: 32px;
    padding: 0 7px;
    font-size: 10px;
  }

  .download-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .section {
    padding: 108px 20px;
  }

  .intro-section {
    padding: 76px 22px 42px;
  }

  .app-intro-section {
    padding: 48px 22px 56px;
  }

  .intro-text-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-preview-placeholder {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .intro-app-image {
    justify-self: center;
    width: min(94vw, 600px);
    max-width: 600px;
    max-height: 620px;
  }

  .intro-app-note {
    max-width: 340px;
    margin: 0 auto;
    padding-bottom: 0;
    transform: none;
  }

  .reward-section {
    padding: 84px 20px;
  }

  .reward-body {
    min-height: auto;
    margin-top: 54px;
  }

  .honey-container {
    min-height: 320px;
  }

  .honey-jar-image {
    width: min(88vw, 360px);
    min-width: 0;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 0;
    padding: 24px;
  }

  .custom-content {
    padding: 96px 18px 46px;
  }

  .custom-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .custom-preview {
    width: 100%;
    aspect-ratio: 1.12;
    margin-top: 34px;
  }

  .hive-preview-image {
    width: min(98vw, 520px);
  }

  .nature-dot-one {
    left: 8%;
  }

  .nature-dot-three {
    right: 8%;
  }

  .option-group {
    padding: 16px;
    border-radius: 24px;
  }

  .option-list {
    gap: 8px;
  }

  .option-card {
    min-height: 42px;
    font-size: 12px;
  }

  .main-logo {
    width: min(72vw, 420px);
    min-width: 260px;
    height: auto;
  }

  h1 {
    font-size: 66px;
  }

  .intro-copy {
    padding: 30px;
  }

  .app-mockup {
    min-height: 490px;
  }

  .phone-shell {
    height: 500px;
  }
}

.custom-studio-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 48% 24%, rgba(255, 214, 99, 0.18), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(94, 172, 99, 0.14), transparent 28%),
    #f8f7f2;
}

.hive-studio {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(420px, 1fr) minmax(250px, 320px);
  gap: clamp(28px, 4vw, 70px);
  min-height: 100vh;
  padding: 132px clamp(32px, 5vw, 86px) 58px;
  align-items: center;
}

.custom-panel,
.selection-panel {
  border: 1px solid rgba(24, 48, 51, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 16% 8%, rgba(255, 214, 99, 0.16), transparent 36%);
  box-shadow:
    0 30px 80px rgba(55, 62, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.custom-panel {
  padding: clamp(24px, 2.4vw, 34px);
}

.studio-kicker {
  margin: 0 0 14px;
  color: rgba(24, 48, 51, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.studio-title {
  margin: 0 0 30px;
  color: #183033;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(36px, 3.4vw, 62px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.hive-studio .custom-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  margin: 0;
}

.hive-studio .option-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hive-studio .option-group p {
  margin-bottom: 10px;
  color: rgba(24, 48, 51, 0.58);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.hive-studio .option-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.hive-studio .option-card {
  min-height: 42px;
  padding: 0 12px;
  border-color: rgba(24, 48, 51, 0.13);
  background: rgba(255, 255, 255, 0.18);
  color: #183033;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    0 10px 24px rgba(42, 52, 38, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hive-studio .option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 48, 51, 0.22);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hive-studio .option-card.is-active {
  transform: scale(1.04);
  border-color: rgba(218, 160, 20, 0.56);
  background: rgba(255, 218, 92, 0.2);
  box-shadow:
    0 16px 32px rgba(218, 160, 20, 0.12),
    0 0 0 4px rgba(255, 204, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hive-preview-stage {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hive-product {
  --hive-width: clamp(360px, 38vw, 680px);
  position: relative;
  display: flex;
  width: min(780px, 100%);
  min-width: 0;
  height: clamp(500px, 54vw, 680px);
  align-items: center;
  justify-content: center;
  margin: 0;
  perspective: 1100px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.18, 0.82, 0.22, 1);
}

.hive-product.is-pulsing .hive {
  transform: rotateX(9deg) rotateY(-13deg) scale(1.03);
}

.product-aura {
  position: absolute;
  inset: 14% 4% 9%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 206, 85, 0.38), transparent 34%),
    radial-gradient(circle at 50% 68%, rgba(75, 147, 83, 0.16), transparent 48%);
  filter: blur(22px);
  opacity: 0.8;
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.45s ease;
}

.hive {
  position: relative;
  z-index: 2;
  width: var(--hive-width);
  height: calc(var(--hive-width) * 0.86);
  transform: rotateX(9deg) rotateY(-9deg);
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.18, 0.82, 0.22, 1);
}

.hive::before {
  position: absolute;
  inset: 24% 4% 8%;
  border-radius: 42% 42% 30% 30%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.28), transparent 38%);
  content: "";
  pointer-events: none;
  z-index: 6;
}

.hive-roof,
.hive-body,
.hive-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hive-roof {
  top: 4%;
  z-index: 5;
  width: 72%;
  height: 32%;
  border-radius: 34% 34% 14% 14%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 32%),
    linear-gradient(135deg, #d49543, #f6c370 42%, #9c642d);
  box-shadow:
    0 22px 40px rgba(79, 51, 20, 0.16),
    inset 0 3px 0 rgba(255, 255, 255, 0.35);
  clip-path: polygon(50% 0, 100% 52%, 90% 100%, 10% 100%, 0 52%);
  transition: border-radius 0.45s ease, background 0.45s ease, clip-path 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.hive-roof span {
  position: absolute;
  inset: 24% 12% auto;
  height: 13%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 0 rgba(112, 69, 28, 0.16), 0 56px 0 rgba(112, 69, 28, 0.12);
}

.hive-body {
  top: 27%;
  z-index: 4;
  width: 62%;
  height: 52%;
  overflow: hidden;
  border: 1px solid rgba(125, 78, 24, 0.14);
  border-radius: 34% 34% 24% 24%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(145deg, #f8c557, #d98f25 72%, #b66b18);
  box-shadow:
    0 34px 54px rgba(78, 49, 17, 0.18),
    inset 18px 16px 32px rgba(255, 255, 255, 0.24),
    inset -18px -20px 32px rgba(130, 76, 15, 0.16);
  transition: width 0.45s ease, height 0.45s ease, border-radius 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.hive-band {
  position: absolute;
  left: 8%;
  width: 84%;
  height: 15%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 238, 167, 0.52), rgba(166, 93, 18, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hive-band-one {
  top: 20%;
}

.hive-band-two {
  top: 42%;
}

.hive-band-three {
  top: 64%;
}

.hive-entrance {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 5;
  width: 22%;
  height: 22%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 64% 38%, rgba(255, 190, 65, 0.48), transparent 18%),
    linear-gradient(145deg, #5a321a, #2b170f);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.34),
    0 5px 9px rgba(255, 217, 107, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease, border-radius 0.45s ease, clip-path 0.45s ease;
}

.hive-base {
  bottom: 10%;
  z-index: 3;
  width: 72%;
  height: 14%;
  border-radius: 50%;
  background: linear-gradient(145deg, #7fb65c, #4f8d43 52%, #346632);
  box-shadow:
    0 32px 42px rgba(51, 68, 34, 0.18),
    inset 0 10px 16px rgba(255, 255, 255, 0.22);
}

.stage-shadow {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: min(480px, 62%);
  height: 54px;
  border-radius: 999px;
  background: rgba(73, 69, 46, 0.16);
  filter: blur(18px);
  transform: translateX(-50%);
}

.hive-accessory {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.flower-accessory,
.light-accessory,
.honey-accessory {
  position: absolute;
  opacity: 0;
  transform: translateY(10px) scale(0.78);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.flower-accessory {
  right: 18%;
  bottom: 20%;
  width: 64px;
  height: 64px;
  fill: #fff1f4;
  filter: drop-shadow(0 10px 14px rgba(87, 56, 24, 0.12));
}

.flower-accessory circle {
  fill: #efb83d;
}

.light-accessory {
  top: 23%;
  right: 24%;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 230, 132, 0.72), rgba(255, 202, 63, 0.22) 42%, transparent 68%);
  filter: blur(1px);
}

.honey-accessory {
  left: 58%;
  top: 63%;
  width: 22px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffc844, #e89616);
  box-shadow: 16px 34px 0 -4px #e89616;
}

.hive-product[data-style="classic"] .hive-body {
  width: 64%;
  height: 50%;
  border-radius: 18% 18% 16% 16%;
}

.hive-product[data-style="classic"] .hive-roof {
  width: 76%;
  clip-path: polygon(50% 0, 100% 55%, 94% 100%, 6% 100%, 0 55%);
}

.hive-product[data-style="modern"] .hive-body {
  width: 56%;
  height: 54%;
  border-radius: 16%;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(145deg, #f4cc66, #d6952b 68%, #a96318);
}

.hive-product[data-style="modern"] .hive-roof {
  width: 60%;
  height: 24%;
  border-radius: 22px;
  clip-path: none;
}

.hive-product[data-style="round"] .hive-body {
  width: 62%;
  height: 54%;
  border-radius: 44% 44% 30% 30%;
}

.hive-product[data-roof="glass"] .hive-roof {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(165, 218, 221, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(98, 154, 162, 0.18));
  box-shadow:
    0 22px 44px rgba(42, 97, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hive-product[data-roof="leaf"] .hive-roof {
  border-radius: 80% 16% 58% 18%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #9dd66a, #4e9a48 62%, #2f6f38);
  clip-path: polygon(50% 0, 100% 48%, 88% 100%, 18% 92%, 0 50%);
  box-shadow:
    0 22px 44px rgba(45, 97, 44, 0.16),
    inset 0 3px 0 rgba(255, 255, 255, 0.28);
}

.hive-product[data-entrance="arch"] .hive-entrance {
  width: 22%;
  height: 28%;
  border-radius: 999px 999px 42% 42%;
}

.hive-product[data-entrance="hexagon"] .hive-entrance {
  width: 25%;
  height: 24%;
  border-radius: 0;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.hive-product[data-accessory="flower"] .flower-accessory,
.hive-product[data-accessory="light"] .light-accessory,
.hive-product[data-accessory="honey"] .honey-accessory {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hive-product[data-accessory="light"] .product-aura {
  opacity: 1;
  transform: scale(1.08);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 220, 104, 0.58), transparent 34%),
    radial-gradient(circle at 50% 68%, rgba(75, 147, 83, 0.14), transparent 48%);
}

.selection-panel {
  padding: clamp(24px, 2.4vw, 34px);
}

.selection-panel h2 {
  margin: 0 0 24px;
  color: #183033;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.selection-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.selection-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(24, 48, 51, 0.08);
}

.selection-list dt {
  color: rgba(24, 48, 51, 0.52);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-list dd {
  margin: 0;
  color: #183033;
  font-size: 15px;
  font-weight: 900;
}

.hive-preview-stage .save-hive-button {
  margin-top: clamp(16px, 2vw, 30px);
}

@media (max-width: 1180px) {
  .hive-studio {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .custom-panel,
  .selection-panel {
    width: min(780px, 100%);
    margin: 0 auto;
  }

  .hive-preview-stage {
    order: -1;
  }
}

@media (max-width: 720px) {
  .hive-studio {
    gap: 26px;
    padding: 96px 18px 42px;
  }

  .studio-title {
    font-size: clamp(34px, 12vw, 46px);
  }

  .hive-product {
    --hive-width: min(92vw, 390px);
    height: 420px;
  }

  .hive-studio .option-list {
    grid-template-columns: 1fr;
  }

  .selection-list div {
    padding: 13px 0;
  }
}

.live-page-body {
  background: #774d3b;
  color: #ffffff;
}

.live-page-body .brand-symbol {
  filter: brightness(0) invert(1);
}

.live-page-body .nav-button,
.live-page-body .download-button {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.live-page-body .nav-button:hover,
.live-page-body .download-button:hover,
.live-page-body .nav-button.is-active {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.live-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 26%, rgba(255, 214, 105, 0.16), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 30%),
    #774d3b;
}

.live-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  width: min(1280px, 100%);
  height: 100vh;
  margin: 0 auto;
  padding: 120px 64px 64px;
}

.live-screen {
  position: relative;
  justify-self: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: min(100%, 620px);
  min-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(119, 77, 59, 0.56) 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.live-screen::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 8px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 8px, 28px 100%;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  z-index: 5;
}

.live-screen::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -36%;
  height: 34%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(145, 220, 255, 0.18) 48%, transparent 100%);
  content: "";
  opacity: 0.22;
  pointer-events: none;
  z-index: 6;
  animation: scanMove 4s linear infinite;
}

.live-screen-top {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
}

.live-badge,
.live-data {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-badge {
  gap: 8px;
  padding: 0 14px;
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4f58;
  box-shadow: 0 0 18px rgba(255, 79, 88, 0.9);
  animation: livePulse 1.8s ease-in-out infinite;
}

.live-data {
  padding: 0 16px;
}

.live-bee-image {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 3;
  width: 92%;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  filter: contrast(0.9) saturate(0.92) drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  animation: liveFloat 4.8s ease-in-out infinite;
}

.live-copy h1 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 4vw, 56px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.live-description {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 1.7;
}

.live-translation {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.6;
}

.live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.live-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes liveFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-4px) scale(1.008);
  }
}

@keyframes scanMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(400%);
  }
}

@media (max-width: 980px) {
  .live-page {
    overflow: auto;
  }

  .live-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    height: auto;
    min-height: 100vh;
    padding: 112px 28px 56px;
  }

  .live-copy {
    text-align: center;
  }

  .live-copy h1,
  .live-description,
  .live-translation {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .live-layout {
    padding: 96px 18px 44px;
  }

  .live-screen {
    min-width: 0;
    width: 100%;
    border-radius: 26px;
  }

  .live-screen-top {
    padding: 18px;
  }

  .live-badge,
  .live-data {
    min-height: 30px;
    font-size: 10px;
  }
}
