/* =========================================================
   BioStudio AI — Design System
   ========================================================= */
:root {
  --bg: #f7f9fc;
  --bg-soft: #eef2f9;
  --ink: #0b1220;
  --ink-soft: #475069;
  --muted: #6b7488;
  --line: #e4e9f2;
  --card: #ffffff;

  --dark: #070b1a;
  --dark-2: #0d1430;
  --dark-soft: #131c42;

  --cyan: #06b6d4;
  --teal: #14b8a6;
  --violet: #7c3aed;
  --indigo: #4f46e5;
  --emerald: #10b981;

  --grad: linear-gradient(120deg, #06b6d4 0%, #4f46e5 55%, #7c3aed 100%);
  --grad-soft: linear-gradient(120deg, rgba(6,182,212,.12), rgba(124,58,237,.12));

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -22px rgba(13, 20, 48, .28);
  --shadow-lg: 0 40px 90px -40px rgba(13, 20, 48, .55);
  --container: 1180px;

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, canvas, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--mono); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.2rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Chart wrappers: fixed-height, position:relative boxes prevent the
   Chart.js responsive feedback loop that makes canvases grow forever. */
.chart-box { position: relative; width: 100%; }
.chart-box > canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.chart-box--hero { height: 150px; }
.chart-box--main { height: 260px; }
.chart-box--donut { height: 160px; }
.chart-box--report { height: 180px; }

/* ---------- Buttons ---------- */
.btn {
  --pad: .8rem 1.3rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(79, 70, 229, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(79, 70, 229, .85); }
.btn--ghost { background: rgba(255,255,255,.6); border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { transform: translateY(-2px); background: #fff; }
.btn--lg { --pad: 1rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .9rem; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid rgba(79,70,229,.18);
  font-size: .82rem; font-weight: 600; color: var(--indigo);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.55);} 70%{ box-shadow: 0 0 0 8px rgba(16,185,129,0);} 100%{ box-shadow:0 0 0 0 rgba(16,185,129,0);} }

.eyebrow { display: inline-block; font-family: var(--mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--indigo); margin-bottom: .8rem; }
.eyebrow--light { color: #7dd3fc; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(247,249,252,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(13,20,48,.35); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.brand__mark { display: grid; place-items: center; }
.brand__text strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--grad); transition: width .25s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .55rem 1.15rem; font-size: .9rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.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__mobile { display: none; flex-direction: column; gap: .4rem; padding: 0 24px 18px; }
.nav__mobile a { padding: .7rem .4rem; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink-soft); }
.nav__mobile .btn { margin-top: .6rem; }
.nav__mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 40px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.orb--1 { width: 480px; height: 480px; background: radial-gradient(circle, #06b6d4, transparent 70%); top: -120px; right: -80px; animation: float1 14s ease-in-out infinite; }
.orb--2 { width: 420px; height: 420px; background: radial-gradient(circle, #7c3aed, transparent 70%); top: 120px; left: -140px; animation: float2 18s ease-in-out infinite; }
.orb--3 { width: 360px; height: 360px; background: radial-gradient(circle, #14b8a6, transparent 70%); bottom: -120px; left: 40%; opacity: .35; animation: float1 20s ease-in-out infinite; }
@keyframes float1 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-30px, 30px);} }
@keyframes float2 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(40px, -20px);} }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%); opacity: .5; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 4.6vw, 3.7rem); margin: 1.1rem 0 1.2rem; }
.hero__sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.6rem; }
.hero__trust { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--display); font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-item span { font-size: .82rem; color: var(--muted); }

