/* =========================================================
   ABPE WORKS — COMPANY PROFILE V3
   GLOBAL STYLESHEET

   Advance Beyond Possibilities Everyday
   ========================================================= */


/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {

  --font-display:
    "Space Grotesk",
    sans-serif;

  --font-body:
    "Manrope",
    sans-serif;

  /* Brand */
  --abpe-blue: #075cff;
  --abpe-blue-dark: #0046d7;
  --abpe-cyan: #00c8ff;
  --abpe-navy: #06172f;

  /* Background */
  --bg-main: #f7f9fc;
  --bg-soft: #eef3f8;
  --bg-muted: #e8eef5;
  --bg-white: #ffffff;
  --bg-dark: #06172f;

  /* Typography */
  --text-heading: #071426;
  --text-body: #344256;
  --text-muted: #718096;
  --text-soft: #94a3b8;
  --text-white: #ffffff;

  /* Lines */
  --line: #dbe4ee;
  --line-soft: #e9eff5;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* States */
  --success: #19a663;
  --warning: #ffad33;
  --danger: #e84545;

  /* Layout */
  --container: 1680px;
  --container-small: 1180px;

  --page-inline: clamp(20px, 3.5vw, 64px);

  --section-space:
    clamp(96px, 11vw, 190px);

  --section-space-small:
    clamp(72px, 8vw, 130px);

  /* Typography Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;

  --fs-display-sm:
    clamp(2.5rem, 5vw, 5rem);

  --fs-display:
    clamp(3.4rem, 7.5vw, 8.5rem);

  --fs-display-xl:
    clamp(4.5rem, 10vw, 11rem);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-soft:
    0 12px 40px rgba(7, 20, 38, 0.06);

  --shadow-hover:
    0 24px 70px rgba(7, 20, 38, 0.10);

  /* Motion */
  --ease-out:
    cubic-bezier(0.22, 1, 0.36, 1);

  --ease-smooth:
    cubic-bezier(0.76, 0, 0.24, 1);

  --transition-fast:
    220ms var(--ease-out);

  --transition:
    420ms var(--ease-out);

  --transition-slow:
    800ms var(--ease-out);

  /* Navbar */
  --navbar-height: 92px;

  /* Z-index */
  --z-base: 1;
  --z-content: 5;
  --z-navbar: 100;
  --z-menu: 200;
  --z-modal: 500;
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 24px);
  scrollbar-gutter: stable;
  background: var(--bg-main);
}

body {
  min-height: 100vh;

  background:
    var(--bg-main);

  color:
    var(--text-body);

  font-family:
    var(--font-body);

  font-size:
    var(--fs-base);

  line-height: 1.55;

  font-weight: 400;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
}

section {
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--navbar-height) + 24px);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
textarea {
  border-radius: 0;
}

::selection {
  color: #ffffff;
  background: var(--abpe-blue);
}


/* =========================================================
   03. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background:
    var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background:
    #b9c5d4;

  border-radius:
    var(--radius-pill);

  border:
    2px solid var(--bg-soft);
}

::-webkit-scrollbar-thumb:hover {
  background:
    var(--abpe-blue);
}


/* =========================================================
   04. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color:
    var(--text-heading);

  font-family:
    var(--font-display);

  font-weight:
    500;

  line-height:
    0.98;

  letter-spacing:
    -0.045em;
}

p {
  color:
    var(--text-body);
}

.display-xl,
.display,
.display-sm,
.heading-xl,
.heading-lg,
.heading-md {
  font-family:
    var(--font-display);
}

.display-xl {
  font-size:
    var(--fs-display-xl);

  line-height:
    0.84;

  letter-spacing:
    -0.065em;

  font-weight:
    400;
}

.display {
  font-size:
    var(--fs-display);

  line-height:
    0.9;

  letter-spacing:
    -0.06em;

  font-weight:
    400;
}

.display-sm {
  font-size:
    var(--fs-display-sm);

  line-height:
    0.94;

  letter-spacing:
    -0.05em;

  font-weight:
    400;
}

.heading-xl {
  font-size:
    clamp(2.6rem, 5vw, 5.8rem);

  line-height:
    0.98;
}

.heading-lg {
  font-size:
    clamp(2rem, 3.7vw, 4.2rem);

  line-height:
    1;
}

.heading-md {
  font-size:
    clamp(1.6rem, 2.4vw, 2.8rem);

  line-height:
    1.05;
}

.lead {
  max-width:
    760px;

  font-size:
    clamp(1.05rem, 1.45vw, 1.4rem);

  line-height:
    1.55;

  color:
    var(--text-body);
}

.copy {
  max-width:
    640px;

  font-size:
    1rem;

  line-height:
    1.65;
}

.text-muted {
  color:
    var(--text-muted);
}

.text-blue {
  color:
    var(--abpe-blue);
}

.text-cyan {
  color:
    var(--abpe-cyan);
}

.text-white {
  color:
    #ffffff;
}

.text-uppercase {
  text-transform:
    uppercase;
}

.eyebrow {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  color:
    var(--text-muted);

  font-size:
    0.76rem;

  font-weight:
    600;

  letter-spacing:
    0.1em;

  line-height:
    1;

  text-transform:
    uppercase;
}

.eyebrow::before {
  content:
    "";

  width:
    24px;

  height:
    1px;

  background:
    currentColor;
}


/* =========================================================
   05. LAYOUT
   ========================================================= */

