:root{
  --bg-primary:#0E1B3A;
  --bg-secondary:#0A142C;
  --bg-tertiary:#071022;
  --surface-1:#173056;
  --surface-2:#1E3D6B;
  --surface-3:#7BA3D4;
  --surface-4:#F5A623;
  --text-primary:#F4F7FF;
  --text-secondary:#C5D4EE;
  --text-muted:#7BA3D4;
  --accent-primary:#4A9EFF;
  --accent-hover:#6BB3FF;
  --accent-soft:#3D7CFF;
  --accent-orange:#F5A623;
  --accent-red:#E31B23;
  --border-subtle:#1E3D6B;
  --border-default:#2E5A99;
  --border-strong:#4A9EFF;
  --bg-color:var(--bg-primary);
  --color-white:var(--text-primary);
  --color-black:var(--bg-tertiary);
  --color-dark:var(--bg-secondary);
  --font-display:"Epilogue",sans-serif;
  --font-body:"DM Sans",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:24px;max-width:100%;overflow-x:hidden}
body{
  margin:0;
  background:var(--bg-primary);
  color:var(--text-primary);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:crosshair;
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
h1,h2,h3,p,address{margin:0;font-style:normal;overflow-wrap:anywhere}
:focus-visible{outline:2px solid var(--accent-orange);outline-offset:3px}
::selection{background:var(--accent-orange);color:var(--bg-tertiary)}

.skip{
  position:absolute;left:-999px;top:8px;z-index:4000;
  background:var(--accent-orange);color:var(--bg-tertiary);padding:8px 12px;
}
.skip:focus{left:8px}

.cursor-bubble{
  position:fixed;z-index:5000;pointer-events:none;
  background:var(--accent-orange);color:var(--bg-tertiary);
  font-family:var(--font-display);font-weight:800;font-size:11px;
  letter-spacing:.04em;text-transform:uppercase;
  padding:4px 8px;border-radius:999px;
  transform:translate(-40%,-140%);
  opacity:0;transition:opacity .15s;
}
body.is-pointer .cursor-bubble{opacity:1}
@media (pointer:coarse){.cursor-bubble{display:none}}

.navbar{
  z-index:1000;position:fixed;top:0;left:0;width:100%;max-width:100%;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  padding:18px 28px;background:transparent;
}
.nav-center{display:none}
.nav-right{flex-shrink:0;min-width:0}
.nav-logo{
  width:58px;height:58px;border-radius:50%;
  object-fit:cover;border:2px solid var(--accent-orange);
  box-shadow:0 8px 24px #07102288;
}
.logo-btn{padding:0;border-radius:50%;display:block}
.ca-button{
  display:flex;align-items:center;gap:10px;
  min-height:48px;padding:8px 16px 8px 12px;
  background:var(--surface-1);
  border:3px solid var(--border-strong);
  box-shadow:4px 4px 0 var(--border-strong);
  border-radius:999px;
  transition:transform .15s,box-shadow .15s;
}
.ca-button:hover{transform:translate(-2px,-2px);box-shadow:6px 6px 0 var(--border-strong)}
.ca-button:active{transform:scale(.97)}
.ca-label{
  background:var(--accent-orange);color:var(--bg-tertiary);
  font-family:var(--font-display);font-weight:800;font-size:12px;
  letter-spacing:.08em;text-transform:uppercase;
  padding:6px 8px;border-radius:999px;
}
.ca-value{
  font-family:var(--font-display);font-weight:800;font-size:14px;
  letter-spacing:.02em;white-space:nowrap;
}

.nav-overlay{
  position:fixed;inset:0;z-index:1090;background:#00000066;
  opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s;
}
.nav-overlay.is-open{opacity:1;visibility:visible;pointer-events:auto}
.mobile-drawer{
  position:fixed;z-index:1100;top:12px;left:12px;
  width:min(340px,calc(100vw - 24px));
  background:var(--surface-1);color:var(--text-primary);
  border-radius:16px;padding:22px 20px 24px;
  transform:translateY(-12px);opacity:0;visibility:hidden;
  pointer-events:none;transition:opacity .25s,transform .25s;
  box-shadow:0 24px 60px #00000066;
}
.mobile-drawer.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:none}
.drawer-close{position:absolute;top:12px;right:14px;font-size:20px;color:var(--text-muted)}
.drawer-links{display:flex;flex-direction:column;gap:4px;margin:18px 0 20px}
.drawer-links a,.drawer-link{
  text-align:left;font-family:var(--font-display);font-weight:800;
  font-size:1.35rem;letter-spacing:-.03em;padding:8px 0;
}
.drawer-ca{width:100%;justify-content:center}

