/* ==========================================================
   ORB STUDIO — shared stylesheet
   Brand tokens sourced from orb-brand-moodboard.html
   ========================================================== */

:root{
  --charcoal:#17181A;
  --graphite:#3A3B3C;
  --warmwhite:#F4F2EC;
  --panel:#EAE8E1;
  --softgray:#B9B7AE;
  --silver:#CBCAC5;
  --purple:#5F4E8C;
  --purple-deep:#463A69;
  --lilac:#C9BEE3;
  --hairline:rgba(23,24,26,0.14);
  --hairline-on-dark:rgba(244,242,236,0.18);
  --maxw:1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  background:var(--warmwhite);
  color:var(--charcoal);
  font-family:'Space Grotesk', sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

.serif{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:400;
  color:var(--purple);
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 clamp(20px,5vw,48px);
}

a{color:inherit;}
a:focus-visible, button:focus-visible{
  outline:2px solid var(--charcoal);
  outline-offset:3px;
}

.eyebrow{
  font-size:11px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--graphite);
  font-weight:500;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
}
.eyebrow::before{
  content:"";
  width:8px;height:8px;
  border-radius:50%;
  border:1.5px solid var(--purple);
  display:inline-block;
  flex:none;
}

/* ---------- ORBIT MOTIF ---------- */
.orbit-deco{ opacity:0.9; display:block; }
.orbit-deco circle{ vector-effect:non-scaling-stroke; }
@keyframes spin-slow{ from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.orbit-deco .spin{
  transform-origin:center;
  animation:spin-slow 60s linear infinite;
}

.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}
.divider .ring{
  width:14px;height:14px;
  border-radius:50%;
  border:1.5px solid var(--softgray);
}

/* ---------- NAV ---------- */
header.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(244,242,236,0.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--hairline);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:20px;
  padding-bottom:20px;
}
.wordmark-sm{
  font-size:20px;
  font-weight:600;
  letter-spacing:-0.02em;
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:var(--charcoal);
}
.wordmark-sm .sphere-mark{
  display:inline-block;
  width:16px;height:16px;
  border-radius:50%;
  background:radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95), rgba(201,190,227,0.7) 45%, rgba(70,58,105,0.75) 100%);
  border:1px solid rgba(95,78,140,0.45);
  box-shadow:inset 0 0 4px rgba(255,255,255,0.6);
  margin:0 1px;
  transition:transform .4s cubic-bezier(.22,1,.36,1);
}
.wordmark-sm:hover .sphere-mark{ transform:rotate(140deg); }
nav.links{
  display:flex;
  gap:34px;
  font-size:13px;
  letter-spacing:0.02em;
}
nav.links a{
  text-decoration:none;
  position:relative;
  padding-bottom:3px;
}
nav.links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0%;
  height:1px;
  background:var(--charcoal);
  transition:width .25s ease;
}
nav.links a:hover::after{width:100%;}
@media(max-width:860px){ nav.links{display:none;} }

.btn{
  font-family:'Space Grotesk', sans-serif;
  font-weight:500;
  font-size:13px;
  letter-spacing:0.02em;
  padding:13px 24px;
  border-radius:2px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  border:1px solid var(--charcoal);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.btn-fill{ background:var(--purple); border-color:var(--purple); color:var(--warmwhite); }
.btn-fill:hover{ background:var(--purple-deep); border-color:var(--purple-deep); transform:translateY(-1px); }
.btn-outline{ background:transparent; color:var(--charcoal); }
.btn-outline:hover{ background:var(--purple); border-color:var(--purple); color:var(--warmwhite); transform:translateY(-1px); }
.nav-cta{display:none;}
@media(min-width:860px){ .nav-cta{display:inline-flex;} }

/* ---------- HERO ---------- */
.hero{
  padding:clamp(60px,11vw,124px) 0 clamp(48px,8vw,88px);
  position:relative;
  overflow:hidden;
}
.hero-head{
  font-size:clamp(32px,5.4vw,64px);
  line-height:1.06;
  font-weight:600;
  letter-spacing:-0.02em;
  max-width:880px;
  margin:26px 0 0;
}
.hero-sub{
  margin-top:24px;
  max-width:460px;
  color:var(--graphite);
  font-size:16px;
  line-height:1.6;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:36px;
  flex-wrap:wrap;
}
.hero-orbit{
  position:absolute;
  right:clamp(-40px,2vw,10px);
  top:clamp(-30px,-2vw,0px);
  width:clamp(220px,26vw,360px);
  z-index:-1;
}
@media(max-width:760px){ .hero-orbit{opacity:0.5; width:220px;} }

/* ---------- SECTION SHELL ---------- */
section{
  padding:clamp(56px,9vw,104px) 0;
  border-top:1px solid var(--hairline);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:clamp(36px,6vw,60px);
}
.section-title{
  font-size:clamp(24px,3.2vw,40px);
  font-weight:600;
  letter-spacing:-0.02em;
  margin:10px 0 0;
  max-width:640px;
}
.section-note{
  font-size:13.5px;
  color:var(--graphite);
  max-width:280px;
  line-height:1.55;
  text-align:right;
}
@media(max-width:700px){ .section-note{text-align:left;} }

.reveal{ opacity:0; transform:translateY(18px) scale(.985); filter:blur(4px); transition:opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1), filter .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0) scale(1); filter:blur(0); }

