/* ═══════════════════════════════════════════
   ТопДент · редакционный премиум · демо NOIR
   Своя дизайн-система, ничего общего с NOIR
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper: #F7FAF8;
  --paper-2: #EDF4F0;
  --card: #FFFFFF;
  --ink: #0A2E28;
  --teal: #0D5C50;
  --pine: #073830;
  --mint: #2EC4A0;
  --mint-ink: #0E8F74;
  --sage: #9FC3B6;
  --line: #D9E6DF;
  --muted: #5C7A72;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
}

html { background: var(--paper); scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { overflow-x: hidden; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Фоновые слои: мягкое свечение + зерно */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 45% at 90% -5%, rgba(46,196,160,.13), transparent 60%),
    radial-gradient(45% 40% at -5% 100%, rgba(13,92,80,.07), transparent 60%);
}
.grain {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

::selection { background: var(--mint); color: var(--pine); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ol, ul { list-style: none; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
body.locked { overflow: hidden; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ═══ ТИПОГРАФИКА ═══ */
.display { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -.01em; }
.display em, .opening-title em { font-style: italic; color: var(--mint-ink); }
.overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mint-ink); margin-bottom: 22px;
}
.tick { width: 26px; height: 1px; background: var(--mint); display: inline-block; }
.overline-light { color: var(--mint); }

/* ═══ КНОПКИ ═══ */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--teal); color: #fff; padding: 17px 34px; border-radius: 100px;
  font: 700 15px/1 var(--body); border: none; cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease;
}
.btn-pill:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(13,92,80,.5); background: var(--pine); }
.btn-pill-sm { padding: 11px 24px; font-size: 13px; }
.btn-pill-full { width: 100%; }
.link-line {
  font: 700 15px var(--body); color: var(--teal); padding-bottom: 4px;
  border-bottom: 1px solid var(--mint); transition: color .3s ease, border-color .3s ease;
}
.link-line:hover { color: var(--mint-ink); border-color: var(--teal); }

/* ═══ ШАПКА ═══ */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
#topbar.scrolled {
  background: rgba(247,250,248,.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-color: var(--line); box-shadow: 0 10px 30px -22px rgba(7,56,48,.3);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--pine); letter-spacing: .01em; }
.brand span { color: var(--mint-ink); font-size: 14px; vertical-align: super; }
.topbar-mid { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; color: var(--muted); }
.topbar-mid i { font-style: normal; color: var(--sage); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-phone { font-size: 14px; font-weight: 800; color: var(--pine); transition: color .3s ease; }
.topbar-phone:hover { color: var(--mint-ink); }
.burger { display: none; flex-direction: column; justify-content: center; gap: 7px; width: 44px; height: 44px; background: none; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; align-items: center; }
.burger span { width: 18px; height: 2px; background: var(--pine); transition: transform .35s ease; }
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 998; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: 96px 28px 40px;
  visibility: hidden; transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.77,0,.18,1), visibility 0s linear .5s;
}
.mobile-menu.open { visibility: visible; transform: none; transition: transform .5s cubic-bezier(.77,0,.18,1); }
.mobile-nav { display: flex; flex-direction: column; gap: 6px; max-width: 480px; }
.mobile-link { font-family: var(--display); font-size: 32px; font-weight: 600; color: var(--pine); padding: 14px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease; }
.mobile-cta { border-bottom: none; color: var(--mint-ink); font-style: italic; }
.mobile-meta { font-size: 13px; color: var(--muted); margin-top: 20px; opacity: 0; transition: opacity .4s ease .4s; }
.mobile-menu.open .mobile-link { opacity: 1; transform: none; }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: .15s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: .2s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: .25s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: .3s; }
.mobile-menu.open .mobile-meta { opacity: 1; }

/* ═══ ОТКРЫВАЮЩИЙ ЭКРАН ═══ */
.opening { position: relative; padding: 190px 0 90px; overflow: hidden; }
.opening-deco {
  position: absolute; right: -60px; top: 120px; width: 420px; height: 420px;
  color: var(--teal); opacity: .05; transform: rotate(12deg);
  animation: float 9s ease-in-out infinite; pointer-events: none;
}
@keyframes float { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(9deg) translateY(-18px); } }
.opening-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(52px, 8.5vw, 108px); line-height: 1.02; letter-spacing: -.015em;
  color: var(--pine); max-width: 900px;
}
.smile-draw { display: block; width: min(560px, 82%); height: auto; margin: 8px 0 44px; overflow: visible; }
.smile-path { stroke: var(--mint); stroke-width: 4; stroke-dasharray: 720; stroke-dashoffset: 720; animation: draw 1.4s cubic-bezier(.22,1,.36,1) .5s forwards; }
.smile-dot { fill: var(--mint); opacity: 0; animation: pop .5s ease 1.7s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }

