/* =============================================================
   JK TRADE · v6 · clean professional corporate B2B
   ============================================================= */

:root {
  --bg:        #ffffff;
  --bg-alt:    #f8f7f4;
  --bg-soft:   #f1efe9;
  --bg-dark:   #0a1f3a;
  --bg-dark-2: #112a4d;

  --ink:       #0a1f3a;
  --ink-2:     #2a3a52;
  --ink-3:     #4d5b73;
  --muted:     #7a8497;
  --muted-2:   #aab2c0;
  --line:      #e5e1d8;
  --line-d:    rgba(255,255,255,0.10);

  --blue:      #1e4fc4;
  --blue-d:    #163da0;
  --blue-l:    #5f86e3;
  --accent:    #e8602c;
  --green:     #25d366;
  --green-d:   #128c7e;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'Bricolage Grotesque', system-ui, sans-serif;
  --serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --gutter: clamp(20px, 4vw, 60px);
  --maxw:   1380px;
  --rad:    14px;
  --rad-sm: 8px;
}

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
img,svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul,ol { margin: 0; padding: 0; list-style: none; }

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

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* image-bg pattern: shows gradient if image fails or while loading */
[data-img-bg] {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  background-image: var(--bg, linear-gradient(135deg, #1a3461 0%, #0a1f3a 100%));
}
[data-img-bg] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s ease, transform 1.2s cubic-bezier(.65,0,.2,1);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--bg-dark);
  color: #c8d2e0;
  font-size: 12.5px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 9px var(--gutter);
}
.topbar__msg { display: inline-flex; align-items: center; gap: 10px; }
.topbar__msg .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,96,44,0.25);
}
.topbar__contact { display: inline-flex; align-items: center; gap: 16px; color: #fff; }
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  transition: color .2s;
}
.topbar__contact a:hover { color: var(--blue-l); }
.topbar__contact .sep { color: var(--muted-2); }
@media (max-width: 820px) {
  .topbar__contact { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--gutter);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 2px 8px rgba(10, 31, 58, 0.08);
  flex-shrink: 0;
}
.nav__logo--footer {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.nav__word { display: grid; line-height: 1.1; }
.nav__word strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__word em {
  font-family: var(--body);
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.nav__links {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: var(--display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-2);
}
.nav__links a {
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transition: right .3s cubic-bezier(.65,0,.2,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__right { display: inline-flex; align-items: center; gap: 12px; }
.nav__cta { padding: 11px 18px; font-size: 14px; }

.nav__menu {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  background: var(--bg);
}
.nav__menu span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, top .3s, opacity .2s;
}
.nav__menu span:nth-child(1) { top: 14px; }
.nav__menu span:nth-child(2) { top: 20px; }
.nav__menu span:nth-child(3) { top: 26px; }
.nav.is-open .nav__menu span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav.is-open .nav__menu span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__menu span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__menu { display: block; }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    inset: 86px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px var(--gutter) 40px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    gap: 18px;
    z-index: 49;
    justify-self: stretch;
  }
}
@media (max-width: 520px) {
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 12px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s, background .25s, color .25s, box-shadow .25s;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10,31,58,0.16);
}
.btn--primary:hover { background: var(--blue); transform: translateY(-2px); }
.btn--primary svg { transition: transform .2s; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--wa {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,0.28);
}
.btn--wa:hover { background: var(--green-d); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 16vh, 200px) 0 clamp(70px, 10vh, 120px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  filter: brightness(0.62) contrast(1.05) saturate(1.05);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,31,58,0.55) 0%, rgba(10,31,58,0.15) 30%, rgba(10,31,58,0.95) 100%),
    linear-gradient(90deg, rgba(10,31,58,0.70) 0%, rgba(10,31,58,0) 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: #ecf0f6;
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,96,44,0.30);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(232,96,44,0.30); }
  50%     { box-shadow: 0 0 0 9px rgba(232,96,44,0.04); }
}

.hero__title {
  margin: 0 0 28px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #fff;
  font-variation-settings: "wdth" 95;
  max-width: 14ch;
}
.hero__title .accent,
.hero__title .i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-l);
  letter-spacing: -0.005em;
  font-variation-settings: normal;
}

