/* STRICT 3-COLOR: Sky Blue · White · Orange — NO other colors */
:root {
  --b50: #f0f9ff;
  --b100: #e0f2fe;
  --b200: #bae6fd;
  --b300: #7dd3fc;
  --b400: #38bdf8;
  --b500: #0ea5e9;
  --b600: #0284c7;
  --b700: #0369a1;
  --b800: #075985;
  --b900: #0c4a6e;
  --o100: #ffedd5;
  --o300: #fdba74;
  --o500: #f97316;
  --o600: #ea6c10;
  --bg: #fff;
  --bg2: #f0f9ff;
  --sur: #fff;
  --brd: #bae6fd;
  --th: #0c4a6e;
  --tb: #075985;
  --tm: #0284c7;
  --tf: #38bdf8;
  --nav: rgba(255, 255, 255, .97);
  --foot: #0c4a6e;
  --gh: linear-gradient(135deg, #075985 0%, #0284c7 48%, #38bdf8 100%);
  --gb: linear-gradient(135deg, #0369a1, #38bdf8);
  --go: linear-gradient(135deg, #f97316, #fdba74);
  --s1: 0 2px 8px rgba(3, 105, 161, .10);
  --s2: 0 6px 24px rgba(3, 105, 161, .14);
  --s3: 0 16px 48px #f34f36;
  --s4: 0 28px 72px rgba(161, 108, 3, 0.22);
  --r1: 10px;
  --r2: 16px;
  --r3: 22px;
  --r4: 32px;
  --rf: 9999px;
  --ea: cubic-bezier(.4, 0, .2, 1);
  --sp: cubic-bezier(.34, 1.56, .64, 1);
}

[data-theme="dark"] {
  --bg: #041420;
  --bg2: #061c2e;
  --sur: #082038;
  --brd: #0d3255;
  --th: #e0f2fe;
  --tb: #bae6fd;
  --tm: #7dd3fc;
  --tf: #38bdf8;
  --nav: rgba(4, 20, 32, .97);
  --foot: #020d18;
  --b50: #041420;
  --b100: #061c2e;
  --b200: #0d3255;
  --o100: #2a1500;
  --s1: 0 2px 8px rgba(0, 0, 0, .5);
  --s2: 0 6px 24px rgba(0, 0, 0, .55);
  --s3: 0 16px 48px rgba(0, 0, 0, .6);
  --s4: 0 28px 72px rgba(0, 0, 0, .65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: black;
  line-height: 1.75;
  overflow-x: hidden;
  transition: background .3s, color .3s
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--th);
  line-height: 1.2
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
    scroll-behavior: auto !important
  }
}

/* PRELOADER */
#pldr {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--gh);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ea), visibility .6s var(--ea)
}

#pldr.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.pldr-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .22);
  border-top-color: #fff;
  animation: pldrspin .85s linear infinite;
  position: relative
}

.pldr-mark::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 3px solid rgba(249, 115, 22, .25);
  border-bottom-color: var(--o500);
  animation: pldrspin 1.15s linear infinite reverse
}

@keyframes pldrspin {
  to {
    transform: rotate(360deg)
  }
}

/* SCROLL PROGRESS */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--o500), var(--b400));
  z-index: 1200;
  box-shadow: 0 0 12px rgba(249, 115, 22, .55);
  transition: width .08s linear
}

/* CURSOR GLOW (desktop, hero only) */
#cglow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
  will-change: transform
}

@media(max-width:920px) {
  #cglow {
    display: none
  }
}

/* MAGNETIC / RIPPLE BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-22deg);
  transition: left .7s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
  pointer-events: none
}

.btn:hover::before {
  left: 130%
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transform: scale(0);
  animation: rpl .6s ease-out;
  pointer-events: none;
  z-index: 0
}

.btn>*,
.avm>*,
#stt>*,
.tbtn>* {
  position: relative;
  z-index: 1
}

@keyframes rpl {
  to {
    transform: scale(2.6);
    opacity: 0
  }
}

/* Section title animated underline */
.stitle {
  position: relative;
  padding-bottom: 16px
}

.stitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: var(--go);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ea) .15s
}

.ctr .stitle::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0)
}

.sh .stitle::after {
  background: linear-gradient(90deg, var(--o500), var(--b300))
}

.sr.on .stitle::after {
  transform: scaleX(1)
}

.ctr .sr.on .stitle::after {
  transform: translateX(-50%) scaleX(1)
}

/* Nav link underline */
.nls a {
  position: relative
}

.nls a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--b500);
  transition: left .28s var(--ea), right .28s var(--ea)
}

.nls a:hover::after,
.nls a.ac::after {
  left: 16px;
  right: 16px
}

