/* =========================================================
   Empower Funding · homepage rebuild
   Type system echoes their logo: condensed heavy EMPOWER,
   wide-tracked light F U N D I N G. One family: Archivo (wdth 62-125).
   ========================================================= */

:root {
  --red: #CA111D;
  --red-hi: #E3202D;
  --red-deep: #8F0A13;
  --ink: #0E0E0C;
  --ink-2: #161614;
  --ink-3: #20201D;
  --paper: #F4F1EC;
  --paper-2: #EAE5DD;
  --white: #FFFFFF;

  --tx-d: rgba(255, 255, 255, .92);
  --mute-d: rgba(255, 255, 255, .62);
  --line-d: rgba(255, 255, 255, .12);
  --mute-l: rgba(14, 14, 12, .64);
  --line-l: rgba(14, 14, 12, .12);

  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --hdr: 84px;
  --gut: clamp(20px, 4vw, 56px);
  --overlap: 140px;
  --radius: 18px;

  --d0: .15s;          /* hero entrance start */
}
html.intro { --d0: 1.75s; }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr) + 12px);
  scrollbar-color: var(--red) var(--ink);
  background: var(--ink);
}
html.shotmode { scroll-behavior: auto; }
html.is-locked { overflow: hidden; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; border: 2px solid var(--ink); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--red-hi); outline-offset: 3px; border-radius: 4px; }

.wrap {
  width: 100%;
  max-width: calc(1320px + var(--gut) * 2);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.red { color: var(--red); }

/* the F U N D I N G voice: wide, tracked, small caps */
.label {
  font-stretch: 125%;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* the EMPOWER voice: condensed, heavy, tight */
.h2 {
  margin: 0;
  font-stretch: 62%;
  font-weight: 800;
  font-size: clamp(46px, 6.2vw, 100px);
  line-height: .9;
  letter-spacing: -.005em;
  text-transform: uppercase;
}

.skip {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 8px;
  transition: top .3s var(--ease);
}
.skip:focus { top: 12px; }

/* ---------------- buttons ---------------- */
.btn {
  --bh: 52px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: var(--bh);
  padding: 0 26px;
  border-radius: 999px;
  font-stretch: 112%;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn--sm { --bh: 42px; padding: 0 18px; font-size: 13px; letter-spacing: .06em; font-stretch: 100%; }
.btn--lg { --bh: 60px; padding: 0 32px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 12px 30px -14px rgba(202, 17, 29, .8); }
.btn--red:hover { background: var(--red-hi); box-shadow: 0 18px 40px -16px rgba(227, 32, 45, .9); }

.btn--ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .28); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--red); }

.btn--line { color: var(--ink); border: 1.5px solid rgba(14, 14, 12, .85); align-self: flex-start; }
.btn--line:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------------- progress ---------------- */
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 120; pointer-events: none; }
.progress span { display: block; height: 100%; background: var(--red); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }

/* ---------------- intro curtain (first visit only) ---------------- */
.intro-curtain { display: none; }
html.intro .intro-curtain {
  display: grid;
  place-items: center;
  position: fixed; inset: 0; z-index: 300;
  background: var(--ink);
  animation: curtainUp 1s var(--ease-io) 1.35s forwards;
}
.intro-curtain__in { width: min(300px, 62vw); display: grid; gap: 22px; }
.intro-curtain img { width: 100%; height: auto; opacity: 0; transform: translateY(14px); animation: introLogo 1s var(--ease) .15s forwards; }
.intro-curtain__bar { height: 2px; background: var(--red); transform: scaleX(0); transform-origin: 0 50%; animation: introBar 1.05s var(--ease-io) .35s forwards; }
@keyframes introLogo { to { opacity: 1; transform: none; } }
@keyframes introBar { to { transform: scaleX(1); } }
@keyframes curtainUp { to { transform: translateY(-100%); visibility: hidden; } }

/* ---------------- header ---------------- */
.hdr {
  position: fixed; inset: 0 0 auto;
  z-index: 100;
  height: var(--hdr);
  color: #fff;
  transition: background-color .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease);
}
.hdr.is-scrolled { background: rgba(14, 14, 12, .94); box-shadow: 0 1px 0 var(--line-d); --hdr: 72px; }
.hdr__in { height: 100%; display: flex; align-items: center; gap: 28px; }
.hdr__logo { flex: none; }
.hdr__logo img { width: 158px; height: auto; transition: width .5s var(--ease); }
.hdr.is-scrolled .hdr__logo img { width: 140px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  height: 44px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .86);
  transition: color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
