/* =========================================================
   Synova Labs — Aurora Theme
   Plain CSS design system (dark + vibrant gradients)
   ========================================================= */

:root {
  /* Base */
  --bg:        #0B1437;
  --bg-2:      #080F2A;
  --surface:   #111B45;
  --surface-2: #16235A;
  --border:    rgba(148, 163, 184, 0.14);
  --border-2:  rgba(148, 163, 184, 0.28);

  /* Aurora gradient stops */
  --blue:   #3B82F6;
  --violet: #8B5CF6;
  --cyan:   #22D3EE;
  --indigo: #6366F1;

  /* Text */
  --text:   #F1F5F9;
  --muted:  #9AA8C7;
  --faint:  #7C89AE;

  /* Effects */
  --grad-aurora: linear-gradient(120deg, #3B82F6 0%, #8B5CF6 45%, #22D3EE 100%);
  --grad-aurora-soft: linear-gradient(120deg, rgba(59,130,246,.18), rgba(139,92,246,.18) 50%, rgba(34,211,238,.18));
  --ring: 0 0 0 1px rgba(255,255,255,.04);
  --shadow: 0 24px 60px -20px rgba(2, 6, 23, .8);
  --shadow-glow: 0 0 60px -10px rgba(99, 102, 241, .45);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

/* Visually hidden but available to screen readers / accessibility tree */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Aurora ambient background ---- */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(99,102,241,.30), transparent 70%),
    radial-gradient(40% 40% at 85% 10%, rgba(34,211,238,.16), transparent 70%),
    radial-gradient(50% 50% at 10% 30%, rgba(139,92,246,.18), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.aurora-bg::after {
  /* subtle grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 75%);
}
.blob {
  position: fixed;
  z-index: -1;
  filter: blur(70px);
  opacity: .55;
  border-radius: 50%;
  pointer-events: none;
  animation: float 18s var(--ease) infinite alternate;
}
.blob.b1 { width: 460px; height: 460px; top: -120px; left: -80px; background: radial-gradient(circle, var(--violet), transparent 65%); }
.blob.b2 { width: 520px; height: 520px; top: 10%; right: -160px; background: radial-gradient(circle, var(--cyan), transparent 65%); animation-delay: -6s; }
.blob.b3 { width: 420px; height: 420px; bottom: -150px; left: 30%; background: radial-gradient(circle, var(--blue), transparent 65%); animation-delay: -11s; }

@keyframes float {
  to { transform: translate3d(40px, 40px, 0) scale(1.12); }
}

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

h1, h2, h3 { line-height: 1.1; letter-spacing: -.02em; margin: 0; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { color: var(--muted); margin: 0; }

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

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

.lead { font-size: 1.15rem; color: var(--muted); max-width: 600px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .96rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: var(--grad-aurora);
  background-size: 160% 160%;
  box-shadow: 0 10px 30px -8px rgba(99,102,241,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(99,102,241,.75); background-position: 100% 0; }
.btn-ghost {
  color: var(--text);
  border-color: var(--border-2);
  background: rgba(255,255,255,.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: #fff; transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Glass card ---- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-aurora-soft); opacity: 0;
  transition: opacity .35s; z-index: -1;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-aurora-soft);
  border: 1px solid var(--border-2);
  margin-bottom: 20px; font-size: 24px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 15, 42, .72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 38px; height: 38px; filter: drop-shadow(0 0 14px rgba(59,130,246,.55)); }
.brand .word { font-weight: 800; font-size: 1.18rem; letter-spacing: .02em; color: #fff; }
.brand .word b { font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem;
  padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  border-radius: 2px; background: var(--grad-aurora);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* CTA shown inside the mobile dropdown menu only */
.menu-cta { display: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: calc(var(--nav-h) + 90px) 0 90px; text-align: center; }
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 16ch; margin: 22px 0 0; }
.hero .lead { margin: 24px auto 0; text-align: center; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 72px; width: 100%; max-width: 820px;
}
.hero-stats .stat { padding: 22px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,.025); }
.hero-stats .num { font-size: 2rem; font-weight: 800; }
.hero-stats .lbl { font-size: .85rem; color: var(--faint); margin-top: 4px; }

/* logo orbit visual */
.hero-visual { margin-top: 64px; position: relative; display: grid; place-items: center; }
.hero-logo { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.hero-logo .hmark { width: clamp(118px, 22vw, 176px); height: auto; filter: drop-shadow(0 0 50px rgba(99,102,241,.55)); animation: bob 6s var(--ease) infinite alternate; }
/* --- Wordmark colour: default = clean white --- */
.hero-word { font-weight: 800; letter-spacing: .16em; font-size: clamp(1.5rem, 3.6vw, 2.4rem); color: #FFFFFF; text-shadow: 0 2px 30px rgba(99,102,241,.45); }
.hero-word span { color: #FFFFFF; }
.hero-tagline { font-size: clamp(.95rem, 1.8vw, 1.15rem); font-weight: 500; letter-spacing: .04em; color: var(--muted); margin-top: -4px; }
.hero-tagline .gradient-text { font-weight: 700; }
/* Switch wordmark style by adding ONE class to .hero-word:
   .grad      → full cyan→blue→violet gradient
   .grad-labs → white SYNOVA + gradient LABS (matches navbar)
   .soft      → soft periwinkle white */
.hero-word.grad { background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; text-shadow: none; }
.hero-word.grad span { -webkit-text-fill-color: transparent; }
.hero-word.grad-labs span { background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-word.soft, .hero-word.soft span { color: #C7D2FE; }
@keyframes bob { to { transform: translateY(-14px); } }
.orbit { position: absolute; border: 1px dashed var(--border-2); border-radius: 50%; }
.orbit.o1 { width: 340px; height: 340px; animation: spin 28s linear infinite; }
.orbit.o2 { width: 480px; height: 480px; animation: spin 40s linear infinite reverse; }
.orbit .dot { position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Marquee / logos ---- */
.trusted { padding: 40px 0 0; }
.trusted p { text-align: center; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: 24px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-weight: 700; font-size: 1.25rem; color: var(--faint); opacity: .8; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---- Grids ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .visual {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--grad-aurora-soft); position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.brand-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.brand-visual .mark { width: clamp(120px, 15vw, 168px); height: auto; filter: drop-shadow(0 0 40px rgba(99,102,241,.55)); animation: bob 7s var(--ease) infinite alternate; }
.brand-visual .bv-word { font-weight: 800; letter-spacing: .16em; font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: #C7D2FE; }
.split ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.split li { display: flex; gap: 12px; color: var(--muted); }
.split li .check { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-aurora); color: #fff; font-size: 12px; font-weight: 700; margin-top: 2px; }

/* ---- Process steps ---- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,.025); position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 2.4rem; font-weight: 800; display: block; margin-bottom: 12px;
  background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---- Stats band ---- */
.band { border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); padding: 48px; }

/* ---- CTA ---- */
.cta-box {
  text-align: center; border-radius: 28px; padding: 72px 32px;
  border: 1px solid var(--border-2);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(99,102,241,.35), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  position: relative; overflow: hidden;
}
.cta-box h2 { max-width: 18ch; margin: 16px auto 0; }
.cta-box p { margin: 16px auto 0; max-width: 50ch; }
.cta-box .hero-actions { margin-top: 32px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 40px; background: rgba(8,15,42,.4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer-col h2 { font-size: .85rem; font-weight: 700; line-height: 1.1; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; padding: 6px 0; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer .desc { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); text-decoration: none; transition: .2s; }
.socials a:hover { color: #fff; border-color: var(--cyan); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--faint); font-size: .88rem; }

/* =========================================================
   Page header (interior pages)
   ========================================================= */
.page-head { padding: calc(var(--nav-h) + 72px) 0 24px; text-align: center; }
.page-head h1 { margin: 18px auto 0; max-width: 18ch; }
.page-head p { margin: 18px auto 0; max-width: 60ch; font-size: 1.1rem; }

/* breadcrumb */
.crumb { font-size: .85rem; color: var(--faint); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--cyan); }

/* ---- About: values / timeline ---- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--grad-aurora); border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 36px 28px; }
.tl-item::before { content: ""; position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 3px solid var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.tl-item .yr { font-weight: 700; color: var(--cyan); }

/* ---- Portfolio ---- */
.work-card { padding: 0; }
.work-card .thumb { aspect-ratio: 16/10; border-radius: var(--radius) var(--radius) 0 0; background: var(--grad-aurora-soft); display: grid; place-items: center; font-size: 3rem; border-bottom: 1px solid var(--border); }
.work-card .body { padding: 26px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: .78rem; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border-2); color: var(--muted); background: rgba(255,255,255,.03); }

/* ---- Careers ---- */
.job { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 28px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255,255,255,.025); transition: .3s var(--ease); text-decoration: none; }
.job:hover { border-color: var(--cyan); transform: translateX(6px); background: rgba(255,255,255,.05); }
.job .meta { display: flex; gap: 14px; color: var(--faint); font-size: .9rem; flex-wrap: wrap; }
.job h3 { color: var(--text); }
.job .go { color: var(--cyan); font-weight: 700; white-space: nowrap; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-2); color: var(--text);
  font: inherit; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.phone-group { display: flex; gap: 8px; }
.phone-group select { flex: 0 0 auto; width: auto; min-width: 96px; padding-right: 10px; }
.phone-group input { flex: 1 1 auto; min-width: 0; }
.contact-info .item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info .item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-aurora-soft); border: 1px solid var(--border-2); font-size: 20px; }
.contact-info .item b { display: block; color: var(--text); }
.contact-info .item span { color: var(--muted); font-size: .95rem; }
.form-note { font-size: .85rem; color: var(--faint); margin-top: 8px; }
.form-success { display: none; padding: 16px; border-radius: 12px; background: rgba(34,211,238,.12); border: 1px solid var(--cyan); color: var(--text); margin-top: 16px; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  section { padding: 70px 0; }
  /* On phones the inline CTA crowds the brand + hamburger — move it into the menu */
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,15,42,.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); padding: 16px 24px 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { padding: 14px 8px; text-align: center; }
  .nav-links.open .menu-cta { display: inline-flex; justify-content: center; margin-top: 12px; padding: 14px 24px; }
  .grid-3, .grid-4, .steps, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 52px 22px; }
  .band { padding: 32px 22px; }

  /* Tame hero spacing + keep decorative rings inside the viewport */
  .hero { padding: calc(var(--nav-h) + 44px) 0 64px; }
  .hero .lead { font-size: 1.05rem; }
  .hero-stats { margin-top: 48px; }
  .hero-visual { margin-top: 48px; }
  .orbit.o1 { width: 220px; height: 220px; }
  .orbit.o2 { width: 300px; height: 300px; }

  /* Stack job rows so the title isn't squeezed against the CTA */
  .job { flex-direction: column; align-items: flex-start; gap: 10px; }
  .job:hover { transform: none; }

  /* Roomier mobile tap target for the hamburger */
  .nav-toggle { padding: 10px; }
}

/* Respect iOS notch / home-indicator safe areas */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
}

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