/* ---------- SERVICES (Swiss tiles) ---------- */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1px;
  background:var(--hairline);
  border:1px solid var(--hairline);
}
.service-card{
  background:var(--warmwhite);
  padding:28px 24px 30px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:background .25s ease;
}
.service-card:hover{ background:var(--panel); }
.service-top{ display:flex; justify-content:space-between; align-items:flex-start; }
.service-num{ font-size:11px; letter-spacing:0.1em; color:var(--softgray); }
.service-icon{ width:30px; height:30px; color:var(--charcoal); }
.service-name{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:20px;
  font-weight:400;
  margin:0;
}
.service-list{
  list-style:none; padding:0; margin:0;
  font-size:13px; color:var(--graphite); line-height:2;
  border-top:1px solid var(--hairline); padding-top:12px;
}

/* ---------- PROJECTS ---------- */
.proj-note{ font-size:13px; color:var(--graphite); max-width:640px; margin:14px 0 0; line-height:1.6; }
.proj-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:1px;
  background:var(--hairline);
  border:1px solid var(--hairline);
  margin-top:44px;
}
.proj-card{
  background:var(--warmwhite);
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:var(--charcoal);
  transition:background .25s ease;
}
.proj-card:hover{ background:var(--panel); }

.proj-thumb{
  aspect-ratio:4/3;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--hairline);
  background:var(--panel);

}
.proj-thumb img{  height: 100%; width: stretch; color:var(--graphite); }
.proj-body{ padding:20px 22px 24px; }
.proj-tag{ font-size:10.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--purple); font-weight:500; }
.proj-title{ font-size:18px; font-weight:600; margin:8px 0 6px; letter-spacing:-0.01em; }
.proj-desc{ font-size:13px; color:var(--graphite); line-height:1.55; margin:0 0 14px; }
.proj-link{
  font-size:12px; letter-spacing:0.06em; font-weight:500;
  display:inline-flex; align-items:center; gap:6px;
  margin-top:auto;
  transition:color .2s ease;
}
.proj-card:hover .proj-link{ color:var(--purple); }
.proj-link svg{ width:12px; height:12px; transition:transform .2s ease; }
.proj-card:hover .proj-link svg{ transform:translateX(3px); }

