/* ============================================================
   Webbey Digital Agency — redesign (LIGHT / WHITE + ORANGE)
   Brand: #FF7F00 orange, white canvas, warm near-black text.
   Aesthetic: clean editorial performance-agency. Logo-led.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* names kept stable so inline styles keep working; values now light-theme */
  --ink:        #f5f2ea;   /* warm off-white page — white cards separate against it */
  --ink-2:      #ece6db;   /* raised surface / section alt */
  --ink-3:      #e4ddd0;   /* card hover */
  --cream:      #16140f;   /* primary text (dark) */
  --cream-dim:  #6c675e;   /* muted text */
  --line:       #e0d9ca;   /* hairlines */
  --card-shadow: 0 1px 2px rgba(30,25,15,.05), 0 18px 36px -26px rgba(30,25,15,.30);
  --lime:       #ff7f00;   /* BRAND orange (name kept) */
  --lime-deep:  #e66e00;
  --coral:      #ff7f00;
  --on-orange:  #1c1204;   /* text on orange */

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-mono:    'Poppins', system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--lime); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 11vw, 150px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.display { font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 800; }
h2.head { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--cream-dim); max-width: 56ch; }
.mono { font-family: var(--font-mono); }
.lime { color: var(--lime); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1.05em 1.6em; border-radius: 100px;
  border: 1.5px solid var(--cream);
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  cursor: pointer; background: transparent; color: var(--cream);
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn--lime { background: var(--lime); color: #fff; border-color: var(--lime); font-weight: 700; }
.btn--lime:hover { transform: translateY(-3px); background: var(--lime-deep); border-color: var(--lime-deep); box-shadow: 0 14px 34px -12px rgba(255,127,0,.55); }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: var(--cream); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  transition: background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; }
.brand .logo { height: 44px; width: auto; display: block; }
.brand .logo--white { display: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a.navlink {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .03em; text-transform: uppercase;
  padding: .7em .9em; border-radius: 100px; color: var(--cream-dim);
  transition: color .25s, background .25s;
}
.nav a.navlink:hover, .nav a.navlink[aria-current="page"] { color: var(--cream); background: var(--ink-2); }
.nav .nav-cta { margin-left: 8px; }
/* nav dropdown */
.navitem { position: relative; display: flex; align-items: center; }
.navitem > .navlink .caret { font-size: .8em; margin-left: 4px; display: inline-block; transition: transform .25s; }
.navitem:hover > .navlink .caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 252px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 56px -24px rgba(0,0,0,.28); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index: 1100; }
.dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.navitem:hover .dropdown, .navitem:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; padding: .75em .85em; border-radius: 9px; color: var(--cream-dim); white-space: nowrap; }
.dropdown a:hover { background: var(--ink-2); color: var(--cream); }
@media (max-width: 980px) {
  .navitem { display: block; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 2px 0 8px 14px; min-width: 0; }
  .dropdown::before { display: none; }
  .navitem:hover > .navlink .caret { transform: none; }
}
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 40px; color: var(--cream); cursor: pointer; }
.burger span { display: block; width: 18px; height: 2px; background: var(--cream); margin: 3px auto; transition: .3s; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 0 0 0 28%; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 4px; padding: 0 var(--pad); background: #fff; border-left: 1px solid var(--line); box-shadow: -20px 0 60px -30px rgba(0,0,0,.3);
    transform: translateX(100%); transition: transform .5s var(--ease); }
  .nav.open { transform: none; }
  .nav a.navlink { font-size: 1rem; padding: .6em 0; }
  .nav .nav-cta { margin: 14px 0 0; }
  .burger { display: block; z-index: 1001; }
  /* the scrolled header's backdrop-filter creates a containing block that traps the
     fixed nav panel inside the header box — drop the blur on mobile so the slide-in
     panel anchors to the full viewport again */
  .site-header.scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav { z-index: 1050; }
  /* the panel is solid white, so keep links dark/readable even over a dark hero */
  .nav.open a.navlink { color: var(--cream) !important; background: transparent !important; }
  .nav.open a.navlink:hover,
  .nav.open a.navlink[aria-current="page"] { color: var(--cream) !important; background: var(--ink-2) !important; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 60px; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at center, var(--line) 1.2px, transparent 1.2px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 76%);
  opacity: .8;
}
.hero-glow { position: absolute; z-index: -1; width: 65vw; height: 65vw; right: -12vw; top: -16vw;
  background: radial-gradient(circle, rgba(255,127,0,.14), transparent 62%); filter: blur(10px); }
