/* =============================================================================
   MDS Authoring — marketing site styles.
   Design language mirrors the app: green brand accents, glass-morphism
   surfaces, and the "Plexus" navy-network background on a light sky canvas.
   Tokens (.glass-card, brand colors, plexus bg) are lifted from
   frontend/src/app.css so the site and the product feel like one family.
   ============================================================================= */

/* ---- Design tokens ---------------------------------------------------------- */
:root {
  /* Brand greens — identical to the app's --color-brand-* scale. */
  --brand-50:  #f0fdf4;
  --brand-100: #dcfce7;
  --brand-200: #bbf7d0;
  --brand-300: #86efac;
  --brand-400: #4ade80;
  --brand-500: #22c55e;
  --brand-600: #16a34a;
  --brand-700: #15803d;
  --brand-800: #166534;
  --brand-900: #14532d;

  /* Slate ink scale. */
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;

  /* Glass shadow tints — same as the app's "parchment" (plexus) theme. */
  --glass-shadow-strong: rgba(30, 50, 100, 0.10);
  --glass-shadow-soft:   rgba(30, 50, 100, 0.05);
  --glass-bar-shadow:    rgba(30, 50, 100, 0.06);

  --radius-lg: 1.25rem;
  --radius-md: 0.85rem;
  --radius-sm: 0.6rem;

  --maxw: 1180px;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
}

/* ---- Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 6rem; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-700);
  line-height: 1.6;
  min-height: 100vh;
  background-color: #f4f8fc;
  /* Plexus background — copied from the app's "parchment" theme.
     The leading white wash fades the whole decorative background (plexus
     network + glows + gradient) so it reads softer behind the glass
     surfaces and screenshots. 0.75 ≈ two successive 50% fades, leaving the
     plexus at ~25% of its original strength. */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    url('assets/plexus.svg'),
    radial-gradient(900px circle at 8% 22%,  rgba(120, 170, 230, 0.18), transparent 60%),
    radial-gradient(700px circle at 78% 42%, rgba(160, 200, 235, 0.16), transparent 60%),
    radial-gradient(820px circle at 60% 88%, rgba(134, 239, 172, 0.16), transparent 62%),
    linear-gradient(180deg, #fafcfe 0%, #f1f6fb 50%, #e7eff7 100%);
  background-position: center, center top, center, center, center, center;
  background-size: cover, cover, auto, auto, auto, auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

/* ---- Layout helpers --------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-700);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.85rem; border-radius: 999px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}

.section-head { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.85rem); margin: 1rem 0 0.9rem; }
.section-head p { font-size: 1.1rem; color: var(--ink-600); margin: 0; }

.grad-text {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-400) 60%, #0ea5e9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Glass surfaces (from app's app.css) ----------------------------------- */
.glass-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 8px 28px var(--glass-shadow-strong),
    0 2px 6px  var(--glass-shadow-soft);
}
.glass-card-strong {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 32px var(--glass-shadow-strong),
    0 2px 8px   var(--glass-shadow-soft);
}
.glass-bar {
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 var(--glass-bar-shadow);
}

/* ---- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  padding: 0.72rem 1.3rem; border-radius: 0.7rem; border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.28), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(21, 128, 61, 0.38); transform: translateY(-1px); }
.btn-secondary {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px var(--glass-shadow-soft);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.92); border-color: var(--brand-300); transform: translateY(-1px); }
.btn-ghost { color: var(--ink-800); background: transparent; }
.btn-ghost:hover { color: var(--brand-700); background: rgba(255,255,255,0.5); }
.btn-lg { padding: 0.9rem 1.7rem; font-size: 1.02rem; }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---- Navigation ------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark {
  width: 2.3rem; height: 2.3rem; border-radius: 0.6rem; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.15rem;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.3);
}
.brand .name { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); line-height: 1.1; }
.brand .sub { font-size: 0.72rem; color: var(--ink-500); }
/* Image wordmark (transparent PNG). Landscape lockup — fix the height, let
   width follow. */
.brand-logo { height: 44px; width: auto; display: block; }
.footer-logo { height: 54px; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a.navlink {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-700);
  padding: 0.45rem 0.8rem; border-radius: 0.55rem; transition: background 0.15s, color 0.15s;
}
.nav-links a.navlink:hover { color: var(--brand-700); background: rgba(255,255,255,0.55); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle { display: none; }

/* ---- Hero ------------------------------------------------------------------- */
.hero { padding: 5rem 0 3rem; position: relative; }
.hero-grid { display: grid; gap: 2rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  line-height: 1.04; margin: 1.4rem 0 0;
  max-width: 16ch;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-600);
  max-width: 46ch; margin: 1.4rem 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem; font-size: 0.88rem; color: var(--ink-500); }
