/* ====================================================================
   Eggplant 🍆 Landing — eggplant.life
   Mobile-first 반응형 (≥360 dp), PC ≥1024 px 와이드 레이아웃 자동 확장
   ==================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #faf5ff;
  --bg-card: #ffffff;
  --border: #ece6f5;

  --primary: #6E3CC4;
  --primary-2: #9559E0;
  --primary-soft: #f3ebff;
  --accent: #ffb84d;

  --text: #1a1a1f;
  --text-2: #4a4a55;
  --text-3: #8a8a96;

  --shadow-sm: 0 2px 8px rgba(110, 60, 196, 0.06);
  --shadow-md: 0 8px 24px rgba(110, 60, 196, 0.10);
  --shadow-lg: 0 20px 48px rgba(110, 60, 196, 0.18);

  --radius: 16px;
  --radius-lg: 24px;

  --max: 1180px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Pretendard", "Noto Sans KR", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  min-height: 48px;
  white-space: nowrap;
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn.ghost {
  background: var(--primary-soft);
  color: var(--primary);
}
.btn.ghost:hover { background: #ead8ff; }
.btn.big { padding: 16px 28px; font-size: 16px; min-height: 56px; }
.btn-emoji { font-size: 18px; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 14px;
}
.badge.purple { background: rgba(255,255,255,0.18); color: #fff; }

/* ===================== Navigation ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 17px;
}
.nav-logo { width: 30px; height: 30px; border-radius: 8px; }
.nav-emoji { font-size: 16px; }
.nav-links {
  display: none;
  gap: 26px;
  margin-left: 28px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  display: none;
  margin-left: auto;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); transition: .15s; }

.nav-burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer a {
  padding: 14px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-radius: 10px;
}
.nav-drawer a:hover { background: var(--primary-soft); color: var(--primary); }
.nav-drawer .drawer-cta {
  margin-top: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  text-align: center;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 36px 18px 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(149, 89, 224, 0.18), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(110, 60, 196, 0.12), transparent 60%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.8px;
  font-weight: 900;
  margin: 6px 0 14px;
}
.hero-sub {
  font-size: clamp(14.5px, 3.6vw, 17px);
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
}
.hero-stats li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero-stats b {
  display: block;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 600;
}

/* Hero visual phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.phone {
  width: min(280px, 80%);
  aspect-ratio: 9 / 18;
  background: #1a1a1f;
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.phone:hover { transform: rotate(0); }
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1f;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-soft);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.phone-app { padding: 36px 12px 12px; }
.phone-app-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.phone-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary-soft);
}
.phone-app-title {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
}
.phone-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 8px;
  align-items: center;
}
.phone-card-img {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #d8c5f5, #ffd6a8);
  border-radius: 10px;
}
.phone-card.alt .phone-card-img {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.phone-card-title { font-size: 11.5px; font-weight: 800; color: var(--text); }
.phone-card-price { font-size: 13px; font-weight: 900; color: var(--primary); margin-top: 2px; }
.phone-card-meta { font-size: 10px; color: var(--text-3); margin-top: 4px; }

.floating-mascot {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 12px 24px rgba(110, 60, 196, 0.3));
  animation: bob 4s ease-in-out infinite;
}
.floating-mascot img { width: 100%; height: 100%; object-fit: contain; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}

/* ===================== Sections ===================== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 18px;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.section-head h2 {
  font-size: clamp(24px, 5.6vw, 36px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 0 0 10px;
}
.section-head p {
  font-size: clamp(14px, 3.4vw, 16px);
  color: var(--text-2);
  margin: 0;
}

/* ===================== Features ===================== */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.feature-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 14px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.feature p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
}