.hero__lede {
  margin: 0 0 36px;
  font-size: clamp(15.5px, 1.2vw, 19px);
  line-height: 1.6;
  color: #d6dde9;
  max-width: 64ch;
}
.hero__lede strong { color: #fff; font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__cta .btn--primary { background: #fff; color: var(--ink); }
.hero__cta .btn--primary:hover { background: var(--blue); color: #fff; }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero__scroll i {
  display: block;
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: scrollLine 2s cubic-bezier(.7,0,.2,1) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brandstrip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.brandstrip__lbl {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}
.brandstrip__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
}
.brandstrip__row span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .2s;
}
.brandstrip__row span:hover { opacity: 1; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: end;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-right: 14px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: var(--line);
}
.stat strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 54px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat sup {
  font-size: 0.45em;
  color: var(--blue);
  font-weight: 700;
  margin-left: 1px;
  vertical-align: top;
}
.stat strong i { color: var(--blue); font-style: normal; font-weight: 400; padding: 0 2px; }
.stat span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .stat:nth-child(3)::after { display: none; }
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none !important; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: clamp(80px, 10vw, 130px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #d6dde9; }
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}
.kicker--light { color: var(--blue-l); }
.kicker--light::before { background: var(--blue-l); }

.sec-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "wdth" 95;
}
.sec-title--center { max-width: 22ch; margin: 0 auto 14px; }
.sec-title .accent,
.sec-title .accent-l,
.sec-title .i,
.feature__title .i,
.feature__title .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: normal;
}
.sec-title .accent { color: var(--blue); }
.sec-title .accent-l, .section--dark .sec-title .i { color: var(--blue-l); }
.sec-title .i, .feature__title .i { color: var(--blue); }
.section--dark .sec-title { color: #fff; }
.section--dark .sec-title .i,
.section--dark .sec-title .accent { color: var(--blue-l); }
.feature__title .i { color: var(--accent); }

.sec-intro {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 48ch;
}
.sec-intro--center { margin: 0 auto; }
.section--dark .sec-intro { color: rgba(214,221,233,0.85); }
@media (max-width: 860px) { .sec-head { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
}
.prod {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .6s cubic-bezier(.2,.9,.3,1), box-shadow .4s, border-color .35s;
}
.prod:nth-child(1) { transform: perspective(1400px) rotateY(-3deg) rotateX(2deg); }
.prod:nth-child(2) { transform: perspective(1400px) rotateY(0deg)  rotateX(2deg); }
.prod:nth-child(3) { transform: perspective(1400px) rotateY(3deg)  rotateX(2deg); }
.prod:nth-child(4) { transform: perspective(1400px) rotateY(-3deg) rotateX(-2deg); }
.prod:nth-child(5) { transform: perspective(1400px) rotateY(0deg)  rotateX(-2deg); }
.prod:nth-child(6) { transform: perspective(1400px) rotateY(3deg)  rotateX(-2deg); }
.prod.is-tilting { transition: transform .1s linear; }
.prod:hover {
  box-shadow: 0 40px 80px -20px rgba(10,31,58,0.28);
  border-color: var(--blue-l);
}
.prod__link { display: flex; flex-direction: column; height: 100%; }
.prod__media {
  position: relative;
  aspect-ratio: 4 / 3;
}
.prod:hover .prod__media img { transform: scale(1.06); }
.prod__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,58,0.45) 100%);
  pointer-events: none;
}
.prod__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prod__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.prod__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.prod__body h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}
.prod__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.prod__tags {
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  margin-top: auto;
}
.prod__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-top: 4px;
  transition: gap .2s, color .2s;
}
.prod__cta i { font-style: normal; font-size: 16px; transition: transform .2s; }
.prod:hover .prod__cta { color: var(--blue); gap: 12px; }
.prod:hover .prod__cta i { transform: translateX(2px); }

@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .prod-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   FEATURED PROJECT
   ============================================================ */