/* ---------- ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:clamp(32px,6vw,72px);
  align-items:center;
}
@media(max-width:760px){ .about-grid{grid-template-columns:1fr;} }
.about-portrait{
  aspect-ratio:1/1;
  background:var(--charcoal);
  border-radius:2px;
  position:relative;
  overflow:hidden;
}
.about-portrait .core-ring{
  position:absolute; inset:26%;
  border-radius:50%;
  border:1px solid rgba(244,242,236,0.3);
}
.about-portrait .orbit-a, .about-portrait .orbit-b{
  position:absolute; inset:0;
}
.about-portrait .orbit-a{ animation:spin-slow 22s linear infinite; }
.about-portrait .orbit-b{ animation:spin-slow 15s linear infinite reverse; }
.about-portrait .sphere-lilac{
  position:absolute; top:10%; left:50%; transform:translateX(-50%);
  width:30%; aspect-ratio:1/1; border-radius:50%;
  background:radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), rgba(201,190,227,0.55) 45%, rgba(70,58,105,0.5) 100%);
  border:1px solid rgba(244,242,236,0.3);
}
.about-portrait .sphere-alum{
  position:absolute; bottom:8%; left:50%; transform:translateX(-50%);
  width:24%; aspect-ratio:1/1; border-radius:50%;
  background:conic-gradient(from 200deg,#d8d7d3,#9a988f,#efeeea,#8f8d84,#c9c8c4,#d8d7d3);
}
.about-cap{ font-size:10.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--graphite); margin-top:14px; }
.about-text p.mission{
  font-family:'Fraunces', serif;
  font-weight:300;
  font-size:clamp(18px,2.2vw,24px);
  line-height:1.6;
  letter-spacing:-0.01em;
  max-width:560px;
  color:var(--charcoal);
  margin:14px 0 0;
}
.about-text p.mission em{ font-style:italic; font-weight:500; color:var(--purple); }
.about-text p.mission-body{
  font-family:'Space Grotesk', sans-serif;
  font-weight:400;
  font-size:15px;
  line-height:1.7;
  color:var(--graphite);
  max-width:520px;
  margin:18px 0 0;
}

/* ---------- PROCESS (horizontal stepper) ---------- */
.process-track{ position:relative; padding-top:6px; }
.process-line-h{
  position:absolute;
  top:5px; left:0; right:0;
  height:1px;
  background:var(--hairline);
}
.process-line-fill{
  position:absolute; inset:0;
  width:0%;
  background:var(--purple);
  transition:width 1.7s cubic-bezier(.22,1,.36,1);
}
.process-track.in .process-line-fill{ width:100%; }

.process-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:clamp(16px,3vw,28px);
  position:relative;
}
.process-step{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  padding-top:34px;
  position:relative;
}
.pstep-node{
  position:absolute; top:0; left:0;
  width:12px; height:12px;
  border-radius:50%;
  background:var(--warmwhite);
  border:2px solid var(--softgray);
  transition:background .3s ease, border-color .3s ease, transform .3s ease;
  transition-delay:calc(var(--i) * .15s + .25s);
}
.process-track.in .pstep-node{
  border-color:var(--purple);
  background:var(--purple);
  transform:scale(1.2);
}
.pstep-num{ font-size:11px; letter-spacing:0.08em; color:var(--softgray); }
.pstep-name{ font-size:clamp(16px,1.8vw,20px); font-weight:600; letter-spacing:-0.01em; }
.pstep-desc{ font-size:13px; color:var(--graphite); line-height:1.6; }
@media(max-width:860px){
  .process-steps{ grid-template-columns:1fr; gap:22px; }
  .process-track{ padding-top:0; }
  .process-line-h{
    top:2px; bottom:2px; left:5px; right:auto;
    width:1px; height:auto;
  }
  .process-line-fill{ width:100%; height:0%; transition:height 1.7s cubic-bezier(.22,1,.36,1); }
  .process-track.in .process-line-fill{ height:100%; }
  .process-step{ padding-top:0; padding-left:26px; gap:6px; }
  .pstep-node{ top:3px; left:0; }
}

/* ---------- CONTACT ---------- */
.contact-inner{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; flex-wrap:wrap; }
.contact-head{ font-size:clamp(28px,4.8vw,50px); font-weight:600; letter-spacing:-0.02em; max-width:560px; margin:10px 0 0; }
.contact-links{ display:flex; flex-direction:column; gap:14px; min-width:220px; }
.contact-link{
  display:flex; align-items:center; justify-content:space-between;
  text-decoration:none; color:var(--charcoal); font-weight:500; font-size:15px;
  padding-bottom:10px; border-bottom:1px solid var(--hairline);
  transition:color .2s ease, border-color .2s ease;
}
.contact-link:hover{ color:var(--purple); border-color:var(--purple); }
.contact-link svg{ width:15px; height:15px; opacity:.6; }