.nav__link:hover, .has-sub:hover > .nav__link, .has-sub.is-open > .nav__link { color: #fff; }
.nav__link:hover::after, .has-sub:hover > .nav__link::after, .has-sub.is-open > .nav__link::after { transform: scaleX(1); }
.chev { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.has-sub:hover .chev, .has-sub.is-open .chev { transform: rotate(180deg); }

.sub {
  position: absolute; top: calc(100% + 8px); left: -18px;
  min-width: 230px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45), 0 0 0 1px rgba(14, 14, 12, .06);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .45s var(--ease), visibility 0s .45s;
}
.sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.has-sub:hover .sub, .has-sub.is-open .sub, .has-sub:focus-within .sub {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .3s var(--ease), transform .45s var(--ease), visibility 0s;
}
.sub a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  transition: background-color .25s, color .25s, padding .35s var(--ease);
}
.sub a::after { content: "\2192"; color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .35s var(--ease); }
.sub a:hover { background: var(--paper); padding-left: 18px; }
.sub a:hover::after { opacity: 1; transform: none; }

.hdr__cta { display: flex; align-items: center; gap: 14px; flex: none; }
.hdr__mail { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, .78); transition: color .3s; }
.hdr__mail:hover { color: #fff; }
.hdr__mail svg { width: 20px; height: 20px; fill: none; stroke: var(--red-hi); stroke-width: 1.6; stroke-linejoin: round; }
.hdr__tel svg { width: 15px; height: 15px; }

.burger { display: none; position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: #fff; transition: transform .45s var(--ease), top .45s var(--ease); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------------- mobile nav ---------------- */
.mnav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: #fff;
  padding-top: calc(var(--hdr) + 16px);
  overflow-y: auto;
  opacity: 0; transition: opacity .4s var(--ease);
}
.mnav.is-open { opacity: 1; }
.mnav__in { min-height: 100%; display: flex; flex-direction: column; padding-bottom: 32px; }
.mnav__list > li { border-bottom: 1px solid var(--line-d); }
.mnav__link {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-stretch: 62%; font-weight: 800; font-size: 40px; line-height: 1; text-transform: uppercase;
  text-align: left;
}
.mnav__link .chev { width: 22px; height: 22px; }
.mnav__group.is-open .chev { transform: rotate(180deg); }
.mnav__sub { display: block; max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.mnav__group.is-open .mnav__sub { max-height: 420px; }
.mnav__sub a { display: block; padding: 8px 0 8px 2px; font-size: 18px; color: var(--mute-d); }
.mnav__sub li:last-child a { padding-bottom: 18px; }
.mnav__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 16px; text-align: center; }
.mnav__mail { color: var(--mute-d); font-size: 15px; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 110%, #1b1b18 0%, transparent 60%),
    var(--ink);
  color: #fff;
  padding: calc(var(--hdr) + clamp(48px, 8vh, 110px)) 0 calc(var(--overlap) + clamp(150px, 20vh, 230px));
}
.hero__glow {
  position: absolute; left: 0; top: 0;
  width: 1100px; height: 1100px;
  margin: -550px 0 0 -550px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(202, 17, 29, .30), rgba(202, 17, 29, .10) 45%, transparent 72%);
  transform: translate3d(var(--gx, 78vw), var(--gy, 260px), 0);
  pointer-events: none;
  will-change: transform;
}
.bridge {
  position: absolute; left: 0; right: 0;
  bottom: calc(var(--overlap) - 6px);
  width: 100%;
  height: clamp(380px, 60vh, 600px);
  pointer-events: none;
  overflow: visible;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.3) 24%, rgba(0,0,0,.85) 50%, #000 70%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.3) 24%, rgba(0,0,0,.85) 50%, #000 70%);
}
.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: calc(var(--overlap) + 60px);
  background: linear-gradient(to bottom, rgba(14, 14, 12, 0), var(--ink) 55%);
  pointer-events: none;
}
.hero__in { position: relative; z-index: 2; }

