/* ═══════════════════════════════════════════════════
   DIRECT NETWORKS — SHARED DESIGN SYSTEM
   shared.css — loaded by every page on the site
   Aesthetic: Refined editorial authority. Dark gravity.
═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B2E;
  --navy-mid:   #1a2b4a;
  --navy-light: #243659;
  --white:      #FFFFFF;
  --off:        #F7F7FB;
  --paper:      #FAFAFD;
  --pink:       #E91E8C;
  --purple:     #7B2FF7;
  --cyan:       #00B4D8;
  --grad:       linear-gradient(135deg, #E91E8C 0%, #7B2FF7 50%, #00B4D8 100%);
  --grad-h:     linear-gradient(90deg,  #E91E8C 0%, #7B2FF7 50%, #00B4D8 100%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --text:   #1a2b4a;
  --mid:    #3d5470;
  --muted:  #6B84A3;
  --border: #DDE3EC;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3.5rem); }

/* ── TYPE UTILITIES ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--grad);
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.35); }
.eyebrow--light::before { background: rgba(255,255,255,0.2); }
.eyebrow--center { justify-content: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  padding: 14px 32px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  padding: 13px 28px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-ghost-dark {
  border: 1px solid var(--border);
  color: var(--mid);
  padding: 13px 28px;
}
.btn-ghost-dark:hover { border-color: var(--purple); color: var(--navy); }
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}
@keyframes spin1 { from { transform: rotate(0deg); }  to { transform: rotate(360deg); } }
@keyframes spin2 { from { transform: rotate(0deg); }  to { transform: rotate(-360deg); } }
@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(13,27,46,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(13,27,46,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-mark {
  width: 34px;
  height: 34px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  flex-shrink: 0;
}
.nav-mark-inner {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,0.9); }
.nav-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 199;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mob-menu a {
  padding: 1rem 2rem;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mob-menu a:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.mob-menu .mob-cta {
  background: var(--grad);
  color: var(--white);
  font-weight: 500;
  border-bottom: none;
  margin: 1rem 1.25rem 0;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mob-menu.open { display: flex; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: block;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-brand-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-ip {
  font-size: 9px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.footer-col-head {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
  min-height: 24px;
}
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-links-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(123,47,247,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0,180,216,0.06) 0%, transparent 55%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(123,47,247,0.1);
  border: 1px solid rgba(123,47,247,0.2);
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 1.75rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 620px;
}

/* ══════════════════════════════════════════
   SHARED SECTION WRAPPERS
══════════════════════════════════════════ */
.section-light  { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--off); }
.section-dark   { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--navy); }
.section-mid    { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--navy-mid); }
.section-white  { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--white); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-head h2.light { color: var(--white); }
.section-head h2.dark  { color: var(--navy); }
.section-head p { font-size: 0.95rem; line-height: 1.8; font-weight: 300; max-width: 580px; }
.section-head p.light { color: rgba(255,255,255,0.5); }
.section-head p.dark  { color: var(--mid); }

/* ══════════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════════ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-h);
}
.proof-cell {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.proof-cell:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}
.proof-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   ENTITY CARDS
══════════════════════════════════════════ */
.entity-card {
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  text-decoration: none;
  display: block;
}
.entity-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,43,74,0.1); }
.entity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.entity-card:hover::before { opacity: 1; }
.entity-card--ewow::before    { background: linear-gradient(90deg, #7B2FF7, #5B48B8); }
.entity-card--agility::before { background: linear-gradient(90deg, #E91E8C, #7B2FF7); }
.entity-card--os::before      { background: linear-gradient(90deg, #00B4D8, #7B2FF7); }
.entity-card--sabrina::before { background: var(--grad-h); }
.entity-card:hover.entity-card--ewow    { border-color: rgba(123,47,247,0.25); }
.entity-card:hover.entity-card--agility { border-color: rgba(233,30,140,0.25); }
.entity-card:hover.entity-card--os      { border-color: rgba(0,180,216,0.25); }
.entity-card:hover.entity-card--sabrina { border-color: rgba(123,47,247,0.2); }
.entity-index {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px;
}
.entity-index-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.entity-card--ewow    .entity-index-dot { background: #7B2FF7; }
.entity-card--agility .entity-index-dot { background: #E91E8C; }
.entity-card--os      .entity-index-dot { background: #00B4D8; }
.entity-card--sabrina .entity-index-dot { background: var(--purple); }
.entity-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.5rem;
}
.entity-tagline {
  font-family: var(--font-display);
  font-style: italic; font-size: 0.9rem;
  color: var(--muted); margin-bottom: 1.25rem;
}
.entity-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.entity-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.entity-pill {
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px;
  background: var(--off); color: var(--muted); border: 1px solid var(--border);
}
.entity-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; transition: gap 0.2s;
}
.entity-card--ewow    .entity-link { color: #7B2FF7; }
.entity-card--agility .entity-link { color: #E91E8C; }
.entity-card--os      .entity-link { color: #00B4D8; }
.entity-card--sabrina .entity-link { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.entity-card:hover .entity-link { gap: 14px; }
.ip-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(123,47,247,0.08); border: 1px solid rgba(123,47,247,0.2);
  color: #7B2FF7; font-size: 8px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px;
}

/* ══════════════════════════════════════════
   ARTICLE CARDS
══════════════════════════════════════════ */
.article-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; text-decoration: none; display: block;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,43,74,0.08); border-color: rgba(123,47,247,0.2); }
.article-cat {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem; display: block;
}
.article-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.article-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.article-meta { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; display: flex; align-items: center; gap: 0.5rem; }
.article-meta::before { content: ''; display: block; width: 20px; height: 1px; background: var(--grad); }

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-h);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500; color: var(--white);
  line-height: 1.1; letter-spacing: -0.025em;
  max-width: 700px; margin: 0 auto 1.25rem;
}
.cta-strip p {
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 560px;
  margin: 0 auto 2.5rem; font-weight: 300;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* Large tablet */
@media(max-width: 1200px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
}

/* Tablet landscape — hide nav links */
@media(max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* Tablet portrait */
@media(max-width: 768px) {
  .nav-sub { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-cell { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .proof-cell:nth-child(even) { border-right: none; }
  .proof-cell:nth-last-child(-n+2) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .entity-card { padding: 1.75rem; }
  .ip-badge { font-size: 7px; padding: 3px 8px; top: 1rem; right: 1rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 360px; }
  .article-card { padding: 1.5rem; }
}

/* Phone */
@media(max-width: 600px) {
  .nav-name { font-size: 14px; }
  .nav-brand { gap: 8px; }
  .nav-mark { width: 30px; height: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-links-row { flex-direction: column; gap: 0.35rem; }
}

/* Small phone */
@media(max-width: 480px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .proof-cell:last-child { border-bottom: none; }
  .entity-card { padding: 1.5rem; }
}

/* Touch devices */
@media(hover: none) and (pointer: coarse) {
  .btn-primary:hover { transform: none; }
  .entity-card:hover, .article-card:hover { transform: none; }
  .entity-card, .article-card { -webkit-tap-highlight-color: transparent; }
}

/* Reduced motion */
@media(prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Landscape phone */
@media(max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .mob-menu { max-height: calc(100vh - 68px); overflow-y: auto; }
}