.opening-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 64px; }
.opening-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); line-height: 1.7; max-width: 480px; }
.opening-sub strong { color: var(--pine); }
.opening-ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.slots-strip { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 20px 26px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 50px -34px rgba(7,56,48,.35); width: fit-content; max-width: 100%; }
.slots-label { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; color: var(--pine); white-space: nowrap; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: ping 2.2s ease-out infinite; flex-shrink: 0; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(46,196,160,.55); } 70% { box-shadow: 0 0 0 9px rgba(46,196,160,0); } 100% { box-shadow: 0 0 0 0 rgba(46,196,160,0); } }
.slots { display: flex; gap: 8px; flex-wrap: wrap; }
.slot-chip {
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px; background: var(--paper);
  font: 700 14px var(--body); color: var(--pine); cursor: pointer;
  transition: all .25s ease;
}
.slot-chip:hover { border-color: var(--mint); transform: translateY(-2px); }
.slot-chip.active { background: var(--mint); border-color: var(--mint); color: var(--pine); box-shadow: 0 10px 22px -10px rgba(46,196,160,.7); }
.slots-hint { font-size: 12px; color: var(--muted); }

/* ═══ ЛЕНТА ═══ */
.ticker { border-block: 1px solid var(--line); background: var(--paper-2); overflow: hidden; padding: 16px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker-group { display: flex; align-items: center; gap: 36px; padding-right: 36px; }
.ticker-group span { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticker-group i { font-style: normal; color: var(--mint); font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══ ЦИФРЫ ═══ */
.figures { padding: 70px 0; }
.figures-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.figure { padding: 8px 32px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.figure:first-child { border-left: none; padding-left: 0; }
.figure-num { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4vw, 52px); color: var(--pine); line-height: 1; }
.figure-cap { font-size: 13px; color: var(--muted); }

/* ═══ ПРАЙС-МЕНЮ ═══ */
.menu { padding: 110px 0; background: var(--paper); }
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.menu-note { font-size: 15px; color: var(--muted); text-align: right; line-height: 1.7; }
.menu-list { border-top: 1px solid var(--line); }
.menu-row {
  display: grid; grid-template-columns: 72px 1fr auto 56px; align-items: center; gap: 32px;
  padding: 34px 12px; border-bottom: 1px solid var(--line); position: relative; cursor: pointer;
  transition: background .35s ease, padding .35s ease;
}
.menu-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--mint); transition: width .3s ease; }
.menu-row:hover { background: var(--card); padding-left: 28px; padding-right: 28px; }
.menu-row:hover::before { width: 3px; }
.menu-num { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--sage); transition: color .3s ease; }
.menu-row:hover .menu-num { color: var(--mint-ink); }
.menu-body h3 { font-family: var(--display); font-size: 27px; font-weight: 600; color: var(--pine); line-height: 1.15; transition: color .3s ease; }
.menu-row:hover .menu-body h3 { color: var(--teal); }
.menu-body p { font-size: 14px; color: var(--muted); margin-top: 6px; max-width: 520px; }
.menu-price { font-family: var(--display); font-size: 25px; font-weight: 700; color: var(--teal); white-space: nowrap; }
.menu-arrow {
  width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%;
  color: var(--pine); font-size: 17px; opacity: 0; transform: translateX(-8px);
  transition: all .35s ease;
}
.menu-row:hover .menu-arrow { opacity: 1; transform: translateX(0); background: var(--mint); border-color: var(--mint); }
.menu-foot { font-size: 14px; color: var(--muted); margin-top: 28px; }

/* ═══ УТВЕРЖДЕНИЕ ═══ */
.statement { background: var(--pine); color: #fff; padding: 130px 0; position: relative; overflow: hidden; }
.statement::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 85% 20%, rgba(46,196,160,.14), transparent 65%);
}
.statement-title {
  font-family: var(--display); font-weight: 600; font-size: clamp(46px, 7.5vw, 96px);
  line-height: 1.05; letter-spacing: -.01em; position: relative; display: inline-block; margin-bottom: 28px;
}
.statement-dot { color: var(--mint); }
.underline-draw {
  position: absolute; left: 0; bottom: 6px; height: 3px; width: 100%; background: var(--mint);
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.22,1,.36,1) .3s;
}
.statement-title.revealed .underline-draw { transform: scaleX(1); }
.statement-sub { font-size: clamp(16px, 1.7vw, 19px); color: rgba(255,255,255,.72); max-width: 620px; line-height: 1.75; }
.statement-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid rgba(255,255,255,.16); }
.sguar { padding: 36px 36px 0 0; }
.sguar + .sguar { border-left: 1px solid rgba(255,255,255,.16); padding-left: 36px; }
.sguar h4 { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--mint); margin-bottom: 12px; }
.sguar p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.7; }

/* ═══ ШАГИ ═══ */
.steps { padding: 110px 0 90px; background: var(--paper-2); }
.steps-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; }
.steps-hint { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mint-ink); }
.steps-scroller { overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; }
.steps-scroller::-webkit-scrollbar { display: none; }
.steps-track { display: flex; gap: 20px; padding: 4px 4px 20px; }
.step {
  flex: 0 0 min(340px, 82vw); scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--mint);
  padding: 40px 32px; transition: transform .35s ease, box-shadow .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -34px rgba(7,56,48,.4); }