.hero h1 .word { display: inline-block; overflow: hidden; }
.hero h1 .word span { display: inline-block; transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
@keyframes rise { to { transform: none; } }
.hero h1 .o { color: var(--lime); }
.hero-sub { display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: flex-end; justify-content: space-between; margin-top: 42px; }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .9s var(--ease) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--ink-2); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 2.1rem); color: var(--cream); opacity: .55; letter-spacing: -.03em; display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after { content: "✦"; color: var(--lime); font-size: .7em; opacity: 1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--ink); padding: clamp(26px, 3vw, 44px); transition: background .3s; }
.stat:hover { background: var(--ink-2); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -.04em; }
.stat .num .u { color: var(--lime); }
.stat .lbl { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); margin-top: 12px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- generic grid heads ---------- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 60px); }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  position: relative; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(26px, 3vw, 40px); background: #fff; overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}
.svc::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(255,127,0,.07), transparent 60%); opacity: 0; transition: opacity .4s; }
.svc:hover { transform: translateY(-6px); border-color: rgba(255,127,0,.45); box-shadow: 0 24px 50px -30px rgba(0,0,0,.25); }
.svc:hover::after { opacity: 1; }
.svc .idx { font-family: var(--font-mono); font-size: .76rem; color: var(--lime); font-weight: 700; }
.svc h3 { margin: 18px 0 12px; }
.svc p { color: var(--cream-dim); font-size: .98rem; }
.svc ul { list-style: none; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc ul li { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; padding: .45em .8em; border: 1px solid var(--line); border-radius: 100px; color: var(--cream-dim); }
.svc .more { display: inline-flex; gap: .5em; margin-top: 22px; font-family: var(--font-mono); font-size: .78rem; color: var(--lime); font-weight: 700; }
/* stretch the "more" link to cover the whole card → entire card is clickable */
.svc .more::before { content: ""; position: absolute; inset: 0; z-index: 2; }
.svc .more:hover { text-decoration: underline; }

/* AI accent variant */
.svc--ai { background: linear-gradient(180deg, #fff7ef, #ffffff); border-color: rgba(255,127,0,.3); }
.svc--ai .idx, .svc--ai h3 { color: var(--lime); }

/* feature deep sections (services page) */
.feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: start; padding-block: clamp(40px, 6vw, 80px); border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: none; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
.feature .big-idx { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem,8vw,6rem); color: #fff; -webkit-text-stroke: 1.5px var(--line); line-height: 1; }
.feature-points { display: grid; gap: 18px; margin-top: 26px; }
.feature-points .pt { border-left: 2px solid var(--lime); padding-left: 18px; }
.feature-points .pt h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 5px; }
.feature-points .pt p { color: var(--cream-dim); font-size: .96rem; }

/* ---------- work / results ---------- */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.work-card { grid-column: span 4; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px,2.6vw,34px); background: #fff; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--card-shadow); transition: transform .5s var(--ease), box-shadow .4s; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.25); }
.work-card.span6 { grid-column: span 6; }
.work-card .name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem,3vw,2.4rem); }
.work-card .tag { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); }
.work-card .res { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,3.4vw,2.6rem); color: var(--lime); }
@media (max-width: 820px) { .work-card, .work-card.span6 { grid-column: span 6; } }
@media (max-width: 560px) { .work-card, .work-card.span6 { grid-column: span 12; } }

/* ---------- testimonials ---------- */
.tcard { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px,3vw,40px); background: #fff; box-shadow: var(--card-shadow); display: flex; flex-direction: column; gap: 22px; }
.tcard p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem,1.8vw,1.5rem); line-height: 1.3; letter-spacing: -.02em; color: var(--cream); }
.tcard .who { font-family: var(--font-mono); font-size: .76rem; color: var(--cream-dim); }
.tcard .who b { color: var(--lime); font-weight: 700; }
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 860px) { .tgrid { grid-template-columns: 1fr; } }
.stars { color: var(--lime); letter-spacing: 2px; }

