/* ===== Palantir layout + MicroAGI (Neue Haas Grotesk) type & footer ===== */
@import url("/atlas/fonts/inter/inter.css");

/* ---- Fonts: MicroAGI brand type (Neue Haas Grotesk, Inter fallback) ---- */
@font-face{font-family:"Neue Haas Grotesk";src:url(/atlas/fonts/neuehaas/nhg-roman.otf) format("opentype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Neue Haas Grotesk";src:url(/atlas/fonts/neuehaas/nhg-medium.otf) format("opentype");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Neue Haas Grotesk";src:url(/atlas/fonts/neuehaas/nhg-bold.otf) format("opentype");font-weight:700;font-style:normal;font-display:swap}

/* ---- Reset / tokens ---- */
:root{
  --ink:#1e2124;        /* primary text / dark surfaces */
  --grey:#efefef;       /* grey sections */
  --white:#fff;
  --muted:#6b7075;
  --line:rgba(30,33,36,.14);
  --maxw:1440px;
  --pad:44px;
  --sans:"Neue Haas Grotesk","Inter",system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --disp:"Neue Haas Grotesk","Inter",system-ui,-apple-system,Helvetica,Arial,sans-serif;
  --ease:cubic-bezier(.2,.7,.2,1);   /* one easing curve everywhere */
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:auto}
body{font-family:var(--sans);font-size:18px;line-height:1.4;color:var(--ink);background:#fff;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}

/* ===== Sections (free scroll, content reveals as it enters) ===== */
.snap{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;padding:clamp(90px,13vh,160px) 0;overflow:hidden}
.snap.section--grey{background:var(--grey)}
.snap.section--white{background:#fff}
.snap.section--dark{background:#0a0a0a;color:#fff}
/* staggered word reveal (split into .word > .word__i by JS) */
.split-up .word,.split-lr .word{display:inline-block}
/* lede: words fade + rise in sequence (no mask → no glyph clipping) */
.split-up .word__i{display:inline-block;opacity:0;transform:translateY(.5em);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.snap.in .split-up .word__i{opacity:1;transform:none;transition-delay:calc(var(--wi)*.04s)}
/* title: words wipe in left→right */
.split-lr .word__i{display:inline-block;opacity:0;clip-path:inset(0 106% 0 -6%);transition:clip-path .6s var(--ease),opacity .3s var(--ease)}
.snap.in .split-lr .word__i{opacity:1;clip-path:inset(0 -6% 0 -6%);transition-delay:calc(var(--wi)*.06s)}
/* per-section reveal: children animate when the panel snaps into view */
.reveal-el{opacity:0;transform:translateY(30px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.snap.in .reveal-el{opacity:1;transform:none}
/* flex panels shrink a margin:auto wrap to content width — force full width back */
.snap>.wrap{width:100%}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
ul{list-style:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad)}

/* ---- Header (Palantir-style: transparent+white over dark hero, cream+ink on scroll, white over open overlay) ---- */
.mhead{position:fixed;inset-inline:0;top:0;z-index:70;margin:clamp(10px,1.5vw,18px);display:flex;align-items:center;justify-content:space-between;
  padding:13px clamp(14px,2.2vw,26px);border:1px solid transparent;transition:top .2s,background-color .3s,border-color .3s}
.mhead:not(.scrolled):not(.open){mix-blend-mode:difference}
.mhead.scrolled:not(.open){background:rgba(242,242,242,.75);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-color:rgba(26,33,36,.1)}
.mhead__logo{display:flex;align-items:center;position:relative;z-index:2}
.mhead__logo img{height:23px;width:auto;display:block;filter:brightness(0) invert(1);transition:filter .3s}
.mhead.scrolled:not(.open) .mhead__logo img{filter:none}
.mhead__actions{display:flex;align-items:center;gap:10px;position:relative;z-index:2}
.mhead__cta,.mhead__menu{height:46px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.4);color:#fff;background:none;transition:background-color .2s,color .2s,border-color .3s}
.mhead__cta{padding:0 28px;font-family:inherit;font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.16em;text-decoration:none;white-space:nowrap;cursor:pointer}
.mhead__cta:hover{background:#fff;color:#141414}
.mhead__menu{width:46px;cursor:pointer}
.mhead.scrolled:not(.open) .mhead__cta,.mhead.scrolled:not(.open) .mhead__menu{border-color:rgba(26,33,36,.35);color:#1a1a1a}
.mhead.scrolled:not(.open) .mhead__cta:hover{background:#1a1a1a;color:#f2f2f2}
.mburger{position:relative;display:block;height:13px;width:19px}
.mburger i{position:absolute;left:0;height:1.6px;width:100%;background:currentColor;transition:transform .3s,top .3s,opacity .2s}
.mburger i:nth-child(1){top:0}.mburger i:nth-child(2){top:6px}.mburger i:nth-child(3){top:12px}
.mhead.open .mburger i:nth-child(1){top:6px;transform:rotate(45deg)}
.mhead.open .mburger i:nth-child(2){opacity:0}
.mhead.open .mburger i:nth-child(3){top:6px;transform:rotate(-45deg)}
/* Full-screen overlay menu */
.mnav{position:fixed;inset:0;z-index:60;background:rgba(20,20,20,.88);-webkit-backdrop-filter:blur(14px) saturate(.75);backdrop-filter:blur(14px) saturate(.75);display:flex;flex-direction:column;justify-content:center;
  padding:clamp(84px,14vh,112px) clamp(20px,5vw,44px) clamp(16px,5vh,64px);opacity:0;visibility:hidden;
  transition:opacity .45s cubic-bezier(.22,1,.36,1),visibility .45s}
.mnav.open{opacity:1;visibility:visible}
.mnav__list{display:flex;flex-direction:column}
.mnav__list a{display:inline-flex;width:fit-content;align-items:center;gap:20px;padding:clamp(3px,1vh,10px) 0;text-decoration:none;
  color:rgba(255,255,255,.85);font-family:var(--disp);font-weight:500;font-size:clamp(38px,min(8vw,11vh),88px);line-height:1.02;letter-spacing:-.035em;
  opacity:0;transform:translateY(24px);transition:color .3s}
.mnav.open .mnav__list a{opacity:1;transform:none;transition:transform .65s cubic-bezier(.22,1,.36,1),opacity .65s,color .3s}
.mnav.open .mnav__list a:nth-child(1){transition-delay:.12s}
.mnav.open .mnav__list a:nth-child(2){transition-delay:.185s}
.mnav.open .mnav__list a:nth-child(3){transition-delay:.25s}
.mnav.open .mnav__list a:nth-child(4){transition-delay:.315s}
.mnav.open .mnav__list a:nth-child(5){transition-delay:.38s}
.mnav__list a:hover{color:#fff}
.mnav__list a span{display:inline-block;transition:transform .5s cubic-bezier(.22,1,.36,1)}
.mnav__list a:hover span{transform:translateX(12px)}
.mnav__list a em{font-style:normal;font-size:.42em;opacity:0;transform:translateX(-16px);transition:opacity .5s,transform .5s cubic-bezier(.22,1,.36,1)}
.mnav__list a:hover em{opacity:1;transform:none}
.mnav__foot{margin-top:auto;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:24px;
  border-top:1px solid rgba(255,255,255,.12);padding-top:32px;opacity:0;transform:translateY(24px);transition:opacity .65s,transform .65s cubic-bezier(.22,1,.36,1)}
.mnav.open .mnav__foot{opacity:1;transform:none;transition-delay:.45s}
.mnav__foot span{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.18em;color:rgba(255,255,255,.4)}
.mnav__foot a{font-size:13px;color:rgba(255,255,255,.6);text-decoration:none;transition:color .3s}
.mnav__foot a:hover{color:#fff}

/* ---- Hero (fixed backdrop; content scrolls over it, Palantir-style) ---- */
.hero{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:1;padding:0;background:#fff;align-items:center;justify-content:center;overflow:hidden;isolation:isolate}
.hero::before{content:"";position:absolute;inset:0;z-index:0;background:#fff url('/video/atlas-teaser-poster.jpg') 50% 50%/cover no-repeat}
.hero-spacer{height:100vh}
.hero__video{position:absolute;inset:0;z-index:1;display:block;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover;object-position:50% 50%;transform:none;background:#fff;opacity:0;transition:opacity .18s ease}
.hero.has-playing-video .hero__video{opacity:1}
.hero__video::-webkit-media-controls-start-playback-button,.hero__video::-webkit-media-controls-overlay-play-button{display:none!important;-webkit-appearance:none}
.hero__sr-title,.hero__sr-credit{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.hero__scroll{position:absolute;bottom:34px;left:50%;transform:translateX(-50%);z-index:2;color:#fff;font-size:14px;letter-spacing:.04em;display:flex;flex-direction:column;align-items:center;gap:14px;opacity:0;mix-blend-mode:difference;transition:opacity 1.1s var(--ease) .25s}
.hero.is-ready .hero__scroll{opacity:1}
.hero.is-scrolled .hero__scroll{opacity:0;transition:opacity .4s var(--ease)}
.hero.has-safe-credit .hero__scroll{opacity:0}
.hero__credit{position:absolute;left:0;bottom:0;z-index:2;width:min(820px,calc(100% - 76px));height:clamp(72px,9vh,100px);padding:0 clamp(26px,3.6vw,68px) clamp(24px,4vh,44px);display:flex;align-items:flex-end;font-family:var(--sans);font-size:clamp(12px,1.05vw,18px);font-weight:500;line-height:1.2;letter-spacing:-.02em;opacity:0;visibility:hidden;pointer-events:none}
.hero__credit::before{content:"";position:absolute;inset:0;z-index:-1}
.hero__credit.is-visible{opacity:1;visibility:visible}
.hero__credit--light{color:#111}
.hero__credit--light::before{background:linear-gradient(90deg,#ebebeb 0%,#ebebeb 94%,rgba(235,235,235,0) 100%)}
.hero__credit--dark{color:#fff}
.hero__credit--dark::before{background:linear-gradient(90deg,#000 0%,#000 94%,rgba(0,0,0,0) 100%)}
@media(max-width:600px){
  .hero__credit{left:16px;bottom:78px;width:calc(100% - 92px);height:auto;min-height:0;padding:10px 12px;font-size:11px;line-height:1.28}
  .hero__credit::before{inset:0;background:var(--credit-mobile-bg)!important}
  .hero__credit--light{--credit-mobile-bg:rgba(235,235,235,.94)}
  .hero__credit--dark{--credit-mobile-bg:rgba(0,0,0,.88)}
}
/* perf: once content fully covers the fixed hero, stop painting it */
.hero.is-off{visibility:hidden}
.hero.is-off .hero__credit{opacity:0;visibility:hidden}
.hero__scroll .arrow{font-size:18px;animation:bob 1.8s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}
.hero__sound{position:absolute;right:calc(clamp(10px,1.5vw,18px) + clamp(14px,2.2vw,26px) + 1px);bottom:clamp(22px,3vw,38px);z-index:3;width:46px;height:46px;padding:0;border:0;background:transparent;color:#fff;display:grid;place-items:center;cursor:pointer;opacity:.9;mix-blend-mode:difference;transition:opacity .2s var(--ease),transform .2s var(--ease)}
.hero__sound:hover{opacity:1;transform:scale(1.08)}
.hero__sound:focus-visible{outline:2px solid #fff;outline-offset:4px}
.hero__sound-icon{display:grid;place-items:center;width:32px;height:32px}
.hero__sound svg{grid-area:1/1;width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.hero__sound svg path:first-child{fill:currentColor;stroke:none}
.hero__sound-on{display:none}
.hero__sound.is-on .hero__sound-off{display:none}
.hero__sound.is-on .hero__sound-on{display:block}
.hero.is-off .hero__sound{opacity:0;pointer-events:none;transform:translateY(8px)}

/* ---- Content layer (scrolls over fixed hero) ---- */
.content{position:relative;z-index:2}

/* ---- Reveal-on-scroll (cohesive fade + rise) ---- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal--fade{transform:none}   /* opacity-only (rows whose name types on scroll) */

/* ---- Section scaffolding ---- */
.section{padding:96px 0}
.section--grey{background:var(--grey)}
.section--white{background:#fff}
.eyebrow{font-size:13px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--ink)}

/* ---- Latest News ---- */
/* ---- Built by top Physical AI researchers (marquee) ---- */
.team{padding:clamp(80px,12vh,150px) 0}
.team__head{margin-bottom:44px}
.team__title{font-family:var(--disp);font-size:clamp(26px,2.6vw,38px);line-height:1.15;letter-spacing:-.8px;font-weight:400;color:var(--ink);margin:0}

.marquee{overflow:hidden;width:100%;white-space:nowrap;border-top:1px solid rgba(30,33,36,.14);border-bottom:1px solid rgba(30,33,36,.14);padding:30px 0;-webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.marquee__track{display:inline-flex;align-items:center;animation:marquee 40s linear infinite;will-change:transform}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee__group{display:inline-flex;align-items:center}
.marquee__name{font-family:var(--disp);font-size:60px;line-height:1;font-weight:400;letter-spacing:-2.4px;color:#1e1f2b;padding:0 34px}
.marquee__sep{font-family:var(--disp);font-size:40px;font-style:italic;color:#c4c4c4;line-height:1}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (max-width:768px){.marquee__name{font-size:38px;padding:0 22px}.marquee__sep{font-size:26px}.team__head{margin-bottom:32px}}

/* Team headshots carousel — full-bleed, ~4.5 visible, B&W, hover→colour */
.tcarousel{overflow:hidden;width:100%;-webkit-mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent);mask-image:linear-gradient(90deg,transparent,#000 3%,#000 97%,transparent)}
.tcarousel__track{display:flex;width:max-content;animation:tscroll 65s linear infinite;will-change:transform}
.tcarousel:hover .tcarousel__track{animation-play-state:paused}
@keyframes tscroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tcard{flex:0 0 clamp(260px,27vw,400px);margin:0 clamp(16px,1.6vw,28px) 0 0}
.tcard__img{aspect-ratio:4/5;border-radius:0;overflow:hidden;background:#e2e2e2}
.tcard__img img{width:100%;height:100%;object-fit:cover;object-position:center;filter:grayscale(1) contrast(1.02);transition:filter .5s var(--ease),transform .6s var(--ease)}
.tcard:hover .tcard__img img{filter:grayscale(0);transform:scale(1.05)}
.tcard__cap{margin-top:10px;display:flex;flex-direction:column;gap:2px}
.tcard__name{font-family:var(--disp);font-size:clamp(17px,1.4vw,21px);letter-spacing:-.3px;color:var(--ink)}
.tcard__role{font-size:14px;line-height:1.35;color:#6b7075}
.tcard__mail{font-size:14px;line-height:1.35;color:#9a9ea3;text-decoration:none;transition:color .2s var(--ease)}
.tcard__mail:hover{color:var(--ink);text-decoration:underline}

/* ===== Snap panel content ===== */
/* Lede + closing statement */
/* plain white lede: the statement + its word-by-word reveal carry the moment */
.snap.lede-sec{text-align:center;min-height:100vh}
.lede{font-family:var(--disp);font-size:clamp(32px,5vw,66px);line-height:1.12;letter-spacing:-2px;text-align:center;max-width:1180px;margin:0 auto;color:#1e1f2b}

/* Product panels */
.psec__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(32px,5vw,80px);align-items:center;width:100%}
.psec--left .psec__body{order:2}
.psec--left .psec__media{order:1}
.psec__index{display:block;font-family:var(--disp);font-size:16px;color:#9a9ea3;margin-bottom:16px}
.psec__name{font-family:var(--disp);font-weight:400;font-size:clamp(46px,6vw,92px);line-height:.98;letter-spacing:-3px;color:#1e1f2b;margin-bottom:22px;clip-path:inset(0 100% 0 0);transition:clip-path .95s var(--ease) .1s}
.snap.in .psec__name{clip-path:inset(0 0 0 0)}
.psec__tag{font-family:var(--disp);font-size:clamp(20px,2vw,27px);line-height:1.18;letter-spacing:-.6px;color:#1e1f2b;margin-bottom:22px;max-width:560px}
.psec__desc{font-size:clamp(15px,1.15vw,18px);line-height:1.6;color:#3a3f44;max-width:580px}
.psec__media img{width:100%;height:clamp(300px,68vh,720px);object-fit:cover;border-radius:0;box-shadow:0 30px 80px rgba(0,0,0,.20)}
/* staggered reveal inside each product panel */
.psec__index,.psec__tag,.psec__desc{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.psec__media{opacity:0;transform:scale(1.05);transition:opacity 1s var(--ease),transform 1.25s var(--ease)}
.snap.in .psec__index{opacity:1;transform:none;transition-delay:.04s}
.snap.in .psec__tag{opacity:1;transform:none;transition-delay:.2s}
.snap.in .psec__desc{opacity:1;transform:none;transition-delay:.3s}
.snap.in .psec__media{opacity:1;transform:none}
@media(max-width:860px){
  .psec__grid{grid-template-columns:1fr;gap:26px}
  .psec--left .psec__body{order:1}
  .psec--left .psec__media{order:2}
  .psec__media img{height:32vh}
  .psec__desc{font-size:15px}
}


/* Partnership process reveal */

/* Get in touch — Aaron-led CTA with the detailed form in a modal */
.gt-sec{min-height:88vh}
.gt{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:clamp(64px,10vw,170px);align-items:end;text-align:left;max-width:1280px;margin:0 auto}
.gt__intro{align-self:start}
.gt__title{max-width:760px;margin:0;font-family:var(--disp);font-weight:400;font-size:clamp(58px,8vw,116px);letter-spacing:-.055em;line-height:.9;color:var(--ink)}
.gt__contact{align-self:end;padding-top:clamp(26px,3vw,38px);border-top:1px solid var(--line)}
.gt__person{display:flex;align-items:center;gap:22px}
.gt__avatar{width:108px;height:108px;border-radius:50%;overflow:hidden;flex:none;background:#e6e6e6}
.gt__avatar img,.gt-modal__avatar img{width:100%;height:100%;object-fit:cover;object-position:center}
.gt__name{font-family:var(--disp);font-size:clamp(23px,2vw,30px);letter-spacing:-.035em;color:var(--ink);line-height:1.08}
.gt__role{margin-top:7px;font-size:14px;color:#6b7075}
.gt__open{width:100%;min-height:64px;margin-top:clamp(28px,3vw,42px);display:flex;align-items:center;justify-content:space-between;gap:20px;padding:0 24px;border:0;border-radius:0;background:var(--ink);color:#fff;font-family:inherit;font-size:16px;cursor:pointer;transition:background .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease)}
.gt__open:hover{background:#000;transform:translateY(-2px);box-shadow:0 18px 44px rgba(0,0,0,.18)}
.gt__arr{display:inline-block;transition:transform .25s var(--ease)}
.gt__open:hover .gt__arr,.gt__submit:hover .gt__arr{transform:translateX(6px)}
.gt__email{margin:18px 0 0;color:#6b7075;font-size:14px;line-height:1.5}
.gt__email a{color:var(--ink);text-decoration:underline;text-decoration-color:rgba(30,33,36,.35);text-underline-offset:4px;transition:opacity .2s}
.gt__email a:hover{opacity:.6}

/* Atlas contact dialog */
.gt-modal{width:min(980px,calc(100% - 32px));max-width:none;max-height:calc(100dvh - 32px);margin:auto;padding:0;border:0;border-radius:0;background:#fff;color:var(--ink);overflow:auto;box-shadow:0 36px 100px rgba(0,0,0,.32)}
.gt-modal[open]{animation:gt-modal-in .34s var(--ease) both}
.gt-modal::backdrop{background:rgba(12,14,16,.7);-webkit-backdrop-filter:blur(12px) saturate(.8);backdrop-filter:blur(12px) saturate(.8);animation:gt-backdrop-in .28s ease both}
@keyframes gt-modal-in{from{opacity:0;transform:translateY(18px) scale(.99)}to{opacity:1;transform:none}}
@keyframes gt-backdrop-in{from{opacity:0}to{opacity:1}}
.gt-modal__close{position:absolute;right:20px;top:20px;z-index:2;width:46px;height:46px;display:grid;place-items:center;border:0;border-radius:0;background:var(--ink);color:#fff;cursor:pointer}
.gt-modal__close:hover{background:#000}
.gt-modal__close svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round}
.gt-modal__layout{display:grid;grid-template-columns:340px minmax(0,1fr);min-height:560px}
.gt-modal__intro{display:flex;flex-direction:column;padding:58px 44px 44px;background:var(--ink);color:#fff}
.gt-modal__title{max-width:280px;font-family:var(--disp);font-weight:400;font-size:46px;line-height:.96;letter-spacing:-.045em}
.gt-modal__person{display:flex;align-items:center;gap:15px;margin-top:auto;padding-top:42px}
.gt-modal__avatar{width:64px;height:64px;border-radius:50%;overflow:hidden;flex:none;background:#383b3e}
.gt-modal__name{font-size:18px;line-height:1.15;color:#fff}
.gt-modal__role{margin-top:4px;font-size:12px;color:rgba(255,255,255,.55)}
.gt-modal__body{display:flex;align-items:center;padding:70px 62px 48px;background:#fff}
.gt__form{width:100%;display:flex;flex-direction:column}
.gt__form[hidden],.gt__done[hidden]{display:none}
.gt__honeypot{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important}
.gt__grid{display:grid;grid-template-columns:1fr 1fr;gap:20px 16px}
.gt__label{display:flex;min-width:0;flex-direction:column;gap:9px}
.gt__label>span{font-size:11px;font-weight:500;letter-spacing:.13em;text-transform:uppercase;color:#666b70}
.gt__label>span::after{content:" *";color:#a44b40}
.gt__label--wide{grid-column:1/-1}
.gt__field{width:100%;min-width:0;height:54px;padding:0 17px;border:1px solid transparent;border-radius:0;background:#f2f2f2;color:var(--ink);font-family:var(--sans);font-size:15px;outline:none;transition:border-color .2s,background .2s}
.gt__field::placeholder{color:#999da1}
.gt__field:focus{border-color:var(--ink);background:#fff}
.gt__field.invalid{border-color:#b44a3e;background:#fff}
.gt__select{appearance:none;padding-right:42px;background-image:linear-gradient(45deg,transparent 50%,#666 50%),linear-gradient(135deg,#666 50%,transparent 50%);background-position:calc(100% - 19px) 24px,calc(100% - 14px) 24px;background-size:5px 5px,5px 5px;background-repeat:no-repeat}
.gt__area{height:auto;min-height:138px;padding:15px 17px;resize:vertical;line-height:1.5}
.gt__status{min-height:20px;margin:16px 0 0;color:#984238;font-size:13px;line-height:1.45}
.gt__submit{min-height:58px;margin-top:6px;display:inline-flex;align-items:center;justify-content:space-between;gap:16px;padding:0 22px;border:0;border-radius:0;background:var(--ink);color:#fff;font-family:inherit;font-size:15px;cursor:pointer;transition:background .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease)}
.gt__submit:hover{background:#000;transform:translateY(-2px);box-shadow:0 16px 38px rgba(0,0,0,.18)}
.gt__submit:disabled{cursor:wait;opacity:.55;transform:none;box-shadow:none}
.gt__privacy{max-width:560px;margin:14px 0 0;color:#7a7f84;font-size:11px;line-height:1.5}
.gt__privacy a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.gt__done{width:100%;padding:20px 0}
.gt__done-kicker{margin-bottom:22px!important;font-size:11px!important;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:#74797d!important}
.gt__done h3{max-width:480px;margin:0;font-family:var(--disp);font-weight:400;font-size:clamp(38px,5vw,58px);line-height:.98;letter-spacing:-.045em;color:var(--ink);outline:none}
.gt__done>p:not(.gt__done-kicker){margin-top:20px;color:#6b7075;font-size:16px}
.gt__done-close{min-width:150px;height:56px;margin-top:38px;border:0;border-radius:0;background:var(--ink);color:#fff;font-family:inherit;font-size:14px;cursor:pointer}
.gt__open:focus-visible,.gt-modal__close:focus-visible,.gt__submit:focus-visible,.gt__done-close:focus-visible{outline:2px solid currentColor;outline-offset:4px}

@media(max-width:860px){
  .gt-sec{min-height:0}
  .gt{grid-template-columns:1fr;gap:64px;max-width:680px}
  .gt__contact{width:100%;max-width:520px}
}
@media(max-width:720px){
  .gt-modal{width:calc(100% - 16px);max-height:calc(100dvh - 16px)}
  .gt-modal__layout{grid-template-columns:1fr;min-height:0}
  .gt-modal__intro{min-height:300px;padding:70px 24px 28px}
  .gt-modal__title{max-width:420px;font-size:38px}
  .gt-modal__person{margin-top:30px;padding-top:0}
  .gt-modal__body{padding:32px 24px 38px}
  .gt__grid{grid-template-columns:1fr}
  .gt__label--wide{grid-column:auto}
}
@media(max-width:480px){
  .gt__title{font-size:clamp(52px,20vw,84px)}
  .gt__person{gap:17px}
  .gt__avatar{width:88px;height:88px}
  .gt__open{min-height:60px}
}

/* Our Software — single card holding the 3 products (Data Collection / Fine Tuning / Deployment) */
.snap.sw{overflow:visible;padding:clamp(90px,13vh,160px) 0}
.sw .prod{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.sw.in .prod{opacity:1;transform:none}
.sw.in .prod:nth-child(1){transition-delay:.06s}
.sw.in .prod:nth-child(2){transition-delay:.18s}
.sw.in .prod:nth-child(3){transition-delay:.3s}
.prod__name{clip-path:inset(0 105% 0 0);transition:clip-path .85s var(--ease)}
.sw.in .prod:nth-child(1) .prod__name{transition-delay:.1s}
.sw.in .prod:nth-child(2) .prod__name{transition-delay:.22s}
.sw.in .prod:nth-child(3) .prod__name{transition-delay:.34s}
.sw.in .prod__name{clip-path:inset(0 0 0 0)}

/* Slide 14 — SCROLL-SCRUBBED "With us / Without us" timeline (sticky; arrow advances with scroll) */
.snap.models{display:block;padding:0;overflow:visible}
.models__scroll{position:relative;height:280vh}
.models__sticky{position:sticky;top:0;height:100vh;display:flex;flex-direction:column;justify-content:center}
.models__title{font-family:var(--disp);font-weight:400;font-size:clamp(30px,4.2vw,58px);line-height:1.05;letter-spacing:-1.8px;color:#fff;margin-bottom:clamp(48px,7vh,88px);max-width:1400px}
.tl{--col:clamp(100px,12vw,182px)}
.tl__row{display:flex;align-items:flex-start;gap:clamp(16px,2vw,40px)}
.tl__row+.tl__row{margin-top:clamp(40px,6vh,80px)}
.tl__label{width:clamp(110px,12vw,200px);flex:none;font-family:var(--disp);font-weight:400;font-size:clamp(22px,2.3vw,36px);letter-spacing:-.8px;color:#fff;padding-top:1px}
.tl__row--without .tl__label{color:rgba(255,255,255,.5)}
.tl__track{position:relative;flex:1;min-width:0}
/* faint full guide, bright progress line drawn to the playhead, glowing playhead */
.tl__guide{position:absolute;top:8px;left:0;right:0;border-top:1px dashed rgba(255,255,255,.16)}
.tl__prog{position:absolute;top:8px;left:0;transform-origin:left;transform:scaleX(0);will-change:transform}
.tl__prog--full{border-top:1.5px solid rgba(255,255,255,.9)}
.tl__prog--dash{border-top:1.5px dashed rgba(255,255,255,.42)}
.tl__prog--solid{border-top:1.5px solid rgba(255,255,255,.42)}
.tl__head{position:absolute;top:8px;left:0;width:12px;height:12px;border-radius:0;background:#fff;box-shadow:0 0 18px 5px rgba(255,255,255,.7);transform:translate(-50%,-50%);will-change:transform}
.tl__row--without .tl__head{background:rgba(255,255,255,.7);box-shadow:0 0 12px 3px rgba(255,255,255,.4)}
/* nodes reveal as the playhead passes (.on toggled by scroll position) */
.tl__nodes{display:grid;grid-auto-flow:column;grid-auto-columns:var(--col);justify-content:start}
.tl__node{position:relative;padding:32px 16px 0 0;opacity:0;transform:translateY(12px);transition:opacity .45s var(--ease),transform .45s var(--ease)}
.tl__node.on{opacity:1;transform:none}
.tl__dot{position:absolute;top:8px;left:0;width:8px;height:8px;border-radius:0;background:#fff;transform:translate(-50%,-50%) scale(.3);transition:transform .4s var(--ease)}
.tl__node.on .tl__dot{transform:translate(-50%,-50%) scale(1)}
.tl__tick{position:absolute;top:8px;left:0;width:1px;height:18px;background:rgba(255,255,255,.3)}
.tl__t{display:block;font-size:13px;color:#fff;margin-bottom:5px;letter-spacing:.02em}
.tl__d{display:block;font-size:13px;line-height:1.3;color:rgba(255,255,255,.88)}
.tl__node--muted .tl__dot{background:rgba(255,255,255,.4)}
.tl__node--muted .tl__tick{background:rgba(255,255,255,.2)}
.tl__node--muted .tl__t,.tl__node--muted .tl__d{color:rgba(255,255,255,.4)}
@media(max-width:760px){
  .models__scroll{height:230vh}
  .models__sticky>.wrap{min-width:0}
  .tl__row{display:block}
  .tl__row+.tl__row{margin-top:34px}
  .tl__label{width:auto;margin-bottom:18px;font-size:20px}
  .tl__nodes{grid-auto-flow:unset;grid-auto-columns:unset;grid-template-columns:repeat(5,minmax(0,1fr))}
  .tl__node{min-width:0;padding-right:8px}
  .tl__t,.tl__d{font-size:11px}
}

/* ---- Our Software ---- */
.sw{padding-top:120px;padding-bottom:120px}
.sw__lede{font-family:var(--disp);font-size:68px;line-height:82px;letter-spacing:-2.72px;text-align:center;max-width:1180px;margin:0 auto 110px}
.sw__title{font-family:var(--disp);font-size:clamp(24px,2.2vw,32px);line-height:1.1;letter-spacing:-.7px;font-weight:400;color:var(--ink);margin:0 0 clamp(26px,3vw,44px)}
.sw__list{display:block}
.prod{position:relative;display:block;border-top:1px solid #ededed;cursor:pointer;overflow:hidden}
.prod:last-child{border-bottom:1px solid var(--line)}
.prod__head{display:grid;grid-template-columns:clamp(170px,16vw,220px) clamp(104px,10vw,144px) 1fr;gap:clamp(36px,5vw,80px);align-items:center;padding:clamp(40px,4.6vw,66px) 0}
.prod__name{justify-self:start;text-align:left;margin-left:clamp(24px,6vw,130px)}
.prod__side{display:flex;flex-direction:column;align-self:stretch;justify-content:space-between;padding:4px 0}
.prod__desc{display:block;font-size:16px;line-height:1.35;color:#1e1f2b;max-width:210px}
.prod__index{font-size:15px;color:#aaa;margin-top:26px}
.prod__icon{display:block;width:clamp(132px,13vw,188px);height:clamp(132px,13vw,188px);color:#e4e4e4;transition:color .5s var(--ease);margin-left:clamp(8px,2.5vw,50px)}
.prod__icon svg{width:100%;height:100%;display:block;fill:currentColor}
.prod__icon path{stroke:currentColor;stroke-width:4;stroke-linejoin:round}
.prod:hover .prod__icon{color:#1e1f2b}
.prod.is-open .prod__icon,.prod.is-open:hover .prod__icon{color:#1e1f2b}
.prod__name{display:flex;font-family:var(--disp);font-size:clamp(56px,7.4vw,110px);line-height:1;font-weight:400;letter-spacing:-4.2px;color:#1e1f2b;white-space:nowrap}
.prod__name b{font-weight:400}
.prod__more{max-height:0;overflow:hidden;opacity:0;transition:max-height .6s cubic-bezier(.4,0,.1,1),opacity .4s var(--ease)}
.prod.is-open .prod__more{max-height:620px;opacity:1}
.prod__moregrid{padding:6px 0 clamp(44px,5vw,70px)}
.prod__moregrid p{margin:0;max-width:720px;font-size:16px;line-height:1.55;color:#3a3f44}
@media(max-width:860px){
  .prod__head{grid-template-columns:88px 1fr;gap:22px}
  .prod__side{grid-row:2;grid-column:1/-1;flex-direction:row;align-items:baseline;justify-content:flex-start;gap:16px;padding:14px 0 0}
  .prod__index{margin-top:0}
  .prod__icon{width:88px;height:88px}
  .prod__name{white-space:normal;letter-spacing:-2px}
  .prod__moregrid{grid-template-columns:1fr;gap:22px}
}

/* ---- So much left to build ---- */
.build{display:grid;grid-template-columns:46% 1fr;gap:40px;align-items:center;padding:72px 0 80px}
.section--grey:has(.build){padding:0}
.build__img{overflow:hidden}
.build__img img{width:100%;height:500px;object-fit:cover}
.build__body{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 40px}
.build h3{font-family:var(--disp);font-size:46px;font-weight:400;line-height:48px;letter-spacing:-1.15px;margin-bottom:24px;max-width:430px}
.build p{font-size:26px;color:#1e1f2b;max-width:470px;margin-bottom:34px;line-height:28px}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;background:transparent;color:#000;font-size:12px;font-weight:400;letter-spacing:.04em;text-transform:uppercase;padding:6px 18px;border:1px solid var(--ink);border-radius:0;transition:.18s}
.btn-outline:hover{background:var(--ink);color:#fff}



/* ---- single CTA panel ---- */
.cta-pair--single{grid-template-columns:1fr!important}

/* CTA pair */
.cta-pair{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.cta-panel{display:flex;align-items:flex-start;justify-content:space-between;box-sizing:border-box;height:188px;padding:12px 16px 112px;border-radius:0;font-family:var(--sans);font-size:48px;line-height:64px;letter-spacing:-1.4px;transition:background .3s var(--ease),transform .3s var(--ease),box-shadow .3s var(--ease);text-decoration:none}
.cta-panel__arr{font-size:40px;transition:transform .3s var(--ease)}
.cta-panel:hover .cta-panel__arr{transform:translateX(8px)}
.cta-panel--light{background:#dbdbdb;color:var(--ink)}
.cta-panel--light:hover{background:#d2d2d2;transform:translateY(-3px);box-shadow:0 18px 44px rgba(0,0,0,.14)}
.cta-panel--dark{background:#202426;color:#fff}
.cta-panel--dark:hover{background:#000;transform:translateY(-3px);box-shadow:0 20px 50px rgba(0,0,0,.28)}

/* ---- Footer (MicroAGI) ---- */
.mafooter{position:relative;z-index:2;width:100%;border-top:1px solid rgba(26,26,26,.12);background:#f2f2f2;color:#1a1a1a;font-family:var(--sans)}
.mafooter__content{margin:0 auto;width:100%;max-width:1512px;display:flex;flex-direction:column;gap:48px;padding:72px 24px}
.mafooter__brand{max-width:420px}
.mafooter__wordmark{height:20px;width:auto;display:block;filter:brightness(0)}
.mafooter__tagline{margin:24px 0 0;max-width:400px;font-weight:400;font-size:15px;line-height:22.5px;letter-spacing:.3px;color:rgba(26,26,26,.7)}
.mafooter__follow{display:flex;align-items:center;gap:16px;margin-top:32px}
.mafooter__followlabel{font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:.2em;color:rgba(26,26,26,.45)}
.mafooter__socials{display:flex;align-items:center;gap:12px}
.mafooter__social{display:flex;height:40px;width:40px;align-items:center;justify-content:center;border-radius:0;border:1px solid rgba(26,26,26,.2);color:#1a1a1a;transition:.2s}
.mafooter__social:hover{background:#1a1a1a;color:#f2f2f2}
.mafooter__social svg{height:15px;width:15px;fill:currentColor}
.mafooter__cols{display:flex;flex-wrap:wrap;gap:32px 40px}
.mafooter__col{width:140px}
.mafooter__coltitle{font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:.16em;color:rgba(26,26,26,.45)}
.mafooter__col ul{margin-top:22px;display:flex;flex-direction:column;gap:12px}
.mafooter__col a{font-size:14px;color:rgba(26,26,26,.7);transition:.2s}
.mafooter__col a:hover{color:#1a1a1a}
@media(min-width:640px){.mafooter__content{padding:96px 40px}}
@media(min-width:1024px){
  .mafooter__content{flex-direction:row;align-items:flex-start;justify-content:space-between;gap:0;padding:112px 40px}
  .mafooter__cols{margin-right:135px;gap:72px}
}

/* ---- Responsive ---- */
@media(max-width:860px){
  .build{grid-template-columns:1fr;gap:0}
  .build__img img{min-height:340px}
  .footer__grid{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:repeat(2,1fr)}
  .cta-pair{grid-template-columns:1fr}
  .cta-panel{font-size:40px}
}
@media(max-width:760px){
  :root{--pad:20px}
  .sw__lede{font-size:28px}
  .build h3{font-size:38px}
  .tst__quote{font-size:26px}
  .card{flex-basis:300px;height:430px}
  .footer__cols{grid-template-columns:1fr 1fr}
  .header__inner{height:70px}
}

/* ---- Respect reduced-motion: keep everything visible, drop the movement ---- */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important}
  .hero__scroll{opacity:1!important;transform:none!important}
  .hero__scroll{transform:translateX(-50%)!important}
}

/* ==== How it works — Palantir Ontology-Core layout ==== */
.hiw{display:grid;grid-template-columns:minmax(170px,22%) 1fr;gap:clamp(28px,4vw,72px);align-items:start;margin-top:clamp(8px,1.2vw,20px)}
.hiw__head{border-top:1px solid var(--line);padding-top:clamp(22px,2.6vw,38px)}
.hiw__title{font-family:var(--disp);font-weight:400;font-size:clamp(28px,3vw,44px);line-height:1.05;letter-spacing:-1.2px;color:var(--ink);margin:0}
.hiw__u{text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:.12em}
.hiw__rows{display:block}
.hiw__item{display:grid;grid-template-columns:auto clamp(158px,17vw,205px) 1fr;align-items:center;gap:clamp(22px,3.4vw,60px);padding:clamp(20px,2.8vw,42px) 0;border-top:1px solid var(--line)}
.hiw__item:last-child{border-bottom:1px solid var(--line)}
.hiw__idx{font-family:var(--sans);font-size:13px;color:#565c62;letter-spacing:.4px}
.hiw__viz{display:block;width:100%;aspect-ratio:.92}
.hiw__viz img{width:100%;height:100%;object-fit:contain;object-position:50% 50%;display:block;transform-origin:50% 50%;transition:transform .7s cubic-bezier(.22,1,.36,1)}
.hiw__item:hover .hiw__viz img{transform:scale(1.06)}
.hiw__lbl{font-family:var(--sans);font-size:12px;text-transform:uppercase;letter-spacing:.15em;color:#565c62;margin-bottom:clamp(6px,.9vw,12px)}
.hiw__name{font-family:var(--disp);font-weight:400;font-size:clamp(32px,4.6vw,62px);line-height:.98;letter-spacing:-1.8px;color:var(--ink);margin:0}
.hiw__more{height:0;overflow:hidden;transition:height .6s cubic-bezier(.22,1,.36,1)}
.hiw__more p{margin:0;max-width:560px;padding-top:clamp(12px,1.4vw,20px);font-size:15px;line-height:1.6;color:#3d4247;opacity:0;transform:translateY(8px);transition:opacity .5s ease,transform .6s cubic-bezier(.22,1,.36,1)}
.hiw__item:hover .hiw__more p{opacity:1;transform:none}
@media(max-width:820px){
  .hiw{grid-template-columns:1fr;gap:18px}
  .hiw__head{border-top:0;padding-top:0}
  .hiw__item{grid-template-columns:auto 1fr}
  .hiw__viz{display:none}
}

/* ==== Mobile and compact-window refinement ==== */
html,body{max-width:100%;overflow-x:clip}
.hiw__item:focus-visible{outline:2px solid var(--ink);outline-offset:8px}
.hiw__item:focus .hiw__more p,.hiw__item:focus-within .hiw__more p{opacity:1;transform:none}

/* Portrait video is shown at its native composition: no people, captions or
   lower-thirds are sacrificed to a tall viewport crop. */
@media(max-width:820px) and (orientation:portrait){
  .hero,.hero-spacer{height:100svh;min-height:100svh}
  .hero::before{background-size:contain}
  .hero__video{object-fit:contain;object-position:50% 50%;background:#fff}
  .snap.lede-sec{min-height:100svh}
  .hero__scroll{bottom:max(24px,env(safe-area-inset-bottom));gap:10px;font-size:13px}
  .hero__sound{bottom:max(20px,env(safe-area-inset-bottom))}
}

/* Tablet, portrait mobile, and phone landscape share touch-first content
   layouts. Desktop keeps the approved wide-screen composition unchanged. */
@media(max-width:820px), (max-width:960px) and (max-height:600px){
  :root{--pad:clamp(20px,5vw,40px)}
  .snap{padding:clamp(88px,12vw,124px) 0}
  .snap.sw{padding:clamp(92px,12vw,132px) 0}

  .hiw{grid-template-columns:1fr;gap:34px;margin-top:0}
  .hiw__head{border-top:0;padding-top:0}
  .hiw__title{font-size:clamp(34px,5.4vw,44px);letter-spacing:-1.4px}
  .hiw__item{grid-template-columns:32px minmax(180px,.76fr) minmax(0,1.24fr);gap:24px;align-items:start;padding:38px 0}
  .hiw__idx{padding-top:4px}
  .hiw__viz{display:block;width:100%;aspect-ratio:auto;align-self:center}
  .hiw__viz img{width:100%;height:auto;object-fit:contain;transform:none}
  .hiw__body{min-width:0}
  .hiw__name{font-size:clamp(31px,5.2vw,44px);letter-spacing:-1.4px}
  .hiw__more{height:auto!important;overflow:visible}
  .hiw__more p{padding-top:16px;font-size:15px;line-height:1.55;opacity:1;transform:none}

  /* Keep the desktop timeline and its scroll-scrub animation intact on touch
     layouts; only compress its measurements to the available width. */
  .models__scroll{height:230vh}
  .models__sticky{position:sticky;top:0;height:100svh;min-height:0;padding:0;justify-content:center}
  .models__sticky>.wrap{min-width:0}
  .models__title{max-width:760px;margin-bottom:clamp(38px,6vw,62px);font-size:clamp(34px,5.7vw,48px);line-height:1.02;letter-spacing:-1.45px}
  .tl{display:block}
  .tl__row{display:flex;align-items:flex-start;gap:clamp(10px,2.5vw,20px);min-width:0}
  .tl__row+.tl__row{margin-top:clamp(40px,6vw,58px)}
  .tl__label{width:clamp(64px,17vw,112px);flex:none;margin:0;padding-top:0;font-size:clamp(16px,3.2vw,24px);line-height:1}
  .tl__track{width:auto;min-width:0;flex:1}
  .tl__guide,.tl__prog,.tl__head{display:block}
  .tl__nodes{display:grid;grid-auto-flow:unset;grid-auto-columns:unset;grid-template-columns:repeat(5,minmax(0,1fr));justify-content:stretch}
  .tl__node,.tl__node.on{display:block;min-width:0;padding:26px 5px 0 0;border:0;opacity:0;transform:translateY(9px);transition:opacity .45s var(--ease),transform .45s var(--ease)}
  .tl__node.on{opacity:1;transform:none}
  .tl__dot,.tl__tick{display:block}
  .tl__t{margin:0 0 4px;font-size:clamp(8px,1.6vw,11px);line-height:1.2}
  .tl__d{font-size:clamp(8px,1.7vw,11px);line-height:1.2;overflow-wrap:anywhere}

  .gt-sec{min-height:0}
  .gt{align-items:start;gap:clamp(52px,9vw,72px)}
  .gt__contact{width:100%;max-width:560px}
}

@media(max-width:540px){
  .mhead{margin:8px;padding:10px 12px}
  .mhead__logo img{height:20px}
  .mhead__actions{gap:8px}
  .mhead__cta,.mhead__menu{height:44px}
  .mhead__cta{padding:0 15px;font-size:11px;letter-spacing:.13em}
  .mhead__menu{width:44px}
  .hero__sound{right:21px;width:44px;height:44px}
  .hero__sound-icon,.hero__sound svg{width:30px;height:30px}

  .mnav{padding:86px 20px max(20px,env(safe-area-inset-bottom));justify-content:flex-start;overflow-y:auto}
  .mnav__list a{font-size:clamp(38px,12vw,52px);padding:4px 0}
  .mnav__foot{margin-top:auto;padding-top:22px;gap:12px}

  .lede{font-size:clamp(31px,9.5vw,40px);line-height:1.08;letter-spacing:-1.5px}
  .hiw{gap:26px}
  .hiw__title{font-size:36px}
  .hiw__item{display:grid;grid-template-columns:32px minmax(0,1fr);gap:0 14px;padding:38px 0 44px;align-items:start}
  .hiw__idx{grid-column:1;grid-row:1;padding-top:2px}
  .hiw__body{display:contents}
  .hiw__lbl{grid-column:2;grid-row:1;margin:0;padding-top:0}
  .hiw__name{grid-column:2;grid-row:2;margin-top:6px;font-size:clamp(34px,10vw,42px);line-height:1;letter-spacing:-1.6px}
  .hiw__viz{grid-column:2;grid-row:3;margin:22px 0 18px;max-width:340px}
  .hiw__more{grid-column:2;grid-row:4}
  .hiw__more p{padding-top:0;font-size:15px;line-height:1.58}

  .models__sticky{padding:0}
  .models__title{margin-bottom:40px;font-size:clamp(32px,9.2vw,40px);line-height:1.02}
  .tl__row{gap:10px}
  .tl__row+.tl__row{margin-top:42px}
  .tl__label{width:64px;font-size:17px}
  .tl__node,.tl__node.on{padding:24px 3px 0 0}
  .tl__t{font-size:8px}
  .tl__d{font-size:8.5px}

  .gt{gap:52px}
  .gt__title{font-size:clamp(58px,18vw,76px);line-height:.92}
  .gt__contact{padding-top:26px}
  .gt__person{gap:16px}
  .gt__avatar{width:82px;height:82px}
  .gt__name{font-size:25px}

  .gt-modal{width:calc(100% - 12px);max-height:calc(100dvh - 12px);overscroll-behavior:contain}
  .gt-modal__intro{min-height:260px;padding:64px 20px 24px}
  .gt-modal__title{font-size:34px;line-height:.98}
  .gt-modal__person{margin-top:24px}
  .gt-modal__body{padding:28px 20px 34px}
  .gt__grid{gap:18px}
  .gt__field{height:52px}
  .gt__area{height:auto;min-height:126px}

  .mafooter__content{gap:56px;padding:72px 20px}
  .mafooter__cols{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:40px 24px}
  .mafooter__col{width:auto}
  .mafooter__col:last-child{grid-column:1/-1}
}

@media(max-width:720px) and (max-height:720px){
  .gt-modal__intro{min-height:230px;padding-top:56px}
  .gt-modal__title{font-size:32px}
  .gt-modal__person{margin-top:18px}
  .gt-modal__body{padding-top:26px}
}

@media(max-width:960px) and (max-height:520px){
  .mhead{margin:8px;padding:8px 12px}
  .mhead__logo img{height:20px}
  .mhead__cta,.mhead__menu{height:42px}
  .mhead__menu{width:42px}
  .mnav{justify-content:flex-start;overflow-y:auto;padding:calc(var(--announcement-height,42px) + 72px) 24px 12px}
  .mnav__list a{padding:1px 0;font-size:clamp(30px,9vh,42px);line-height:.98}
  .mnav__foot{margin-top:12px;padding-top:12px}
  .mnav__foot span{font-size:10px}
  .hero__scroll{bottom:12px;gap:6px;font-size:12px}
  .hero__sound{bottom:8px}
  .models__sticky{justify-content:flex-start;padding:76px 0 18px}
  .models__title{max-width:760px;margin-bottom:26px;font-size:clamp(28px,4vw,34px);line-height:1;letter-spacing:-1.15px}
  .tl__row{gap:18px}
  .tl__row+.tl__row{margin-top:28px}
  .tl__label{width:104px;font-size:20px}
  .tl__node,.tl__node.on{padding-top:22px}
  .tl__t{font-size:9px}
  .tl__d{font-size:10px;line-height:1.15}
}

@media(min-width:721px) and (max-width:960px) and (max-height:520px){
  .gt-modal__layout{grid-template-columns:300px minmax(0,1fr);min-height:640px}
  .gt-modal__intro{position:sticky;top:0;align-self:start;height:calc(100dvh - 32px);min-height:0;padding:52px 28px 24px}
  .gt-modal__title{font-size:38px}
  .gt-modal__person{padding-top:24px}
  .gt-modal__body{align-items:flex-start;padding:52px 42px 36px}
}

@media(hover:none){
  .hiw__item:hover .hiw__viz img{transform:none}
  .hiw__more{height:auto!important;overflow:visible}
  .hiw__more p{opacity:1;transform:none}
  .mnav__list a:hover span{transform:none}
  .mnav__list a:hover em{opacity:0;transform:translateX(-16px)}
}