/* tilt-ready cards */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px
}

.sec {
  padding: 96px 0
}

.sec-alt {
  background: var(--bg2)
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--b600);
  background: var(--b100);
  padding: 5px 16px;
  border-radius: var(--rf);
  margin-bottom: 14px;
  transition: transform .3s var(--sp)
}

.sr.on .chip {
  animation: chipin .5s var(--ea) both
}

@keyframes chipin {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

[data-theme="dark"] .chip {
  color: var(--b300)
}

.stitle {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.7px;
  margin-bottom: 10px
}

.ssub {
  font-size: 1rem;
  color: var(--tm);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 60px
}

.ctr {
  text-align: center
}

.ctr .ssub {
  margin: 0 auto 60px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: var(--rf);
  font-size: .88rem;
  font-weight: 600;
  transition: all .3s;
  white-space: nowrap
}

.bor {
  background: var(--go);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249, 115, 22, .36)
}

.bor:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, .50)
}

.bgh {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .44);
  backdrop-filter: blur(10px)
}

.bgh:hover {
  background: rgba(255, 255, 255, .26)
}

.bbl {
  background: var(--gb);
  color: #fff;
  box-shadow: 0 4px 18px rgba(14, 165, 233, .36)
}

.bbl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, .50)
}

/* Reveal */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ea), transform .75s var(--ea)
}

.sr.fl {
  transform: translateX(-40px)
}

.sr.fr {
  transform: translateX(40px)
}

.sr.on {
  opacity: 1;
  transform: none
}

.sr.d1 {
  transition-delay: .08s
}

.sr.d2 {
  transition-delay: .16s
}

.sr.d3 {
  transition-delay: .24s
}

.sr.d4 {
  transition-delay: .32s
}

.sr.d5 {
  transition-delay: .40s
}

.sr.d6 {
  transition-delay: .48s
}

/* Particles */
.ptc {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.pt {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  animation: flt linear infinite
}

@keyframes flt {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .6
  }

  100% {
    transform: translateY(-60px) scale(1.2);
    opacity: 0
  }
}

/* NAVBAR */
#nav {
  position: sticky;
  top: 0;
  z-index: 990;
  background: var(--nav);
  border-bottom: 1px solid var(--brd);
  backdrop-filter: blur(18px)
}

#nav.sc {
  box-shadow: none
}

.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.nl {
  display: flex;
  align-items: center;
  gap: 12px
}

.nl img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 6px
}

.nls {
  display: flex;
  align-items: center;
  gap: 2px
}

.nls a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--tm);
  padding: 7px 13px;
  border-radius: var(--r1);
  transition: all .18s
}

.nls a:hover,
.nls a.ac {
  color: var(--b600);
  background: var(--b100)
}

[data-theme="dark"] .nls a:hover,
[data-theme="dark"] .nls a.ac {
  color: var(--b300);
  background: var(--b100)
}

.nr {
  display: flex;
  align-items: center;
  gap: 10px
}

.tbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--brd);
  color: var(--tm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s var(--sp);
  position: relative;
  overflow: hidden
}

.tbtn:hover {
  background: var(--b500);
  color: #fff;
  border-color: var(--b500);
  transform: rotate(25deg) scale(1.08)
}

.tbtn iconify-icon {
  transition: transform .4s var(--sp)
}

.hm {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r1)
}

.hm span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--th);
  border-radius: 2px;
  transition: all .3s
}

.hm.op span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hm.op span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hm.op span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mn {
  display: none;
  flex-direction: column;
  position: sticky;
  top: 72px;
  z-index: 989;
  background: var(--nav);
  border-bottom: 1px solid var(--brd);
  padding: 14px 28px 22px;
  gap: 3px
}

.mn.op {
  display: flex
}

.mn a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--tm);
  padding: 12px 16px;
  border-radius: var(--r1);
  transition: all .18s
}

.mn a:hover {
  color: var(--b600);
  background: var(--b100)
}

/* HERO */
#hero {
  min-height: calc(100vh - 72px);
  background: var(--gh);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.hlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gd 20s linear infinite
}

@keyframes gd {
  to {
    background-position: 60px 60px
  }
}

.hglow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  animation: pls 6s ease-in-out infinite
}

@keyframes pls {

  0%,
  100% {
    transform: scale(1);
    opacity: .8
  }

  50% {
    transform: scale(1.15);
    opacity: .4
  }
}

.hg {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: center;
  padding: 88px 0 100px
}

.hew {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 7px 18px;
  border-radius: var(--rf);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  animation: fsd .8s var(--ea) both, pulseGlow 2.6s ease-in-out infinite 1.5s
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, .12)
  }
}