/* ---------- blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .posts { grid-template-columns: 1fr; } }
.post { border: 1px solid var(--line); border-radius: var(--r); padding: 26px; background: #fff; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--card-shadow); transition: transform .5s var(--ease), border-color .4s, box-shadow .4s; min-height: 240px; }
.post:hover { transform: translateY(-5px); border-color: rgba(255,127,0,.45); box-shadow: 0 24px 50px -30px rgba(0,0,0,.22); }
.post .cat { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--lime); font-weight: 700; }
.post h3 { font-size: 1.22rem; line-height: 1.15; }
.post p { color: var(--cream-dim); font-size: .94rem; margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: 24px; padding: clamp(40px, 6vw, 84px); background: var(--cream); color: #fff; overflow: hidden; }
.cta-band .eyebrow { color: var(--lime); }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 5rem); position: relative; color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.7); }
.cta-band::before { content: ""; position: absolute; right: -8%; top: -50%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(255,127,0,.35), transparent 60%); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; color: var(--cream); font-family: var(--font-body); font-size: 1rem; transition: border-color .3s, background .3s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime); background: #fff; }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row .k { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); min-width: 96px; }
.info-row a:hover { color: var(--lime); }
.info-row a, .info-row span { font-size: 1.05rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(50px,7vw,90px) 36px; background: var(--ink-2); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr; gap: 30px; } }
.foot-top h2 { font-size: clamp(2rem,5vw,3.4rem); }
.foot-brand .logo { height: 34px; width: auto; }
.foot-col h4 { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cream-dim); margin-bottom: 16px; font-weight: 400; }
.foot-col a { display: block; padding: 6px 0; color: var(--cream-dim); transition: color .25s; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: .72rem; color: var(--cream-dim); }

/* ---------- article / blog post prose ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article > .lead { font-size: clamp(1.15rem,1.8vw,1.35rem); color: var(--cream-dim); margin-bottom: 1.6em; line-height: 1.6; }
.article p { font-size: 1.08rem; line-height: 1.78; color: var(--cream); margin-bottom: 1.2em; }
.article h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 1.7em 0 .55em; }
.article h3 { font-size: 1.25rem; margin: 1.4em 0 .4em; }
.article ul, .article ol { margin: 0 0 1.3em 1.1em; display: grid; gap: .55em; }
.article li { font-size: 1.06rem; line-height: 1.6; color: var(--cream); padding-left: .2em; }
.article li::marker { color: var(--lime); }
.article strong { color: var(--cream); font-weight: 700; }
.article blockquote { border-left: 3px solid var(--lime); padding-left: 22px; margin: 1.6em 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.3; color: var(--cream); }
.article-meta { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 22px; }

/* ---------- page hero (inner pages) ---------- */
.phero { padding-top: 150px; padding-bottom: 40px; position: relative; }
.phero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }

/* reveal on scroll — gated behind .js so no-JS users & crawlers always see content */
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* floating whatsapp */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: var(--lime); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(255,127,0,.5); transition: transform .4s var(--ease); }
.wa:hover { transform: scale(1.08) rotate(-6deg); }
.wa svg { width: 26px; height: 26px; }