.feature {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  color: #fff;
  overflow: hidden;
}
.feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature__media img { filter: brightness(0.55); }
.feature__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,58,0.55) 0%, rgba(10,31,58,0.85) 100%);
}
.feature__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feature__title {
  margin: 14px 0 24px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
}
.feature__content > p {
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.15vw, 17.5px);
  line-height: 1.7;
  color: #d6dde9;
  max-width: 64ch;
}
.feature__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.feature__row > div { display: grid; gap: 4px; }
.feature__row strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  color: #fff;
  letter-spacing: -0.02em;
}
.feature__row span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 720px) { .feature__row { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; } }

/* ============================================================
   APPLICATIONS — 3D BENTO GRID
   ============================================================ */
.apps-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
}

.acard {
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
  animation: cardFloat 6s ease-in-out infinite;
}
/* Resting 3D tilt — each card sits at a slightly different angle to make the grid feel three-dimensional */
.acard:nth-child(1) { transform: perspective(1400px) rotateY(-6deg) rotateX(3deg); animation-delay: 0s; }
.acard:nth-child(2) { transform: perspective(1400px) rotateY(0deg)  rotateX(3deg); animation-delay: 0.4s; }
.acard:nth-child(3) { transform: perspective(1400px) rotateY(6deg)  rotateX(3deg); animation-delay: 0.8s; }
.acard:nth-child(4) { transform: perspective(1400px) rotateY(-6deg) rotateX(-3deg); animation-delay: 1.2s; }
.acard:nth-child(5) { transform: perspective(1400px) rotateY(0deg)  rotateX(-3deg); animation-delay: 1.6s; }
.acard:nth-child(6) { transform: perspective(1400px) rotateY(6deg)  rotateX(-3deg); animation-delay: 2s; }

.acard.is-tilting { transition: transform 0.08s linear; animation: none; }

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

.acard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1f3a;
  transform-style: preserve-3d;
  box-shadow:
    0 4px 12px rgba(10, 31, 58, 0.20),
    0 30px 60px -20px rgba(10, 31, 58, 0.45),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.5s ease;
}
.acard:hover .acard__inner {
  box-shadow:
    0 8px 20px rgba(10, 31, 58, 0.30),
    0 50px 100px -30px rgba(10, 31, 58, 0.65),
    0 0 0 1px rgba(95, 134, 227, 0.25),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.10);
}

/* huge watermark digit */
.acard__digit {
  position: absolute;
  right: -32px;
  bottom: -86px;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(280px, 32vw, 420px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
  transform: translateZ(10px);
}

/* image */
.acard__media {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateZ(0);
}
.acard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.6s ease;
  filter: saturate(0.92) brightness(0.85);
}
.acard:hover .acard__media img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(0.95);
}

/* gradient shade */
.acard__shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(232, 96, 44, 0.10), transparent 60%),
    linear-gradient(180deg,
      rgba(10, 31, 58, 0.0) 0%,
      rgba(10, 31, 58, 0.30) 35%,
      rgba(10, 31, 58, 0.92) 80%,
      rgba(8, 18, 36, 0.98) 100%);
}

/* content (lifted in 3D) */
.acard__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 28px 26px 26px;
  transform: translateZ(40px);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.acard:hover .acard__content { transform: translateZ(60px); }

/* glassmorphism chip */
.acard__chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(232, 96, 44, 0.16);
  border: 1px solid rgba(232, 96, 44, 0.35);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #ffcc99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(232, 96, 44, 0.18);
}

.acard__content h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.acard__content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(214, 221, 233, 0.92);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.2, 0.9, 0.3, 1),
    opacity 0.35s ease 0.05s,
    margin-top 0.45s ease;
}
.acard:hover .acard__content p {
  max-height: 140px;
  opacity: 1;
  margin-top: 12px;
}

/* diagonal shine sweep */
.acard__shine {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 70%);
  background-size: 300% 100%;
  background-position: 100% 0;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 1.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  mix-blend-mode: overlay;
  border-radius: inherit;
}
.acard:hover .acard__shine {
  opacity: 1;
  background-position: 0 0;
}

