/* ==========================================================================
   LIFE PLUS+  |  한국라이프개발협회
   style.css — 디자인 토큰 → 레이아웃 → 컴포넌트 → 섹션 → 반응형 순서
   ========================================================================== */

/* ── 1. 디자인 토큰 ───────────────────────────────────────────── */
:root {
  /* 색상 */
  --navy-900: #0b1120;
  --navy-800: #0f1729;
  --navy-700: #1b2540;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --ink-300: #d1d5db;
  --paper: #ffffff;
  --paper-alt: #f6f8fc;
  --line: #e6eaf2;

  --brand-500: #4f8dfd;
  --brand-600: #2f6bef;
  --brand-050: #eaf1ff;
  --teal-500: #16b3a4;
  --amber-500: #f5a524;

  --grad-brand: linear-gradient(120deg, #4f8dfd 0%, #16b3a4 100%);
  --grad-text: linear-gradient(100deg, #7cb0ff 0%, #5ee0cf 100%);

  /* 타이포 */
  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  /* 간격 · 모양 */
  --container: 1160px;
  --gutter: 20px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 41, 0.06);
  --shadow: 0 12px 32px rgba(15, 23, 41, 0.08);
  --shadow-lg: 0 28px 64px rgba(15, 23, 41, 0.14);

  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 2. 리셋 & 기본 ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-900);
  background: var(--paper);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ── 3. 공통 컴포넌트 ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px rgba(47, 107, 239, 0.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(47, 107, 239, 0.36); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.28); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.section--contact .btn--ghost, .footer .btn--ghost { border-color: var(--line); color: var(--ink-900); background: #fff; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--brand-600); margin-bottom: 14px;
}
.section__title { font-size: clamp(28px, 4.2vw, 44px); line-height: 1.3; letter-spacing: -0.035em; font-weight: 800; }
.section__desc { margin-top: 18px; color: var(--ink-500); font-size: clamp(16px, 1.6vw, 18px); }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section__head--center { text-align: center; max-width: 760px; margin-inline: auto; }
.label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-500); margin-bottom: 12px; }

/* 스크롤 등장 애니메이션 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── 4. 헤더 ─────────────────────────────────────────────────── */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header.is-stuck { background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; transition: color 0.3s; }
.header.is-stuck .logo { color: var(--ink-900); }
.logo__mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: 0 6px 16px rgba(47, 107, 239, 0.32);
}
.logo__mark svg { width: 20px; height: 20px; }
.logo__mark--sm { width: 32px; height: 32px; border-radius: 9px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__text strong { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.logo__text small { font-size: 11.5px; opacity: 0.72; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__list a {
  position: relative; font-size: 15.5px; font-weight: 600; color: rgba(255, 255, 255, 0.88); transition: color 0.25s;
}
.header.is-stuck .nav__list a { color: var(--ink-700); }
.nav__list a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--brand-500); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease);
}
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__list a:hover, .header.is-stuck .nav__list a:hover { color: var(--brand-500); }

.hamburger { display: none; width: 42px; height: 42px; border-radius: 10px; position: relative; z-index: 95; }
.hamburger span {
  position: absolute; left: 11px; width: 20px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s, background-color 0.3s;
}
.header.is-stuck .hamburger span, .hamburger.is-open span { background: var(--ink-900); }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(11, 17, 32, 0.5); backdrop-filter: blur(2px); }

/* ── 5. 히어로 ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 120% at 50% 0%, #1b2952 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  padding: calc(var(--header-h) + clamp(64px, 11vw, 120px)) 0 0;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb--1 { width: 460px; height: 460px; top: -140px; left: -80px; background: #2f6bef; animation: float 14s ease-in-out infinite; }
.orb--2 { width: 400px; height: 400px; bottom: -120px; right: -60px; background: #16b3a4; opacity: 0.38; animation: float 17s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(28px, -32px); } }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(100% 70% at 50% 25%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(100% 70% at 50% 25%, #000 25%, transparent 78%);
}
.hero__inner { position: relative; text-align: center; padding-bottom: clamp(56px, 8vw, 96px); }
.hero__badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.16); letter-spacing: 0.02em;
}
.hero__title {
  margin-top: 26px; font-size: clamp(34px, 6.4vw, 70px); line-height: 1.16;
  letter-spacing: -0.045em; font-weight: 800;
}
.hero__title .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin-top: 22px; font-size: clamp(16px, 1.9vw, 19px); color: rgba(255, 255, 255, 0.76); line-height: 1.85; }
.hero__actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  margin-top: clamp(48px, 7vw, 76px); display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 640px; margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); padding: 24px 12px;
  background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(8px);
}
.hero__stats li { text-align: center; }
.hero__stats b { display: block; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.03em; }
.hero__stats b i { font-style: normal; font-size: 0.6em; color: var(--brand-500); margin-left: 2px; }
.hero__stats span { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); }

.hero__marquee { position: relative; border-top: 1px solid rgba(255,255,255,0.1); overflow: hidden; padding: 16px 0; background: rgba(0,0,0,0.18); }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.45); display: inline-flex; align-items: center; gap: 40px; letter-spacing: 0.02em; }
.marquee__track span::after { content: '+'; color: var(--brand-500); font-size: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 6. 협회 소개 ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.about__purpose { color: var(--ink-700); font-size: 17px; line-height: 1.95; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips li {
  display: flex; align-items: baseline; gap: 8px; padding: 10px 16px; border-radius: 999px;
  background: var(--brand-050); border: 1px solid #dbe6ff;
}
.chips b { font-weight: 700; color: var(--brand-600); font-size: 15px; }
.chips span { font-size: 13.5px; color: var(--ink-500); }
.about__formula {
  margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 22px; border-radius: var(--radius); background: var(--navy-800); color: #fff;
}
.about__formula span { font-weight: 700; font-size: clamp(15px, 2vw, 18px); }
.about__formula i { font-style: normal; color: var(--brand-500); font-weight: 800; }

/* ── 7. 설립 취지 ────────────────────────────────────────────── */
.section--why { background: var(--paper-alt); }
.pains {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.pains li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.pains li:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfdcff; }
.pains em {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: var(--brand-050); color: var(--brand-600); font-style: normal; font-weight: 800; font-size: 14px; margin-bottom: 14px;
}
.pains p { font-size: 15.5px; color: var(--ink-700); line-height: 1.7; }