.hew iconify-icon {
  animation: swing 3.4s ease-in-out infinite
}

@keyframes swing {

  0%,
  100% {
    transform: rotate(0)
  }

  25% {
    transform: rotate(-10deg)
  }

  75% {
    transform: rotate(10deg)
  }
}

@keyframes fsd {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.h-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
  animation: fsd .7s var(--ea) both
}

.hn {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 8px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, .18);
  animation: fsu .9s .15s var(--ea) both
}

.hn .hl {
  color: #f97316
}

@keyframes fsu {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hr {
  font-size: 1.04rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .80);
  margin-bottom: 3px;
  animation: fsu .9s .25s var(--ea) both
}

.hco {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 26px;
  animation: fsu .9s .32s var(--ea) both
}

.htg {
  font-size: 1rem;
  color: rgba(255, 255, 255, .76);
  line-height: 1.86;
  max-width: 500px;
  margin-bottom: 40px;
  animation: fsu .9s .40s var(--ea) both
}

.hcta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fsu .9s .48s var(--ea) both
}

.hpills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fsu .9s .56s var(--ea) both
}

.hpill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--rf);
  padding: 8px 18px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .90);
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all .2s
}

.hpill:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-2px)
}

.hpill iconify-icon {
  color: #f97316;
  font-size: 1rem
}

.hvis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: fsu .9s .3s var(--ea) both;
  transition: transform .35s var(--ea)
}

/* Photo ring */
.pfr {
  position: relative;
  width: 480px;
  height: 480px
}

.pr1 {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .26);
  animation: sp1 22s linear infinite
}

.pr1::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--o500);
  border-radius: 50%;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  box-shadow: 0 0 14px var(--o500)
}

@keyframes sp1 {
  to {
    transform: rotate(360deg)
  }
}

.pr2 {
  display: none
}

.pci {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .30);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28), inset 0 0 0 2px rgba(255, 255, 255, .12);
  background: var(--b700);
  transition: transform .5s var(--ea), box-shadow .5s var(--ea)
}

.pci:hover {
  transform: scale(1.035);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .34), inset 0 0 0 2px rgba(255, 255, 255, .2), 0 0 0 10px rgba(249, 115, 22, .14)
}

.pci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ea)
}

.pci:hover img {
  transform: scale(1.06)
}

.pfr:hover .pr1 {
  animation-duration: 9s
}

/* Hero name/title shown in content column on desktop, hidden on mobile */
.hn-desktop {
  display: block
}

.hn-mobile {
  display: none
}

.chrow {
  display: none
}

.chc {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r2);
  padding: 16px 12px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all .3s var(--sp)
}

.chc:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2)
}

.chv {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 4px
}

.chl {
  font-size: .68rem;
  opacity: .82
}

/* ABOUT */
.ag {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ag-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.ab p {
  font-size: .97rem;
  color: var(--tb);
  line-height: 1.9;
  margin-bottom: 18px
}

.mg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0
}

.mt {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: var(--r1);
  padding: 13px 16px;
  transition: transform .3s var(--ea), box-shadow .3s
}

.mt:hover {
  transform: translateY(-3px);
  box-shadow: var(--s2)
}

[data-theme="dark"] .mt {
  background: var(--sur)
}

.ml {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--tf);
  margin-bottom: 3px
}

.mv {
  font-size: .9rem;
  font-weight: 700;
  color: var(--th)
}

.tr {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.tg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--b700);
  background: var(--b100);
  padding: 7px 15px;
  border-radius: var(--rf);
  transition: all .25s var(--sp)
}

.tg:hover {
  background: var(--b500);
  color: #fff;
  transform: translateY(-2px)
}

[data-theme="dark"] .tg {
  color: var(--b300)
}

.ac {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 22px 24px;
  box-shadow: var(--s1);
  transition: all .35s var(--ea)
}

.ac:hover {
  box-shadow: var(--s3);
  transform: translateX(6px);
  border-color: var(--b300)
}

.aci {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--o100);
  color: var(--o500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform .4s var(--sp), background .3s
}

.ac:hover .aci {
  transform: rotate(-8deg) scale(1.1);
  background: var(--o500);
  color: #fff
}

[data-theme="dark"] .aci {
  color: var(--o500)
}

.acb h4 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 5px
}

.acb p {
  font-size: .84rem;
  color: var(--tm);
  line-height: 1.65
}

/* STATS */
#stats {
  background: var(--gh);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

#stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--o500), var(--b300), var(--o500));
  background-size: 200%;
  animation: ws 4s linear infinite
}

@keyframes ws {
  to {
    background-position: 200%
  }
}

.sh {
  text-align: center;
  margin-bottom: 46px
}

.sh .chip {
  background: rgba(255, 255, 255, .16);
  color: Black;
}