/* gradient edge glow */
.acard__edge {
  position: absolute;
  inset: 0;
  z-index: 7;
  border-radius: 22px;
  pointer-events: none;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(95, 134, 227, 0.6) 0%,
    rgba(232, 96, 44, 0.5) 40%,
    rgba(95, 134, 227, 0.4) 70%,
    transparent 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.acard:hover .acard__edge { opacity: 1; }

@media (max-width: 980px) {
  .apps-3d { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .acard { aspect-ratio: 5 / 6; }
}
@media (max-width: 560px) {
  .apps-3d { grid-template-columns: 1fr; }
  .acard { aspect-ratio: 4 / 5; }
  .acard__content p { max-height: 140px !important; opacity: 1 !important; margin-top: 12px !important; }
}

/* ============================================================
   BRANDS
   ============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--bg);
}
.brand {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  min-height: 200px;
  align-content: space-between;
  position: relative;
  transition: background .25s;
}
.brand::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.65,0,.2,1);
}
.brand:hover { background: var(--bg-alt); }
.brand:hover::after { transform: scaleX(1); }
.brand strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.brand span {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
}
.brand em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.brand em::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 980px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .brand-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--rad);
  overflow: hidden;
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, #1a3461 0%, #0a1f3a 100%);
  box-shadow:
    0 30px 60px -20px rgba(10, 31, 58, 0.35),
    0 0 0 1px rgba(10, 31, 58, 0.06);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.4s cubic-bezier(.2,.9,.3,1);
}
.about__media:hover img { transform: scale(1.04); }

/* Portrait variant adds a subtle scrim so badge reads well */
.about__media--portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(10, 31, 58, 0.55) 100%);
  pointer-events: none;
}

.about__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 16px 20px 14px;
  display: grid;
  gap: 2px;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 10px 28px rgba(10, 31, 58, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.about__badge-kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.about__badge strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "wdth" 95;
}
.about__badge span {
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Founder quote block */
.about__quote {
  margin: 28px 0 0;
  padding: 24px 26px 22px;
  background: linear-gradient(135deg,
    rgba(30, 79, 196, 0.06) 0%,
    rgba(232, 96, 44, 0.03) 100%);
  border-left: 3px solid var(--accent);
  border-radius: 4px 12px 12px 4px;
  position: relative;
}
.about__quote::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 88px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}
.about__quote p {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.about__quote cite {
  display: grid;
  gap: 2px;
  font-style: normal;
}
.about__quote cite strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.about__quote cite span {
  font-family: var(--body);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.about__copy .sec-title { margin: 6px 0 24px; }
.about__copy p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.about__pillars {
  margin: 32px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about__pillars li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
}
.pi-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.04em;
  display: grid;
  align-content: start;
  padding-top: 6px;
}
.about__pillars strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.about__pillars p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.about__sign {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--bg-alt);
  border-radius: var(--rad-sm);
  display: grid;
  gap: 2px;
}
.about__sign strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.about__sign span {
  font-size: 13px;
  color: var(--muted);
}
.about__sign a {
  margin-top: 6px;
  color: var(--blue);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
}
.about__sign a:hover { color: var(--ink); }
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: relative; top: 0; aspect-ratio: 16 / 10; }
}

/* ============================================================
   SECTION WATERMARK NUMBERS  (giant digits behind content)
   ============================================================ */