/* ---------- FOOTER ---------- */
footer{ border-top:1px solid var(--hairline); padding:26px 0; }
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  font-size:11px; letter-spacing:0.06em; color:var(--graphite);
  flex-wrap:wrap; gap:10px;
}

/* ==========================================================
   MOTION SYSTEM — cursor, grain, orbs, marquee, tilt, kinetic type
   ========================================================== */

/* grain overlay */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:0.05; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor (desktop / fine pointer only, see JS gate) */
.cursor-dot, .cursor-ring{
  position:fixed; top:0; left:0; z-index:9999;
  pointer-events:none;
  border-radius:50%;
  transform:translate(-50%,-50%);
  will-change:transform;
}
.cursor-dot{ width:6px; height:6px; background:var(--charcoal); }
.cursor-ring{
  width:36px; height:36px;
  border:1px solid var(--charcoal);
  transition:width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease;
  opacity:0.5;
}
.cursor-ring.hover{ width:64px; height:64px; opacity:0.9; border-color:var(--purple); }
body.has-cursor, body.has-cursor a, body.has-cursor button{ cursor:none; }

/* scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:var(--purple); z-index:10000;
  transition:width .1s linear;
}

/* nav shrink state */
header.nav{ transition:box-shadow .3s ease; }
header.nav.scrolled{ box-shadow:0 8px 24px -20px rgba(23,24,26,0.35); }