.vimeo-hero{
  background:var(--surface-1);
  border-radius:24px;
  width:calc(100% - 24px);
  height:calc(100svh - 24px);
  margin:12px auto;
  position:relative;overflow:hidden;
}
.hero-still{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:68% center;
  animation:ken 22s ease-in-out infinite alternate;
}
@keyframes ken{from{transform:scale(1)}to{transform:scale(1.08)}}
.vimeo-hero__fade{
  position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(#0000 28%,#0003 58%,#071022cc 100%);
}
.home-header__title{
  z-index:3;position:absolute;bottom:64px;left:0;right:0;padding:0 40px 12px;
}
.vimeo-hero__title{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:0 .16em;
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(2.1rem,6vw,6.2rem);letter-spacing:-.04em;line-height:1;
  color:var(--text-primary);text-shadow:0 8px 28px #071022aa;
}
.vimeo-hero__word{display:inline-block}
.vimeo-hero__word.is--relative{position:relative}
.home-header__smiley{
  position:absolute;top:-.38em;left:.35em;width:1em;height:1em;rotate:-28deg;
  pointer-events:none;
}
.home-header__smiley img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.home-header__star{
  position:absolute;top:8%;right:-.55em;width:.72em;height:.72em;
  transform:translateY(-50%) rotate(12deg);pointer-events:none;
}
.star-svg{width:100%;height:100%;fill:var(--accent-orange);filter:drop-shadow(0 4px 8px #0006)}

.content-section{text-align:center;padding:80px 20px 0;position:relative}

.horizontal-words-section{
  background:var(--bg-primary);width:100%;
  min-height:100vh;position:relative;overflow-x:hidden;
  display:flex;flex-direction:column;justify-content:center;
  padding:90px 0 70px;
}
.horizontal-words__relative{
  white-space:nowrap;display:flex;align-items:center;
  width:100%;overflow:hidden;padding:4.5rem 0 1rem;
}
.horizontal-words__sticker-svg{
  display:flex;width:max-content;position:relative;
  animation:words-slide 22s linear infinite;
}
@keyframes words-slide{to{transform:translateX(-50%)}}
.horizontal-words__h2{
  text-transform:lowercase;white-space:nowrap;margin:0;
  font-family:var(--font-display);font-size:clamp(3.2rem,8.4vw,8.6rem);
  font-weight:900;line-height:1;letter-spacing:-.04em;
  padding-right:.35em;
}
.letter{display:inline-block;position:relative}
.letter:nth-child(odd){transform:rotate(-2deg)}
.letter:nth-child(3n){transform:rotate(2deg)}
.gap{display:inline-block;width:.28em}
.horizontal-words__h2-mobile{display:none}
.horizontal-words__bottom-text{
  max-width:42em;width:100%;margin:1.5rem auto 0;padding:0 24px;position:relative;z-index:2;
}
.horizontal-words__bottom-text-l{
  font-size:1.18rem;font-weight:450;line-height:1.45;color:var(--text-secondary);
}
.horizontal-words__bottom-text-l strong{color:var(--text-primary);font-weight:700}
.inline-soon{
  display:inline;color:var(--accent-orange);font-weight:700;
  text-decoration:underline;text-underline-offset:.15em;
}
.scribble{display:none}
.sticker{position:absolute;z-index:10;border-radius:18px;object-fit:cover;box-shadow:0 10px 24px #07102255;pointer-events:none}
.sticker-watch{width:4.4em;top:-2.2em;left:18%;transform:rotate(-16deg)}
.sticker-cursor{width:3.6em;bottom:-1.4em;left:46%;transform:rotate(10deg);border-radius:50%}
.sticker-phone{width:4.6em;top:-1.6em;left:72%;transform:rotate(8deg)}

.community-posts-section{padding-bottom:20px}
.motion-card__heading{max-width:980px;margin:0 auto 3rem}
.motion-card__title{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(2.4rem,6vw,6.4rem);letter-spacing:-.05em;line-height:.92;
  max-width:100%;padding:0 8px;
}
.chain-facts{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.5rem;max-width:1400px;margin:0 auto;
  text-align:left;
}
.fact-card{
  background:var(--surface-1);border:3px solid var(--border-strong);
  box-shadow:5px 5px 0 var(--border-strong);border-radius:16px;padding:1.6rem 1.5rem;
}
.fact-badge{
  display:inline-block;text-transform:lowercase;
  background:color-mix(in srgb,var(--accent-orange) 18%,transparent);
  color:var(--accent-orange);border:1px solid color-mix(in srgb,var(--accent-orange) 40%,transparent);
  border-radius:20px 20px 20px 2px;padding:4px 12px;font-size:.9rem;margin-bottom:12px;
}
.fact-card h3{font-family:var(--font-display);font-size:1.55rem;letter-spacing:-.03em;margin-bottom:8px}
.fact-card p{color:var(--text-secondary);font-size:.98rem;line-height:1.5}

.community-stats{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:2rem;width:100%;max-width:1400px;margin:4rem auto 0;
}
.td-metric-small-card{
  background:var(--surface-1);border:3px solid var(--border-strong);
  box-shadow:5px 5px 0 var(--border-strong);border-radius:16px;
  display:flex;align-items:center;gap:1.4rem;padding:1.6rem;
  text-align:left;transition:transform .2s,box-shadow .2s;
}
.td-metric-small-card:hover{transform:translate(-4px,-4px);box-shadow:9px 9px 0 var(--border-strong)}
.td-metric-icon{
  width:72px;height:72px;flex-shrink:0;border-radius:50%;
  display:grid;place-items:center;color:var(--accent-primary);
  background:var(--bg-tertiary);border:3px solid var(--border-strong);
  box-shadow:3px 3px 0 var(--border-strong);
}
.td-metric-label{text-transform:uppercase;letter-spacing:.5px;font-weight:700;font-size:.9rem;margin-bottom:.4rem}
.td-metric-primary{
  font-family:var(--font-display);font-weight:800;font-size:clamp(1.3rem,2.2vw,2.2rem);
  letter-spacing:-.04em;color:var(--accent-orange);line-height:1;
}

.machine-section{padding:40px 5vw 100px}
.machine__intro{color:var(--text-secondary);max-width:720px;margin:0 auto 2.5rem;font-size:1.05rem;line-height:1.6}
.machine__flows{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:2rem;max-width:1000px;margin:0 auto 3.5rem;text-align:left;
}
.machine__flow{border-left:3px solid var(--border-subtle);padding-left:1.25rem;display:flex;flex-direction:column;gap:.6rem}
.machine__flow-steps{font-family:var(--font-display);font-weight:800;letter-spacing:-.02em}
.machine__flow-arrow{color:var(--accent-primary);margin:0 .15rem}
.machine__flow-note{color:var(--text-muted);font-size:.9rem;line-height:1.6}
.machine__card{
  background:var(--surface-1);border:3px solid var(--border-strong);
  box-shadow:5px 5px 0 var(--border-strong);border-radius:16px;
  max-width:1400px;margin:0 auto;padding:3rem 2.5rem;
  display:grid;grid-template-columns:1fr auto 1fr;gap:3rem;text-align:left;
}
.machine__divider{width:3px;background:var(--border-subtle);border-radius:2px}
.machine__column-title{
  text-transform:uppercase;letter-spacing:.5px;color:var(--accent-primary);
  font-size:.95rem;font-weight:700;margin-bottom:2rem;
}
.machine__stats{display:flex;flex-direction:column;gap:1.8rem}
.machine__stat-value{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(1.5rem,2.6vw,2.5rem);letter-spacing:-.04em;
  color:var(--accent-orange);line-height:1;margin-bottom:.4rem;
}
.machine__stat-label{text-transform:uppercase;letter-spacing:.5px;color:var(--text-muted);font-size:.85rem;font-weight:700}
.machine__source{text-transform:uppercase;letter-spacing:.5px;color:var(--text-muted);margin-top:2rem;font-size:.8rem;font-weight:700}

.receipt-section{padding:40px 5vw 100px}
.receipt__intro{color:var(--text-secondary);max-width:720px;margin:0 auto 2.5rem;font-size:1.05rem;line-height:1.6}
.receipt__form{display:flex;flex-direction:column;align-items:center;gap:1rem;max-width:620px;margin:0 auto}
.receipt__input{
  width:100%;padding:.9rem 1.1rem;border-radius:12px;
  background:var(--surface-1);border:2px solid var(--border-default);
  color:var(--text-primary);font-size:.95rem;
}
.receipt__input:disabled{opacity:.7}
.receipt__actions{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem}
.receipt__button{
  border:2px solid var(--border-default);background:var(--surface-1);
  border-radius:12px;padding:.75rem 1.5rem;font-weight:700;
}
.receipt__button--primary{
  background:var(--accent-orange);color:var(--bg-tertiary);border-color:var(--accent-orange);
}
.receipt__disclaimer{color:var(--text-muted);font-size:.85rem}

.motion-card-section{padding:120px 40px 50px;overflow:hidden}
.motion-card__cards-area{width:100%;max-width:1100px;height:550px;margin:40px auto 80px;position:relative}
.motion-card__cards{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}
.motion-card__card{
  flex-shrink:0;width:17vw;min-width:180px;height:22vw;min-height:240px;
  border:1px solid var(--border-subtle);border-radius:.4rem;
  overflow:hidden;position:relative;
  box-shadow:0 12px 40px #07102266,0 0 24px #4a9eff2e;
}
.motion-card__card-image,.cover-image{width:100%;height:100%;object-fit:cover}
.motion-card__card--1{z-index:1;margin-right:-4vw;transform:rotate(-10deg) translateY(18px)}
.motion-card__card--2{z-index:2;margin-right:-4vw;transform:rotate(-3deg) translateY(-8px)}
.motion-card__card--3{z-index:3;margin-right:-4vw;transform:rotate(4deg) translateY(-4px)}
.motion-card__card--4{z-index:2;transform:rotate(11deg) translateY(16px)}
.motion-card__floating-labels{position:absolute;inset:0;pointer-events:none}
.motion-card__floating-label{
  position:absolute;padding:10px 16px;border-radius:999px;
  font-family:var(--font-display);font-weight:800;font-size:1rem;
  box-shadow:3px 3px 0 var(--bg-tertiary);
}
.motion-card__floating-label--pink{left:6%;top:8%;background:#ffd0d8;color:#3a1020;rotate:-8deg}
.motion-card__floating-label--orange{right:14%;top:12%;background:var(--accent-orange);color:var(--bg-tertiary);rotate:6deg}
.motion-card__floating-label--red{left:28%;bottom:6%;background:var(--accent-red);color:#fff;rotate(-4deg)}

.faq-section{padding:50px 40px 120px}
.faq__heading{text-align:center;margin:0 auto 60px}
.faq__title{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(2.2rem,4.4vw,5.2rem);letter-spacing:-.04em;line-height:1;
  max-width:100%;padding:0 8px;
}
.faq__layout{display:block;max-width:1040px;margin:0 auto}
.faq__col--media{display:none}
.faq__item{margin-bottom:14px}
.faq__header{margin:0}
.faq__trigger{width:100%;display:flex;align-items:center;gap:16px;text-align:left;padding:0}
.faq__question{
  flex:1;background:var(--surface-1);border:1px solid var(--border-subtle);
  border-radius:18px;padding:14px 20px;transition:background .2s,border-color .2s;
}
.faq__trigger:hover .faq__question{background:var(--surface-2);border-color:var(--border-default)}
.faq__item.is-open .faq__question{border-color:var(--border-strong);color:var(--accent-primary);background:#4a9eff26}
.faq__question-text{font-size:1.06rem;font-weight:500;line-height:1.35}
.faq__indicator{color:var(--text-muted);font-size:1.4rem;flex-shrink:0;width:1.2em;text-align:center}
.faq__item.is-open .faq__indicator{color:var(--accent-primary)}
.faq__content{display:none}
.faq__item.is-open .faq__content{display:block}
.faq__answer-wrap{margin:10px 0 0 48px}
.faq__answer{
  display:inline-block;background:var(--accent-primary);color:var(--bg-tertiary);
  border-radius:20px;padding:14px 20px;font-weight:500;line-height:1.45;max-width:420px;text-align:left;
}

.showreel-section{padding:40px 20px 80px}
.showreel__title{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(2.2rem,5vw,4.4rem);letter-spacing:-.04em;margin-bottom:12px;
  max-width:100%;padding:0 8px;
}
.showreel__subtitle{color:var(--text-secondary);margin-bottom:2rem;font-size:1.1rem}
.chart-wrapper{
  position:relative;max-width:920px;margin:0 auto;border-radius:20px;overflow:hidden;
  border:3px solid var(--border-strong);box-shadow:5px 5px 0 var(--border-strong);
}
.chart-wrapper img{width:100%;height:420px;object-fit:cover;filter:saturate(.85) brightness(.7)}
.chart-soon{
  position:absolute;inset:0;display:grid;place-items:center;
  font-family:var(--font-display);font-weight:900;
  font-size:clamp(2rem,6vw,4rem);letter-spacing:-.04em;
  color:var(--text-primary);text-shadow:0 8px 24px #000a;
}

.double-marquee{overflow:hidden;border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle);padding:18px 0;background:var(--bg-secondary)}
.marquee-track{
  display:flex;gap:40px;width:max-content;
  animation:marquee 32s linear infinite;
  font-family:var(--font-display);font-weight:800;font-size:1.1rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--accent-orange);
}
@keyframes marquee{to{transform:translateX(-50%)}}

.main-footer{padding:10px}
.footer-inner{
  background:var(--bg-tertiary);border-radius:20px;
  min-height:88vh;padding:72px 40px 32px;
  display:flex;flex-direction:column;justify-content:space-between;
  position:relative;overflow:hidden;
}
.footer-top{display:flex;justify-content:space-between;gap:40px;position:relative;z-index:5}
.footer-column{flex:1;display:flex;flex-direction:column;gap:14px}
.footer-badge{
  width:fit-content;text-transform:lowercase;
  background:color-mix(in srgb,var(--accent-primary) 16%,transparent);
  color:var(--accent-primary);border:1px solid color-mix(in srgb,var(--accent-primary) 32%,transparent);
  border-radius:20px 20px 20px 1px;padding:6px 14px;font-size:1rem;
}
.footer-column h3,.footer-buy,.footer-email,address{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(1.4rem,2.2vw,2.1rem);letter-spacing:-.03em;line-height:1.15;text-align:left;
}
.footer-socials{display:flex;gap:12px;margin-top:6px}
.single-social{
  width:52px;height:52px;border-radius:12px;
  background:var(--surface-1);border:2px solid var(--border-default);
  font-size:11px;font-weight:800;letter-spacing:.04em;
}
.footer-bottom{position:relative;min-height:280px;margin-top:40px}
.footer-logo__img{
  width:min(180px,42vw);height:min(180px,42vw);margin:0 auto;position:relative;z-index:2;
  object-fit:cover;border-radius:50%;border:3px solid var(--accent-orange);
  background:var(--surface-1);
}
.footer-stickers{position:absolute;inset:0;pointer-events:none}
.footer-sticker{position:absolute;width:88px;border-radius:16px;object-fit:cover;opacity:.95}
.footer-sticker.s1{left:8%;top:10%;rotate:-18deg;width:110px}
.footer-sticker.s2{right:12%;top:0;rotate:12deg}
.footer-sticker.s3{left:28%;bottom:8%;rotate:8deg;width:96px}
.footer-sticker.s4{right:30%;bottom:16%;rotate:-10deg;width:72px;border-radius:50%}
.footer-sticker.s5{right:6%;bottom:0;rotate:16deg;width:100px}
.fine{color:var(--text-muted);font-size:.85rem;line-height:1.6;max-width:720px;margin:24px auto 0;text-align:center;position:relative;z-index:2}

.coming-soon-toast{
  position:fixed;bottom:2.5rem;left:50%;z-index:3000;
  display:flex;align-items:center;gap:.6rem;
  background:var(--surface-2);color:var(--text-primary);
  border:2px solid var(--border-strong);box-shadow:4px 4px 0 var(--border-strong);
  font-family:var(--font-display);font-weight:800;letter-spacing:.02em;
  white-space:nowrap;pointer-events:none;opacity:0;
  border-radius:999px;padding:.9rem 1.5rem;
  transform:translate(-50%,1.25rem) scale(.92);
  transition:opacity .28s,transform .28s cubic-bezier(.34,1.56,.64,1);
}
.coming-soon-toast.is-visible{opacity:1;transform:translate(-50%) scale(1)}

html[class*="shot-"] .main-header{display:none}
html.shot-community .horizontal-words-section,
html.shot-machine .horizontal-words-section,
html.shot-machine .community-posts-section,
html.shot-receipt .horizontal-words-section,
html.shot-receipt .community-posts-section,
html.shot-receipt .machine-section,
html.shot-motion-card-section .horizontal-words-section,
html.shot-motion-card-section .community-posts-section,
html.shot-motion-card-section .machine-section,
html.shot-motion-card-section .receipt-section,
html.shot-faq .horizontal-words-section,
html.shot-faq .community-posts-section,
html.shot-faq .machine-section,
html.shot-faq .receipt-section,
html.shot-faq .motion-cards-wrapper,
html.shot-showreel-section .horizontal-words-section,
html.shot-showreel-section .community-posts-section,
html.shot-showreel-section .machine-section,
html.shot-showreel-section .receipt-section,
html.shot-showreel-section .motion-cards-wrapper,
html.shot-showreel-section .faq-section,
html.shot-contact .horizontal-words-section,
html.shot-contact .community-posts-section,
html.shot-contact .machine-section,
html.shot-contact .receipt-section,
html.shot-contact main,
html.shot-contact .double-marquee{display:none}

@media (min-width:969px){
  .faq__layout{display:grid;grid-template-columns:1fr .85fr;gap:48px;align-items:start;max-width:1240px}
  .faq__col--media{display:block}
  .faq__media{border-radius:32px;overflow:hidden;position:sticky;top:88px}
  .faq__media-image{width:100%;height:auto;object-fit:cover}
}

@media (max-width:1024px){
  .chain-facts,.community-stats{grid-template-columns:1fr 1fr}
  .machine__card{grid-template-columns:1fr;gap:2rem}
  .machine__divider{width:100%;height:3px}
  .motion-card__card{width:22vw;height:30vw}
}

@media (max-width:768px){
  .navbar{padding:10px 12px;width:100%}
  .nav-logo{width:44px;height:44px}
  .nav-right{margin-left:auto}
  .ca-button{min-height:40px;padding:8px 12px;position:static}
  .ca-value{font-size:12px}
  .vimeo-hero{width:calc(100% - 16px);height:calc(100svh - 16px);margin:8px auto;border-radius:18px}
  .hero-still{object-position:78% center}
  .home-header__title{bottom:22px;padding:0 16px 10px}
  .vimeo-hero__title{
    display:block;text-align:left;
    font-size:clamp(1.55rem,7.6vw,2.15rem);letter-spacing:-.03em;line-height:1.12;
  }
  .vimeo-hero__word{display:inline}
  .home-header__smiley{width:.72em;height:.72em;top:-.55em;left:.15em}
  .home-header__star{right:0;top:-.1em;width:.55em;height:.55em}
  .ca-label{display:none!important}
  .ca-button{padding:8px 12px}
  .horizontal-words-section{min-height:auto;padding:72px 16px 40px;overflow-x:hidden}
  .horizontal-words__relative,.scribble,.sticker{display:none}
  .horizontal-words__h2-mobile{
    display:block;font-family:var(--font-display);font-weight:900;
    font-size:clamp(1.55rem,8vw,2.1rem);letter-spacing:-.04em;line-height:1.05;
    text-transform:lowercase;padding:0 4px;max-width:100%;
  }
  .horizontal-words__bottom-text{padding:0 4px;max-width:100%}
  .horizontal-words__bottom-text-l{font-size:1rem}
  .motion-card__title,.faq__title,.showreel__title{
    font-size:clamp(1.65rem,7.6vw,2.15rem);letter-spacing:-.03em;padding:0 4px;
  }
  .fact-card,.td-metric-small-card,.machine__card,.machine__intro,.receipt__intro,.fine{
    overflow-wrap:anywhere;
  }
  .content-section{padding-left:16px;padding-right:16px}
  .footer-column h3,.footer-buy,.footer-email,address{font-size:1.35rem}
  .chain-facts,.community-stats,.machine__flows{grid-template-columns:1fr;gap:1.2rem}
  .td-metric-small-card{padding:1.2rem}
  .td-metric-icon{width:56px;height:56px}
  .machine-section,.receipt-section{padding:32px 16px 64px}
  .machine__card{padding:1.6rem}
  .motion-card-section{padding:72px 16px 32px}
  .motion-card__cards-area{height:auto;margin:20px auto 40px}
  .motion-card__cards{display:grid;grid-template-columns:1fr 1fr;gap:12px;height:auto}
  .motion-card__card{width:100%;height:auto;min-height:0;margin:0!important;transform:none!important;aspect-ratio:3/4}
  .motion-card__floating-label{font-size:.8rem;padding:7px 10px}
  .faq-section{padding:40px 16px 80px}
  .faq__answer-wrap{margin-left:8px}
  .footer-top{flex-direction:column;gap:28px}
  .footer-inner{padding:48px 20px 24px;min-height:auto}
  .footer-sticker{width:64px}
  .chart-wrapper img{height:260px}
  .coming-soon-toast{max-width:calc(100vw - 2rem);bottom:1.5rem;font-size:.9rem}
}

@media (max-width:420px){
  .vimeo-hero__title{font-size:clamp(1.45rem,8vw,1.85rem)}
  .motion-card__title,.faq__title,.showreel__title,.horizontal-words__h2-mobile{font-size:1.5rem}
}