/* glass cards */
.glass-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 0; overflow: hidden; transform: rotate(.4deg); }
.hero-card__head { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); }
.dots { display: flex; gap: 6px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: #e2e7f1; }
.dots span:nth-child(1){ background:#ff5f57;} .dots span:nth-child(2){ background:#febc2e;} .dots span:nth-child(3){ background:#28c840;}
.hero-card__tag { font-family: var(--mono); font-size: .76rem; color: var(--muted); }
.hero-card__body { padding: 1.1rem 1.2rem 1rem; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-bottom: 1rem; }
.mini-stat { background: var(--grad-soft); border-radius: var(--radius-sm); padding: .65rem .7rem; }
.mini-stat__label { display: block; font-size: .72rem; color: var(--muted); }
.mini-stat__value { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.hero-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .9rem; font-size: .76rem; color: var(--muted); }
.status-ok { color: var(--emerald); font-weight: 600; }

.logo-strip { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.4rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px dashed var(--line); flex-wrap: wrap; }
.logo-strip > span { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.logo-strip__items { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.logo-strip__items span { font-family: var(--display); font-weight: 600; color: #aab2c5; font-size: .95rem; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: radial-gradient(120% 120% at 80% 0%, var(--dark-soft), var(--dark) 60%); color: #e8ecf8; }
.section--dark h2 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section__lead { font-size: 1.08rem; color: var(--ink-soft); margin-top: .8rem; }
.section__lead--light { color: #aeb8d6; }

/* ---------- Techniques ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.tech-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.tech-card::before { content:""; position:absolute; inset:0; background: var(--grad); opacity:0; transition:.3s; z-index:0; }
.tech-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.tech-card__icon { font-size: 1.9rem; margin-bottom: .8rem; position: relative; z-index: 1; }
.tech-card h3 { margin-bottom: .4rem; position: relative; z-index: 1; }
.tech-card p { font-size: .92rem; color: var(--ink-soft); position: relative; z-index: 1; }
.tech-card--cta { background: var(--grad); color: #fff; border-color: transparent; }
.tech-card--cta p { color: rgba(255,255,255,.88); }
.tech-card__link { display: inline-block; margin-top: .7rem; font-weight: 600; font-size: .9rem; position: relative; z-index: 1; }

/* ---------- Pipeline ---------- */
.pipeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.1rem; position: relative; }
.pipeline__line { position: absolute; top: 38px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); opacity: .5; }
.pipe-step { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.4rem 1.2rem; backdrop-filter: blur(6px); }
.pipe-step__num { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); font-family: var(--display); font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; box-shadow: 0 10px 24px -10px rgba(79,70,229,.8); }
.pipe-step h3 { color: #fff; margin-bottom: .35rem; }
.pipe-step p { font-size: .9rem; color: #aeb8d6; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.feature { padding: 1.7rem 1.6rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature__icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 14px; background: var(--grad-soft); margin-bottom: 1rem; }
.feature h3 { margin-bottom: .45rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Dashboard ---------- */
.dash__tabs { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.dash__tab { padding: .6rem 1.15rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; color: var(--ink-soft); cursor: pointer; transition: .2s; }
.dash__tab:hover { border-color: var(--indigo); color: var(--indigo); }
.dash__tab.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 10px 24px -12px rgba(79,70,229,.7); }
.dash__grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 1.2rem; }
.dash__main { padding: 1.4rem 1.5rem; }
.dash__card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.dash__subtitle { font-size: .85rem; color: var(--muted); }
.badge { font-family: var(--mono); font-size: .72rem; padding: .3rem .6rem; border-radius: 8px; font-weight: 600; }
.badge--ok { background: rgba(16,185,129,.14); color: #0f9b6c; }
.dash__side { display: grid; gap: 1.2rem; grid-template-rows: auto auto auto; align-content: start; }
.dash__kpi { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .25rem; }
.dash__kpi-label { font-size: .8rem; color: var(--muted); font-family: var(--mono); }
.dash__kpi-value { font-family: var(--display); font-size: 1.7rem; font-weight: 700; }
.dash__kpi-trend { font-size: .8rem; color: var(--muted); }
.dash__kpi-trend.up { color: var(--emerald); }
.dash__donut { padding: 1.1rem 1.2rem; }
.dash__donut h4 { font-size: .9rem; color: var(--ink-soft); margin-bottom: .6rem; }

/* ---------- Report ---------- */
.report-wrap { display: grid; grid-template-columns: 1.55fr 1fr; gap: 2rem; align-items: start; }
.report { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 1.8rem; font-size: .9rem; }
.report__header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 1rem; border-bottom: 2px solid var(--ink); gap: 1rem; flex-wrap: wrap; }
.report__logo { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.report__doc { display: block; font-size: .8rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.report__meta { display: grid; gap: .15rem; font-size: .76rem; color: var(--ink-soft); text-align: right; }
.report__status { color: var(--emerald); font-style: normal; font-weight: 700; }
.report__title { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.report__title h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.report__title p { font-size: .82rem; color: var(--muted); }
.report__row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.report__panel h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .6rem; }
.report__panel { padding: 1.1rem 0; }
.report__list { list-style: none; display: grid; gap: .4rem; }
.report__list li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: .3rem; }
.report__list span { color: var(--ink-soft); }
.report__list .ok { color: var(--emerald); }
.report__table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.report__table th { text-align: left; padding: .5rem .4rem; border-bottom: 2px solid var(--line); color: var(--muted); font-weight: 600; }
.report__table td { padding: .5rem .4rem; border-bottom: 1px solid var(--line); }
.report__table .ok { color: var(--emerald); font-weight: 600; }
.report__table .warn { color: #d97706; font-weight: 600; }
.report__conclusion { background: var(--grad-soft); border-radius: 12px; padding: 1.1rem 1.2rem; margin-top: 1rem; }
.report__conclusion h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--indigo); margin-bottom: .4rem; }
.report__conclusion p { font-size: .88rem; color: var(--ink-soft); }
.report__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .72rem; color: var(--muted); flex-wrap: wrap; gap: .5rem; }
.report__sig { font-family: var(--mono); color: var(--emerald); }

.report-aside { position: sticky; top: 100px; }
.report-aside h3 { margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.2rem; height: 1.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: .72rem; }

/* ---------- Stats band ---------- */
.band { background: var(--grad); color: #fff; padding: 56px 0; }
.band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.band__item { display: flex; flex-direction: column; align-items: center; }
.band__num, .band__plus { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1; }
.band__item p { margin-top: .5rem; font-size: .9rem; opacity: .9; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact__info { list-style: none; display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact__info li { display: flex; align-items: center; gap: .9rem; font-size: 1.05rem; }
.contact__ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.contact__info a { color: #e8ecf8; }
.contact__info a:hover { color: #7dd3fc; }

.contact__form { padding: 1.8rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .82rem; color: #aeb8d6; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04);
  color: #fff; font-family: inherit; font-size: .95rem; transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #7a83a0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,.08); }
.field select option { color: #0b1220; }
.form-note { font-size: .78rem; color: #8b94b3; text-align: center; margin-top: .8rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #cdd5ee; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; color: #8b94b3; max-width: 320px; }
.footer__col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; font-size: .9rem; color: #8b94b3; margin-bottom: .6rem; transition: color .2s; }
.footer__col a:hover { color: #7dd3fc; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6rem; font-size: .8rem; color: #6b7494; flex-wrap: wrap; gap: .6rem; }

/* ---------- Reveal animation ---------- */
/* Only hide content when JS is running; otherwise content is always visible
   so the page never appears blank if script.js fails to load. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .pipeline { grid-template-columns: repeat(2,1fr); }
  .pipeline__line { display: none; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .dash__grid { grid-template-columns: 1fr; }
  .report-wrap { grid-template-columns: 1fr; }
  .report-aside { position: static; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .tech-grid, .feature-grid, .pipeline, .band__grid { grid-template-columns: 1fr; }
  .band__grid { gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