.container {
  width:
    min(calc(100% - (var(--page-inline) * 2)),
      var(--container));

  margin-inline:
    auto;
}

.container-small {
  width:
    min(calc(100% - (var(--page-inline) * 2)),
      var(--container-small));

  margin-inline:
    auto;
}

.section {
  padding-block:
    var(--section-space);
}

.section-small {
  padding-block:
    var(--section-space-small);
}

.section-white {
  background:
    var(--bg-white);
}

.section-soft {
  background:
    var(--bg-soft);
}

.section-dark {
  background:
    var(--bg-dark);

  color:
    #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color:
    inherit;
}

.full-bleed {
  width:
    100vw;

  margin-left:
    calc(50% - 50vw);
}

.grid {
  display:
    grid;
}

.flex {
  display:
    flex;
}

.relative {
  position:
    relative;
}

.overflow-hidden {
  overflow:
    hidden;
}


/* =========================================================
   06. GLOBAL LINES / DIVIDERS
   ========================================================= */

.divider {
  width:
    100%;

  height:
    1px;

  background:
    var(--line);
}

.divider-dark {
  background:
    var(--line-dark);
}


/* =========================================================
   07. LINK STYLES
   ========================================================= */

.text-link {
  position:
    relative;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    8px;

  color:
    var(--text-heading);

  font-size:
    0.9rem;

  font-weight:
    500;

  transition:
    color var(--transition-fast);
}

.text-link::after {
  content:
    "";

  position:
    absolute;

  left:
    0;

  bottom:
    -5px;

  width:
    100%;

  height:
    1px;

  background:
    currentColor;

  transform:
    scaleX(0);

  transform-origin:
    right;

  transition:
    transform var(--transition);
}

.text-link:hover {
  color:
    var(--abpe-blue);
}

.text-link:hover::after {
  transform:
    scaleX(1);

  transform-origin:
    left;
}


/* =========================================================
   08. BUTTONS
   ========================================================= */

.btn {
  position:
    relative;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    12px;

  min-height:
    54px;

  padding:
    0 24px;

  border-radius:
    var(--radius-pill);

  font-size:
    0.88rem;

  font-weight:
    600;

  letter-spacing:
    -0.01em;

  overflow:
    hidden;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform:
    translateY(-2px);
}

.btn-primary {
  color:
    #ffffff;

  background:
    var(--abpe-blue);

  border:
    1px solid var(--abpe-blue);
}

.btn-primary:hover {
  background:
    var(--abpe-blue-dark);

  border-color:
    var(--abpe-blue-dark);
}

.btn-outline {
  color:
    var(--text-heading);

  background:
    transparent;

  border:
    1px solid var(--line);
}

.btn-outline:hover {
  color:
    var(--abpe-blue);

  border-color:
    var(--abpe-blue);
}

.btn-dark {
  color:
    #ffffff;

  background:
    var(--abpe-navy);
}