/* ===================== QTA Section ===================== */
.qta { padding-top: 24px; padding-bottom: 24px; }
.qta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.qta-card::before {
  content: '';
  position: absolute;
  inset: -50% -20% auto auto;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.qta-text h2 {
  font-size: clamp(24px, 5.6vw, 36px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin: 4px 0 12px;
  color: #fff;
}
.qta-text h2 .grad {
  background: linear-gradient(135deg, #ffd97a, #ffb84d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.qta-text p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  margin: 0 0 18px;
}
.qta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.qta-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
}
.qta-list li > span {
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  border-radius: 10px;
}
.qta-list li > div { display: flex; flex-direction: column; }
.qta-list li b { font-size: 14px; font-weight: 800; }
.qta-list li i {
  font-style: normal;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}

.qta-vis {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.qta-coin {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd97a 0%, #ffb84d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(255, 184, 77, 0.4),
              inset 0 -6px 12px rgba(0,0,0,0.1);
  animation: spin 8s linear infinite;
}
.qta-coin-face {
  font-size: 26px;
  font-weight: 900;
  color: #6b3d00;
  letter-spacing: 1px;
}
@keyframes spin {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}
.qta-bar {
  width: 100%;
  max-width: 280px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 4px;
  position: relative;
  height: 28px;
}
.qta-bar-fill {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #ffd97a, #ffb84d);
  border-radius: 999px;
}
.qta-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
}
.qta-balance {
  text-align: center;
  background: rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 12px 22px;
}
.qta-balance span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}
.qta-balance b {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-top: 4px;
}
.qta-balance em { font-style: normal; font-size: 13px; opacity: 0.78; }

/* ===================== Steps ===================== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: step;
}
.steps li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.steps h3 { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
.steps p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ===================== Trust ===================== */
/* ★ 사장님 보고 (왼쪽 쏠림 수정 v3 — 정밀 진단 후 근본 해결):
 *   v1/v2 에서 .section + .trust 의 margin/max-width 가 충돌해 carda 정렬축이
 *   다른 섹션과 어긋났음. 구조를 명확히 분리:
 *   - .trust-wrap : 풀폭(100%) 배경 wrapper. max-width 없음.
 *   - .trust-inner : 다른 .section 과 동일한 max-width(1180px) + 좌우 padding.
 *                    가운데 정렬은 margin-inline: auto 로 보장.
 *   - .trust-grid  : 카드 그리드. width: 100% 로 부모 폭 100% 채움.
 *   결과: Hero/Features/QTA/How/FAQ 섹션과 정확히 같은 정렬축에 카드들이 정렬됨.
 */
.trust-wrap {
  background: var(--bg-soft);
  margin: 24px 0;
  width: 100%;
  box-sizing: border-box;
}
.trust-inner {
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
  padding: 56px 18px;
  box-sizing: border-box;
}
.trust-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  box-sizing: border-box;
}
.trust-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}
.trust-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
  margin-bottom: 12px;
}
.trust-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.trust-card p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.6; }

/* ===================== Download CTA ===================== */
.download .dl-card {
  background: linear-gradient(135deg, #fff5e0 0%, #ffe7c2 100%);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dl-text h2 {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.dl-text p {
  font-size: 15px;
  color: var(--text-2);
  margin: 0 0 18px;
}
.dl-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.dl-note { margin-top: 14px; font-size: 12.5px; color: var(--text-3); }
.dl-mascot {
  display: flex;
  justify-content: center;
}
.dl-mascot img {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 12px 24px rgba(110, 60, 196, 0.25));
  animation: bob 4s ease-in-out infinite;
}

/* ===================== FAQ ===================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 900;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] { border-color: var(--primary-soft); }
.faq p {
  margin: 0;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===================== Footer ===================== */
.foot {
  background: #1a1a1f;
  color: #d6d6e0;
  margin-top: 24px;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 18px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand img { width: 48px; height: 48px; border-radius: 12px; }
.foot-brand b { display: block; color: #fff; font-size: 17px; font-weight: 900; }
.foot-brand span { display: block; font-size: 12.5px; color: #8e8ea0; margin-top: 2px; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.foot-cols h4 {
  font-size: 12.5px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.3px;
}
.foot-cols a {
  display: block;
  font-size: 13px;
  color: #aeaec0;
  padding: 5px 0;
}
.foot-cols a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid #2a2a35;
  padding: 16px 18px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #6e6e80;
}

/* ===================== Tablet (≥720 px) ===================== */
@media (min-width: 720px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .steps    { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .qta-card { grid-template-columns: 1.4fr 1fr; padding: 44px 32px; }
  .download .dl-card { grid-template-columns: 1.5fr 1fr; padding: 44px 36px; }
  .hero { padding: 56px 18px 64px; }
  .hero-stats { gap: 14px; }
  .hero-stats li { padding: 16px 12px; }
  .foot-inner { grid-template-columns: 1.4fr 2fr; }
}

/* ===================== Desktop (≥1024 px) ===================== */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-drawer { display: none !important; }

  .hero { padding: 80px 24px 96px; }
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
  .hero-visual { min-height: 540px; }
  .phone { width: 320px; }

  .features { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .feature { padding: 28px 24px; }
  .feature h3 { font-size: 18px; }
  .feature p { font-size: 14.5px; }

  .steps { gap: 22px; }
  .steps li { padding: 28px; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .trust-inner { padding: 72px 24px; }

  .section { padding: 84px 24px; }

  .qta-coin { width: 160px; height: 160px; }
  .qta-coin-face { font-size: 32px; }
}

/* ===================== Wide (≥1280 px) ===================== */
@media (min-width: 1280px) {
  .hero-text h1 { font-size: 56px; }
}

/* ===================== In-view fade-in ===================== */
.feature, .trust-card, .steps li, .qta-card, .dl-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.feature.in-view, .trust-card.in-view, .steps li.in-view,
.qta-card.in-view, .dl-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}

/* ===================== Print ===================== */
@media print {
  .nav, .nav-drawer, .hero-visual, .floating-mascot { display: none !important; }
}