.hero-trust .check { color: var(--brand-600); }

/* Browser mockup frame for the hero/feature screenshots. */
.mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 30px 70px -20px rgba(15, 40, 90, 0.35), 0 8px 24px var(--glass-shadow-strong);
}
.mockup-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.7rem 0.95rem; border-bottom: 1px solid rgba(15,40,90,0.08);
  background: rgba(255,255,255,0.5);
}
.mockup-bar .dot { width: 11px; height: 11px; border-radius: 999px; }
.mockup-bar .dot.r { background: #ff6058; } .mockup-bar .dot.y { background: #ffbd2e; } .mockup-bar .dot.g { background: #28c840; }
.mockup-bar .url {
  margin-left: 0.7rem; font-size: 0.74rem; color: var(--ink-500);
  background: rgba(15,40,90,0.05); border-radius: 999px; padding: 0.18rem 0.8rem;
  flex: 1; max-width: 320px;
}
.mockup img { width: 100%; height: auto; aspect-ratio: 1440 / 900; object-fit: cover; display: block; }

.hero-media { position: relative; }
/* Floating glass stat chips over the hero image. */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.7rem 0.95rem; border-radius: 0.8rem;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 30px -8px rgba(15,40,90,0.3);
}
.float-chip .k { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); }
.float-chip .v { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1.1rem; }
.float-chip.tl { top: 1.2rem; left: -1rem; }
.float-chip.br { bottom: 1.4rem; right: -1rem; }
.float-chip .v.green { color: var(--brand-700); }

/* ---- Logo / compliance strip ------------------------------------------------ */
.strip { padding: 2.2rem 0; }
.strip p { text-align: center; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 1.3rem; }
.strip-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 0.9rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-700);
  padding: 0.5rem 0.95rem; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.chip .ic { color: var(--brand-600); display: grid; place-items: center; }
.chip svg { width: 1.05rem; height: 1.05rem; }

/* ---- Feature rows ----------------------------------------------------------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  margin-bottom: 5.5rem;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-media { order: 1; }
.feature-text .kicker {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-700);
}
.feature-text h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0.7rem 0 1rem; }
.feature-text p { font-size: 1.06rem; color: var(--ink-600); margin: 0 0 1.3rem; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
/* The tick is absolutely positioned (not a flex item) so inline <strong> tags
   in the text don't get split into separate flex items — which was inserting
   the row gap between every word and bold tag. */
.feature-list li { position: relative; padding-left: 2.05rem; color: var(--ink-700); font-size: 0.98rem; line-height: 1.55; }
.feature-list .tick {
  position: absolute; left: 0; top: 0.18rem;
  width: 1.4rem; height: 1.4rem; border-radius: 999px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}
.feature-list .tick svg { width: 0.85rem; height: 0.85rem; }
.feature-media .mockup { transition: transform 0.4s ease; }
.feature-media:hover .mockup { transform: translateY(-6px); }

/* ---- Pipeline / how it works ------------------------------------------------ */
.pipeline-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 1rem;
}
.flow-step { position: relative; padding: 1.5rem 1.25rem; }
.flow-step .num {
  width: 2.1rem; height: 2.1rem; border-radius: 0.6rem; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--brand-700);
  background: var(--brand-100); border: 1px solid var(--brand-200); margin-bottom: 0.9rem;
}
.flow-step h4 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.flow-step p { font-size: 0.9rem; color: var(--ink-600); margin: 0; }
.flow-step:not(:last-child)::after {
  content: ''; position: absolute; top: 2.55rem; right: -0.6rem; width: 1.2rem; height: 2px;
  background: linear-gradient(90deg, var(--brand-400), transparent);
}

.constraint {
  margin-top: 2.5rem; padding: 1.6rem 1.8rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  border-left: 3px solid var(--brand-500);
}
.constraint .ic { flex: none; color: var(--brand-600); }
.constraint h4 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.constraint p { margin: 0; font-size: 0.96rem; color: var(--ink-600); }
.constraint code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.86em; background: rgba(15,40,90,0.06); padding: 0.05em 0.4em; border-radius: 4px; color: var(--ink-800); }