.sh h2 {
  color: #fff;
  margin-bottom: 0
}

.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.sc {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r2);
  padding: 34px 20px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all .35s var(--sp);
  position: relative;
  overflow: hidden
}

.sc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, .12), transparent);
  opacity: 0;
  transition: opacity .3s
}

.sc:hover {
  background: rgba(255, 255, 255, .20);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2)
}

.sc:hover::after {
  opacity: 1
}

.sci {
  font-size: 2.2rem;
  color: #f97316;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform .45s var(--sp)
}

.sc:hover .sci {
  transform: scale(1.18) rotate(-6deg)
}

.scn {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px
}

.scl {
  font-size: .78rem;
  opacity: .84;
  font-weight: 500
}

/* TIMELINE */
.tw {
  position: relative;
  padding-left: 42px
}

.tw::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--b500), var(--b200));
  border-radius: 2px
}

.ti {
  position: relative;
  margin-bottom: 38px
}

.ti:last-child {
  margin-bottom: 0
}

.td {
  position: absolute;
  left: -32px;
  top: 26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--b500);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--b300);
  z-index: 1;
  transition: transform .35s var(--sp)
}

.ti:hover .td {
  transform: scale(1.4);
  box-shadow: 0 0 0 3px var(--b300), 0 0 0 7px rgba(14, 165, 233, .22)
}

.tc {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 28px 32px;
  box-shadow: var(--s1);
  transition: all .35s var(--ea);
  position: relative;
  overflow: hidden
}

.tc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--go);
  transform: scaleY(0);
  transition: transform .35s;
  transform-origin: top
}

.tc:hover {
  box-shadow: var(--s3);
  transform: translateX(6px);
  border-color: var(--b300)
}

.tc:hover::before {
  transform: scaleY(1)
}

.tch {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px
}

.tro {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 2px
}

.tco {
  font-size: .9rem;
  font-weight: 600;
  color: var(--b500)
}

.tdu {
  font-size: .76rem;
  font-weight: 700;
  background: var(--b100);
  color: var(--b700);
  padding: 4px 14px;
  border-radius: var(--rf);
  white-space: nowrap
}

[data-theme="dark"] .tdu {
  color: var(--b300)
}

.tde {
  font-size: .9rem;
  color: var(--tm);
  margin: 10px 0 16px;
  line-height: 1.78
}

.tal {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ta {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .86rem;
  color: var(--tb)
}

.ta iconify-icon {
  color: var(--o500);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0
}

/* SKILLS */
.sl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.sklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ski {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r1);
  padding: 18px 22px;
  transition: box-shadow .3s, transform .3s var(--ea), border-color .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.ski:hover {
  box-shadow: var(--s2);
  transform: translateY(-4px);
  border-color: var(--b300)
}

.skt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px
}

.skn {
  font-size: .9rem;
  font-weight: 600;
  color: var(--th)
}

.skp {
  font-size: .86rem;
  font-weight: 800;
  color: var(--b500)
}

.sktr {
  height: 6px;
  background: var(--b100);
  border-radius: var(--rf);
  overflow: hidden
}

.skf {
  height: 100%;
  background: var(--gb);
  border-radius: var(--rf);
  width: 0;
  position: relative;
  overflow: hidden;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1)
}

.skf::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.2s ease-in-out infinite
}

@keyframes shimmer {
  to {
    transform: translateX(100%)
  }
}

.clist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.ci {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r1);
  padding: 18px 22px;
  transition: all .3s var(--ea);
  height: 100%
}

.ci:hover {
  box-shadow: var(--s2);
  transform: translateX(5px);
  border-color: var(--b300)
}

.cii {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--o100);
  color: var(--o500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform .4s var(--sp), background .3s
}

.ci:hover .cii {
  transform: rotate(-8deg) scale(1.1);
  background: var(--o500);
  color: #fff
}

[data-theme="dark"] .cii {
  color: var(--o500)
}

.cin {
  font-size: .88rem;
  font-weight: 700;
  color: var(--th);
  margin-bottom: 2px
}

.cis {
  font-size: .78rem;
  color: var(--tm)
}

/* AWARDS */
.awg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.awc {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r3);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--s1);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ea)
}

.awc::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ea)
}

.awc:hover {
  box-shadow: var(--s4);
  transform: translateY(-9px)
}

.awc:hover::after {
  transform: scaleX(1)
}

.awy {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--o500);
  background: var(--o100);
  padding: 4px 12px;
  border-radius: var(--rf);
  margin-bottom: 12px
}