.hero__tag { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; color: rgba(255, 255, 255, .8); margin-bottom: clamp(20px, 3vh, 34px); }
.hero__tag .red { color: #FF3B47; }
.hero__tag-line { width: 44px; height: 2px; background: var(--red); }

.hero__title {
  margin: 0;
  font-stretch: 62%;
  font-weight: 800;
  font-size: clamp(50px, 8.8vw, 140px);
  line-height: .88;
  letter-spacing: -.008em;
  text-transform: uppercase;
}
.ln { display: block; overflow: hidden; padding-bottom: .03em; margin-bottom: -.03em; }
.ln--mark { padding-bottom: .11em; margin-bottom: -.11em; }
.ln > span { display: block; }
.mark { position: relative; display: inline-block; }
.mark::after {
  content: "";
  position: absolute; left: .02em; right: .02em; bottom: -.035em;
  height: .075em;
  background: var(--red);
  transform-origin: 0 50%;
}

.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px 56px;
  margin-top: clamp(28px, 4.5vh, 52px);
}
.hero__copy { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.5; color: rgba(255, 255, 255, .7); max-width: 44em; text-shadow: 0 1px 18px rgba(14, 14, 12, .95), 0 0 2px rgba(14, 14, 12, .8); }
.hero__copy-strong { color: #fff; font-weight: 600; margin-top: 4px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* entrance */
.js .hero__tag, .js .hero__row { opacity: 0; transform: translateY(18px); animation: rise 1.1s var(--ease) forwards; }
.js .hero__tag { animation-delay: var(--d0); }
.js .hero__row { animation-delay: calc(var(--d0) + .55s); }
.js .ln > span { transform: translateY(104%); animation: lnUp 1.15s var(--ease) forwards; animation-delay: calc(var(--d0) + .08s + var(--i) * .11s); }
.js .mark::after { transform: scaleX(0); animation: markIn 1s var(--ease-io) forwards; animation-delay: calc(var(--d0) + .85s); }
.js .hdr { opacity: 0; animation: fadeIn 1s var(--ease) forwards; animation-delay: calc(var(--d0) + .2s); }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes lnUp { to { transform: none; } }
@keyframes markIn { to { transform: scaleX(1); } }
@keyframes fadeIn { to { opacity: 1; } }

/* bridge strokes (built in JS) */
/* no non-scaling-stroke on dashed paths: Chrome measures the dash in screen space and the line stops short when the SVG scales up */
.bridge .b-tower, .bridge .b-cable, .bridge .b-deck { fill: none; stroke-linecap: round; }
.bridge .b-tower { stroke: rgba(255, 255, 255, .42); stroke-width: 1.2; }
.bridge .b-cable { stroke: rgba(255, 255, 255, .5); stroke-width: 1.4; }
.bridge .b-deck { stroke: rgba(255, 255, 255, .32); stroke-width: 1.1; }
.bridge .b-hang { stroke: rgba(255, 255, 255, .16); stroke-width: .9; vector-effect: non-scaling-stroke; }
.bridge .b-draw { stroke-dasharray: 1; stroke-dashoffset: 1; }
.bridge.is-drawn .b-draw { stroke-dashoffset: 0; transition: stroke-dashoffset var(--dur, 1.8s) var(--ease-io) var(--del, 0s); }
.bridge .b-hang { transform-box: fill-box; transform-origin: 50% 0%; transform: scaleY(0); }
.bridge.is-drawn .b-hang { transform: scaleY(1); transition: transform 1s var(--ease) var(--del, 0s); }
.bridge .b-light { opacity: 0; transition: opacity 1.2s var(--ease); }
.bridge.is-live .b-light { opacity: 1; }

/* ---------------- video + call-back ---------------- */
.duo-sec {
  position: relative; z-index: 3;
  margin-top: calc(var(--overlap) * -1);
  padding-bottom: clamp(80px, 9vw, 130px);
  background: linear-gradient(to bottom, transparent var(--overlap), var(--paper) var(--overlap));
}
.duo { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 20px; align-items: stretch; }

.video {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .7);
}
.video__btn, .video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__btn img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform 1.4s var(--ease); }
.video__btn:hover img { transform: scale(1.035); }
.video__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 45%); }
.video__play {
  position: absolute; left: 50%;
  width: 92px; height: 92px; margin: -46px 0 0 -46px; top: 40%;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 20px 50px -10px rgba(202, 17, 29, .7);
  transition: transform .5s var(--ease), background-color .3s;
}
.video__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.video__btn:hover .video__play { transform: scale(1.08); background: var(--red-hi); }
.video__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); animation: ring 2.6s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

