/* BESONG Digital static website
   Brand: BESONG Digital
   No external UI framework or font dependency. */

:root {
  --navy-950: #030b1d;
  --navy-900: #06152f;
  --navy-850: #081b3c;
  --navy-800: #0b2452;
  --navy-700: #12366e;
  --blue-700: #0047d8;
  --blue-600: #0062ff;
  --blue-500: #1675ff;
  --blue-100: #e7f0ff;
  --orange-600: #f34a14;
  --orange-500: #ff5b1f;
  --orange-100: #fff0e8;
  --purple-700: #46149a;
  --purple-600: #5a21b5;
  --purple-500: #7436d5;
  --purple-100: #f2eaff;
  --teal-700: #006f79;
  --teal-600: #008891;
  --teal-100: #e6f7f7;
  --ink: #111827;
  --muted: #5b6475;
  --muted-2: #7b8494;
  --line: #dfe5ee;
  --line-dark: rgba(255,255,255,.13);
  --paper: #ffffff;
  --surface: #f6f8fc;
  --surface-2: #edf2f8;
  --success: #0f9d6e;
  --warning: #d88400;
  --danger: #c93d42;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(9, 28, 65, .08);
  --shadow-md: 0 24px 70px rgba(4, 20, 48, .14);
  --shadow-lg: 0 40px 110px rgba(3, 15, 39, .25);
  --container: 1560px;
  --header-height: 82px;
  --transition: 220ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--purple-600); }