.awic {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  margin: 0 auto 18px;
  background: var(--o100);
  color: var(--o500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform .5s var(--sp)
}

.awc:hover .awic {
  transform: rotate(-10deg) scale(1.12)
}

[data-theme="dark"] .awic {
  color: var(--o500)
}

.awt {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px
}

.awd {
  font-size: .84rem;
  color: var(--tm);
  line-height: 1.76
}

/* VISION */
.vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.vc {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r3);
  padding: 36px 30px;
  box-shadow: var(--s1);
  transition: all .4s var(--ea);
  position: relative;
  overflow: hidden
}

.vc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(14, 165, 233, .10), transparent 60%);
  opacity: 0;
  transition: opacity .4s
}

.vc:hover {
  box-shadow: var(--s3);
  transform: translateY(-6px);
  border-color: var(--b300)
}

.vc:hover::before {
  opacity: 1
}

.vn {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--o300);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -4px;
  transition: color .3s, transform .4s var(--sp)
}

.vc:hover .vn {
  color: var(--o500);
  transform: translateY(-3px)
}

.vic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 22px;
  background: var(--gb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform .45s var(--sp)
}

.vc:hover .vic {
  transform: rotate(-8deg) scale(1.08)
}

.vt {
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--b700);
  margin-bottom: 14px
}

[data-theme="dark"] .vt {
  color: var(--b300)
}

.vp {
  font-size: .88rem;
  color: var(--tm);
  line-height: 1.88
}

/* EDUCATION */
.eg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.ec {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r2);
  padding: 26px;
  box-shadow: var(--s1);
  transition: all .35s var(--ea)
}

.ec:hover {
  box-shadow: var(--s3);
  transform: translateY(-4px);
  border-color: var(--b300)
}

.eci {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--o100);
  color: var(--o500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform .4s var(--sp)
}

.ec:hover .eci {
  transform: rotate(-8deg) scale(1.1)
}

[data-theme="dark"] .eci {
  color: var(--o500)
}

.edg {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 3px
}

.eins {
  font-size: .86rem;
  font-weight: 600;
  color: var(--b500);
  margin-bottom: 3px
}

.eyr {
  font-size: .76rem;
  color: var(--tf);
  margin-bottom: 9px
}

.edd {
  font-size: .83rem;
  color: var(--tm);
  line-height: 1.72
}

/* ACTIVISM */
.acg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.acard {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--s1);
  cursor: pointer;
  transition: all .4s var(--ea)
}

.acard:hover {
  box-shadow: var(--s4);
  transform: translateY(-9px)
}

.ath {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--b700)
}

.ath img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.acard:hover .ath img {
  transform: scale(1.08)
}

.ath-fb {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--gh)
}

.aov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 105, 161, .92) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s
}

.acard:hover .aov {
  opacity: 1
}

.avb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .36);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--rf);
  backdrop-filter: blur(8px)
}

.abod {
  padding: 24px
}

.att {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px
}

.ade {
  font-size: .84rem;
  color: var(--tm);
  margin-bottom: 13px;
  line-height: 1.72
}

.aim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--o500);
  background: var(--o100);
  padding: 5px 13px;
  border-radius: var(--rf)
}

[data-theme="dark"] .aim {
  color: var(--b300)
}

/* LIGHTBOX */
#lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px
}

#lb.op {
  display: flex
}

.lbm {
  background: var(--sur);
  border-radius: var(--r4);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  animation: lbin .38s var(--sp);
  box-shadow: 0 48px 120px rgba(0, 0, 0, .5)
}

@keyframes lbin {
  from {
    transform: scale(.78);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.lbi {
  height: 260px;
  overflow: hidden;
  background: var(--b700)
}

.lbi img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.lbifb {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  background: var(--gh)
}

.lbb {
  padding: 34px
}

.lbt {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px
}

.lbde {
  font-size: .9rem;
  color: var(--tm);
  line-height: 1.84;
  margin-bottom: 18px
}

.lbim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--b600);
  background: var(--b100);
  padding: 10px 20px;
  border-radius: var(--r1);
  margin-bottom: 26px
}

[data-theme="dark"] .lbim {
  color: var(--b300)
}

.lbc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--tm);
  transition: color .18s
}

.lbc:hover {
  color: var(--th)
}

/* CASE STUDIES */
.csg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.cscard {
  background: var(--sur);
  border: 1px solid var(--brd);
  border-radius: var(--r3);
  padding: 32px 28px;
  box-shadow: var(--s1);
  transition: all .4s var(--ea);
  position: relative;
  overflow: hidden
}

.cscard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--go);
  transform: scaleX(0);
  transition: transform .4s var(--ea)
}

.cscard:hover {
  box-shadow: var(--s3);
  transform: translateY(-6px);
  border-color: var(--b300)
}