/* ---------- video hero ---------- */
.hero { color: #fff; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #100f0c; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-media iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  border: 0; pointer-events: none; opacity: .55; }
/* transparent shield over the YouTube iframe so its player controls never appear/catch the cursor */
.hero-shield { position: absolute; inset: 0; z-index: 2; background: transparent; cursor: default; }
/* animated backdrop (behind the video; visible while YouTube loads or if it's blocked) */
.hero-anim { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-anim::before, .hero-anim::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); }
.hero-anim::before { width: 60vw; height: 60vw; top: -22%; right: -12%; background: radial-gradient(circle, rgba(255,127,0,.40), transparent 62%); animation: heroDrift1 15s ease-in-out infinite alternate; }
.hero-anim::after { width: 48vw; height: 48vw; bottom: -26%; left: -8%; background: radial-gradient(circle, rgba(255,150,30,.26), transparent 62%); animation: heroDrift2 19s ease-in-out infinite alternate; }
@keyframes heroDrift1 { to { transform: translate(-10%, 12%) scale(1.18); } }
@keyframes heroDrift2 { to { transform: translate(12%, -10%) scale(1.12); } }
.hero-media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(16,15,12,.45), rgba(16,15,12,.82)),
              radial-gradient(60vw 60vw at 82% -12%, rgba(255,127,0,.22), transparent 60%); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero .btn--ghost { border-color: rgba(255,255,255,.32); color:#fff; }
.hero .btn--ghost:hover { background:#fff; color: var(--cream); border-color:#fff; }
.hero .hero-grid-bg, .hero .hero-glow { display:none; }

/* ---------- header logo / dark-hero toggle ---------- */
.brand .logo--white { display: none; }
.site-header.scrolled .brand .logo--dark { display:block; }
.site-header.scrolled .brand .logo--white { display:none; }
@media (min-width: 981px) {
  body.dark-hero .site-header:not(.scrolled) .brand .logo--dark { display:none; }
  body.dark-hero .site-header:not(.scrolled) .brand .logo--white { display:block; }
  body.dark-hero .site-header:not(.scrolled) .nav a.navlink { color: rgba(255,255,255,.82); }
  body.dark-hero .site-header:not(.scrolled) .nav a.navlink:hover,
  body.dark-hero .site-header:not(.scrolled) .nav a.navlink[aria-current="page"] { color:#fff; background: rgba(255,255,255,.14); }
}

/* ---------- photo banner hero (About etc.) ---------- */
.page-banner { position: relative; min-height: 58vh; display: flex; align-items: flex-end; padding-block: 150px 56px; overflow: hidden; background: #100f0c; }
.page-banner .banner-media { position: absolute; inset: 0; z-index: 0; }
.page-banner .banner-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-banner .banner-media.empty { background: linear-gradient(120deg,#221d16,#100f0c); }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,15,12,.30), rgba(16,15,12,.82)), radial-gradient(50vw 50vw at 82% -10%, rgba(255,127,0,.18), transparent 60%); }
.page-banner .wrap { position: relative; z-index: 2; width: 100%; }
.page-banner h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-banner .eyebrow { color: var(--lime); }
.page-banner .lead { color: rgba(255,255,255,.84); }

/* chips sitting on a dark photo banner */
.page-banner ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.page-banner ul li { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; padding: .5em .85em; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.10); }
/* clickable category filter chips */
.filter li { cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.page-banner .filter li:hover { background: rgba(255,255,255,.22); color: #fff; }
.page-banner .filter li.active { background: var(--lime); border-color: var(--lime); color: var(--on-orange); font-weight: 700; }

/* ---------- clean stat row (airy, no boxed grid) ---------- */
.statrow { display: grid; grid-template-columns: repeat(3, 1fr); }
.statrow .s { padding: 4px clamp(18px,3vw,44px); border-left: 1px solid var(--line); }
.statrow .s:first-child { border-left: none; padding-left: 0; }
.statrow .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem,5.5vw,4.4rem); line-height: 1; letter-spacing: -.04em; color: var(--cream); }
.statrow .n .u { color: var(--lime); }
.statrow .l { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream-dim); margin-top: 14px; }
@media (max-width: 680px) { .statrow { grid-template-columns: 1fr; } .statrow .s { border-left: none; padding-left: 0; padding-block: 22px; border-top: 1px solid var(--line); } .statrow .s:first-child { border-top: none; } }

/* ---------- text + media split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split.rev > .media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.rev > .media { order: 0; } }
.media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--ink-2); box-shadow: var(--card-shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media .ph { display: none; }
.media.empty { display: grid; place-items: center; background: repeating-linear-gradient(45deg,#f3eee4,#f3eee4 12px,#efe8dc 12px,#efe8dc 24px); }
.media.empty img { display: none; }
.media.empty .ph { display: block; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream-dim); }
.media.wide { aspect-ratio: 21/8; }

/* ---------- solar / case-study photo gallery ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-slot { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--ink-2); box-shadow: var(--card-shadow); }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-slot .ph { display: none; }
.photo-slot.empty img { display: none; }
.photo-slot.empty { display: grid; place-items: center; background: repeating-linear-gradient(45deg,#f3eee4,#f3eee4 12px,#efe8dc 12px,#efe8dc 24px); }
.photo-slot.empty .ph { display: block; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream-dim); }

/* ---------- chips / category labels / featured post ---------- */
.chips li, .phero ul li { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; padding: .5em .85em; border: 1px solid var(--line); border-radius: 100px; color: var(--cream-dim); background: #fff; cursor: default; }
.chips li:first-child { background: var(--cream); color: #fff; border-color: var(--cream); }
.cat { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--lime); font-weight: 700; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px,3vw,44px); box-shadow: var(--card-shadow); transition: transform .5s var(--ease), box-shadow .4s; color: var(--cream); }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -30px rgba(30,25,15,.32); }
.feat-card .more:hover { text-decoration: underline; }

/* ---------- process grid (5 steps) ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
@media (max-width: 560px) { .proc-grid { grid-template-columns: 1fr; } }

/* ---------- problem -> solution linked rows ---------- */
.ps-list { margin-top: 8px; }
.ps-row { display: grid; grid-template-columns: 1fr 44px 1fr; gap: 16px; align-items: center; padding: 18px clamp(12px,2vw,22px); border-radius: 14px; border-top: 1px solid var(--line); transition: background .35s var(--ease), box-shadow .35s, border-color .35s; }
.ps-row:first-child { border-top: none; }
.ps-row:hover { background: #fff; box-shadow: var(--card-shadow); border-color: transparent; }
.ps-cell { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; line-height: 1.45; }
.ps-cell .ic { flex: none; font-weight: 800; }
.ps-problem { color: var(--cream); }
.ps-problem .ic { color: #cf5a3c; }
.ps-solution { color: var(--cream); font-weight: 500; }
.ps-solution .ic { color: var(--lime); }
.ps-cell .hl { color: var(--lime); font-weight: 800; }
.ps-arrow { justify-self: center; color: var(--lime); font-size: 1.3rem; transition: transform .35s var(--ease); }
.ps-row:hover .ps-arrow { transform: translateX(5px); }
@media (max-width: 760px) {
  .ps-row { grid-template-columns: 1fr; gap: 8px; }
  .ps-arrow { justify-self: start; transform: rotate(90deg); }
  .ps-row:hover .ps-arrow { transform: rotate(90deg) translateX(5px); }
}

/* ---------- problem/solution titled cards ---------- */
.ps-cards { display: grid; gap: 14px; margin-top: 8px; }
.ps-card { border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: var(--card-shadow); padding: clamp(20px,2.6vw,30px); transition: transform .4s var(--ease), box-shadow .4s; }
.ps-card:hover { transform: translateY(-3px); }
.ps-card-title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.ps-card-title .n { font-family: var(--font-mono); font-size: .7rem; color: var(--lime); border: 1px solid var(--line); border-radius: 8px; padding: .35em .6em; }
.ps-card-body { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 16px; align-items: center; }
.ps-bad, .ps-good { display: flex; gap: 10px; align-items: flex-start; font-size: 1rem; line-height: 1.45; margin: 0; color: var(--cream); }
.ps-bad .ic { color: #cf5a3c; font-weight: 800; flex: none; }
.ps-good { font-weight: 500; }
.ps-good .ic { color: var(--lime); font-weight: 800; flex: none; }
.ps-card .hl { color: var(--lime); font-weight: 800; }
.ps-card .ps-arrow { justify-self: center; color: var(--lime); font-size: 1.25rem; transition: transform .4s var(--ease); }
.ps-card:hover .ps-arrow { transform: translateX(5px); }
@media (max-width: 760px) { .ps-card-body { grid-template-columns: 1fr; gap: 10px; } .ps-card .ps-arrow { justify-self: start; transform: rotate(90deg); } .ps-card:hover .ps-arrow { transform: rotate(90deg) translateX(5px); } }

/* ---------- case-study result metrics ---------- */
.result-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .result-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .result-stats { grid-template-columns: 1fr; } }
.rstat { border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: var(--card-shadow); padding: clamp(22px,2.5vw,30px); }
.rbig { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem,2.3vw,2rem); line-height: 1.06; letter-spacing: -.03em; color: var(--cream); }
.rbig .to { color: var(--cream-dim); font-weight: 400; margin: 0 .12em; }
.rbig .aft { color: var(--lime); }
.rlbl { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-dim); margin-top: 14px; }

/* ---------- boss dashboard payoff ---------- */
.boss-band { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,56px); align-items: center; background: var(--cream); color: #fff; border-radius: 24px; padding: clamp(32px,5vw,60px); position: relative; overflow: hidden; }
.boss-band::after { content: ""; position: absolute; right: -8%; top: -40%; width: 45%; height: 180%; background: radial-gradient(circle, rgba(255,127,0,.30), transparent 60%); }
.boss-band > * { position: relative; z-index: 1; }
.boss-band .eyebrow { color: var(--lime); }
.boss-band h3 { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin: 14px 0 14px; }
.boss-band p { color: rgba(255,255,255,.72); }
@media (max-width: 820px) { .boss-band { grid-template-columns: 1fr; } }
.dash { background: #0f0e0b; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; box-shadow: 0 34px 64px -34px rgba(0,0,0,.65); }
.dash-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .92rem; color: rgba(255,255,255,.75); }
.dash-row:last-child { border-bottom: none; }
.dash-row b { font-family: var(--font-display); font-weight: 800; color: #fff; }
.dash-row b.ok { color: var(--lime); }
.dash-bar { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.dash-bar span { font-size: .92rem; color: rgba(255,255,255,.75); display: block; margin-bottom: 9px; }
.dash-bar .bar { height: 8px; border-radius: 5px; background: rgba(255,255,255,.1); overflow: hidden; }
.dash-bar .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--lime), #ffb060); border-radius: 5px; }
.dash-head { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); padding-bottom: 13px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
.badge { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; padding: .42em .75em; border-radius: 100px; font-weight: 700; }
.badge.in { background: rgba(255,255,255,.10); color: rgba(255,255,255,.7); }
.badge.auto { background: rgba(255,127,0,.16); color: var(--lime); border: 1px solid rgba(255,127,0,.38); }
.badge.auto::before { content: "⚡"; font-size: .9em; }

/* ---------- before/after example ---------- */
.problem-card { border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px,3vw,40px); background: #fff; box-shadow: var(--card-shadow); }
.solution-card { position: relative; overflow: hidden; border-radius: var(--r); padding: clamp(26px,3vw,40px); background: var(--cream); color: #fff; }
.solution-card > * { position: relative; z-index: 1; }
.solution-card::after { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 80% at 100% 0, rgba(255,127,0,.28), transparent 60%); }
.checklist { list-style: none; display: grid; gap: 13px; margin-top: 20px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--cream-dim); font-size: 1rem; line-height: 1.45; }
.checklist li::before { content: "✓"; color: var(--lime); font-weight: 800; flex: none; }
.checklist.bad li::before { content: "✕"; color: #cf5a3c; }
.solution-card .checklist li { color: rgba(255,255,255,.85); }

/* ---------- AI robot (Wall-E style) patrolling a rail ---------- */
.robot-scene { position: relative; width: 100%; max-width: 440px; height: 210px; justify-self: end; }
@media (max-width: 860px) { .robot-scene { display: none; } }
.r-rail { position: absolute; left: 0; right: 0; bottom: 44px; height: 3px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 16px, transparent 16px 30px); }
.r-rail::after { content: ""; position: absolute; left: 4%; right: 4%; bottom: -16px; height: 34px;
  background: radial-gradient(ellipse at center, rgba(255,127,0,.10), transparent 70%); }
.robot { position: absolute; bottom: 47px; left: 2%; width: 76px; height: 112px; animation: roWander 26s ease-in-out infinite; }
.r-tracks { position: absolute; bottom: 0; left: 0; width: 76px; height: 22px; background: #29251e; border-radius: 9px;
  display: flex; align-items: center; justify-content: space-around; padding: 0 7px; box-shadow: 0 7px 14px -6px rgba(0,0,0,.35); }
.r-tracks i { width: 11px; height: 11px; border-radius: 50%; background: #5b5346; border: 2px solid #6f6656; animation: roRoll 1.1s linear infinite; }
.r-bob { position: absolute; bottom: 18px; left: 50%; margin-left: -38px; width: 76px; height: 84px; animation: roBob 1.4s ease-in-out infinite; }
.r-bob > * { position: absolute; left: 50%; transform: translateX(-50%); }
.r-body { bottom: 0; width: 54px; height: 42px; background: linear-gradient(180deg,#403a2f,#2c2820); border: 2px solid #ff7f00; border-radius: 11px; }
.r-body::after { content: ""; position: absolute; left: 50%; top: 9px; transform: translateX(-50%); width: 26px; height: 5px; border-radius: 3px; background: rgba(255,127,0,.7); box-shadow: 0 10px 0 -1px rgba(255,255,255,.14); }
.r-neck { bottom: 40px; width: 9px; height: 12px; background: #2c2820; }
.r-head { bottom: 48px; width: 46px; height: 30px; background: linear-gradient(180deg,#4a4332,#352f24); border: 2px solid #ff7f00; border-radius: 13px 13px 7px 7px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.r-eye { width: 12px; height: 12px; border-radius: 50%; background: #fff; position: relative; overflow: hidden; animation: roBlink 4.2s infinite; }
.r-eye::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: #ff7f00; }
.r-tool { position: absolute; bottom: 96px; left: 50%; margin-left: 4px; font-size: 17px; animation: roFix 2.2s ease-in-out infinite; transform-origin: bottom left; }
/* wander between machines, NO flip (robot faces its right where the machines sit), pausing to fix */
@keyframes roWander {
  0%   { left: 6%; }
  5%   { left: 6%; }
  17%  { left: 44%; }
  28%  { left: 44%; }
  40%  { left: 14%; }
  51%  { left: 14%; }
  64%  { left: 72%; }
  76%  { left: 72%; }
  100% { left: 6%; }
}

/* ---------- robot band (before Services) + BIG machines to fix ---------- */
.robot-band { position: relative; height: 196px; margin: 4px 0 30px; }
/* hide only the unused legacy bands on mobile; the team band scales down instead (see below) */
@media (max-width: 680px) { .robot-band:not(.robot-band-team) { display: none; } }
.machine { position: absolute; bottom: 44px; transform: translateX(-50%); }
.m-tower { position: relative; width: 64px; height: 96px; background: linear-gradient(180deg,#3a352c,#201d17); border: 2px solid #4a443a; border-radius: 9px; box-shadow: 0 16px 28px -14px rgba(0,0,0,.5); }
.m-light { position: absolute; top: 9px; right: 9px; width: 8px; height: 8px; border-radius: 50%; background: #ff7f00; box-shadow: 0 0 9px #ff7f00; animation: roLight 1.5s ease-in-out infinite; }
.m-vent { position: absolute; bottom: 12px; left: 10px; right: 10px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.08); box-shadow: 0 8px 0 rgba(255,255,255,.06), 0 16px 0 rgba(255,255,255,.05); }
.m-gear { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border-radius: 50%; border: 12px dashed #6f6656; animation: spin 5s linear infinite; }
.m-gear::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #201d17; border: 2px solid #4a443a; }
.m-dial { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: #15130f; border: 2px solid #5a5246; }
.m-needle { position: absolute; bottom: 50%; left: 50%; width: 3px; height: 18px; background: #ff7f00; border-radius: 2px; transform-origin: bottom center; animation: roNeedle 2.3s ease-in-out infinite; }
.m-cyl { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 22px; height: 56px; background: #15130f; border: 2px solid #5a5246; border-radius: 5px; overflow: hidden; }
.m-piston { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); width: 13px; height: 32px; background: linear-gradient(180deg,#ff7f00,#7a3d00); border-radius: 3px; animation: roPiston 1.1s ease-in-out infinite; }

/* robot arm + wrench (the hands that fix) — always reaching to the right */
.r-arm { position: absolute; bottom: 34px; left: calc(50% + 17px); width: 24px; height: 6px; background: #3a352c; border: 1.5px solid #ff7f00; border-radius: 4px; transform-origin: left center; animation: roArm 1.1s ease-in-out infinite; z-index: 2; }
.r-arm::after { content: ""; position: absolute; right: -5px; top: -4px; width: 9px; height: 14px; background: #ff7f00; border-radius: 2px; }
.r-spark { position: absolute; bottom: 46px; left: calc(50% + 46px); width: 11px; height: 11px; opacity: 0; animation: roSparkle 1.1s ease-in-out infinite; z-index: 3; }
.r-spark::before, .r-spark::after { content: ""; position: absolute; inset: 0; background: #ffc15e; border-radius: 1px; box-shadow: 0 0 9px #ffb84d; }
.r-spark::after { transform: rotate(45deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes roLight { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes roNeedle { 0%,100% { transform: translateX(-50%) rotate(-34deg); } 50% { transform: translateX(-50%) rotate(34deg); } }
@keyframes roPiston { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes roArm { 0%,100% { transform: rotate(-15deg); } 50% { transform: rotate(15deg); } }
@keyframes roSparkle { 0%,55%,100% { opacity: 0; transform: scale(.4); } 65% { opacity: 1; transform: scale(1.1) rotate(20deg); } 82% { opacity: .5; transform: scale(.7); } }

/* ---------- alt line: real 3D robot IMAGE rolling on the rail ---------- */
.robot-band-img .robot-img-wrap { position: absolute; bottom: 42px; left: 2%; animation: roWander 26s ease-in-out infinite; }
.robot-img { width: 124px; height: auto; display: block; animation: roFloat 2.6s ease-in-out infinite; filter: drop-shadow(0 14px 16px rgba(0,0,0,.18)); }
@keyframes roFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-7px) rotate(-1.6deg); } }

/* team robots under each About team card */
.svc--team { display: flex; flex-direction: column; }
.team-robot { width: 134px; max-width: 56%; height: auto; align-self: center; margin: 24px auto 0; animation: roFloat 3.4s ease-in-out infinite; }
.svc--team:nth-child(2) .team-robot { animation-delay: .6s; }
.svc--team:nth-child(3) .team-robot { animation-delay: 1.2s; }

/* ---------- team line: one 3D robot fixing each machine (no wandering) ---------- */
.robot-band-team { height: 180px; }
/* mobile: keep the robots visible by scaling the whole scene down to fit */
@media (max-width: 680px) {
  .robot-band-team { height: 124px; margin: 0 0 18px; transform: scale(.62); transform-origin: center bottom; }
}
@media (max-width: 380px) {
  .robot-band-team { height: 108px; transform: scale(.52); }
}
.fix-pair { position: absolute; bottom: 44px; transform: translateX(-50%); display: flex; align-items: flex-end; gap: 0; }
.fix-robot { width: 92px; height: auto; display: block; margin-right: -8px; margin-bottom: -8px; animation: bobIdle 3s ease-in-out infinite; }
.fix-spark { position: absolute; left: 76px; bottom: 58px; width: 12px; height: 12px; opacity: 0; animation: roSparkle 1.4s ease-in-out infinite; z-index: 3; }
.fix-spark::before, .fix-spark::after { content: ""; position: absolute; inset: 0; background: #ffc15e; border-radius: 1px; box-shadow: 0 0 9px #ffb84d; }
.fix-spark::after { transform: rotate(45deg); }
.fix-pair:nth-child(3) .fix-robot { animation-delay: .5s; }
.fix-pair:nth-child(4) .fix-robot { animation-delay: 1s; }
.fix-pair:nth-child(3) .fix-spark { animation-delay: .5s; }
.fix-pair:nth-child(4) .fix-spark { animation-delay: 1s; }
@keyframes bobIdle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes roBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes roBlink { 0%,93%,100% { transform: scaleY(1); } 96% { transform: scaleY(.12); } }
@keyframes roRoll { 0% { transform: scale(1); } 50% { transform: scale(.78); } 100% { transform: scale(1); } }
@keyframes roFix { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(18deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