/* ---- Bento grid ------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bento .cell { padding: 1.6rem; }
.bento .cell.wide { grid-column: span 2; }
.bento .cell .ic {
  width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; display: grid; place-items: center;
  color: var(--brand-700); background: var(--brand-100); border: 1px solid var(--brand-200);
  margin-bottom: 1rem;
}
.bento .cell .ic svg { width: 1.3rem; height: 1.3rem; }
.bento .cell h4 { font-size: 1.12rem; margin: 0 0 0.45rem; }
.bento .cell p { font-size: 0.95rem; color: var(--ink-600); margin: 0; }

/* ---- Stats band ------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat { padding: 1.8rem 1.5rem; text-align: center; }
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--ink-900); line-height: 1; }
.stat .big.green { color: var(--brand-700); }
.stat .lbl { margin-top: 0.6rem; font-size: 0.9rem; color: var(--ink-600); }

/* ---- Get started: book + contact ------------------------------------------- */
.cta-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 1.5rem; }
.cta-card { padding: 2.2rem; }
.cta-card h3 { font-size: 1.5rem; margin: 0 0 0.6rem; }
.cta-card .sub { color: var(--ink-600); margin: 0 0 1.5rem; }
.cta-perks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.cta-perks li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--ink-700); font-size: 0.96rem; }
.cta-perks .tick { color: var(--brand-600); flex: none; margin-top: 0.15rem; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink-900);
  padding: 0.65rem 0.85rem; border-radius: 0.6rem;
  background: rgba(255,255,255,0.75); border: 1px solid rgba(15,40,90,0.12);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--brand-400); box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin: 0.4rem 0 0; }
.form-status { margin-top: 0.9rem; font-size: 0.92rem; font-weight: 600; }
.form-status.ok { color: var(--brand-700); }
.form-status.err { color: #b91c1c; }
.embed-frame { width: 100%; min-height: 620px; border: 0; border-radius: var(--radius-sm); }

/* ---- Footer ----------------------------------------------------------------- */
.footer { margin-top: 5rem; }
.footer-inner { padding: 3.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-about .brand { margin-bottom: 1rem; }
.footer-about p { font-size: 0.92rem; color: var(--ink-600); margin: 0 0 1rem; max-width: 32ch; }
.footer-about .addr { font-size: 0.88rem; color: var(--ink-500); font-style: normal; line-height: 1.7; }
.footer-col h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); margin: 0 0 1rem; font-family: var(--font-sans); font-weight: 700; }
.footer-col a { display: block; font-size: 0.92rem; color: var(--ink-700); padding: 0.28rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--brand-700); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(15,40,90,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--ink-500); }
.socials { display: flex; gap: 0.5rem; }
.socials a {
  width: 2.2rem; height: 2.2rem; border-radius: 0.55rem; display: grid; place-items: center;
  color: var(--ink-600); background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.7);
  transition: color 0.15s, transform 0.15s;
}
.socials a:hover { color: var(--brand-700); transform: translateY(-2px); }
.socials svg { width: 1.1rem; height: 1.1rem; }

/* ---- Scroll-reveal animation ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ------------------------------------------------------------- */
@media (min-width: 901px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; align-items: center; }
}
@media (max-width: 900px) {
  .section { padding: 4.5rem 0; }
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 0.6rem;
    background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.8); color: var(--ink-800);
  }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0.2rem;
    position: absolute; top: 4.9rem; left: 1rem; right: 1rem; padding: 0.7rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(150%); backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 40px -10px rgba(15, 40, 90, 0.3), 0 1px 0 rgba(255,255,255,0.8) inset;
  }
  .nav.open .nav-links a.navlink { padding: 0.75rem 0.9rem; font-size: 1rem; }
  .nav.open .nav-links a.navlink:hover { background: var(--brand-50); }
  .feature, .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature.reverse .feature-text { order: 0; } .feature.reverse .feature-media { order: 0; }
  .pipeline-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .cell.wide { grid-column: span 2; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
  .float-chip.tl { left: 0.5rem; } .float-chip.br { right: 0.5rem; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .pipeline-flow, .bento, .stats { grid-template-columns: 1fr; }
  .bento .cell.wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; } .footer-about { grid-column: span 1; }
  .float-chip { display: none; }
  .brand .sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .mockup, .feature-media:hover .mockup, .socials a:hover { transition: none; transform: none; }
}