.cscard:hover::before {
  transform: scaleX(1)
}

.csn {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--o300);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s, transform .4s var(--sp)
}

.cscard:hover .csn {
  color: var(--o500);
  transform: translateY(-2px)
}

.csb {
  margin-bottom: 20px
}

.csb:last-child {
  margin-bottom: 0
}

.cslb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 7px
}

.cslb.pb {
  color: var(--o500)
}

.cslb.sb {
  color: var(--b500)
}

.cslb.rb {
  color: var(--b700)
}

.csb p {
  font-size: .87rem;
  color: var(--tb);
  line-height: 1.78
}

/* CONTACT */
/* Old .ctc/.ctr2 contact card rules removed — replaced by cu-contact.css (redesigned section) */

/* FOOTER */
footer {
  background: var(--foot);
  padding: 56px 0 0
}

.ftgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px
}

.ftcol-brand .ftlogo {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 16px
}

.ftdesc {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
  max-width: 320px
}

.ftsoc {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
}

.ftsoc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.05rem;
  transition: background .18s, color .18s, transform .18s
}

.ftsoc a:hover {
  background: var(--go);
  color: #fff;
  transform: translateY(-3px)
}

.ftht {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px
}

.ftht::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--go)
}

.ftlist {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ftlist a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: color .18s, gap .18s
}

.ftlist a iconify-icon {
  font-size: .7rem;
  color: var(--o300)
}

.ftlist a:hover {
  color: #fff;
  gap: 11px
}

.ftcinfo {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ftcrow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

.ftcrow a {
  color: rgba(255, 255, 255, .6);
  transition: color .18s
}

.ftcrow a:hover {
  color: var(--b300)
}

.ftci {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(249, 115, 22, .15);
  color: var(--o300);
  font-size: 1rem
}

.ftleg {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-align: center
}

.ftleg strong {
  color: var(--o300)
}

.ftleg a {
  color: rgba(255, 255, 255, .58);
  transition: color .18s
}

.ftleg a:hover {
  color: var(--b300)
}

.ftdot {
  color: rgba(255, 255, 255, .25)
}

@media(max-width:900px) {
  .ftgrid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px
  }

  .ftcol-brand {
    grid-column: 1/-1
  }
}

@media(max-width:540px) {
  .ftgrid {
    grid-template-columns: 1fr
  }
  .ftlist
  {
    align-items: center;
  }
  .ftcrow
  {
    justify-content: center !important;
  }
}

/* VIEW MORE BUTTON */
.avm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: var(--rf);
  background: var(--go);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s var(--sp);
  box-shadow: 0 4px 14px rgba(249, 115, 22, .3);
  position: relative;
  overflow: hidden
}

.avm:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(249, 115, 22, .45)
}

.avm iconify-icon {
  font-size: 1rem;
  transition: transform .35s var(--sp)
}

.avm:hover iconify-icon {
  transform: translateX(3px) rotate(6deg)
}

/* GALLERY MODAL */
#glb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px
}

#glb.op {
  display: flex
}

.glbm {
  background: var(--sur);
  border-radius: var(--r4);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: lbin .35s var(--sp);
  box-shadow: 0 48px 120px rgba(0, 0, 0, .6)
}

.glbh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0
}

.glbt {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--th)
}

.glbc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--brd);
  color: var(--tm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all .18s;
  flex-shrink: 0
}

.glbc:hover {
  background: var(--o500);
  color: #fff;
  border-color: var(--o500)
}

.glbsub {
  font-size: .82rem;
  color: var(--tm);
  padding: 6px 28px 18px
}

.glbg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 28px 28px
}

.glbg img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r2);
  cursor: pointer;
  transition: all .3s;
  border: 2px solid transparent
}

.glbg img:hover {
  transform: scale(1.03);
  border-color: var(--o500);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .25)
}

.glbg img.active {
  border-color: var(--o500)
}

.glbfeat {
  padding: 0 28px 16px
}

.glbfeat img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--r3);
  box-shadow: var(--s3)
}

/* SCROLL TOP */
#stt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--o500);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(249, 115, 22, .46);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.8);
  transition: all .35s var(--sp);
  overflow: hidden
}

#stt.sh {
  opacity: 1;
  pointer-events: all;
  transform: none
}

#stt:hover {
  background: var(--o600);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 26px rgba(249, 115, 22, .6)
}

#stt iconify-icon {
  transition: transform .3s
}

#stt:hover iconify-icon {
  transform: translateY(-2px)
}

