html,
body {
  margin: 0;
  padding: 0;
  background: #0E0B05;
}
body {
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #F6C445;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #FFD75E;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.6) rotate(45deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1) rotate(45deg);
  }
}
@keyframes twinkleStar {
  0%,
  100% {
    opacity: 0.05;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.5;
    transform: scale(1);
  }
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.mbr {
  display: none;
}
@media (max-width: 640px) {
  .mbr {
    display: inline;
  }
}
.app-container {
  background: #0E0B05;
  color: #F5EFDF;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(246, 196, 69, 0.05) 1px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.bg-gradient-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(246, 196, 69, 0.03) 50%, transparent 58%);
  pointer-events: none;
}
.bg-glow-1 {
  position: absolute;
  top: 820px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.07), transparent 65%);
  pointer-events: none;
}
.bg-glow-2 {
  position: absolute;
  top: 1700px;
  right: -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.06), transparent 65%);
  pointer-events: none;
}
.bg-glow-3 {
  position: absolute;
  bottom: 120px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.05), transparent 65%);
  pointer-events: none;
}
.content-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 120px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1920px) {
  .content-container {
    max-width: 1000px;
  }
}
.hero-section {
  text-align: center;
  padding: 72px 0 64px;
  position: relative;
}
.hero-bg-glow {
  position: absolute;
  inset: -20px -40px auto;
  height: 520px;
  background: radial-gradient(ellipse 70% 55% at 50% 20%, rgba(246, 196, 69, 0.16), transparent 70%);
  pointer-events: none;
}
.hero-visual-wrap {
  position: relative;
  width: min(360px, 80%);
  aspect-ratio: 1/1;
  margin: 0 auto 40px;
}
.hero-visual-glow-inner {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle at 50% 50%, rgba(246, 196, 69, 0.32), rgba(246, 196, 69, 0.1) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-visual-ray {
  position: absolute;
  inset: -10%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(246, 196, 69, 0.09) 14deg, transparent 28deg, transparent 90deg, rgba(246, 196, 69, 0.06) 104deg, transparent 118deg, transparent 180deg, rgba(246, 196, 69, 0.09) 194deg, transparent 208deg, transparent 270deg, rgba(246, 196, 69, 0.06) 284deg, transparent 298deg);
  border-radius: 50%;
  filter: blur(14px);
  animation: spinSlow 48s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-visual-ring-1 {
  position: absolute;
  inset: 2%;
  border: 1px solid rgba(246, 196, 69, 0.28);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-visual-ring-2 {
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(246, 196, 69, 0.18);
  border-radius: 50%;
  animation: spinSlow 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.star {
  position: absolute;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}
.star-1 {
  top: 6%;
  left: 10%;
  width: 14px;
  height: 14px;
  background: #F6C445;
  animation: twinkle 2.6s ease-in-out infinite;
}
.star-2 {
  top: 20%;
  right: 4%;
  width: 9px;
  height: 9px;
  background: #FFD75E;
  animation: twinkle 3.4s ease-in-out 0.8s infinite;
}
.star-3 {
  bottom: 12%;
  left: 2%;
  width: 10px;
  height: 10px;
  background: #FFD75E;
  animation: twinkle 3s ease-in-out 1.4s infinite;
}
.star-4 {
  bottom: 4%;
  right: 14%;
  width: 13px;
  height: 13px;
  background: #F6C445;
  animation: twinkle 2.8s ease-in-out 0.4s infinite;
}
.hero-visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-subtitle {
  margin: 0 0 18px;
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 700;
  color: #C9BFA6;
  position: relative;
}
.hero-subtitle .highlight {
  color: #F6C445;
}
.hero-title {
  margin: 0;
  font-size: clamp(44px, 9vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
}
.hero-title .highlight-shadow {
  color: #F6C445;
  text-shadow: 0 0 44px rgba(246, 196, 69, 0.45);
}
.hero-description {
  margin: 26px auto 0;
  max-width: 560px;
  font-size: clamp(14px, 2.4vw, 17px);
  line-height: 1.7;
  color: #C9BFA6;
  position: relative;
}
.hero-description b {
  color: #FFFFFF;
}
.offers-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.offer-card {
  background: #1A150B;
  border: 1px solid #332B17;
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(246, 196, 69, 0.16);
  border-color: #54451F;
}
.offer-card-subtitle {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #A89968;
}
.offer-card-price {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
}
.offer-card-price s {
  color: #6E6349;
  font-weight: 500;
}
.offer-card-price .arrow {
  color: #6E6349;
}
.offer-card-price .price {
  color: #F6C445;
}
.offer-card-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}
.offer-card-footer {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.offer-card-note {
  margin: 0;
  font-size: 12px;
  color: #7A6F55;
}
.offer-card-btn {
  display: inline-block;
  background: #2A2211;
  border: 1px solid #54451F;
  color: #F6C445;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.offer-card-btn:hover {
  border-color: #F6C445;
  background: #332A14;
}
.countdown-section {
  margin-top: 14px;
  background: linear-gradient(160deg, #2A2110, #1E1707);
  border: 1px solid rgba(246, 196, 69, 0.32);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
}
.countdown-title {
  margin: 0 0 26px;
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 700;
}
.countdown-title span {
  color: #F6C445;
}
.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.countdown-item {
  background: #120F08;
  border: 1px solid #332B17;
  border-radius: 12px;
  width: clamp(64px, 17vw, 86px);
  padding: 16px 0 12px;
}
.countdown-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 800;
  line-height: 1;
}
.countdown-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #7A6F55;
}
.countdown-note {
  margin: 24px 0 0;
  font-size: 12px;
  color: #7A6F55;
}
.section-title {
  margin: 64px 0 22px;
  font-size: clamp(19px, 3.6vw, 24px);
  font-weight: 900;
  line-height: 1.5;
}
.section-title span {
  color: #F6C445;
}
.profile-section {
  margin-top: 0;
  background: rgba(251, 250, 246, 0.05);
  border: 1px solid rgba(246, 196, 69, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: minmax(180px, 38%) 1fr;
  gap: 24px;
  align-items: end;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 24px rgba(0, 0, 0, 0.28);
}
@media (max-width: 640px) {
  .profile-section {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 36px;
  }
}
.profile-photo-wrap {
  position: relative;
  align-self: stretch;
  margin: -36px 0 -36px -28px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 640px) {
  .profile-photo-wrap {
    display: none;
  }
}
.profile-glow {
  position: absolute;
  left: 52%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.4) 0%, rgba(246, 196, 69, 0.14) 42%, transparent 68%);
  pointer-events: none;
}
.profile-ring-1 {
  position: absolute;
  left: 52%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(246, 196, 69, 0.3);
  pointer-events: none;
}
.profile-ring-2 {
  position: absolute;
  left: 52%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(246, 196, 69, 0.24);
  pointer-events: none;
}
.profile-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.profile-dot-1 {
  left: 14%;
  top: 18%;
  width: 8px;
  height: 8px;
  background: rgba(246, 196, 69, 0.45);
}
.profile-dot-2 {
  right: 12%;
  top: 28%;
  width: 5px;
  height: 5px;
  background: rgba(246, 196, 69, 0.38);
}
.profile-dot-3 {
  left: 22%;
  bottom: 14%;
  width: 6px;
  height: 6px;
  background: rgba(246, 196, 69, 0.32);
}
.profile-img {
  position: relative;
  width: 180%;
  height: 115%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: 0;
  display: block;
  transform: translateX(12px);
}
.profile-info {
  position: relative;
  padding-left: 10px;
  align-self: center;
}
@media (min-width: 1920px) {
  .profile-info {
    padding-left: 40px;
  }
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.snu-mark {
  width: 52px;
  height: auto;
  filter: grayscale(1) brightness(2.4);
  opacity: 0.9;
}
@media (max-width: 640px) {
  .snu-mark {
    filter: grayscale(1) sepia(1) hue-rotate(180deg) saturate(1.6) brightness(1.35) !important;
    opacity: 0.85 !important;
  }
}
@media (min-width: 1920px) {
  .snu-mark {
    width: 60px;
  }
}
.orbi-brand {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #7A6F55;
}
@media (min-width: 1920px) {
  .orbi-brand {
    font-size: 13.5px;
  }
}
.teacher-name {
  margin: 2px 0 0;
  font-size: clamp(18px, 3.4vw, 23px);
  font-weight: 900;
  color: #FFF9EC;
}
.teacher-name span {
  font-size: 0.75em;
  font-weight: 700;
  color: #F6C445;
}
@media (min-width: 1920px) {
  .teacher-name {
    font-size: 27px;
  }
}
.profile-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: clamp(12.5px, 2.3vw, 14px);
  line-height: 1.55;
  color: #C9BFA6;
}
@media (min-width: 1920px) {
  .profile-list {
    gap: 11px;
    font-size: 15.5px;
    line-height: 1.6;
  }
}
.profile-list-item {
  display: flex;
  gap: 9px;
}
.profile-list-item .bullet {
  color: #F6C445;
  font-weight: 900;
}
.profile-list-item .note-gray {
  color: #7A6F55;
}
.bento-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.bento-card {
  border-radius: 16px;
  padding: 26px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (max-width: 640px) {
  .bento-card {
    min-height: 230px !important;
    box-sizing: border-box;
  }
}
.bento-card-gold {
  background: linear-gradient(160deg, #FFE08A, #F6C445);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 4px 18px rgba(0, 0, 0, 0.25);
}
.bento-card-gold:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 14px 44px rgba(246, 196, 69, 0.3);
}
.bento-card-gold::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
  pointer-events: none;
}
.bento-card-dark {
  background: linear-gradient(160deg, #241B0C, #17120A);
  border: 1px solid #54451F;
  box-shadow: inset 0 1px 0 rgba(255, 224, 138, 0.12), 0 4px 18px rgba(0, 0, 0, 0.3);
}
.bento-card-dark:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: inset 0 1px 0 rgba(255, 224, 138, 0.12), 0 14px 44px rgba(246, 196, 69, 0.2);
  border-color: #F6C445;
}
.bento-card-vs {
  display: block;
  background: linear-gradient(160deg, #3A2E14, #241B0C);
  min-height: 160px;
  box-shadow: inset 0 1px 0 rgba(255, 224, 138, 0.14), 0 4px 18px rgba(0, 0, 0, 0.3);
}
.bento-card-vs:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow: inset 0 1px 0 rgba(255, 224, 138, 0.14), 0 14px 44px rgba(246, 196, 69, 0.22);
  border-color: #F6C445;
}
.bento-card-vs::before {
  content: '';
  position: absolute;
  left: -20%;
  bottom: -45%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.28), transparent 70%);
  pointer-events: none;
}
.bento-card-banana::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.18), transparent 70%);
  pointer-events: none;
}
.bento-card-curriculum {
  background: linear-gradient(160deg, #EFE3C2, #E2D2A4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 18px rgba(0, 0, 0, 0.25);
}
.bento-card-curriculum:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 14px 44px rgba(246, 196, 69, 0.26);
}
.bento-card-curriculum::before {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  pointer-events: none;
}
.bento-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.42;
  pointer-events: none;
}
.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 224, 138, 0.96) 0%, rgba(255, 224, 138, 0.88) 42%, rgba(255, 224, 138, 0.45) 68%, transparent 92%);
  pointer-events: none;
}
.bento-card-tag {
  margin: 0 0 6px;
  font-size: 13px;
  position: relative;
}
.bento-card-gold .bento-card-tag {
  color: #8A6410;
}
.bento-card-dark .bento-card-tag {
  color: #F6C445;
}
.bento-card-curriculum .bento-card-tag {
  color: #7C6A45;
  max-width: 45%;
}
.bento-card-title {
  margin: 0 0 14px;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 900;
  position: relative;
}
.bento-card-gold .bento-card-title {
  color: #2E1F0D;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.bento-card-dark .bento-card-title {
  color: #FFF9EC;
}
.bento-card-dark .bento-card-title span {
  color: #F6C445;
}
.bento-card-curriculum .bento-card-title {
  color: #2E1F0D;
}
.bento-card-desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  position: relative;
}
.bento-card-gold .bento-card-desc {
  color: #5C4712;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.bento-card-dark .bento-card-desc {
  color: #C9BFA6;
}
.bento-card-link {
  margin: auto auto 0 0;
  padding: 9px 18px 9px 0;
  font-size: 13px;
  font-weight: 900;
  position: relative;
  border-radius: 999px;
}
.bento-card-gold .bento-card-link {
  color: #2E1F0D;
}
@media (max-width: 640px) {
  .bento-card-gold .bento-card-link {
    border: 1.5px solid #2E1F0D !important;
    padding: 9px 18px !important;
  }
}
.bento-card-dark .bento-card-link {
  color: #F6C445;
}
@media (max-width: 640px) {
  .bento-card-dark .bento-card-link {
    border: 1px solid rgba(246, 196, 69, 0.45) !important;
    background: rgba(14, 11, 5, 0.55) !important;
    padding: 9px 18px !important;
  }
}
.bento-card-vs-img {
  position: absolute;
  right: -4%;
  bottom: calc(-16% - 5px);
  width: 58%;
  transform: rotate(6deg);
  mix-blend-mode: screen;
  pointer-events: none;
}
.bento-card-inner {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  pointer-events: none;
}
.bento-card-banana-img {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 62%;
  mix-blend-mode: screen;
  pointer-events: none;
}
.bento-card-seal {
  position: absolute;
  left: 116px;
  bottom: -6%;
  width: 58%;
  opacity: 0.14;
  pointer-events: none;
}
@media (max-width: 640px) {
  .bento-card-seal {
    left: auto !important;
    right: -10% !important;
  }
}
.bento-card-teacher-wrap {
  position: absolute;
  right: 30px;
  bottom: 45px;
  width: 55%;
  height: 70%;
}
@media (max-width: 640px) {
  .bento-card-teacher-wrap {
    bottom: 0 !important;
    right: 10px !important;
    height: auto !important;
  }
}
.bento-card-teacher-wrap img {
  width: 241px;
  height: 199px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .bento-card-teacher-wrap img {
    width: 245px !important;
    height: 202px !important;
    max-width: 62vw !important;
  }
}
.subnote-section {
  margin-top: 64px;
  background: linear-gradient(180deg, #111708, #141A0B);
  border: 1px solid #2F4224;
  border-radius: 20px;
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subnote-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(110, 180, 90, 0.16), transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}
.subnote-tag {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8FC97E;
  position: relative;
}
.subnote-title {
  margin: 0;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  position: relative;
}
.subnote-title span {
  color: #8fc97e;
}
.subnote-desc {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: clamp(13px, 2.4vw, 15px);
  line-height: 1.7;
  color: #C9BFA6;
  position: relative;
}
.subnote-desc b {
  color: #ffffff;
}
.subnote-btn {
  display: inline-block;
  margin-top: 20px;
  background: #3E6B35;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 26px;
  border-radius: 999px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.subnote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(110, 180, 90, 0.35);
}
.subnote-img-wrap {
  position: relative;
  isolation: isolate;
  width: min(360px, 85%);
  aspect-ratio: 1087/1451;
  margin: 32px auto 0;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.subnote-img-wrap:hover {
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.5));
  transform: translateY(-5px);
}
.subnote-img-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  width: 150%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 180, 90, 0.55) 0%, rgba(90, 150, 70, 0.25) 42%, transparent 68%);
  pointer-events: none;
}
.subnote-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.pdf-badge {
  position: absolute;
  top: calc(38% + 160px);
  right: 27px;
  background: #3E6B35;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(62, 107, 53, 0.5);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 2;
}
@media (max-width: 640px) {
  .pdf-badge {
    top: auto !important;
    bottom: 10% !important;
    right: 14px !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
  }
}
.subnote-quote {
  margin: 26px 0 0;
  font-size: clamp(15px, 2.8vw, 18px);
  font-weight: 900;
  color: #FFF9EC;
  position: relative;
  line-height: 1.5;
}
.subnote-quote span {
  font-size: clamp(12.5px, 2.2vw, 14px);
  font-weight: 700;
  color: #8fc97e;
}
.pdf-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #141A0F;
  border: 1px solid #3A5232;
  border-radius: 999px;
  padding: 10px 22px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pdf-preview-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(110, 180, 90, 0.2);
  border-color: #8FC97E;
}
.pdf-preview-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: #3E6B35;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 3px 7px;
}
.pdf-preview-text {
  font-size: 14px;
  font-weight: 800;
  color: #8FC97E;
}
.subnote-note {
  margin: 22px 0 0;
  font-size: 12px;
  color: #7A6F55;
  position: relative;
  line-height: 1.7;
}
.milk-section {
  margin-top: 14px;
  background: linear-gradient(160deg, #1A150B, #17120A);
  border: 1px solid #3A2F16;
  border-radius: 20px;
  padding: 28px 28px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .milk-section {
    grid-template-columns: 1fr;
  }
}
.milk-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 70% at 92% 50%, rgba(246, 196, 69, 0.14), transparent 70%);
  pointer-events: none;
}
.milk-text-wrap {
  position: relative;
}
@media (max-width: 640px) {
  .milk-text-wrap {
    text-align: center;
  }
}
.milk-tag {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #F6C445;
}
.milk-title {
  margin: 0;
  font-size: clamp(19px, 3.6vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}
.milk-title span {
  color: #F6C445;
}
.milk-desc {
  margin: 14px 0 0;
  font-size: clamp(13px, 2.4vw, 14.5px);
  line-height: 1.7;
  color: #C9BFA6;
  width: max-content;
  max-width: 56vw;
  position: relative;
  z-index: 3;
}
.milk-desc b {
  color: #FFFFFF;
}
@media (max-width: 640px) {
  .milk-desc {
    width: auto !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 640px) {
  .milk-desc br {
    display: none;
  }
}
.milk-btn {
  display: inline-block;
  margin-top: 18px;
  background: #F6C445;
  color: #1A0F00;
  font-size: 14px;
  font-weight: 900;
  padding: 11px 24px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.milk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(246, 196, 69, 0.35);
  color: #1A0F00;
}
.milk-img-wrap {
  position: relative;
  width: clamp(150px, 28vw, 220px);
  align-self: stretch;
  min-height: 180px;
  margin: -28px 0 -26px;
}
@media (max-width: 640px) {
  .milk-img-wrap {
    width: 220px !important;
    margin: 0 auto -26px !important;
    min-height: 230px !important;
  }
}
.milk-img-glow {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 150%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 69, 0.28) 0%, rgba(246, 196, 69, 0.1) 40%, transparent 66%);
  pointer-events: none;
}
.milk-img-ring-1 {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(246, 196, 69, 0.3);
  pointer-events: none;
}
.milk-img-ring-2 {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(246, 196, 69, 0.24);
  pointer-events: none;
}
.milk-teacher-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
  z-index: 1;
}
.milk-bottle-img {
  position: absolute;
  right: 80px;
  bottom: calc(6% + 5px);
  width: 26%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 14px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 34px rgba(255, 255, 255, 0.3));
  transform: rotate(0deg);
  z-index: 2;
}
@media (max-width: 640px) {
  .milk-bottle-img {
    right: 8px !important;
  }
}
.thumbs-section {
  margin-top: 64px;
}
.thumbs-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .thumbs-wrap {
    grid-template-columns: 1fr !important;
  }
}
.thumb-item {
  display: block;
  aspect-ratio: 59 / 31;
  position: relative;
  background: #1A150B;
  border: 1px solid #3A2F16;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.thumb-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(246, 196, 69, 0.18);
}
.thumb-item .thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.reviews-section {
  margin-top: 72px;
}
.reviews-title {
  margin: 0 0 30px;
  font-size: clamp(19px, 3.6vw, 24px);
  font-weight: 900;
  line-height: 1.5;
}
.reviews-title span {
  color: #F6C445;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.review-card {
  display: block;
  background: #1A150B;
  border: 1px solid #332B17;
  border-radius: 14px;
  padding: 24px 22px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #C9BFA6;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(246, 196, 69, 0.14);
  border-color: #54451F;
}
.cta-section {
  margin-top: 72px;
  text-align: center;
}
.cta-btn {
  display: inline-block;
  background: #F6C445;
  color: #1A0F00;
  font-weight: 900;
  font-size: clamp(16px, 3vw, 19px);
  padding: 20px 56px;
  border-radius: 999px;
  box-shadow: 0 0 50px rgba(224, 158, 18, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.cta-btn:hover {
  background: #FFD75E;
  color: #1A0F00;
  transform: translateY(-3px);
  box-shadow: 0 6px 60px rgba(246, 196, 69, 0.55);
}
.cta-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: #7A6F55;
}