/* floating gradient orbs (decorative, absolutely positioned per-section) */
.orb-field{ position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none; }
.orb-blob{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  opacity:0.55;
  will-change:transform;
}
.orb-blob.b1{ width:420px; height:420px; top:-140px; right:-120px; background:radial-gradient(circle at 35% 35%, #CBCAC5, transparent 70%); }
.orb-blob.b2{ width:280px; height:280px; bottom:-100px; left:-80px; background:radial-gradient(circle at 40% 40%, #3A3B3C, transparent 70%); opacity:0.14; }
.orb-blob.b3{ width:180px; height:180px; top:30%; left:52%; background:radial-gradient(circle at 40% 40%, #17181A, transparent 70%); opacity:0.06; }

.hero{ isolation:isolate; }
.hero-head .word{
  display:inline-block;
  opacity:0;
  transform:translateY(28px);
  animation:word-in .7s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes word-in{ to{ opacity:1; transform:translateY(0); } }

/* marquee ticker */
.marquee-strip{
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
  overflow:hidden;
  background:var(--charcoal);
  padding:16px 0;
}
.marquee-track{
  display:flex;
  width:max-content;
  gap:0;
  animation:marquee-scroll 28s linear infinite;
}
.marquee-track span{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(20px,3vw,32px);
  color:var(--warmwhite);
  white-space:nowrap;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  gap:28px;
}
.marquee-track span::after{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  border:1.4px solid var(--purple);
  display:inline-block;
}
@keyframes marquee-scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* pulsing purple orbit node */
@keyframes pulse-node{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.55; transform:scale(1.4); }
}
.hero-orbit .pulse{ animation:pulse-node 2.6s ease-in-out infinite; transform-origin:center; }

/* tilt-ready cards */
[data-tilt]{
  transform-style:preserve-3d;
  transition:transform .35s cubic-bezier(.22,1,.36,1), background .25s ease;
  will-change:transform;
}

/* staggered grid reveal */
.service-grid.reveal.in .service-card,
.proj-grid.reveal.in .proj-card{
  animation:card-in .6s cubic-bezier(.22,1,.36,1) both;
}
.service-grid .service-card:nth-child(1){ animation-delay:.02s; }
.service-grid .service-card:nth-child(2){ animation-delay:.08s; }
.service-grid .service-card:nth-child(3){ animation-delay:.14s; }
.service-grid .service-card:nth-child(4){ animation-delay:.20s; }
.service-grid .service-card:nth-child(5){ animation-delay:.26s; }
.proj-grid .proj-card:nth-child(1){ animation-delay:.02s; }
.proj-grid .proj-card:nth-child(2){ animation-delay:.08s; }
.proj-grid .proj-card:nth-child(3){ animation-delay:.14s; }
.proj-grid .proj-card:nth-child(4){ animation-delay:.20s; }
.proj-grid .proj-card:nth-child(5){ animation-delay:.26s; }
@keyframes card-in{ from{ opacity:0; transform:translateY(20px) scale(.98); } to{ opacity:1; transform:translateY(0) scale(1); } }

/* process motion: see horizontal stepper rules above */

/* kinetic word-hover type */
.kinetic{ display:block; }
.kinetic .kw{
  display:inline-block;
  transition:transform .35s cubic-bezier(.22,1,.36,1), color .35s ease;
}
.kinetic:hover .kw:hover{
  transform:translateY(-6px);
  color:var(--graphite);
}

/* about orbiting portrait: see .about-portrait rules above */

/* section-relative positioning for orb fields */
section{ position:relative; }

/* ==========================================================
   PROJECT TEMPLATE PAGES
   ========================================================== */
.breadcrumb{
  font-size:12px; letter-spacing:0.06em; color:var(--graphite);
  display:flex; align-items:center; gap:8px; margin-bottom:6px;
  text-decoration:none;
}
.breadcrumb:hover{ color:var(--purple); }
.breadcrumb svg{ width:12px; height:12px; }

.proj-hero{ padding:clamp(48px,9vw,90px) 0 clamp(36px,6vw,56px); border-top:none; }
.proj-hero-title{
  font-size:clamp(30px,5vw,58px);
  font-weight:600;
  letter-spacing:-0.02em;
  max-width:820px;
  margin:18px 0 0;
}
.proj-meta-row{
  display:flex; flex-wrap:wrap; gap:clamp(28px,5vw,56px);
  margin-top:36px; padding-top:24px; border-top:1px solid var(--hairline);
}
.proj-meta-item{ font-size:13px; }
.proj-meta-item .k{ display:block; font-size:10.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--softgray); margin-bottom:6px; }
.proj-meta-item .v{ color:var(--charcoal); font-weight:500; }

.placeholder-block{
  border:1.5px dashed var(--softgray);
  border-radius:2px;
  background:var(--panel);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  color:var(--graphite);
  text-align:center;
  padding:32px;
  transition:border-color .25s ease;
}
.placeholder-block:hover{ border-color:var(--purple); }
.placeholder-block .ph-icon{ width:36px; height:36px; opacity:0.5; }
.placeholder-block .ph-label{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase; }
.placeholder-block .ph-hint{ font-size:11.5px; color:var(--softgray); max-width:320px; }

.proj-cover{ aspect-ratio:16/9; margin-top:0; }
.proj-body-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,5vw,60px);
}
@media(max-width:760px){ .proj-body-grid{grid-template-columns:1fr;} }
.proj-copy p{ font-size:15px; line-height:1.7; color:var(--graphite); }
.proj-copy h3{ font-size:15px; font-weight:600; letter-spacing:-0.005em; margin:0 0 4px; }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:20px;
}
.gallery-grid .placeholder-block{ aspect-ratio:4/3; }
@media(max-width:600px){ .gallery-grid{grid-template-columns:1fr;} }

.proj-nav{
  display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding-top:8px;
}
.proj-nav a{
  text-decoration:none; color:var(--charcoal);
  display:flex; flex-direction:column; gap:6px;
  font-size:13px; max-width:280px;
  transition:opacity .2s ease;
}
.proj-nav a:hover{ opacity:.6; }
.proj-nav a:hover .v{ color:var(--purple); }
.proj-nav a:last-child{ text-align:right; align-items:flex-end; }
.proj-nav .k{ font-size:10.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--softgray); }
.proj-nav .v{ font-weight:600; font-size:17px; letter-spacing:-0.01em; transition:color .2s ease; }

/* ---------- MOBILE FIXED CTA ---------- */
.mobile-cta{ display:none; }
@media(max-width:860px){
  .mobile-cta{
    display:flex;
    justify-content:center;
    width:calc(100% - 32px);
    position:fixed;
    left:16px; right:16px;
    bottom:16px;
    z-index:900;
    padding:14px 24px;
    padding-bottom:calc(14px + env(safe-area-inset-bottom));
    box-shadow:0 14px 32px -12px rgba(23,24,26,0.4);
    transition:transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  }
  .mobile-cta.is-hidden{
    transform:translateY(140%);
    opacity:0;
    pointer-events:none;
  }
}