.why__bridge {
  margin-top: 40px; text-align: center; font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600; color: var(--ink-900); line-height: 1.8; max-width: 780px; margin-inline: auto;
}
.quote {
  margin-top: clamp(40px, 6vw, 64px); background: var(--navy-800); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.quote::before {
  content: '+'; position: absolute; top: -40px; right: 10px; font-size: 200px; font-weight: 800;
  color: rgba(255, 255, 255, 0.05); line-height: 1;
}
.quote blockquote { font-size: clamp(18px, 2.6vw, 26px); font-weight: 700; line-height: 1.65; letter-spacing: -0.025em; position: relative; }
.quote figcaption { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.55); }

/* ── 8. 5대 핵심 사업영역 ────────────────────────────────────── */
.values {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.value {
  position: relative; overflow: hidden; padding: 30px 24px 34px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.value::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.value:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.value:hover::after { transform: scaleX(1); }
.value__no { font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; color: var(--ink-300); }
.value__icon {
  margin: 16px 0 18px; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand-600);
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; }
.value p { margin-top: 8px; font-size: 14.5px; color: var(--ink-500); line-height: 1.7; }

/* ── 9. 프로그램 ─────────────────────────────────────────────── */
.section--programs { background: var(--paper-alt); }
.programs {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.program {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.program:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.program__head h3 { font-size: clamp(20px, 2.6vw, 25px); font-weight: 800; letter-spacing: -0.025em; }
.program__count { font-size: 12.5px; font-weight: 700; color: var(--brand-600); background: var(--brand-050); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.program__summary { margin-top: 16px; font-size: 15px; color: var(--ink-500); }
.program__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.program__tags li {
  font-size: 14px; font-weight: 600; color: var(--ink-700);
  padding: 8px 14px; border-radius: 10px; background: var(--paper-alt); border: 1px solid var(--line);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.program__tags li:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.programs__note { margin-top: 24px; text-align: center; font-size: 14px; color: var(--ink-500); }

/* ── 10. 문의 ────────────────────────────────────────────────── */
.contact-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center;
  background: linear-gradient(140deg, #f3f7ff 0%, #eefaf8 100%);
  border: 1px solid #e0e9fb; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px);
}
.contact-card .btn { margin-top: 30px; }
.contact-list { display: grid; gap: 12px; }
.contact-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255, 255, 255, 0.86); border: 1px solid #e3ebf9; border-radius: var(--radius);
  padding: 18px 22px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-list dt, .contact-list .k { font-size: 13.5px; color: var(--ink-500); font-weight: 600; }
.contact-list .v { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* ── 11. 푸터 ────────────────────────────────────────────────── */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); padding: clamp(48px, 7vw, 72px) 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__brand { display: flex; gap: 14px; }
.footer__brand strong { color: #fff; font-size: 17px; font-weight: 800; }
.footer__brand p { font-size: 14px; margin-top: 4px; }
.footer__addr { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: flex-start; }
.footer__links a { font-size: 14px; transition: color 0.25s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__bottom small { font-size: 13px; color: rgba(255, 255, 255, 0.42); }

/* ── 12. 맨 위로 버튼 ────────────────────────────────────────── */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-800); color: #fff; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease), background-color 0.3s;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--brand-600); }
.to-top svg { width: 20px; height: 20px; }

/* ── 13. 팝업 ────────────────────────────────────────────────── */
.popup { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.popup[hidden] { display: none; }
.popup__dim { position: absolute; inset: 0; background: rgba(11, 17, 32, 0.6); backdrop-filter: blur(3px); }
.popup__panel {
  position: relative; width: min(440px, 100%); background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; animation: popIn 0.4s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } }
.popup__x { position: absolute; top: 10px; right: 14px; font-size: 28px; line-height: 1; color: var(--ink-500); }
.popup__body { padding: 36px 32px 24px; }
.popup__body img { border-radius: var(--radius-sm); margin-bottom: 18px; }
.popup__body h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.popup__body p { margin-top: 12px; font-size: 15px; color: var(--ink-500); line-height: 1.75; }
.popup__body .btn { margin-top: 22px; }
.popup__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; background: var(--paper-alt); border-top: 1px solid var(--line);
}
.popup__today { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-500); cursor: pointer; }

/* ── 14. 반응형 ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav {
    position: fixed; z-index: 85; top: 0; right: 0; height: 100dvh; width: min(320px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: #fff; padding: calc(var(--header-h) + 18px) 26px 26px;
    transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a, .header.is-stuck .nav__list a { color: var(--ink-900); font-size: 17px; display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 24px; width: 100%; }
  .programs { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .hero__stats li { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .footer__inner { flex-direction: column; }
  .contact-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .values { grid-template-columns: 1fr; }
  .logo__text small { display: none; }
}

/* ── 15. 접근성 · 인쇄 ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .header, .to-top, .popup, .hero__marquee, .nav-backdrop { display: none !important; }
  .hero, .quote, .about__formula, .footer { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