.card { background: #fff; border-radius: var(--radius); }
.cb {
  padding: clamp(28px, 3.2vw, 46px);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(14, 14, 12, .04);
  position: relative;
  overflow: hidden;
}
.cb::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--red); }
.cb__head { margin-bottom: 22px; }
.cb__title { margin: 0 0 12px; font-stretch: 62%; font-weight: 800; font-size: clamp(38px, 3.4vw, 52px); line-height: .92; text-transform: uppercase; text-wrap: balance; }
.cb__sub { font-weight: 600; letter-spacing: .14em; font-size: 11.5px; }

/* fields */
.form { display: grid; gap: 14px; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit; font-size: 17px; color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1.5px solid rgba(14, 14, 12, .22);
  border-radius: 0;
  padding: 26px 0 10px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field label {
  position: absolute; left: 0; top: 25px;
  font-size: 17px; color: var(--mute-l);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform .4s var(--ease), color .3s;
}
.field::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s var(--ease);
}
.field--area::after { bottom: 6px; }
.field:focus-within::after { transform: scaleX(1); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-20px) scale(.72);
  color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: 16px; }
.field--select select { padding-right: 24px; cursor: pointer; font-weight: 500; }
.field--select .chev { position: absolute; right: 2px; bottom: 14px; width: 16px; height: 16px; pointer-events: none; color: var(--mute-l); }
.field.is-error input, .field.is-error textarea, .field.is-error select { border-bottom-color: var(--red); }
.field.is-error label { color: var(--red); }
.form .btn { margin-top: 12px; }