.has-watermark {
  position: relative;
  overflow: hidden;
}
.has-watermark::before {
  content: attr(data-num);
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(calc(-50% + var(--watermark-y, 0px))) translateZ(0);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(280px, 38vw, 560px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: rgba(10, 31, 58, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-variation-settings: "wdth" 95;
  will-change: transform;
}
.section--alt.has-watermark::before {
  color: rgba(10, 31, 58, 0.045);
}
.section--dark.has-watermark::before,
.reach-v2.has-watermark::before {
  color: rgba(255, 255, 255, 0.035);
}
.has-watermark > .container,
.has-watermark > header,
.has-watermark > div {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TITLE SLIDE-UP REVEAL  (clip + translate)
   ============================================================ */
.title-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.title-wrap > .hero__title,
.title-wrap > .sec-title,
.title-wrap > .feature__title {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(.7, 0, .15, 1),
    opacity .8s ease-out;
}
.title-wrap.is-in > .hero__title,
.title-wrap.is-in > .sec-title,
.title-wrap.is-in > .feature__title {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger sibling-line reveal so multi-line headlines unfold one at a time */
.title-wrap.is-in > * .i,
.title-wrap.is-in > * .accent {
  animation: italicShimmer 1.6s ease-out .4s both;
}
@keyframes italicShimmer {
  0%   { opacity: 0; transform: translateY(20%) skewY(2deg); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: none; }
}

/* ============================================================
   SECTION ENTRY 3D LIFT  (subtle perspective tilt on enter)
   ============================================================ */
.sec-head {
  perspective: 1500px;
}
.sec-head.reveal-3d > div,
.sec-head.reveal-3d > p {
  transform: rotateX(20deg) translateY(40px);
  transform-origin: center bottom;
  opacity: 0;
  transition:
    transform 1.1s cubic-bezier(.2, .9, .3, 1),
    opacity .9s ease-out;
}
.sec-head.reveal-3d.is-in > div,
.sec-head.reveal-3d.is-in > p {
  transform: none;
  opacity: 1;
}
.sec-head.reveal-3d.is-in > p { transition-delay: .15s; }

/* ============================================================
   FLOATING SCROLL SECTION INDICATOR  (right rail)
   ============================================================ */
.scroll-nav {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 45;
  display: grid;
  gap: 14px;
  pointer-events: none;
  padding: 18px 16px;
  background: rgba(10, 31, 58, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  min-width: 110px;
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.9,.3,1);
}
.scroll-nav.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.scroll-nav__count {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.scroll-nav__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  font-variation-settings: "wdth" 95;
  transition: color .25s ease;
}
.scroll-nav__sep {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}
.scroll-nav__total {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
}
.scroll-nav__name {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
}
.scroll-nav__bar {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  overflow: hidden;
}
.scroll-nav__bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .12s linear;
}
@media (max-width: 980px) { .scroll-nav { display: none; } }

/* ============================================================
   SCROLL PROGRESS BAR (top of page)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(10, 31, 58, 0.06);
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.05s linear;
  box-shadow: 0 0 12px rgba(232, 96, 44, 0.4);
}

/* ============================================================
   .i  italic serif accent (universal)
   ============================================================ */
.i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: normal;
  color: var(--blue);
}
.section--dark .i,
.reach-v2 .i,
.feature__title .i { color: var(--accent); }
.contact .i,
.about .i { color: var(--blue); }

/* ============================================================
   GIANT MARQUEE BAND
   ============================================================ */
.big-marquee {
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.big-marquee::before,
.big-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.big-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}
.big-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}
.big-marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 32px;
  animation: bmScroll 38s linear infinite;
  padding-left: 32px;
}
.bm-item {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  font-variation-settings: "wdth" 95;
}
.bm-item--italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
  font-variation-settings: normal;
}
.bm-dot {
  color: var(--accent);
  font-size: clamp(14px, 1.2vw, 18px);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes bmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   REACH v2  (horizontal scrolling cities + stats)
   ============================================================ */
.reach-v2 {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
  position: relative;
}
.reach-v2 .sec-head { color: #fff; margin-bottom: clamp(40px, 5vw, 70px); }
.reach-v2 .sec-title { color: #fff; }
.sec-intro--light { color: rgba(214, 221, 233, 0.78); }

/* Cities marquee */
.cities-marquee {
  position: relative;
  margin: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.cities-marquee::before,
.cities-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cities-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}
.cities-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}
.cities-marquee__track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  animation: citiesScroll 50s linear infinite;
  padding-left: 22px;
  will-change: transform;
}
.cities-marquee[data-pause-on-hover]:hover .cities-marquee__track {
  animation-play-state: paused;
}
@keyframes citiesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.city-card {
  flex-shrink: 0;
  display: grid;
  align-content: space-between;
  gap: 14px;
  width: 280px;
  height: 220px;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
  white-space: normal;
}
.city-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right,
    rgba(95, 134, 227, 0.18) 0%,
    transparent 70%);
  pointer-events: none;
}
.city-card:hover {
  background: rgba(95, 134, 227, 0.06);
  border-color: rgba(95, 134, 227, 0.35);
  transform: translateY(-4px);
}
.city-card__code {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.city-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  font-variation-settings: "wdth" 95;
}
.city-card__meta {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.city-card__time {
  display: inline-flex;
  align-items: center;
  align-self: start;
  padding: 7px 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(232, 96, 44, 0.15);
  border: 1px solid rgba(232, 96, 44, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}
.city-card--home {
  background: linear-gradient(135deg,
    rgba(232, 96, 44, 0.12) 0%,
    rgba(232, 96, 44, 0.02) 100%);
  border-color: rgba(232, 96, 44, 0.40);
}
.city-card--home::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 96, 44, 0.30),
              0 0 16px rgba(232, 96, 44, 0.6);
  animation: cityPulse 2.4s ease-in-out infinite;
}
@keyframes cityPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 96, 44, 0.30), 0 0 16px rgba(232, 96, 44, 0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 96, 44, 0.06), 0 0 22px rgba(232, 96, 44, 0.8); }
}
.city-card--home .city-card__code { color: var(--accent); }
.city-card--home .city-card__time {
  background: rgba(232, 96, 44, 0.28);
  border-color: rgba(232, 96, 44, 0.7);
}