h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6.8vw, 6.7rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.05rem; }
p { color: var(--muted); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(calc(100% - 32px), 860px); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: clip; }
.section--compact { padding: 78px 0; }
.section--soft { background: var(--surface); }
.section--dark { color: #fff; background: var(--navy-900); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #bdc8dc; }
.section--gradient {
  background:
    radial-gradient(circle at 20% 15%, rgba(0,98,255,.14), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(255,91,31,.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
}
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stack { display: grid; gap: 20px; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), var(--purple-600));
  border-radius: 999px;
}
.section--dark .eyebrow { color: #8fb7ff; }
.section-title { max-width: 930px; margin-bottom: 52px; }
.section-title h2 { margin-bottom: 18px; }
.section-title p { max-width: 760px; margin-bottom: 0; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.section-title--split {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 56px;
  max-width: none;
  align-items: end;
}
.section-title--split p { justify-self: end; }
.kicker { color: var(--orange-500); font-weight: 760; }
.lead { color: #42506a; font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.65; }
.text-gradient {
  color: transparent;
  background: linear-gradient(105deg, var(--orange-500), var(--purple-600) 50%, var(--blue-600));
  background-clip: text;
  -webkit-background-clip: text;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  overflow: hidden;
  color: #fff;
  font-weight: 760;
  line-height: 1;
  background: linear-gradient(105deg, var(--orange-500), var(--purple-600) 50%, var(--blue-600));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(75, 32, 170, .22);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.28) 48%, transparent 74%);
  transform: translateX(-125%);
  transition: transform 550ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(75, 32, 170, .28); }
.btn:hover::after { transform: translateX(125%); }
.btn:active { transform: translateY(0); }
.btn--secondary { color: var(--navy-900); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost { color: var(--navy-900); background: transparent; border: 1px solid rgba(6,21,47,.22); box-shadow: none; }
.btn--ghost-light { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.24); box-shadow: none; }
.btn--sm { min-height: 42px; padding-inline: 18px; font-size: .92rem; }
.btn .icon { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover .icon { transform: translateX(3px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 760;
}
.text-link .icon { width: 17px; height: 17px; transition: transform var(--transition); }
.text-link:hover .icon { transform: translateX(4px); }

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon--solid { fill: currentColor; stroke: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(10,31,67,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(4,22,52,.09); background: rgba(255,255,255,.98); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; width: 212px; align-items: center; flex: 0 0 auto; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-link,
.nav-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  color: #29364d;
  font-size: .92rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link[aria-current="page"],
.nav-button:hover,
.nav-item.is-open .nav-button { color: var(--blue-600); background: var(--blue-100); }
.nav-button .icon { width: 15px; height: 15px; transition: transform var(--transition); }
.nav-item.is-open .nav-button .icon { transform: rotate(180deg); }
.nav-item { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(780px, 86vw);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255,255,255,.99);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.mega-link { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; padding: 12px; border-radius: 14px; transition: background var(--transition); }
.mega-link:hover { background: var(--surface); }
.mega-link__icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 12px; }
.mega-link__icon .icon { width: 21px; height: 21px; }
.mega-link strong { display: block; color: var(--navy-900); font-size: .93rem; }
.mega-link small { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.mega-menu__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding: 14px 12px 0; border-top: 1px solid var(--line); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  width: 21px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 10px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle { position: relative; }
.menu-toggle span { position: absolute; }
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: rotate(45deg); }
.nav-open .menu-toggle::after { transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: min(840px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
  justify-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  text-align: left;
}
.hero__media { position: absolute; inset: 0; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; }
.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3,11,29,.98) 0%, rgba(3,11,29,.90) 38%, rgba(3,11,29,.42) 68%, rgba(3,11,29,.18) 100%),
    linear-gradient(0deg, rgba(3,11,29,.78) 0%, transparent 48%);
}
.hero__glow { position: absolute; inset: 0; pointer-events: none; }
.hero__glow::before, .hero__glow::after { position: absolute; content: ""; border-radius: 50%; filter: blur(70px); }
.hero__glow::before { width: 380px; height: 380px; left: -160px; bottom: -140px; background: rgba(88,33,181,.42); }
.hero__glow::after { width: 300px; height: 300px; left: 36%; bottom: -180px; background: rgba(255,91,31,.24); }
.hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--container));
  max-width: none;
  margin-inline: auto;
  padding: 100px 0 120px;
  text-align: left;
  justify-self: stretch;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #d9e6ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero__badge::before { width: 8px; height: 8px; content: ""; background: var(--orange-500); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,91,31,.15); }
.hero h1 { max-width: 860px; margin: 0 0 24px; color: #fff; text-align: left; }
.hero__lead { max-width: 700px; margin: 0 0 34px; color: #d1daea; font-size: clamp(1.12rem, 2vw, 1.38rem); text-align: left; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 14px; }
.hero__proof { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 28px; margin-top: 48px; }
.hero__proof-item { display: flex; align-items: center; gap: 12px; color: #e7edf7; }
.hero__proof-icon { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 11px; }
.hero__proof-icon .icon { width: 18px; height: 18px; }
.hero__proof strong { display: block; font-size: .93rem; line-height: 1.2; }
.hero__proof small { color: #9eabc2; font-size: .78rem; }
.scroll-cue { position: absolute; z-index: 3; right: 32px; bottom: 28px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue::after { width: 42px; height: 1px; content: ""; background: currentColor; }

.capability-strip { position: relative; z-index: 4; color: #fff; background: linear-gradient(90deg, var(--purple-700), var(--blue-700)); }
.capability-strip__inner { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; overflow-x: auto; scrollbar-width: none; }
.capability-strip__inner::-webkit-scrollbar { display: none; }
.capability-strip__item { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-size: .86rem; font-weight: 760; letter-spacing: .025em; white-space: nowrap; }
.capability-strip__item::before { width: 6px; height: 6px; content: ""; background: var(--orange-500); border-radius: 50%; }

/* Media and intro */
.media-card { position: relative; min-height: 520px; overflow: hidden; background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media-card picture, .media-card img { width: 100%; height: 100%; }
.media-card img { object-fit: cover; }
.media-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(3,11,29,.54), transparent 54%); }
.media-card__caption { position: absolute; z-index: 2; right: 26px; bottom: 24px; left: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: #fff; }
.media-card__caption strong { display: block; font-size: 1.18rem; }
.media-card__caption span { color: #d6deec; font-size: .9rem; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.intro-copy h2 { margin-bottom: 22px; }
.intro-copy p { font-size: 1.08rem; }
.check-list { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #2d3a52; font-weight: 650; }
.check-list__icon { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; color: #fff; background: linear-gradient(135deg,var(--orange-500),var(--purple-600)); border-radius: 50%; }
.check-list__icon .icon { width: 13px; height: 13px; stroke-width: 2.5; }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 12px 42px rgba(4,22,52,.055); }
.service-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 44px rgba(4,22,52,.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; content: ""; background: var(--accent,linear-gradient(90deg,var(--orange-500),var(--blue-600))); }
.service-card::after { position: absolute; top: -90px; right: -85px; width: 180px; height: 180px; content: ""; background: var(--glow,rgba(0,98,255,.08)); border-radius: 50%; transition: transform 400ms ease; }
.service-card:hover { transform: translateY(-8px); border-color: #cbd6e7; box-shadow: 0 24px 70px rgba(4,22,52,.13); }
.service-card:hover::after { transform: scale(1.4); }
.service-card__icon { position: relative; z-index: 1; display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 38px; color: var(--icon-color,var(--blue-600)); background: var(--icon-bg,var(--blue-100)); border-radius: 15px; }
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card h3 { position: relative; z-index: 1; margin-bottom: 13px; font-size: 1.28rem; }
.service-card p { position: relative; z-index: 1; margin-bottom: 24px; font-size: .94rem; }
.service-card .text-link { margin-top: auto; }
.service-card--orange { --accent: linear-gradient(90deg,#ff5b1f,#ff905c); --glow: rgba(255,91,31,.11); --icon-color: var(--orange-600); --icon-bg: var(--orange-100); }
.service-card--purple { --accent: linear-gradient(90deg,#5a21b5,#9369e5); --glow: rgba(88,33,181,.10); --icon-color: var(--purple-600); --icon-bg: var(--purple-100); }
.service-card--teal { --accent: linear-gradient(90deg,#007b88,#20b8b0); --glow: rgba(0,136,145,.10); --icon-color: var(--teal-700); --icon-bg: var(--teal-100); }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-auto-rows: 300px; gap: 20px; }
.work-card { position: relative; display: block; overflow: hidden; color: #fff; background: var(--navy-900); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.work-card--wide { grid-column: span 7; grid-row: span 2; }
.work-card--tall { grid-column: span 5; grid-row: span 2; }
.work-card--third { grid-column: span 4; }
.work-card picture, .work-card img { width: 100%; height: 100%; }
.work-card img { object-fit: cover; transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease; }
.work-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(3,11,29,.9), rgba(3,11,29,.08) 62%); }
.work-card__content { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; }
.work-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 11px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; color: #fff; font-size: .69rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; backdrop-filter: blur(8px); }
.work-card h3 { margin: 0; color: #fff; font-size: clamp(1.35rem, 2.2vw, 2.2rem); }
.work-card p { max-width: 560px; margin: 8px 0 0; color: #d2dbea; }
.work-card__arrow { position: absolute; z-index: 3; top: 22px; right: 22px; display: grid; width: 44px; height: 44px; place-items: center; color: #fff; background: rgba(3,11,29,.35); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; backdrop-filter: blur(8px); transition: background var(--transition), transform var(--transition); }
.work-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
.work-card:hover .work-card__arrow { background: var(--orange-500); transform: rotate(45deg); }

/* Stats / proof */
.stat-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); }
.stat { padding: 34px; background: #fff; }
.stat strong { display: block; margin-bottom: 6px; color: var(--navy-900); font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.05em; line-height: 1; }
.stat span { color: var(--muted); font-weight: 680; }

/* Process */
.process { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 0; }
.process-step { position: relative; padding: 0 18px 20px 0; }
.process-step:not(:last-child)::after { position: absolute; top: 25px; right: 0; left: 52px; height: 1px; content: ""; background: linear-gradient(90deg,var(--blue-500),rgba(0,98,255,.12)); }
.process-step__number { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 22px; color: #fff; font-size: .82rem; font-weight: 820; background: linear-gradient(135deg,var(--purple-600),var(--blue-600)); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,98,255,.25); }
.process-step h3 { margin-bottom: 10px; font-size: 1.08rem; }
.process-step p { margin: 0; font-size: .88rem; }
.section--dark .process-step__number { border-color: var(--navy-900); }
.section--dark .process-step:not(:last-child)::after { background: linear-gradient(90deg,var(--blue-500),rgba(255,255,255,.12)); }

/* Why / value */
.value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.value-card { padding: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.value-card__icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 26px; color: #fff; background: linear-gradient(135deg,var(--orange-500),var(--purple-600)); border-radius: 14px; }
.value-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { margin-bottom: 0; font-size: .92rem; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.industry-card { position: relative; min-height: 220px; padding: 26px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform var(--transition), box-shadow var(--transition); }
.industry-card::after { position: absolute; right: -30px; bottom: -45px; width: 130px; height: 130px; content: ""; background: radial-gradient(circle,rgba(0,98,255,.16),transparent 68%); }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.industry-card__icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 34px; color: var(--blue-600); background: var(--blue-100); border-radius: 13px; }
.industry-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.industry-card p { margin: 0; font-size: .87rem; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.insight-card { display: flex; min-height: 370px; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.insight-card__visual { position: relative; min-height: 185px; overflow: hidden; background: var(--navy-900); }
.insight-card__visual::before, .insight-card__visual::after { position: absolute; content: ""; border-radius: 50%; filter: blur(4px); }
.insight-card__visual::before { width: 230px; height: 230px; top: -85px; left: -40px; background: linear-gradient(135deg,var(--purple-600),var(--blue-600)); opacity: .86; }
.insight-card__visual::after { width: 190px; height: 190px; right: -55px; bottom: -95px; background: linear-gradient(135deg,var(--orange-500),#ffc19f); opacity: .84; }
.insight-card__glyph { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.93); }
.insight-card__glyph .icon { width: 68px; height: 68px; stroke-width: 1.1; }
.insight-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.insight-card__category { margin-bottom: 12px; color: var(--purple-600); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.insight-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.insight-card p { margin-bottom: 22px; font-size: .9rem; }
.insight-card .text-link { margin-top: auto; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.faq-item summary { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; color: var(--navy-900); font-weight: 760; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; content: "+"; color: var(--blue-600); font-size: 1.35rem; background: var(--blue-100); border-radius: 50%; transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__content { padding: 0 22px 22px; }
.faq-item__content p { margin: 0; }

/* CTA */
.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 60px; overflow: hidden; color: #fff; background: var(--navy-900); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cta-panel::before, .cta-panel::after { position: absolute; content: ""; border-radius: 50%; filter: blur(10px); }
.cta-panel::before { width: 430px; height: 430px; top: -250px; right: 12%; background: radial-gradient(circle,rgba(0,98,255,.55),transparent 67%); }
.cta-panel::after { width: 350px; height: 350px; right: -150px; bottom: -220px; background: radial-gradient(circle,rgba(255,91,31,.55),transparent 67%); }
.cta-panel__content, .cta-panel__actions { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 16px; color: #fff; font-size: clamp(2.2rem,4.4vw,4.2rem); }
.cta-panel p { max-width: 700px; margin-bottom: 0; color: #c7d2e7; font-size: 1.1rem; }
.cta-panel__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

/* Page hero */
.page-hero { position: relative; min-height: 540px; display: grid; align-items: center; justify-items: stretch; overflow: hidden; color: #fff; background: var(--navy-900); text-align: left; }
.page-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 20% 25%,rgba(88,33,181,.42),transparent 32%), radial-gradient(circle at 86% 70%,rgba(0,98,255,.34),transparent 33%), radial-gradient(circle at 65% 15%,rgba(255,91,31,.18),transparent 20%); }
.page-hero__mesh { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg,#000,transparent 82%); }
.page-hero__content { position: relative; z-index: 2; width: min(calc(100% - 32px), var(--container)); max-width: none; margin-inline: auto; padding: 96px 0; text-align: left; justify-self: stretch; }
.page-hero .eyebrow { color: #a9c6ff; }
.page-hero h1 { max-width: 900px; margin: 0 0 22px; color: #fff; font-size: clamp(3rem,6vw,6.1rem); text-align: left; }
.page-hero p { max-width: 760px; margin: 0 0 30px; color: #c7d1e3; font-size: clamp(1.1rem,1.8vw,1.34rem); text-align: left; }
.page-hero--image { min-height: 620px; }
.page-hero--image .page-hero__image { position: absolute; inset: 0; }
.page-hero--image .page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image .page-hero__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(3,11,29,.96),rgba(3,11,29,.75) 52%,rgba(3,11,29,.25)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 24px; color: #9fb0ca; font-size: .8rem; font-weight: 680; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { opacity: .55; }

/* Content layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--top { align-items: start; }
.prose h2 { margin-bottom: 22px; }
.prose h3 { margin-top: 38px; margin-bottom: 14px; }
.prose p { font-size: 1.04rem; }
.prose ul { display: grid; gap: 10px; padding-left: 20px; color: var(--muted); }
.prose blockquote { margin: 32px 0; padding: 24px 28px; color: var(--navy-900); font-size: 1.25rem; font-weight: 700; background: var(--surface); border-left: 4px solid var(--orange-500); border-radius: 0 16px 16px 0; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pill-list li { padding: 8px 12px; color: var(--navy-800); font-size: .84rem; font-weight: 700; background: var(--blue-100); border-radius: 999px; }

.feature-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; padding: 17px; color: #2d3a52; font-weight: 650; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.feature-list .icon { flex: 0 0 20px; width: 20px; height: 20px; color: var(--blue-600); }

.service-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.service-hero-card { position: relative; min-height: 390px; padding: 38px; overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); backdrop-filter: blur(10px); }
.service-hero-card::before { position: absolute; width: 300px; height: 300px; top: -180px; right: -100px; content: ""; background: radial-gradient(circle,rgba(0,98,255,.8),transparent 65%); }
.service-hero-card::after { position: absolute; width: 300px; height: 300px; left: -160px; bottom: -200px; content: ""; background: radial-gradient(circle,rgba(255,91,31,.72),transparent 65%); }
.mock-window { position: relative; z-index: 1; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; box-shadow: 0 26px 80px rgba(0,0,0,.3); }
.mock-window__top { display: flex; height: 38px; align-items: center; gap: 7px; padding: 0 14px; background: #eef2f7; }
.mock-window__dot { width: 8px; height: 8px; background: #cbd3df; border-radius: 50%; }
.mock-window__body { min-height: 240px; padding: 26px; color: var(--navy-900); background: linear-gradient(135deg,#fff,#eef3fb); }
.mock-window__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.mock-panel { min-height: 90px; padding: 14px; background: #fff; border: 1px solid #dde5f0; border-radius: 12px; box-shadow: 0 8px 22px rgba(6,21,47,.07); }
.mock-panel--dark { color: #fff; background: linear-gradient(135deg,var(--navy-800),var(--navy-950)); border-color: transparent; }
.mock-line { height: 8px; margin-bottom: 9px; background: #dfe6f1; border-radius: 999px; }
.mock-line--short { width: 54%; }
.mock-line--blue { background: linear-gradient(90deg,var(--blue-600),var(--purple-600)); }
.mock-bars { display: flex; height: 90px; align-items: end; gap: 7px; padding-top: 16px; }
.mock-bars span { flex: 1; min-width: 5px; background: linear-gradient(180deg,var(--orange-500),var(--purple-600)); border-radius: 5px 5px 1px 1px; }

.list-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.list-card__number { display: inline-flex; margin-bottom: 20px; color: var(--blue-600); font-size: .78rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.list-card h3 { margin-bottom: 12px; }
.list-card p { margin: 0; }

.package-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.package-card { display: flex; min-height: 520px; flex-direction: column; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.package-card--featured { color: #fff; background: linear-gradient(160deg,var(--navy-800),var(--navy-950)); border-color: rgba(255,255,255,.12); transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.package-card--featured h3, .package-card--featured h4 { color: #fff; }
.package-card--featured p { color: #c6d1e4; }
.package-card__label { align-self: flex-start; margin-bottom: 22px; padding: 6px 10px; color: var(--purple-700); font-size: .7rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; background: var(--purple-100); border-radius: 999px; }
.package-card--featured .package-card__label { color: #fff; background: rgba(255,255,255,.12); }
.package-card h3 { margin-bottom: 12px; font-size: 1.48rem; }
.package-card__list { display: grid; gap: 12px; margin: 26px 0 28px; padding: 0; list-style: none; }
.package-card__list li { display: flex; gap: 10px; color: var(--muted); font-size: .92rem; }
.package-card--featured .package-card__list li { color: #d4ddef; }
.package-card__list .icon { flex: 0 0 18px; width: 18px; height: 18px; color: var(--success); }
.package-card .btn, .package-card .text-link { margin-top: auto; align-self: flex-start; }

/* Filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.filter-btn { min-height: 42px; padding: 0 16px; color: #41506a; font-size: .85rem; font-weight: 750; background: #fff; border: 1px solid var(--line); border-radius: 999px; }
.filter-btn:hover, .filter-btn.is-active { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.portfolio-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform var(--transition), opacity var(--transition); }
.portfolio-card[hidden] { display: none; }
.portfolio-card__image { height: 330px; overflow: hidden; }
.portfolio-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.portfolio-card__body { padding: 26px; }
.portfolio-card__body h3 { margin-bottom: 10px; }
.portfolio-card__body p { margin-bottom: 18px; }
.portfolio-card:hover { transform: translateY(-5px); }
.portfolio-card:hover img { transform: scale(1.045); }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .86rem; font-weight: 740; }
.field input, .field textarea, .field select {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccd6e5;
  border-radius: 12px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 150px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(0,98,255,.12); }
.field .error { color: var(--danger); font-size: .78rem; }
.form-note { margin-top: 14px; color: var(--muted); font-size: .82rem; }
.form-status { display: none; margin-top: 18px; padding: 16px 18px; color: #075d42; background: #e7f8f1; border: 1px solid #b9e7d5; border-radius: 12px; }
.form-status.is-visible { display: block; }
.contact-panel { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-methods { display: grid; gap: 14px; }
.contact-method { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 15px; background: var(--surface); border-radius: 14px; }
.contact-method__icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--blue-600); background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.contact-method strong { display: block; color: var(--navy-900); font-size: .9rem; }
.contact-method span, .contact-method a { color: var(--muted); font-size: .86rem; }

/* Careers */
.role-grid { display: grid; gap: 14px; }
.role-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.role-card h3 { margin-bottom: 6px; font-size: 1.12rem; }
.role-card p { margin: 0; font-size: .88rem; }

/* Footer */
.site-footer { position: relative; color: #fff; background: var(--navy-950); overflow: hidden; }
.site-footer::before { position: absolute; width: 700px; height: 700px; right: -320px; bottom: -420px; content: ""; background: radial-gradient(circle,rgba(0,98,255,.22),transparent 68%); }
.footer-top { position: relative; display: grid; grid-template-columns: 1.25fr 2fr; gap: 80px; padding: 86px 0 64px; }
.footer-brand { max-width: 420px; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-logo__mark { width: 52px; height: 52px; }
.footer-logo__text strong { display: block; color: #fff; font-size: 1.35rem; letter-spacing: .06em; line-height: 1; }
.footer-logo__text span { color: #9f79e7; font-size: .76rem; font-weight: 780; letter-spacing: .28em; }
.footer-brand p { color: #aeb9cc; }
.footer-social { display: flex; gap: 10px; margin-top: 26px; }
.footer-social a { display: grid; width: 40px; height: 40px; place-items: center; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transition: background var(--transition), transform var(--transition); }
.footer-social a:hover { background: var(--blue-600); transform: translateY(-2px); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; }
.footer-column h3 { margin-bottom: 18px; color: #fff; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-column a { color: #aeb9cc; font-size: .9rem; transition: color var(--transition); }
.footer-column a:hover { color: #fff; }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #8997ae; font-size: .8rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: #8997ae; font-size: .8rem; }
.footer-legal a:hover { color: #fff; }

.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; width: 46px; height: 46px; place-items: center; color: #fff; opacity: 0; visibility: hidden; background: var(--navy-900); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: var(--shadow-md); transform: translateY(10px); transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-600); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Utility */
.hide { display: none !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mt-36 { margin-top: 36px !important; }
.center { text-align: center; }
.center .section-title { margin-inline: auto; }
.center .section-title p { margin-inline: auto; }

@media (max-width: 1120px) {
  :root { --header-height: 74px; }
  .header-actions .btn { display: none; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .industry-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process { grid-template-columns: repeat(3,minmax(0,1fr)); row-gap: 32px; }
  .process-step:nth-child(3)::after { display: none; }
  .work-grid { grid-auto-rows: 280px; }
  .work-card--wide, .work-card--tall { grid-column: span 6; grid-row: span 2; }
  .work-card--third { grid-column: span 6; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .package-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .package-card--featured { transform: none; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 86px 0; }
  .section-title--split, .intro-grid, .split, .service-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .section-title--split p { justify-self: start; }
  .media-card { min-height: 430px; }
  .value-grid, .insight-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr; padding: 44px; }
  .cta-panel__actions { justify-content: flex-start; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2,minmax(0,1fr)); }

  .menu-toggle { display: grid; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 18px 20px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-list { display: grid; align-items: stretch; gap: 5px; }
  .nav-link, .nav-button { width: 100%; min-height: 50px; justify-content: space-between; padding-inline: 16px; border-radius: 12px; }
  .nav-item { position: static; }
  .mega-menu { position: static; width: auto; max-height: 0; padding: 0; overflow: hidden; opacity: 1; visibility: visible; background: transparent; border: 0; box-shadow: none; transform: none; transition: max-height 320ms ease, padding 320ms ease; }
  .nav-item.is-open .mega-menu { max-height: 900px; padding: 8px 0 12px; transform: none; }
  .mega-menu__grid { grid-template-columns: 1fr; }
  .mega-link { grid-template-columns: 38px 1fr; padding: 10px 14px 10px 24px; }
  .mega-link__icon { width: 38px; height: 38px; }
  .mega-menu__footer { padding-left: 24px; padding-right: 14px; }
}

@media (max-width: 680px) {
  :root { --header-height: 68px; }
  h1 { font-size: clamp(2.75rem,13vw,4.5rem); }
  h2 { font-size: clamp(2.15rem,10vw,3.4rem); }
  .brand { width: 172px; }
  .header-inner { gap: 12px; }
  .hero { min-height: 720px; }
  .hero__content { padding: 76px 0 100px; }
  .hero__media img { object-position: 62% center; }
  .hero__media::after { background: linear-gradient(90deg,rgba(3,11,29,.98),rgba(3,11,29,.84) 75%,rgba(3,11,29,.60)), linear-gradient(0deg,rgba(3,11,29,.85),transparent 50%); }
  .hero__proof { display: grid; gap: 16px; }
  .scroll-cue { display: none; }
  .capability-strip__inner { min-height: 62px; }
  .service-grid, .value-grid, .industry-grid, .insight-grid, .portfolio-grid, .package-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .work-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .work-card--wide, .work-card--tall, .work-card--third { grid-column: auto; grid-row: auto; }
  .work-card__content { right: 18px; bottom: 18px; left: 18px; }
  .process { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; column-gap: 16px; padding: 0; }
  .process-step:not(:last-child)::after { top: 48px; bottom: -24px; left: 25px; width: 1px; height: auto; background: linear-gradient(var(--blue-500),rgba(0,98,255,.12)); }
  .process-step:nth-child(3)::after { display: block; }
  .process-step__number { grid-row: 1 / span 2; margin: 0; }
  .process-step h3 { align-self: end; margin: 0 0 6px; }
  .process-step p { padding-bottom: 30px; }
  .feature-list, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-panel { padding: 34px 24px; border-radius: 22px; }
  .page-hero { min-height: 480px; }
  .page-hero__content { padding: 78px 0; }
  .page-hero--image { min-height: 560px; }
  .service-hero-card { min-height: 320px; padding: 22px; }
  .mock-window__grid { grid-template-columns: 1fr; }
  .mock-panel:nth-child(2) { display: none; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .role-card { grid-template-columns: 1fr; }
  .package-card { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