.done { text-align: center; padding: 30px 0 10px; }
.done__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--red); margin-bottom: 18px; animation: pop .7s var(--ease); }
.done__icon svg { width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.done__title { font-stretch: 62%; font-weight: 800; font-size: 48px; line-height: 1; }
.done__text { color: var(--mute-l); margin-top: 6px; }
.form__preview { margin: 2px 0 0; font-size: 12.5px; line-height: 1.4; text-align: center; opacity: .72; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------------- what makes us unique ---------------- */
.unique {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(96px, 11vw, 170px) 0;
}
.unique__media { position: absolute; left: 0; right: 0; top: -10%; bottom: -10%; }
.unique__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 22% 55%;
  filter: grayscale(1) contrast(1.08) brightness(.82);
  translate: 0 var(--py, 0px);
}
.unique__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 12, .1) 0%, rgba(14, 14, 12, .35) 32%, rgba(14, 14, 12, .9) 52%, var(--ink) 70%),
    linear-gradient(to bottom, var(--ink) 0%, rgba(14, 14, 12, 0) 16%, rgba(14, 14, 12, 0) 84%, var(--ink) 100%);
}
.unique__in { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.unique__panel { grid-column: 7 / -1; }
.unique .rule { display: block; width: 72px; height: 4px; background: var(--red); margin: 30px 0 34px; }

.ulist { border-top: 1px solid var(--line-d); counter-reset: u; }
.ulist li {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px 4px 20px 0;
  border-bottom: 1px solid var(--line-d);
}
.ulist li::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .7s var(--ease);
}
.ulist li:hover::before { transform: scaleX(1); }
.ulist__n { font-stretch: 125%; font-size: 12px; letter-spacing: .18em; color: #FF3B47; font-weight: 600; }
.ulist__t { font-size: clamp(20px, 1.95vw, 28px); line-height: 1.25; font-weight: 500; letter-spacing: -.01em; transition: transform .6s var(--ease); }
.ulist li:hover .ulist__t { transform: translateX(8px); }
.ulist__ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .22); transition: background-color .4s, border-color .4s; }
.ulist__ic svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ulist li:hover .ulist__ic { background: var(--red); border-color: var(--red); }
.count { display: inline-block; min-width: 1.2em; font-weight: 800; color: #FF3B47; font-variant-numeric: tabular-nums; }

/* ---------------- services ---------------- */
.services { background: var(--paper); padding: clamp(96px, 11vw, 160px) 0; }
.services__head { margin-bottom: clamp(40px, 5vw, 70px); }
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.svc {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 1px 0 rgba(14, 14, 12, .05), 0 30px 60px -44px rgba(14, 14, 12, .35);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .7s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: 0 1px 0 rgba(14, 14, 12, .05), 0 50px 80px -44px rgba(14, 14, 12, .45); }
.svc:hover::before { transform: scaleX(1); }
.svc__icon { height: 84px; display: flex; align-items: center; color: var(--ink); transition: color .5s var(--ease); }
.svc__icon svg { height: 100%; width: auto; max-width: 110px; fill: currentColor; transition: transform .7s var(--ease); }
.svc:hover .svc__icon { color: var(--red); }
.svc:hover .svc__icon svg { transform: translateY(-4px) rotate(-3deg); }
.svc__title { margin: 30px 0 18px; font-stretch: 62%; font-weight: 800; font-size: clamp(32px, 2.8vw, 42px); line-height: .92; text-transform: uppercase; }
.svc__rule { width: 36px; height: 3px; background: var(--red); }
.svc__body { flex: 1; margin: 22px 0 34px; color: var(--mute-l); font-size: 17px; line-height: 1.6; }
.svc__body p + p { margin-top: 12px; }

/* ---------------- marquee ---------------- */
.marquee { background: var(--ink); color: #fff; overflow: hidden; padding: clamp(30px, 4.2vw, 60px) 0; }
.marquee__track { display: flex; width: max-content; animation: marq 48s linear infinite; }
.marquee__group {
  display: flex; align-items: center; flex: none;
  gap: .32em; padding-right: .32em;
  font-stretch: 62%; font-weight: 800;
  font-size: clamp(60px, 9vw, 150px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee img { width: .62em; height: .62em; }
.marquee .o { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .5); }
.marquee .r { color: var(--red); }
@keyframes marq { to { transform: translate3d(-50%, 0, 0); } }

/* ---------------- contact ---------------- */
.contact { position: relative; overflow: hidden; background: var(--red); color: #fff; padding: clamp(96px, 11vw, 160px) 0; }
.contact__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); align-items: stretch; }
.contact__lead { display: flex; flex-direction: column; justify-content: space-between; }
.contact .h2 { font-size: clamp(46px, 5.8vw, 94px); }
.contact__lines { margin-top: clamp(36px, 4vw, 56px); margin-bottom: 8px; border-top: 1px solid rgba(255, 255, 255, .3); }
.contact__lines li { display: grid; grid-template-columns: 90px minmax(0, 1fr); align-items: baseline; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.contact__lines .label { color: rgba(255, 255, 255, .75); }
.contact__lines a { font-size: clamp(20px, 2vw, 28px); font-weight: 600; overflow-wrap: anywhere; background: linear-gradient(#fff, #fff) 0 100% / 0 1.5px no-repeat; transition: background-size .5s var(--ease); }
.contact__lines a:hover { background-size: 100% 1.5px; }
.contact__card { color: var(--ink); padding: clamp(28px, 3.4vw, 50px); box-shadow: 0 60px 100px -50px rgba(60, 0, 4, .75); }

/* ---------------- footer ---------------- */
.ftr { background: var(--ink); color: var(--mute-d); padding: clamp(72px, 8vw, 110px) 0 104px; font-size: 15.5px; }
.ftr a { transition: color .3s; }
.ftr a:hover { color: #fff; }
.ftr__top { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line-d); }
.ftr__brand img { width: 230px; height: auto; margin-bottom: 20px; }
.ftr__brand .label { color: rgba(255, 255, 255, .8); }
.ftr__brand .red { color: #FF3B47; }
.bfasa { display: inline-flex; align-items: center; gap: 14px; padding: 8px 22px 8px 8px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; color: #fff; }
.bfasa__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: grid; place-items: center; }
.bfasa__icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ftr__cols { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 32px; padding: 52px 0 56px; }
.ftr__h { margin: 0 0 22px; color: #fff; font-stretch: 125%; font-weight: 600; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.ftr__col ul { display: grid; gap: 10px; }
.ftr__col address { display: grid; gap: 14px; }
.ftr__k { display: block; font-stretch: 125%; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 2px; }
.social a { display: inline-flex; align-items: center; gap: 8px; }
.social svg { width: 14px; height: 14px; fill: none; stroke: var(--red-hi); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.social a:hover svg { transform: translate(2px, -2px); }
.ftr__legal { display: flex; justify-content: space-between; gap: 12px 32px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-d); font-size: 13px; color: rgba(255, 255, 255, .5); }

/* ---------------- chat pill ---------------- */
.chat { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; justify-items: end; gap: 12px; }
.chat__btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px; padding: 0 22px 0 18px;
  border-radius: 999px;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .08) inset;
  transform: translateY(20px); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease), background-color .3s;
}
.chat.is-shown .chat__btn { transform: none; opacity: 1; }
.chat__btn:hover { background: var(--red-hi); }
.chat__btn svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linejoin: round; }
.chat__panel {
  width: min(340px, calc(100vw - 44px));
  padding: 10px;
  background: #fff; color: var(--ink);
  border-radius: 20px;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, .5);
  display: grid; gap: 4px;
  transform-origin: 100% 100%;
  animation: pop .45s var(--ease);
}
.chat__opt { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; transition: background-color .25s; font-weight: 600; }
.chat__opt:hover { background: var(--paper); }
.chat__opt small { display: block; color: var(--mute-l); font-size: 10.5px; margin-bottom: 2px; }
.chat__ic { width: 42px; height: 42px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex: none; }
.chat__ic svg { width: 19px; height: 19px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat__panel .btn { margin-top: 6px; }

/* ---------------- reveals ---------------- */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease) var(--rd, 0s), transform 1.2s var(--ease) var(--rd, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* shot mode: deterministic captures */
.shotmode [data-reveal], .shotmode .hero__tag, .shotmode .hero__row, .shotmode .hdr { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
.shotmode .ln > span { transform: none !important; animation: none !important; }
.shotmode .mark::after { transform: none !important; animation: none !important; }
.shotmode .chat__btn { transform: none; opacity: 1; }

/* ---------------- responsive ---------------- */
@media (max-width: 1240px) {
  .hdr__mail span { display: none; }
  .hdr__mail { width: 42px; height: 42px; justify-content: center; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; }
}

@media (max-width: 1060px) {
  :root { --hdr: 72px; }
  .nav { display: none; }
  .burger { display: block; }
  .hdr__cta { margin-left: auto; }
  .hdr__logo img, .hdr.is-scrolled .hdr__logo img { width: 136px; }
  .hero__row { grid-template-columns: 1fr; align-items: start; }
  .duo { grid-template-columns: 1fr; }
  .video { aspect-ratio: 16 / 9; min-height: 0; }
  .unique__panel { grid-column: 1 / -1; }
  .unique__media::after { background: linear-gradient(to bottom, rgba(14, 14, 12, .35) 0%, rgba(14, 14, 12, .82) 40%, var(--ink) 70%); }
  .svc-grid { grid-template-columns: 1fr; max-width: 640px; }
  .contact__grid { grid-template-columns: 1fr; }
  .ftr__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --overlap: 72px; --radius: 16px; }
  body { font-size: 16px; }
  .hdr__mail { display: none; }
  .hdr__tel { width: 42px; padding: 0; }
  .hdr__tel span { display: none; }
  .hdr__tel svg { width: 17px; height: 17px; }
  .hero { padding-bottom: calc(var(--overlap) + 190px); }
  .bridge { height: 300px; bottom: calc(var(--overlap) - 4px); }
  .bridge .b-tower, .bridge .b-deck { stroke-width: 2.2; }
  .bridge .b-cable { stroke-width: 2.6; }
  .hero__btns { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero__btns .btn { width: 100%; }
  .hero__tag { font-size: 10.5px; letter-spacing: .16em; }
  .hero__tag-line { width: 28px; }
  .unique { padding-top: 72vw; }
  .unique__media { top: 0; bottom: auto; height: 100vw; }
  .unique__media img { translate: none; }
  .unique__media::after { background: linear-gradient(to bottom, rgba(14, 14, 12, .05) 0%, rgba(14, 14, 12, .3) 50%, var(--ink) 96%); }
  .ulist li { grid-template-columns: 40px minmax(0, 1fr) auto; padding: 17px 0; }
  .ulist__ic { width: 28px; height: 28px; }
  .ftr__top { flex-direction: column; align-items: flex-start; }
  .ftr__cols { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .ftr__cols .ftr__col:first-child { grid-column: 1 / -1; }
  .ftr__h--ghost { display: none; }
  .ftr__legal { flex-direction: column; }
  .contact__lines li { grid-template-columns: 1fr; gap: 2px; }
  .chat { right: 14px; bottom: 14px; }
  .chat__btn { width: 56px; height: 56px; padding: 0; justify-content: center; }
  .chat__btn span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .chat__btn svg { width: 24px; height: 24px; }
  .ftr__h { letter-spacing: .16em; }
  .field-row { grid-template-columns: 104px minmax(0, 1fr); gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal], .js .hero__tag, .js .hero__row, .js .hdr { opacity: 1; transform: none; }
  .js .ln > span, .js .mark::after { transform: none; }
  .marquee__track { animation: none; }
  .video__ring { display: none; }
}

/* preview copy: Wix stock photo left out, panel painted instead */
.unique__media {
  background:
    radial-gradient(62% 68% at 26% 55%, rgba(202, 17, 29, .46), transparent 72%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 44px);
}