/* Reach stats */
.reach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.rs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rs strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(46px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  font-variation-settings: "wdth" 95;
}
.rs strong sup {
  font-size: 0.42em;
  color: var(--accent);
  font-weight: 700;
  margin-left: 1px;
  vertical-align: top;
}
.rs strong i {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-variation-settings: normal;
}
.rs span {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 720px) {
  .reach-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
}
@media (max-width: 560px) {
  .city-card { width: 250px; height: 210px; }
  .city-card__name { font-size: 28px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.ccard {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.ccard:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 20px 40px -20px rgba(10,31,58,0.18);
}
.ccard__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(30,79,196,0.10);
  color: var(--blue);
  margin-bottom: 8px;
}
.ccard--wa {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: #fff;
  border-color: transparent;
}
.ccard--wa .ccard__icon { background: rgba(255,255,255,0.16); color: #fff; }
.ccard--wa .ccard__lbl { color: rgba(255,255,255,0.85); }
.ccard--wa strong { color: #fff; }
.ccard--wa .ccard__meta { color: rgba(255,255,255,0.85); }
.ccard__lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.ccard strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  word-break: break-word;
}
.ccard__meta {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.ccard--addr { grid-column: span 2; }
@media (max-width: 900px) {
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .contact__cards { grid-template-columns: 1fr; }
  .ccard--addr { grid-column: span 1; }
}

.cform {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--rad);
  padding: clamp(28px, 4vw, 48px);
}
.cform h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cform__sub {
  margin: 0 0 28px;
  font-size: 14.5px;
  color: var(--muted);
}
.cform .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.cform label { display: grid; gap: 8px; margin-bottom: 16px; }
.cform label > span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.cform input,
.cform textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--rad-sm);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  resize: vertical;
  transition: border-color .2s;
}
.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.cform__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cform__note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.5;
}
@media (max-width: 600px) { .cform .row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--bg-dark);
  color: #c8d2e0;
  padding: clamp(60px, 8vw, 100px) 0 28px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-d);
}
.foot__brand .nav__brand { color: #fff; }
.foot__brand .nav__word strong { color: #fff; }
.foot__brand .nav__word em { color: var(--muted-2); }
.foot__brand p {
  margin: 20px 0 0;
  font-size: 14px;
  color: #98a1ae;
  line-height: 1.7;
  max-width: 34ch;
}
.foot__col span {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.foot__col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #c8d2e0;
}
.foot__col a { color: #c8d2e0; transition: color .2s; }
.foot__col a:hover { color: var(--blue-l); }
@media (max-width: 980px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; } }

.foot__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.foot__tag { color: var(--blue-l); }

/* ============================================================
   FAB
   ============================================================ */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37,211,102,0.42);
  transition: transform .25s, background .25s;
}
.fab:hover { background: var(--green-d); transform: scale(1.08); }
.fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.65,0,.2,1), transform .8s cubic-bezier(.65,0,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
