/* Halene landing page. Laid out on the standardbots.com page model, in Connected Intelligence brand.
   Red is for action and light only: buttons, eyebrows, status lights. */

:root{
  --void:#0b0b0b;
  --ink:#151515;
  --card:#1e1c1c;
  --card-2:#262323;
  --line:rgba(219,218,215,.12);
  --snow:#f2f0ee;
  --text:#dbdad7;
  --mute:#85827f;
  --red:#e60000;          /* signal-action: filled buttons, white label passes 4.5:1 */
  --red-hover:#c40000;
  --red-lit:#ff3b2e;      /* signal-raised: red text on dark */
  --font:Poppins,system-ui,-apple-system,"Segoe UI",sans-serif;
  --ease:cubic-bezier(.19,1,.22,1);
  --r:16px;
  --gut:20px;
  --max:1280px;
}
@media (min-width:768px){:root{--gut:40px}}
@media (min-width:1280px){:root{--gut:72px}}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:84px}
body{margin:0;background:var(--void);color:var(--text);font-family:var(--font);font-size:16px;line-height:1.55;-webkit-font-smoothing:antialiased;overflow-x:clip}
img,svg{display:block;max-width:100%}
a{color:inherit}
h1,h2,h3,h4,p,ul,ol,figure,dl,dd{margin:0;padding:0}
ul,ol{list-style:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:0}
:focus-visible{outline:2px solid var(--red-lit);outline-offset:3px}
.skip{position:absolute;left:12px;top:-60px;z-index:999;background:var(--red);color:#fff;padding:10px 16px;border-radius:999px;font-size:14px}
.skip:focus{top:12px}
.wrap{width:100%;max-width:calc(var(--max) + var(--gut)*2);margin:0 auto;padding:0 var(--gut)}

/* ------------------------------------------------------------------ type */
.eyebrow{font-size:13px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:var(--red-lit)}
.h-xl{font-size:clamp(56px,10.4vw,160px);line-height:.88;letter-spacing:-.035em;font-weight:500;text-transform:uppercase;color:#fff}
.h-l{font-size:clamp(40px,5.2vw,76px);line-height:1.02;letter-spacing:-.035em;font-weight:300;color:#fff}
.h-m{font-size:clamp(28px,3vw,44px);line-height:1.08;letter-spacing:-.03em;font-weight:300;color:#fff}
.h-s{font-size:clamp(20px,1.7vw,26px);line-height:1.2;letter-spacing:-.02em;font-weight:400;color:#fff}
.lead{font-size:clamp(16px,1.2vw,18px);line-height:1.55;color:var(--mute);max-width:560px}
.lead b{color:var(--snow);font-weight:500}
.small{font-size:14px;line-height:1.55;color:var(--mute)}

/* ------------------------------------------------------------------ buttons */
.btn{display:inline-flex;align-items:center;gap:12px;height:46px;padding:0 6px 0 20px;border-radius:999px;font-size:14px;font-weight:500;
  text-decoration:none;white-space:nowrap;transition:background .25s var(--ease),transform .25s var(--ease),border-color .25s}
.btn i{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:rgba(0,0,0,.18);transition:transform .35s var(--ease)}
.btn i svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8}
.btn:hover i{transform:translateX(3px)}
.btn--red{background:var(--red);color:#fff}
.btn--red:hover{background:var(--red-hover)}
.btn--dark{background:var(--card-2);color:#fff;padding:0 20px}
.btn--dark:hover{background:#34302f}
.btn--line{color:#fff;padding:0 4px;height:auto;border-radius:0;border-bottom:1px solid rgba(255,255,255,.5);padding-bottom:4px}
.btn--line svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8}
.btn--sm{height:38px;font-size:13px;padding:0 16px}

/* ------------------------------------------------------------------ announcement + nav */
.ann{position:relative;z-index:60;background:var(--ink);text-align:center;font-size:13px;padding:10px var(--gut);color:var(--text)}
.ann a{color:var(--red-lit);text-decoration:none;font-weight:500;margin-left:8px;white-space:nowrap}
.ann a:hover{text-decoration:underline}
.nav{position:sticky;top:0;z-index:50;transition:background .35s var(--ease),backdrop-filter .35s}
.nav[data-solid]{background:rgba(11,11,11,.82);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav__in{display:flex;align-items:center;gap:24px;height:68px}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;color:#fff}
.logo img{width:48px;height:auto;filter:drop-shadow(0 0 1px rgba(0,0,0,.7)) drop-shadow(0 0 10px rgba(255,59,46,.35))}
.logo span{font-size:16px;font-weight:600;letter-spacing:.2em;text-shadow:0 1px 8px rgba(0,0,0,.5)}
.logo small{display:block;font-size:9px;letter-spacing:.14em;font-weight:500;color:var(--mute);margin-top:1px}
.nav__links{display:none;gap:28px;margin:0 auto}
.nav__links a{font-size:14px;font-weight:600;text-decoration:none;color:#fff;text-shadow:0 1px 8px rgba(0,0,0,.5);transition:color .2s}
.nav__links a:hover,.nav__links a:focus-visible{color:var(--red-lit)}
.mnav a:not(.btn):hover{color:var(--red-lit)}
.nav__cta{display:flex;gap:8px;margin-left:auto}
.nav__burger{display:flex;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;align-items:center}
.nav__burger i{width:20px;height:1.6px;background:#fff;transition:transform .3s var(--ease)}
.nav__burger[aria-expanded="true"] i:first-child{transform:translateY(3.3px) rotate(45deg)}
.nav__burger[aria-expanded="true"] i:last-child{transform:translateY(-3.3px) rotate(-45deg)}
.mnav{position:fixed;inset:68px 0 0;z-index:49;background:var(--void);padding:28px var(--gut);display:flex;flex-direction:column;gap:6px}
.mnav[hidden]{display:none}
.mnav a{font-size:28px;font-weight:300;color:#fff;text-decoration:none;padding:8px 0;border-bottom:1px solid var(--line)}
.mnav .btn{margin-top:24px;align-self:flex-start;font-size:15px;border:0}
@media (min-width:1024px){.nav__links{display:flex}.nav__burger{display:none}.nav__cta{margin-left:0}}
@media (max-width:1023px){.nav__cta .btn--dark{display:none}}

/* ------------------------------------------------------------------ hero */
.hero{position:relative;min-height:calc(100svh - 104px);display:flex;align-items:flex-end;overflow:hidden;margin-top:-68px;padding-top:68px}
.hero__bg{position:absolute;inset:0}
.hero__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.1) 30%,rgba(0,0,0,.35) 60%,rgba(0,0,0,.88))}

/* Cinematic loop: 4 shots x 7s = 28s. Each shot fades in over 1.4s, holds, and pushes in while visible.
   Shot 1 opens dark and the lights flicker on. Later shots sit on top, so crossfades overlap cleanly. */
.shot{position:absolute;inset:0;overflow:hidden;opacity:0;animation:shot-in 28s linear infinite both}
.shot img{width:100%;height:100%;object-fit:cover;transform-origin:var(--o,50% 50%);will-change:transform;
  animation:push 28s cubic-bezier(.33,0,.67,1) infinite both}
.shot--1{opacity:1;animation-name:shot-first}
.shot--1 img{--o:62% 45%;animation:push-first 28s cubic-bezier(.33,0,.67,1) infinite both,lights 28s linear infinite both}
@keyframes push-first{0%{transform:scale(1.04)}30%,60%{transform:scale(1.16)}61%,100%{transform:scale(1.04)}}
.shot--2,.shot--2 img{animation-delay:7s}
.shot--3,.shot--3 img{animation-delay:14s}
.shot--4,.shot--4 img{animation-delay:21s}
.shot--2 img{--o:40% 60%}
.shot--3 img{--o:78% 50%}
.shot--4 img{--o:30% 40%}
@keyframes shot-first{0%,25%{opacity:1}30%,95%{opacity:0}100%{opacity:1}}
@keyframes shot-in{0%{opacity:0}5%,25%{opacity:1}30%,100%{opacity:0}}
@keyframes push{0%{transform:scale(1.04)}30%{transform:scale(1.16)}100%{transform:scale(1.16)}}
@keyframes lights{0%,1.5%{filter:brightness(.18) saturate(.6)}2.2%{filter:brightness(.9)}2.8%{filter:brightness(.3) saturate(.7)}
  3.6%{filter:brightness(1.05)}4.2%{filter:brightness(.7)}5.5%,100%{filter:brightness(1) saturate(1)}}
@media (max-width:800px){.shot--1 img{--o:58% 40%}.shot--3 img{--o:80% 50%}}
/* Low data or reduced motion: the first shot only, still. */
.hero--still .shot:not(.shot--1){display:none}
.hero--still .shot,.hero--still .shot img{animation:none!important;opacity:1;filter:none}
.hero__in{position:relative;width:100%;padding-bottom:48px}
.hero__flag{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--text);margin-bottom:22px}
.hero__grid{display:grid;gap:28px;align-items:end}
@media (min-width:1024px){.hero__grid{grid-template-columns:1.5fr 1fr;gap:56px}}
.hero__side p{color:var(--text);font-size:16px;max-width:400px;margin-bottom:22px}
.hero__act{display:flex;flex-wrap:wrap;gap:10px}

.flag{width:22px;height:15px;display:flex;border-radius:2px;overflow:hidden;flex:none}
.flag i{flex:1}.flag i:nth-child(odd){background:#008751}.flag i:nth-child(2){background:#fff}

/* ------------------------------------------------------------------ compatibility marquee */
.marq{padding:36px 0 64px;overflow:hidden}
.marq__label{text-align:center;font-size:13px;color:var(--mute);margin-bottom:26px}
.marq__viewport{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent)}
.marq__track{display:flex;width:max-content;animation:marq 42s linear infinite}
.marq:hover .marq__track,.marq:focus-within .marq__track{animation-play-state:paused}
.marq__item{display:flex;align-items:center;gap:12px;padding:0 36px;font-size:17px;font-weight:500;color:var(--text);white-space:nowrap}
.marq__item svg{width:26px;height:26px;fill:none;stroke:var(--mute);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
@keyframes marq{to{transform:translateX(-50%)}}

/* ------------------------------------------------------------------ sections */
.sec{padding:120px 0}
@media (min-width:1024px){.sec{padding:150px 0}}
.sec__head{display:flex;flex-direction:column;gap:22px;margin-bottom:64px}
.sec__head--center{align-items:center;text-align:center}
.sec__head--center .lead{margin:0 auto}

/* why: alternating statements and renders */
.why{display:grid;gap:40px}
@media (min-width:1024px){.why{grid-template-columns:1fr 1fr;gap:64px 80px;align-items:center}}
.why__text{display:flex;flex-direction:column;gap:44px;max-width:460px}
@media (min-width:1024px){.why__text--r{justify-self:end;grid-column:2}.why__img--l{grid-column:1;grid-row:2}}
.why__img{border-radius:var(--r);overflow:hidden;aspect-ratio:4/3;background:#000}
.why__img img{width:100%;height:100%;object-fit:cover}
.stmt .ic{width:44px;height:44px;border-radius:10px;background:var(--card-2);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.stmt .ic svg{width:22px;height:22px;fill:none;stroke:#fff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.stmt p{font-size:16px;color:var(--mute)}
.stmt p b{display:block;color:var(--snow);font-weight:500}

/* who: six cards with hover photo */
.grid6{display:grid;gap:16px}
@media (min-width:640px){.grid6{grid-template-columns:1fr 1fr}}
@media (min-width:1024px){.grid6{grid-template-columns:repeat(3,1fr)}}
.ucard{position:relative;display:flex;flex-direction:column;min-height:300px;padding:28px;border-radius:var(--r);background:var(--card);text-decoration:none;overflow:hidden;isolation:isolate;transition:transform .35s var(--ease)}
.ucard:hover{transform:translateY(-4px)}
.ucard__ph{position:absolute;inset:0;z-index:-1;opacity:0;transition:opacity .45s var(--ease)}
.ucard__ph img{width:100%;height:100%;object-fit:cover;transform:scale(1.06);transition:transform .8s var(--ease)}
.ucard__ph::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.82))}
.ucard:hover .ucard__ph,.ucard:focus-visible .ucard__ph{opacity:1}
.ucard:hover .ucard__ph img{transform:scale(1)}
.ucard .ic{width:26px;height:26px}
.ucard .ic svg{width:26px;height:26px;fill:none;stroke:#fff;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}
.ucard h3{margin:auto 0 10px;padding-top:56px}
.ucard p{font-size:15px;color:var(--mute);max-width:320px;padding-right:44px;min-height:4.7em}
.ucard:hover p{color:var(--text)}
.ucard .go{position:absolute;right:24px;bottom:24px;width:32px;height:32px;border-radius:50%;background:var(--card-2);display:flex;align-items:center;justify-content:center;transition:background .25s}
/* Phones and tablets: no hover, so every card shows its photo from the first load */
@media (hover:none),(max-width:1023px){
  .ucard__ph{opacity:1}
  .ucard__ph img{transform:none}
  .ucard p{color:var(--text)}
  .ucard .go{background:var(--red)}
}
.ucard .go svg{width:14px;height:14px;fill:none;stroke:#fff;stroke-width:2}
.ucard:hover .go{background:var(--red)}

/* product: four offerings with specs */
.grid4{display:grid;gap:40px 20px}
@media (min-width:640px){.grid4{grid-template-columns:1fr 1fr}}
@media (min-width:1100px){.grid4{grid-template-columns:repeat(4,1fr)}}
.prod{display:flex;flex-direction:column}
.prod .tier{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--red-lit);margin-bottom:6px}
.prod h3{margin-bottom:12px;font-size:clamp(24px,2.1vw,32px);min-height:2.2em;display:flex;align-items:flex-end}
.prod>p{font-size:14px;color:var(--mute);min-height:66px}
.prod__img{margin:24px 0;border-radius:var(--r);overflow:hidden;aspect-ratio:4/5;background:#000}
.prod__img img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.prod:hover .prod__img img{transform:scale(1.04)}
.prod__img--svg img{object-fit:contain;padding:2%;transform:scale(1.35)}
.prod:hover .prod__img--svg img{transform:scale(1.4)}
.prod dl{display:grid;grid-template-columns:1fr 1fr;gap:16px;padding:18px 0;border-top:1px solid var(--line);margin-bottom:20px}
.prod dt{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--mute);margin-bottom:4px}
.prod dd{font-size:15px;color:#fff}
.prod__act{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto}

/* screens slider */
.slider{position:relative}
.slider__track{display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:10px var(--gut) 20px;cursor:grab}
.slider__track::-webkit-scrollbar{display:none}
.slider__track.is-drag{cursor:grabbing;scroll-snap-type:none}
.slide{flex:none;scroll-snap-align:center;display:flex;flex-direction:column;gap:18px;align-items:center}
.slide figcaption{font-size:14px;color:var(--mute);text-align:center;max-width:280px}
.slide figcaption b{display:block;color:#fff;font-weight:500}
.slider__nav{display:flex;gap:8px;justify-content:flex-end;margin-top:24px}
.slider__nav button{width:44px;height:44px;border-radius:50%;background:var(--card-2);display:flex;align-items:center;justify-content:center;transition:background .25s}
.slider__nav button:hover{background:var(--red)}
.slider__nav svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2}
.slider__note{font-size:12px;color:var(--mute);margin-top:14px}

/* phone mockup */
.phone{width:260px;height:530px;border-radius:40px;background:#050505;border:1px solid #2c2929;padding:12px;box-shadow:0 30px 60px rgba(0,0,0,.6)}
.phone__scr{position:relative;height:100%;border-radius:30px;background:#121111;overflow:hidden;display:flex;flex-direction:column;padding:44px 20px 22px;font-size:13px;color:var(--text)}
.phone__scr::before{content:"";position:absolute;top:10px;left:50%;width:84px;height:22px;margin-left:-42px;border-radius:12px;background:#000}
.ph-top{display:flex;justify-content:space-between;align-items:center;font-size:11px;color:var(--mute);margin-bottom:22px}
.ph-brand{display:flex;align-items:center;gap:6px;font-weight:600;letter-spacing:.14em;color:#fff;font-size:11px}
.ph-brand i{width:8px;height:8px;border-radius:50%;background:var(--red-lit);box-shadow:0 0 10px var(--red-lit)}
.ph-h{font-size:22px;line-height:1.15;letter-spacing:-.02em;color:#fff;margin-bottom:10px;font-weight:400}
.ph-p{font-size:12.5px;color:var(--mute);margin-bottom:18px}
.ph-meter{background:var(--card);border-radius:14px;padding:14px;margin-bottom:12px}
.ph-meter span{display:block;font-size:10.5px;color:var(--mute);letter-spacing:.06em;text-transform:uppercase}
.ph-meter b{display:block;font-size:24px;font-weight:400;color:#fff;margin-top:2px}
.ph-bar{height:6px;border-radius:3px;background:#2c2929;margin-top:10px;overflow:hidden}
.ph-bar i{display:block;height:100%;width:8%;background:var(--red-lit)}
.ph-row{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--line);font-size:12.5px}
.ph-row b{color:#fff;font-weight:500}
.ph-btn{margin-top:auto;height:44px;border-radius:999px;background:var(--red);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:500;font-size:13px}
.ph-btn2{height:40px;border-radius:999px;border:1px solid #3a3737;color:var(--text);display:flex;align-items:center;justify-content:center;font-size:12.5px;margin-top:8px}
.ph-ok{width:54px;height:54px;border-radius:50%;background:rgba(255,59,46,.12);display:flex;align-items:center;justify-content:center;margin:10px 0 18px}
.ph-ok svg{width:26px;height:26px;fill:none;stroke:var(--red-lit);stroke-width:2.2}
.ph-token{font-family:ui-monospace,Consolas,monospace;font-size:14px;letter-spacing:.06em;color:#fff;background:var(--card);border-radius:12px;padding:14px;text-align:center;line-height:1.6}

/* laptop mockup */
.laptop{width:min(640px,86vw)}
.laptop__scr{aspect-ratio:16/10;border-radius:14px 14px 0 0;background:#050505;border:1px solid #2c2929;padding:10px}
.laptop__base{height:14px;border-radius:0 0 14px 14px;background:linear-gradient(#2a2727,#161414);margin:0 -4%}
.con{height:100%;border-radius:6px;background:#121111;display:grid;grid-template-columns:120px 1fr;overflow:hidden;font-size:11px}
.con__side{background:#0d0c0c;padding:14px 12px;display:flex;flex-direction:column;gap:6px;color:var(--mute)}
.con__side b{color:#fff;font-weight:600;letter-spacing:.14em;font-size:10px;margin-bottom:10px;display:flex;gap:6px;align-items:center}
.con__side b i{width:7px;height:7px;border-radius:50%;background:var(--red-lit)}
.con__side span{padding:6px 8px;border-radius:6px}
.con__side span.on{background:var(--card);color:#fff}
.con__main{padding:14px 16px;display:flex;flex-direction:column;gap:10px;min-width:0}
.con__h{font-size:14px;color:#fff}
.con__kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.con__kpi{background:var(--card);border-radius:8px;padding:10px}
.con__kpi span{color:var(--mute);font-size:9.5px;text-transform:uppercase;letter-spacing:.06em}
.con__kpi b{display:block;font-size:18px;font-weight:400;color:#fff;margin-top:2px}
.con__chart{flex:1;min-height:60px;background:var(--card);border-radius:8px;padding:8px}
.con__chart svg{width:100%;height:100%}
.con__tbl{display:grid;gap:4px}
.con__tbl div{display:grid;grid-template-columns:1.2fr 1fr .8fr;gap:8px;padding:6px 8px;border-radius:6px;background:#181616;color:var(--text)}
.con__tbl em{font-style:normal;color:#4fb286}
.con__tbl em.x{color:var(--red-lit)}

/* decision section + band */
.band{margin-top:64px;border-radius:var(--r);overflow:hidden;aspect-ratio:21/9;background:#000}
.band img{width:100%;height:100%;object-fit:cover}
@media (max-width:767px){.band{aspect-ratio:4/3}}

/* technology: exploded meter with features on both sides */
.tech{display:grid;gap:40px;align-items:center}
@media (min-width:1024px){.tech{grid-template-columns:1fr 1.3fr 1fr;gap:24px}}
.tech__col{display:flex;flex-direction:column;gap:48px}
@media (min-width:1024px){.tech__col--r{text-align:right;align-items:flex-end}}
.tfeat .ic{width:36px;height:36px;border-radius:8px;background:var(--card-2);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.tfeat .ic svg{width:18px;height:18px;fill:none;stroke:#fff;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.tfeat h3{font-size:clamp(18px,1.5vw,22px);font-weight:400;line-height:1.25;color:#fff;max-width:220px}
.tfeat p{font-size:14px;color:var(--mute);margin-top:6px;max-width:240px}
.tech__img{position:relative}
.tech__img img{width:100%;height:auto;mix-blend-mode:lighten}
.tech__img::before{content:"";position:absolute;left:50%;top:58%;width:40%;aspect-ratio:1;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(255,59,46,.18),transparent 70%);pointer-events:none}

/* built in lagos */
.built{display:grid;gap:32px;align-items:center;padding-top:40px}
@media (min-width:1024px){.built{grid-template-columns:1fr 1fr;padding:40px 80px 0}}
.built .flag{width:66px;height:44px;border-radius:4px;margin-bottom:22px}
.built p{color:var(--mute);margin-bottom:22px;max-width:460px}

/* mission card */
.mcard{position:relative;border-radius:var(--r);overflow:hidden;padding:110px 24px;text-align:center;isolation:isolate}
.mcard>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}
.mcard::after{content:"";position:absolute;inset:0;z-index:-1;background:rgba(0,0,0,.62)}
.mcard .h-l{max-width:900px;margin:18px auto 20px}
.mcard p{color:var(--text);margin-bottom:30px}
.mcard .acts{display:flex;justify-content:center;flex-wrap:wrap;gap:18px;align-items:center}

/* booking form */
.book{display:grid;gap:48px}
@media (min-width:1024px){.book{grid-template-columns:1fr 1.25fr;gap:64px}}
.form{display:grid;gap:16px}
@media (min-width:640px){.form{grid-template-columns:repeat(2,1fr)}.form .full{grid-column:1/-1}}
@media (min-width:1100px){.form{grid-template-columns:repeat(3,1fr)}}
.fld{display:flex;flex-direction:column;gap:6px}
.fld label,.fld legend{font-size:13px;font-weight:500;color:#fff}
.fld label i,.fld legend i{font-style:normal;color:var(--red-lit)}
.fld input,.fld select,.fld textarea{background:var(--card);border:1px solid #2c2929;border-radius:8px;height:46px;padding:0 14px;font-size:16px;color:#fff}
.fld textarea{height:120px;padding:12px 14px;resize:vertical}
.fld input::placeholder,.fld textarea::placeholder{color:#6b6866}
.fld input:focus,.fld select:focus,.fld textarea:focus{outline:2px solid var(--red-lit);outline-offset:1px;border-color:transparent}
.fld[data-bad] input,.fld[data-bad] select,.fld[data-bad] textarea{border-color:var(--red-lit)}
.fld .err{font-size:12px;color:var(--red-lit);min-height:1.1em}
fieldset.fld{border:0;padding:0;margin:0}
.radios{display:flex;flex-direction:column;gap:10px;margin-top:6px}
.radios label{display:flex;align-items:center;gap:10px;font-weight:400;color:var(--text);font-size:14px;cursor:pointer}
.radios input{width:18px;height:18px;accent-color:var(--red)}
.form__foot{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px}
.chk{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text);cursor:pointer}
.chk input{width:18px;height:18px;accent-color:var(--red)}
.form button.btn{border:0}
.form__ok{font-size:14px;color:var(--text)}

/* people cta */
.pcta{position:relative;display:grid;align-items:center;border-radius:var(--r);overflow:hidden;background:var(--ink);min-height:420px;isolation:isolate}
.pcta>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:70% 50%;z-index:-2}
.pcta::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(0,0,0,.85) 20%,rgba(0,0,0,.1) 70%)}
.pcta__txt{padding:48px 32px}
@media (min-width:768px){.pcta__txt{padding:64px 72px}}
.pcta .h-m{margin-bottom:28px;max-width:420px}

/* footer */
.foot{padding:90px 0 36px;border-top:1px solid var(--line);margin-top:120px}
.foot__grid{display:grid;gap:40px}
@media (min-width:768px){.foot__grid{grid-template-columns:1.4fr repeat(4,1fr)}}
.foot h4{font-size:13px;font-weight:600;color:#fff;margin-bottom:16px}
.foot li{margin-bottom:10px}
.foot li a{font-size:14px;color:var(--mute);text-decoration:none;transition:color .2s}
.foot li a:hover{color:#fff}
.foot__about p{font-size:14px;color:var(--mute);margin:18px 0 20px;max-width:320px}
.foot__legal{display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px;margin-top:64px;padding-top:24px;border-top:1px solid var(--line);font-size:13px;color:var(--mute)}
.foot__legal a{text-decoration:none}

/* ------------------------------------------------------------------ reveal, with failsafe */
html.js .rv{opacity:0;transform:translateY(16px);transition:opacity .8s var(--ease),transform .8s var(--ease);animation:rv-safe 1ms linear 4s forwards}
html.js .rv.in{opacity:1;transform:none;animation:none}
@keyframes rv-safe{to{opacity:1;transform:none}}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  html.js .rv{opacity:1;transform:none}
}
.hp{position:absolute!important;left:-9999px;width:1px;height:1px;opacity:0}