.step-num { font-family: var(--display); font-size: 64px; font-weight: 600; color: var(--sage); line-height: 1; display: block; margin-bottom: 22px; }
.step h3 { font-family: var(--display); font-size: 25px; font-weight: 600; color: var(--pine); margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══ ВОПРОСЫ ═══ */
.faq { padding: 120px 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.faq-left { position: sticky; top: 120px; }
.faq-note { font-size: 15px; color: var(--muted); margin-top: 22px; max-width: 320px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 4px; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--pine); transition: color .3s ease; }
.faq-q:hover { color: var(--mint-ink); }
.faq-icon { font-family: var(--body); font-size: 22px; font-weight: 400; color: var(--mint-ink); transition: transform .35s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 4px 28px; font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ═══ ЗАПИСЬ ═══ */
.booking { padding: 120px 0; background: var(--paper-2); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.book-note { font-size: 16px; color: var(--muted); margin: 22px 0 40px; max-width: 420px; line-height: 1.7; }
.book-contacts { display: flex; flex-direction: column; }
.bcontact { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 18px 4px; border-bottom: 1px solid var(--line); transition: padding .3s ease; }
a.bcontact:hover { padding-left: 12px; }
a.bcontact:hover .bc-value { color: var(--mint-ink); }
.bc-label { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.bc-value { font-family: var(--display); font-size: 21px; font-weight: 600; color: var(--pine); transition: color .3s ease; text-align: right; }

.book-form { background: var(--card); border: 1px solid var(--line); padding: 44px; box-shadow: 0 40px 80px -50px rgba(7,56,48,.4); position: relative; }
.book-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--mint), var(--teal)); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: inherit; font-size: 16px;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--mint); background: #fff; box-shadow: 0 0 0 4px rgba(46,196,160,.14); }
.form-group textarea { resize: vertical; min-height: 104px; }
.book-form.sent .form-submit { background: var(--mint); color: var(--pine); pointer-events: none; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ═══ ПОДВАЛ ═══ */
#footer { background: var(--pine); color: #fff; padding: 80px 0 32px; overflow: hidden; }
.footer-word {
  font-family: var(--display); font-weight: 700; font-size: clamp(72px, 14vw, 190px); line-height: .9;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18);
  margin-bottom: 60px; user-select: none; white-space: nowrap;
}
@supports not (-webkit-text-stroke: 1px #000) { .footer-word { color: rgba(255,255,255,.08); } }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.footer-cap { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--mint); margin-bottom: 6px; }
.footer-col a { transition: color .3s ease; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; color: rgba(255,255,255,.45); }
.footer-demo { color: rgba(255,255,255,.35); }

/* ═══ ПЛАВАЮЩАЯ ЗАПИСЬ ═══ */
.float-cta {
  position: fixed; bottom: 26px; left: 50%; z-index: 900;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pine); color: #fff; padding: 16px 30px; border-radius: 100px;
  font: 700 14px var(--body); box-shadow: 0 24px 50px -18px rgba(7,56,48,.6);
  transform: translateX(-50%) translateY(140px);
  transition: transform .55s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.float-cta.show { transform: translateX(-50%) translateY(0); }
.float-cta:hover { background: var(--teal); }

/* ═══ АНИМАЦИИ ═══ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--d, 0s); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══ АДАПТИВ ═══ */
@media (max-width: 1024px) {
  .topbar-mid { display: none; }
  .figures-row { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .figure:nth-child(3) { border-left: none; padding-left: 0; }
  .statement-row { grid-template-columns: 1fr; }
  .sguar + .sguar { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 28px; }
  .faq-grid, .book-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar-phone { display: none; }
  .burger { display: flex; }
  .menu-head, .steps-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .menu-note { text-align: left; }
  .menu-row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; gap: 8px 20px; }
  .menu-num { grid-row: 1; }
  .menu-body { grid-column: 2; }
  .menu-price { grid-column: 2; grid-row: 2; justify-self: start; }
  .menu-arrow { display: none; }
}
@media (max-width: 640px) {
  .opening { padding: 150px 0 70px; }
  .opening-row { flex-direction: column; align-items: flex-start; }
  .slots-strip { width: 100%; }
  .figures-row { grid-template-columns: 1fr; }
  .figure { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 22px; }
  .figure:first-child { border-top: none; padding-top: 0; }
  .book-form { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-cta { width: calc(100% - 40px); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .smile-path { stroke-dashoffset: 0; animation: none; }
  .smile-dot { opacity: 1; animation: none; }
  .ticker-track, .opening-deco, .dot-live { animation: none; }
  .underline-draw { transform: scaleX(1); transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

main, #footer { position: relative; z-index: 1; }