@media(max-width:1100px) {
  .sg {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:920px) {
  .hg {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center
  }

  .hvis {
    order: -1;
    align-items: center
  }

  .htg {
    margin: 0 auto 40px
  }

  .hcta,
  .hpills {
    justify-content: center
  }

  .sl {
    grid-template-columns: 1fr
  }

  .clist {
    grid-template-columns: 1fr 1fr
  }

  .awg,
  .vg,
  .acg,
  .csg {
    grid-template-columns: 1fr 1fr
  }

  .eg {
    grid-template-columns: 1fr
  }

  .nls {
    display: none
  }

  .hm {
    display: flex
  }

  .ag-top {
    grid-template-columns: 1fr
  }

  .ssub {
    max-width: 100%
  }
}

@media(max-width:640px) {
  .wrap {
    padding: 0 16px
  }

  .sec {
    padding: 60px 0
  }

  .awg,
  .vg,
  .acg,
  .csg {
    grid-template-columns: 1fr
  }

  .sg {
    grid-template-columns: 1fr 1fr
  }

  .ctc {
    grid-template-columns: 1fr
  }

  .hg {
    padding: 48px 0 60px;
    gap: 24px;
    text-align: center
  }

  .hcta {
    flex-direction: column;
    align-items: center
  }

  .hpills {
    justify-content: center
  }

  .htg {
    font-size: .92rem;
    margin: 0 auto 36px
  }

  .mg {
    grid-template-columns: 1fr 1fr
  }

  .sklist {
    grid-template-columns: 1fr
  }

  .clist {
    grid-template-columns: 1fr 1fr
  }

  .chrow {
    grid-template-columns: repeat(3, 1fr)
  }

  /* Director photo on mobile */
  .pfr {
    width: 260px;
    height: 260px
  }

  .pci {
    width: 260px;
    height: 260px
  }

  .pr1 {
    inset: -12px
  }

  .hvis {
    gap: 16px
  }

  .h-brand {
    font-size: 1.1rem
  }

  .hew {
    font-size: .65rem;
    padding: 6px 14px
  }

  /* Misc layout fixes */
  .stitle {
    font-size: 1.6rem
  }

  .tc {
    padding: 20px 18px
  }

  .glbg {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px 16px
  }

  .glbfeat {
    padding: 0 16px 12px
  }

  .glbfeat img {
    height: 220px
  }

  .lbb {
    padding: 22px
  }
}

@media(max-width:400px) {
  .pfr {
    width: 220px;
    height: 220px
  }

  .pci {
    width: 220px;
    height: 220px
  }

  .sg {
    grid-template-columns: 1fr 1fr
  }

  .clist {
    grid-template-columns: 1fr
  }
}

/* ===================================================================
   EXECUTIVE TIMELINE — "Two Decades of Leadership"
   Palette: #0973BA (blue) · #F36F34 (orange) · #FFFFFF (white)
=================================================================== */
.sr.d4 {
  transition-delay: .32s
}

.sr.d5 {
  transition-delay: .4s
}

.jrny {
  position: relative;
  background: linear-gradient(160deg, #eaf6ff 0%, #d6ecfb 45%, #e4f2fd 100%);
  padding: 108px 0 96px;
  overflow: hidden;
  isolation: isolate
}

.jbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none
}

.jgrid {
  display: none
}

.jsky {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  opacity: .08
}

.jsky rect {
  fill: #0973BA
}

.jblob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .28
}

.jblob1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, #0973BA, transparent 70%)
}

.jblob2 {
  width: 380px;
  height: 380px;
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, #F36F34, transparent 70%)
}

.jptc {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none
}

.jpt {
  position: absolute;
  border-radius: 50%;
  background: #0973BA;
  animation: jflt linear infinite
}

@keyframes jflt {
  0% {
    transform: translateY(0) scale(.6);
    opacity: 0
  }

  12% {
    opacity: 1
  }

  88% {
    opacity: .5
  }

  100% {
    transform: translateY(-90px) scale(1.15);
    opacity: 0
  }
}

.jrny .wrap {
  position: relative;
  z-index: 2
}

.jchip {
  background: rgba(9, 115, 186, .09);
  color: #0973BA
}

.jstitle {
  color: #06324f;
  background: linear-gradient(135deg, #06324f, #0973BA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.jrny .ctr .jstitle::after {
  background: linear-gradient(90deg, #F36F34, #0973BA)
}

.jssub {
  color: #4c6a7c
}

/* Timeline grid */
.jtimeline {
  position: relative;
  margin-top: 70px
}

.jline {
  position: absolute;
  left: 2%;
  right: 2%;
  top: calc(50% + 37px);
  height: 5px;
  border-radius: 99px;
  background: rgba(9, 115, 186, .14);
  overflow: hidden;
  z-index: 0
}

.jline-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #0973BA, #5fb6e8, #F36F34);
  box-shadow: 0 0 18px rgba(9, 115, 186, .65);
  transition: width 1.9s cubic-bezier(.22, 1, .36, 1)
}

.jtimeline.on .jline-fill {
  width: 100%
}

.jmlist {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: minmax(178px, auto) 74px minmax(178px, auto);
  column-gap: 18px;
  position: relative;
  z-index: 1
}

.jmi {
  display: contents
}

.jmnode {
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0973BA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #0973BA;
  box-shadow: 0 0 0 7px rgba(9, 115, 186, .10), 0 10px 26px rgba(9, 115, 186, .28);
  position: relative;
  z-index: 2;
  transition: transform .35s var(--sp), box-shadow .35s
}

.jmnode::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(9, 115, 186, .35);
  animation: jpulse 2.6s ease-out infinite
}