.btn-arrow {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    54px;

  height:
    54px;

  flex:
    0 0 54px;

  border-radius:
    50%;

  color:
    #ffffff;

  background:
    var(--text-heading);

  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.btn-arrow:hover {
  color:
    #ffffff;

  background:
    var(--abpe-blue);

  transform:
    rotate(45deg);
}


/* =========================================================
   09. MEDIA / IMAGE
   ========================================================= */

.media {
  position:
    relative;

  overflow:
    hidden;
}

.media img,
.media video {
  width:
    100%;

  height:
    100%;

  object-fit:
    cover;
}

.media-parallax img {
  height:
    115%;

  transform:
    translate3d(0, -7%, 0);

  will-change:
    transform;
}

.image-cover {
  width:
    100%;

  height:
    100%;

  object-fit:
    cover;
}


/* =========================================================
   10. NAVBAR
   ========================================================= */

/*
   Sticky ownership lives on .site-header.
   Do not mix this with position: fixed on .navbar.
   This keeps desktop/tablet/mobile state predictable.
*/

.site-header {
  position:
    sticky;

  top:
    0;

  z-index:
    var(--z-navbar);

  width:
    100%;

  isolation:
    isolate;
}

.navbar {
  position:
    relative;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  width:
    100%;

  min-height:
    var(--navbar-height);

  padding-inline:
    var(--page-inline);

  background:
    rgba(247, 249, 252, 0.98);

  border-bottom:
    1px solid transparent;

  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

/*
   JS only needs to toggle .is-scrolled.
   Sticky positioning is handled by .site-header.
*/
.navbar.is-scrolled {
  background:
    rgba(247, 249, 252, 0.92);

  border-bottom:
    1px solid rgba(219, 228, 238, 0.82);

  box-shadow:
    0 10px 30px rgba(7, 20, 38, 0.045);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);
}

.nav-brand {
  position:
    relative;

  z-index:
    calc(var(--z-menu) + 5);

  display:
    flex;

  align-items:
    center;

  flex:
    0 0 auto;
}

.nav-brand img {
  display:
    block;

  width:
    auto;

  height:
    80px;

  object-fit:
    contain;

  transition:
    height var(--transition),
    transform var(--transition);
}

.nav-menu {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    clamp(24px, 2.5vw, 46px);

  min-width:
    0;
}

.nav-item {
  position:
    relative;
}

.nav-link {
  position:
    relative;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    7px;

  padding:
    12px 0;

  color:
    var(--text-heading);

  font-size:
    0.82rem;

  font-weight:
    500;

  letter-spacing:
    -0.01em;

  white-space:
    nowrap;

  transition:
    color var(--transition-fast);
}

.nav-link::after {
  content:
    "";

  position:
    absolute;

  left:
    0;

  bottom:
    7px;

  width:
    100%;

  height:
    1px;

  background:
    var(--abpe-blue);

  transform:
    scaleX(0);

  transform-origin:
    right;

  transition:
    transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color:
    var(--abpe-blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform:
    scaleX(1);

  transform-origin:
    left;
}

.nav-chevron {
  width:
    12px;

  height:
    12px;

  flex:
    0 0 auto;

  transition:
    transform var(--transition);
}

.nav-item.is-open .nav-chevron {
  transform:
    rotate(180deg);
}

/* =========================================================
   11. NAVBAR ACTION
   ========================================================= */

.nav-actions {
  position:
    relative;

  z-index:
    calc(var(--z-menu) + 5);

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  flex:
    0 0 auto;
}

.nav-cta {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  min-height:
    44px;

  padding:
    0 18px;

  border:
    1px solid var(--text-heading);

  border-radius:
    var(--radius-pill);

  color:
    var(--text-heading);

  font-size:
    0.78rem;

  font-weight:
    600;

  white-space:
    nowrap;

  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.nav-cta:hover {
  color:
    #ffffff;

  background:
    var(--abpe-blue);

  border-color:
    var(--abpe-blue);
}


/* =========================================================
   12. MEGA MENU
   ========================================================= */

/*
   Desktop mega menu is fixed to the viewport instead of
   being positioned from the Services <li>. This prevents
   horizontal overflow and keeps it aligned while the header
   stays sticky.
*/

.mega-menu {
  position:
    fixed;

  top:
    var(--navbar-height);

  left:
    50%;

  z-index:
    var(--z-menu);

  width:
    min(
      calc(100vw - (var(--page-inline) * 2)),
      1180px
    );

  max-height:
    calc(100dvh - var(--navbar-height) - 24px);

  padding:
    30px;

  background:
    rgba(255, 255, 255, 0.98);

  border:
    1px solid var(--line);

  box-shadow:
    var(--shadow-soft);

  overflow-x:
    hidden;

  overflow-y:
    auto;

  overscroll-behavior:
    contain;

  opacity:
    0;

  visibility:
    hidden;

  pointer-events:
    none;

  transform:
    translate3d(-50%, 14px, 0);

  transform-origin:
    top center;

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition);
}

.nav-item.is-open .mega-menu {
  opacity:
    1;

  visibility:
    visible;

  pointer-events:
    auto;

  transform:
    translate3d(-50%, 0, 0);
}

.mega-menu-grid {
  display:
    grid;

  grid-template-columns:
    minmax(220px, 0.8fr)
    minmax(0, 2fr);

  gap:
    54px;
}

.mega-menu-intro {
  display:
    flex;

  flex-direction:
    column;

  justify-content:
    space-between;

  min-height:
    330px;

  padding-right:
    30px;

  border-right:
    1px solid var(--line);
}

.mega-menu-title {
  color:
    var(--text-heading);

  font-size:
    clamp(1.8rem, 2.6vw, 3rem);

  line-height:
    0.95;

  letter-spacing:
    -0.05em;
}

.mega-menu-copy {
  max-width:
    300px;

  color:
    var(--text-muted);

  font-size:
    0.88rem;

  line-height:
    1.6;
}

.mega-services {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.mega-service {
  position:
    relative;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    18px;

  min-height:
    76px;

  padding:
    0 18px;

  border-bottom:
    1px solid var(--line-soft);

  transition:
    color var(--transition),
    background var(--transition);
}

.mega-service:hover {
  color:
    var(--abpe-blue);

  background:
    var(--bg-soft);
}

.mega-service-name {
  min-width:
    0;

  font-size:
    0.92rem;

  font-weight:
    500;
}

.mega-service-number {
  flex:
    0 0 auto;

  color:
    var(--text-soft);

  font-size:
    0.7rem;
}

.mega-service-arrow {
  flex:
    0 0 auto;

  font-size:
    1rem;

  transition:
    transform var(--transition);
}

.mega-service:hover .mega-service-arrow {
  transform:
    translate(3px, -3px);
}

.soon-badge {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  margin-left:
    8px;

  padding:
    4px 7px;

  border-radius:
    var(--radius-pill);

  color:
    var(--abpe-blue);

  background:
    rgba(7, 92, 255, 0.08);

  font-size:
    0.58rem;

  font-weight:
    700;

  letter-spacing:
    0.06em;

  text-transform:
    uppercase;
}

/* =========================================================
   13. MOBILE MENU BASE
   ========================================================= */

.nav-toggle {
  position:
    relative;

  z-index:
    calc(var(--z-menu) + 5);

  display:
    none;

  width:
    44px;

  height:
    44px;

  flex:
    0 0 44px;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid var(--line);

  border-radius:
    50%;

  background:
    rgba(255, 255, 255, 0.62);

  -webkit-tap-highlight-color:
    transparent;

  touch-action:
    manipulation;
}

.nav-toggle-lines {
  position:
    relative;

  width:
    18px;

  height:
    12px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content:
    "";

  position:
    absolute;

  left:
    0;

  width:
    100%;

  height:
    1.5px;

  background:
    var(--text-heading);

  transition:
    transform var(--transition),
    top var(--transition);
}

.nav-toggle-lines::before {
  top:
    2px;
}

.nav-toggle-lines::after {
  top:
    9px;
}

.nav-toggle.is-open .nav-toggle-lines::before {
  top:
    6px;

  transform:
    rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-lines::after {
  top:
    6px;

  transform:
    rotate(-45deg);
}


/* =========================================================
   14. GLOBAL PROJECT / CONTENT META
   ========================================================= */

.content-meta {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  padding-top:
    14px;

  color:
    var(--text-muted);

  font-size:
    0.75rem;

  line-height:
    1.4;
}

.content-meta strong {
  color:
    var(--text-heading);

  font-weight:
    500;
}


/* =========================================================
   15. MARQUEE BASE
   ========================================================= */

.marquee {
  position:
    relative;

  width:
    100%;

  overflow:
    hidden;
}

.marquee-track {
  display:
    flex;

  align-items:
    center;

  width:
    max-content;

  will-change:
    transform;
}

.marquee-item {
  flex:
    0 0 auto;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.site-footer {
  position:
    relative;

  background:
    var(--abpe-navy);

  color:
    #ffffff;

  overflow:
    hidden;
}

.footer-accent {
  display:
    grid;

  grid-template-columns:
    1fr 1fr 1fr;

  width:
    100%;

  height:
    4px;
}

.footer-accent span:nth-child(1) {
  background:
    var(--abpe-blue);
}

.footer-accent span:nth-child(2) {
  background:
    var(--abpe-cyan);
}

.footer-accent span:nth-child(3) {
  background:
    #ffffff;
}

.footer-inner {
  padding:
    clamp(70px, 8vw, 130px) var(--page-inline) 28px;
}

.footer-top {
  display:
    grid;

  grid-template-columns:
    minmax(0, 1.7fr) minmax(160px, 0.5fr) minmax(160px, 0.5fr);

  gap:
    clamp(40px, 6vw, 100px);
}

.footer-brand {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    24px;
}

.footer-logo {
  max-width:
    150px;

  filter:
    brightness(0) invert(1);
}

.mega-menu-title,
.footer-statement {
  font-family:
    var(--font-display);
}

.footer-statement {
  max-width:
    720px;

  color:
    #ffffff;

  font-family:
    var(--font-display);

  font-size:
    clamp(2.4rem, 5vw, 6rem);

  font-weight:
    400;

  line-height:
    0.92;

  letter-spacing:
    -0.055em;
}

.footer-column-title {
  margin-bottom:
    24px;

  color:
    rgba(255, 255, 255, 0.42);

  font-size:
    0.68rem;

  font-weight:
    600;

  letter-spacing:
    0.1em;

  text-transform:
    uppercase;
}

.footer-links {
  display:
    flex;

  flex-direction:
    column;

  gap:
    13px;
}

.footer-link {
  width:
    fit-content;

  color:
    rgba(255, 255, 255, 0.86);

  font-size:
    0.88rem;

  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-link:hover {
  color:
    var(--abpe-cyan);

  transform:
    translateX(4px);
}

.footer-bottom {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    30px;

  margin-top:
    clamp(70px, 8vw, 120px);

  padding-top:
    22px;

  border-top:
    1px solid var(--line-dark);

  color:
    rgba(255, 255, 255, 0.50);

  font-size:
    0.68rem;

  line-height:
    1.5;
}

.footer-socials {
  display:
    flex;

  align-items:
    center;

  gap:
    18px;
}


/* =========================================================
   17. REVEAL ANIMATION
   ========================================================= */

[data-reveal] {
  opacity:
    0;

  transform:
    translate3d(0, 40px, 0);

  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

[data-reveal="left"] {
  transform:
    translate3d(-45px, 0, 0);
}

[data-reveal="right"] {
  transform:
    translate3d(45px, 0, 0);
}

[data-reveal="scale"] {
  transform:
    scale(0.96);
}

[data-reveal].is-visible {
  opacity:
    1;

  transform:
    translate3d(0, 0, 0) scale(1);
}

[data-delay="1"] {
  transition-delay:
    100ms;
}

[data-delay="2"] {
  transition-delay:
    200ms;
}

[data-delay="3"] {
  transition-delay:
    300ms;
}

[data-delay="4"] {
  transition-delay:
    400ms;
}

[data-delay="5"] {
  transition-delay:
    500ms;
}


/* =========================================================
   18. IMAGE REVEAL
   ========================================================= */

.image-reveal {
  position:
    relative;

  overflow:
    hidden;
}

.image-reveal::after {
  content:
    "";

  position:
    absolute;

  inset:
    0;

  z-index:
    2;

  background:
    var(--bg-main);

  transform:
    scaleY(1);

  transform-origin:
    bottom;

  transition:
    transform 1.2s var(--ease-smooth);
}

.image-reveal.is-visible::after {
  transform:
    scaleY(0);

  transform-origin:
    top;
}


/* =========================================================
   19. PARALLAX BASE
   ========================================================= */

[data-parallax] {
  will-change:
    transform;
}

.parallax-wrapper {
  position:
    relative;

  overflow:
    hidden;
}


/* =========================================================
   20. HOVER IMAGE ZOOM
   ========================================================= */

.hover-zoom {
  overflow:
    hidden;
}

.hover-zoom img {
  transition:
    transform 1.1s var(--ease-out);
}

.hover-zoom:hover img {
  transform:
    scale(1.035);
}


/* =========================================================
   21. GLOBAL GRADIENT / BRAND DECORATION
   ========================================================= */

.abpe-gradient {
  background:
    linear-gradient(120deg,
      var(--abpe-blue) 0%,
      var(--abpe-cyan) 100%);
}

.abpe-gradient-text {
  color:
    transparent;

  background:
    linear-gradient(120deg,
      var(--abpe-blue),
      var(--abpe-cyan));

  background-clip:
    text;

  -webkit-background-clip:
    text;
}


/* =========================================================
   22. ACCESSIBILITY
   ========================================================= */

.sr-only {
  position:
    absolute;

  width:
    1px;

  height:
    1px;

  padding:
    0;

  margin:
    -1px;

  overflow:
    hidden;

  clip:
    rect(0, 0, 0, 0);

  white-space:
    nowrap;

  border:
    0;
}

:focus-visible {
  outline:
    2px solid var(--abpe-blue);

  outline-offset:
    4px;
}


/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior:
      auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

    scroll-behavior:
      auto !important;
  }

  [data-reveal] {
    opacity:
      1;

    transform:
      none;
  }

  [data-parallax] {
    transform:
      none !important;
  }
}