@keyframes jpulse {
  0% {
    transform: scale(.85);
    opacity: .7
  }

  100% {
    transform: scale(1.55);
    opacity: 0
  }
}

.jmstem {
  display: none
}

.jmcard {
  align-self: end;
  justify-self: stretch;
  position: relative;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(9, 115, 186, .16);
  border-radius: 20px;
  padding: 26px 20px 22px;
  box-shadow: 0 10px 34px rgba(9, 115, 186, .12);
  text-align: center;
  transition: transform .4s var(--sp), box-shadow .4s var(--ea), border-color .4s
}

.jmcard[style*="grid-row:3"] {
  align-self: start
}

.jmcard:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 26px 54px rgba(9, 115, 186, .22);
  border-color: rgba(9, 115, 186, .4)
}

.jmcard:hover~.jmnode,
.jmi:hover .jmnode {
  transform: scale(1.12);
  box-shadow: 0 0 0 9px rgba(9, 115, 186, .16), 0 0 26px rgba(9, 115, 186, .55)
}

.jmicon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #0973BA, #F36F34);
  box-shadow: 0 8px 20px rgba(9, 115, 186, .35)
}

.jmyear {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #F36F34;
  background: rgba(243, 111, 52, .1);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 10px
}

.jmt {
  font-size: 1rem;
  font-weight: 800;
  color: #06324f;
  margin-bottom: 8px;
  letter-spacing: -.2px
}

.jmd {
  font-size: .85rem;
  line-height: 1.65;
  color: #5a7688
}

/* Floating glass stats bar */
.jstatsbar {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(9, 115, 186, .16);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(9, 115, 186, .16);
  overflow: hidden
}

.jsb {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  position: relative
}

.jsb+.jsb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(9, 115, 186, .16)
}

.jsb iconify-icon {
  font-size: 1.7rem;
  color: #0973BA;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(9, 115, 186, .4))
}

.jsbv {
  font-size: 1.18rem;
  font-weight: 800;
  color: #06324f;
  line-height: 1.15
}

.jsbl {
  font-size: .74rem;
  color: #5a7688;
  font-weight: 600
}

[data-theme="dark"] .jrny {
  background: #041420
}

[data-theme="dark"] .jmcard {
  background: rgba(8, 32, 56, .62);
  border-color: rgba(56, 189, 248, .18)
}

[data-theme="dark"] .jmnode {
  background: #061c2e
}

[data-theme="dark"] .jstatsbar {
  background: rgba(8, 32, 56, .55);
  border-color: rgba(56, 189, 248, .18)
}

[data-theme="dark"] .jssub,
[data-theme="dark"] .jmd,
[data-theme="dark"] .jsbl {
  color: #8fb3c4
}

[data-theme="dark"] .jmt,
[data-theme="dark"] .jsbv {
  color: #e0f2fe
}

@media(max-width:920px) {
  .jrny {
    padding: 80px 0
  }

  .jtimeline {
    margin-top: 48px
  }

  .jline {
    left: 29px;
    right: auto;
    top: 0;
    bottom: 0;
    height: auto;
    width: 4px
  }

  .jline-fill {
    width: 100%;
    height: 0
  }

  .jtimeline.on .jline-fill {
    height: 100%
  }

  .jmlist {
    display: flex;
    flex-direction: column;
    gap: 34px
  }

  .jmi {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative
  }

  .jmstem {
    display: none
  }

  .jmnode {
    flex-shrink: 0
  }

  .jmcard {
    text-align: left;
    flex: 1
  }

  .jmcard[style*="grid-row:3"] {
    align-self: auto
  }
}

@media(max-width:640px) {
  .jstatsbar {
    grid-template-columns: 1fr 1fr
  }

  .jsb+.jsb::before {
    display: none
  }

  .jsb:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(9, 115, 186, .16)
  }

  .jsb:nth-child(-n+2) {
    border-bottom: 1px solid rgba(9, 115, 186, .16)
  }
}