/* ==========================================================================
   Cloudstons. Black and white, storm-front mood.
   Tokens -> base -> components -> sections -> phone stage -> responsive
   ========================================================================== */

:root {
  --black: #000;
  --s1: #0f0f0f;
  --s2: #1a1a1a;
  --white: #fff;
  --paper: #f2f2f2;
  --mute: #a3a3a3;
  --line: rgba(255, 255, 255, .16);

  --display: "Archivo", "Arial Narrow", Impact, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1440px;
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.why :focus-visible { outline-color: var(--black); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.ico { width: 1.15em; height: 1.15em; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip {
  position: fixed; left: 1rem; top: -4rem; z-index: 100;
  background: var(--white); color: var(--black); padding: .7rem 1.1rem; border-radius: 99px; font-weight: 600;
  transition: top .2s;
}
.skip:focus { top: 1rem; }

/* ---------- Type ---------- */
.h2, .display {
  font-family: var(--display);
  font-weight: 850;
  font-stretch: 70%;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.005em;
}
.h2 { font-size: var(--h2-size, clamp(2.8rem, 7vw, 6.6rem)); }
.display { font-size: clamp(4.6rem, 14vw, 13rem); line-height: .84; font-weight: 900; font-stretch: 64%; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.32rem); line-height: 1.55; color: rgba(255, 255, 255, .78); max-width: 34em; }

/* ---------- Buttons and links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.7rem; border-radius: 99px;
  border: 1.5px solid var(--white);
  font-weight: 600; font-size: 1rem; line-height: 1; text-decoration: none; white-space: nowrap;
  transition: background .25s, color .25s;
}
.btn--solid { background: var(--white); color: var(--black); }
.btn--solid:hover { background: transparent; color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--sm { padding: .7rem 1.15rem; font-size: .92rem; }
.link {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; text-decoration: underline;
  text-underline-offset: .28em; text-decoration-thickness: 1.5px;
}
.link:hover { text-decoration-thickness: 3px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; }
/* backdrop lives on a pseudo-element so the fixed mobile menu is not trapped inside the nav box */
.nav::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); opacity: 0; transition: opacity .35s; }
.nav.is-solid::before { opacity: 1; }
.nav__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  max-width: var(--max); margin-inline: auto; padding: 1.05rem var(--gutter);
}
.nav__logo img { height: 28px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.2rem); font-size: .95rem; }
.nav__links a:not(.btn) { text-decoration: none; color: rgba(255, 255, 255, .78); transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--white); }
.nav__toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 2; }
.nav__toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 26px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
/* On roomy desktop screens the hero holds still for a beat while the clouds fly past */
@media (prefers-reduced-motion: no-preference) and (min-width: 981px) and (min-height: 780px) {
  .hero-wrap { height: 190vh; height: 190svh; }
  .hero { position: sticky; top: 0; height: 100vh; height: 100svh; }
}
/* Two cloud layers. JS moves them at different speeds as you scroll, which is what gives depth. */
.hero__sky { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.sky { position: absolute; inset: -14% -10%; will-change: transform; }
.sky img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.sky--a img { animation: skyIn 2.8s ease-out both, drift-a 46s ease-in-out infinite alternate; }
.sky--b { opacity: .5; mix-blend-mode: screen; }
.sky--b img { object-position: 20% 65%; transform: scaleX(-1); filter: contrast(1.25) brightness(.85); animation: drift-b 34s ease-in-out infinite alternate; }
.hero__shade {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 50% 35%, transparent 30%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .1) 28%, rgba(0, 0, 0, .3) 58%, var(--black) 100%);
}
.hero__ridge { position: absolute; left: 0; bottom: -1px; width: 100%; height: min(30vh, 270px); z-index: -1; }
.ridge-back { fill: #131313; opacity: .92; }
.ridge-front { fill: var(--black); }
.hero__content { position: relative; padding-top: 9rem; padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero__kicker { font-size: 1rem; color: rgba(255, 255, 255, .8); margin-bottom: 1rem; animation: fadeUp 1s .2s both var(--ease); }
.hero__title {
  font-family: var(--display); font-weight: 900; font-stretch: 62%; text-transform: uppercase;
  font-size: clamp(3.7rem, 11vw, 10.4rem); line-height: .84; letter-spacing: -.012em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .05em; }
.hero__title .line > span { display: block; transform: translateY(108%); animation: rise 1.15s var(--ease) .4s forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .55s; }
.hero__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: clamp(1.6rem, 3vw, 2.6rem); animation: fadeUp 1s 1.1s both var(--ease); }
.hero__text { max-width: 40rem; }
.hero__sub { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: rgba(255, 255, 255, .85); line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__wait { margin-top: 1.2rem; font-size: .95rem; color: var(--mute); }
.hero__wait a { color: var(--white); font-weight: 600; text-underline-offset: .25em; }
.hero__award { flex: none; display: block; width: clamp(130px, 15vw, 210px); }
.hero__award img, .award__mark { width: 100%; height: auto; filter: brightness(0) invert(1); }

@keyframes skyIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drift-a { from { transform: scale(1.05) translate3d(-4.5%, 1.5%, 0); } to { transform: scale(1.17) translate3d(4.5%, -2%, 0); } }
@keyframes drift-b { from { transform: scaleX(-1) scale(1.06) translate3d(-6%, -1%, 0); } to { transform: scaleX(-1) scale(1.2) translate3d(6%, 2%, 0); } }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Award ---------- */
.award { position: relative; padding-block: clamp(6rem, 14vw, 12rem) clamp(3rem, 6vw, 5rem); background: var(--black); overflow: hidden; }
.award::before {
  content: ""; position: absolute; left: 50%; top: 18%; width: 90vw; height: 60vw; max-width: 1300px; max-height: 800px;
  transform: translateX(-50%); background: radial-gradient(closest-side, rgba(255, 255, 255, .11), transparent); pointer-events: none;
}
.award__grid { position: relative; display: grid; grid-template-columns: minmax(200px, .55fr) 1.45fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.award__mark { width: 100%; max-width: 380px; }
.award__title {
  font-family: var(--display); font-weight: 900; font-stretch: 62%; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 9.4rem); line-height: .86; letter-spacing: -.01em;
}
.js .award__title .w { opacity: .16; }
.award__text { margin-top: 2rem; max-width: 32em; font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: rgba(255, 255, 255, .8); }
.creds { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line); }
.creds li { padding: 1.7rem 1.5rem 0 0; }
.creds li + li { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.creds strong { display: block; font-family: var(--display); font-weight: 800; font-stretch: 75%; font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.1; text-transform: uppercase; }
.creds span { display: block; margin-top: .35rem; color: var(--mute); font-size: .98rem; }

/* ---------- Phone stage (scroll-pinned) ---------- */
.stage { position: relative; height: 540vh; background: var(--black); }
.stage__pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; padding-top: 3.6rem; }
.stage__pin::before {
  content: ""; position: absolute; right: -10%; top: 50%; width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px;
  transform: translateY(-50%); background: radial-gradient(closest-side, rgba(255, 255, 255, .12), transparent); pointer-events: none;
}
.stage__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.stage__title { font-size: 1.05rem; font-weight: 600; color: var(--mute); margin-bottom: 1.6rem; }
.stage__steps { position: relative; min-height: clamp(19rem, 25vw, 28rem); }
.step { position: absolute; inset: 0 0 auto 0; opacity: 0; visibility: hidden; transform: translateY(30px); pointer-events: none; transition: opacity .5s, transform .7s var(--ease), visibility 0s .5s; }
.step.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: .12s, .12s, 0s; }
.step h3 {
  font-family: var(--display); font-weight: 900; font-stretch: 64%; text-transform: uppercase;
  font-size: clamp(2.7rem, 6.4vw, 6.2rem); line-height: .88; letter-spacing: -.008em; max-width: 9em;
}
.step p { margin-top: 1.5rem; max-width: 30em; font-size: clamp(1.05rem, 1.35vw, 1.22rem); color: rgba(255, 255, 255, .8); }
.step a { font-weight: 600; text-underline-offset: .25em; }
.stage__dots { display: flex; gap: .5rem; margin-top: 1rem; }
.stage__dots i { width: 2.4rem; height: 3px; background: rgba(255, 255, 255, .22); border-radius: 2px; transition: background .4s; }
.stage__dots i.is-on { background: var(--white); }
.stage__device { display: flex; justify-content: center; perspective: 1600px; }

.phone { --ph: min(76vh, 700px); --pw: calc(var(--ph) * 9 / 19); height: var(--ph); width: var(--pw); transform: rotateY(-6deg) rotateZ(0deg); transition: transform 1.2s var(--ease); }
@supports (height: 1svh) { .phone { --ph: min(76svh, 700px); } }
.stage[data-step="1"] .phone { transform: rotateY(-10deg) rotateZ(-1.5deg); }
.stage[data-step="2"] .phone { transform: rotateY(-12deg) rotateZ(1.5deg); }
.stage[data-step="3"] .phone { transform: rotateY(-3deg) rotateZ(1deg); }
.phone__body {
  position: relative; width: 100%; height: 100%; padding: calc(var(--pw) * .03); border-radius: calc(var(--pw) * .155);
  background: #0c0c0c; box-shadow: 0 0 0 1.5px #3b3b3b, inset 0 0 0 1px #1d1d1d, 0 50px 120px rgba(255, 255, 255, .06), 0 40px 90px rgba(0, 0, 0, .9);
}
.phone__island { position: absolute; z-index: 8; top: calc(var(--pw) * .058); left: 50%; width: 28%; height: calc(var(--pw) * .075); transform: translateX(-50%); background: #000; border-radius: 99px; }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: calc(var(--pw) * .125); background: #000; overflow: hidden; container-type: inline-size; }
.phone__screen::after { content: ""; position: absolute; z-index: 9; bottom: 2cqw; left: 50%; width: 34cqw; height: 1.2cqw; transform: translateX(-50%); background: rgba(255, 255, 255, .75); border-radius: 99px; }

.scr {
  position: absolute; inset: 0; background: #000; color: var(--white); font-size: 4cqw; line-height: 1.3;
  opacity: 0; transform: scale(1.03); pointer-events: none; transition: opacity .5s, transform .7s var(--ease);
}
.scr.is-on { opacity: 1; transform: none; }
.sb { display: flex; justify-content: space-between; align-items: center; height: 12cqw; padding: 2.5cqw 8cqw 0 10cqw; font-size: 3.6cqw; font-weight: 600; }
.sb__r { display: inline-flex; align-items: flex-end; gap: .8cqw; }
.sb__r i { display: block; width: 1.3cqw; background: var(--white); border-radius: .4cqw; }
.sb__r i:nth-child(1) { height: 1.6cqw; } .sb__r i:nth-child(2) { height: 2.4cqw; } .sb__r i:nth-child(3) { height: 3.2cqw; }
.sk { display: block; height: 2.6cqw; border-radius: 99px; background: #222; margin-bottom: 2.4cqw; }
.sk--h { height: 4cqw; background: #333; }
.sk--hero { height: 34cqw; border-radius: 3cqw; margin-bottom: 4cqw; background: #1c1c1c; }
.sk--thumb { width: 28cqw; height: 16cqw; border-radius: 2cqw; flex: none; margin: 0; }
.sk--w40 { width: 40%; } .sk--w50 { width: 50%; } .sk--w60 { width: 60%; } .sk--w70 { width: 70%; }
.sk--w80 { width: 80%; } .sk--w90 { width: 90%; } .sk--w100 { width: 100%; }
.chip { display: inline-block; padding: 1.6cqw 3.2cqw; border-radius: 99px; font-weight: 600; font-size: 3.2cqw; line-height: 1.1; border: 1px solid rgba(255, 255, 255, .4); white-space: nowrap; }
.chip--solid { background: var(--white); color: var(--black); border-color: var(--white); }

/* Screen 0: YouTube */
.yt__video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.yt__video img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.yt__creative { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 6cqw; background: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 75%); }
.yt__big { font-family: var(--display); font-weight: 900; font-stretch: 64%; text-transform: uppercase; font-size: 12.5cqw; line-height: .86; }
.yt__url { margin-top: 2cqw; font-size: 3cqw; color: #ddd; }
.yt__pill { position: absolute; left: 2.4cqw; bottom: 5.4cqw; padding: .4cqw 1.6cqw; background: var(--white); color: var(--black); font-size: 2.7cqw; font-weight: 700; border-radius: .8cqw; }
.yt__skip { position: absolute; right: 0; bottom: 5.2cqw; display: grid; padding: 1.6cqw 3.2cqw; font-size: 3cqw; font-weight: 600; background: rgba(0, 0, 0, .78); border: 1px solid rgba(255, 255, 255, .55); border-right: 0; }
.yt__skip em { grid-area: 1 / 1; font-style: normal; }
.yt__go { opacity: 0; }
.yt__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 1cqw; background: rgba(255, 255, 255, .3); }
.yt__bar i { display: block; height: 100%; width: 0; background: var(--white); }
.yt__cta { display: flex; align-items: center; gap: 3cqw; padding: 3.5cqw 4cqw; border-bottom: 1px solid #222; }
.yt__avatar { width: 10cqw; height: 10cqw; padding: 1.6cqw; border-radius: 50%; background: #1d1d1d; border: 1px solid #333; }
.yt__who { line-height: 1.15; }
.yt__who b { display: block; font-size: 3.7cqw; }
.yt__who small { color: #9a9a9a; font-size: 2.9cqw; }
.yt__cta .chip { margin-left: auto; }
.yt__meta { padding: 4.5cqw 4cqw; }
.yt__row { display: flex; gap: 3cqw; margin-top: 4.5cqw; }
.yt__row > div { flex: 1; padding-top: 1cqw; }
.stage.in-view .scr--yt.is-on .yt__bar i { animation: ytbar 8s linear infinite; }
.stage.in-view .scr--yt.is-on .yt__wait { animation: ytwait 8s linear infinite; }
.stage.in-view .scr--yt.is-on .yt__go { animation: ytgo 8s linear infinite; }
.stage.in-view .scr--yt.is-on .yt__video img { animation: ytzoom 8s linear infinite; }
@keyframes ytbar { from { width: 0; } to { width: 100%; } }
@keyframes ytwait { 0%, 60% { opacity: 1; } 62%, 100% { opacity: 0; } }
@keyframes ytgo { 0%, 60% { opacity: 0; } 62%, 100% { opacity: 1; } }
@keyframes ytzoom { from { transform: scale(1); } to { transform: scale(1.12); } }

/* Screen 1: Google search */
.g__search { display: flex; align-items: center; gap: 2.6cqw; margin: 1cqw 4cqw 0; padding: 3cqw 4cqw; background: #2b2b2b; border-radius: 99px; font-size: 3.9cqw; }
.g__search .ico { width: 5cqw; height: 5cqw; color: #a3a3a3; }
.g__typed { white-space: nowrap; }
.g__caret { width: .45cqw; height: 5cqw; margin-left: -1.6cqw; background: var(--white); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.g__tabs { display: flex; gap: 5cqw; padding: 3.2cqw 5cqw 0; font-size: 3.2cqw; color: #a3a3a3; border-bottom: 1px solid #262626; }
.g__tabs span { padding-bottom: 2cqw; }
.g__tabs .on { color: var(--white); border-bottom: .6cqw solid var(--white); }
.g__results { position: relative; padding: 4cqw 4cqw; opacity: 0; transform: translateY(3cqw); transition: opacity .5s, transform .6s var(--ease); }
.scr--g.is-results .g__results { opacity: 1; transform: none; }
.g__ad { position: relative; padding: 3.5cqw; background: #141414; border: 1px solid #2a2a2a; border-radius: 3.5cqw; transition: box-shadow .5s, border-color .5s; }
.scr--g.is-focus .g__ad { border-color: rgba(255, 255, 255, .6); box-shadow: 0 0 0 1cqw rgba(255, 255, 255, .08), 0 0 8cqw rgba(255, 255, 255, .12); }
.g__spons b { font-size: 3.1cqw; }
.g__site { display: flex; align-items: center; gap: 2.4cqw; margin-top: 2cqw; font-size: 3.4cqw; line-height: 1.15; }
.g__site img { width: 7.4cqw; height: 7.4cqw; padding: 1.3cqw; border-radius: 50%; background: #262626; }
.g__site small { display: block; color: #a3a3a3; font-size: 2.8cqw; }
.g__ad h4 { margin: 2.4cqw 0 1.4cqw; font-size: 4.5cqw; line-height: 1.22; font-weight: 600; }
.g__desc { font-size: 3.2cqw; line-height: 1.4; color: #bdbdbd; }
.g__chips, .g__btns { display: flex; flex-wrap: wrap; gap: 1.8cqw; margin-top: 3cqw; }
.g__chips span { padding: 1.2cqw 2.6cqw; border: 1px solid #383838; border-radius: 99px; font-size: 2.8cqw; color: #d0d0d0; }
.g__btns span { padding: 1.9cqw 3cqw; border: 1px solid rgba(255, 255, 255, .4); border-radius: 99px; font-size: 3cqw; font-weight: 600; }
.g__btns .g__quote { margin-left: auto; background: var(--white); color: var(--black); border-color: var(--white); }
.g__org { margin-top: 5cqw; }
.scr--g::after { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(0, 0, 0, .6); opacity: 0; transition: opacity .4s; pointer-events: none; }
.scr--g.is-sheet::after { opacity: 1; }
.g__sheet { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 3cqw 5cqw 8cqw; background: var(--white); color: var(--black); border-radius: 6cqw 6cqw 0 0; transform: translateY(105%); transition: transform .7s var(--ease); }
.scr--g.is-sheet .g__sheet { transform: none; }
.g__grab { display: block; width: 10cqw; height: 1cqw; margin: 0 auto 3.5cqw; background: #cfcfcf; border-radius: 99px; }
.g__sheet h4 { margin-bottom: 3.5cqw; font-size: 5cqw; font-weight: 700; }
.g__field { display: block; margin-bottom: 2.4cqw; padding: 3cqw 3.6cqw; border: 1px solid #cfcfcf; border-radius: 2.6cqw; font-size: 3.6cqw; color: #7a7a7a; transition: color .3s, border-color .3s; }
.scr--g.is-filled .g__field { color: var(--black); border-color: var(--black); }
.g__send { display: block; margin-top: 3cqw; padding: 3.3cqw; text-align: center; background: var(--black); color: var(--white); border-radius: 99px; font-weight: 600; font-size: 3.8cqw; }
.g__done { display: none; align-items: center; justify-content: center; gap: 2cqw; margin-top: 3cqw; padding: 3.3cqw; font-weight: 600; font-size: 3.6cqw; }
.g__done .ico { width: 4.6cqw; height: 4.6cqw; }
.scr--g.is-sent .g__send { display: none; }
.scr--g.is-sent .g__done { display: flex; }
.tap { position: absolute; z-index: 6; left: 0; top: 0; width: 13cqw; height: 13cqw; border-radius: 50%; background: rgba(255, 255, 255, .6); transform: translate(-50%, -50%) scale(0); opacity: 0; pointer-events: none; }
.tap.go { animation: tap .8s ease-out; }
@keyframes tap { 0% { transform: translate(-50%, -50%) scale(.2); opacity: .9; } 100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; } }

/* Screen 2: Remarketing */
.rm__url { margin: 1cqw 4cqw 0; padding: 2.4cqw 4cqw; background: #1c1c1c; border-radius: 99px; font-size: 3.1cqw; color: #bdbdbd; text-align: center; }
.rm__page { position: absolute; top: 24cqw; bottom: 0; left: 0; right: 0; overflow: hidden; }
.rm__scroll { padding: 4cqw 5cqw 30cqw; }
.stage.in-view .scr--rm.is-on .rm__scroll { animation: rmscroll 10s ease-in-out infinite alternate; }
@keyframes rmscroll { from { transform: translateY(0); } to { transform: translateY(-46cqw); } }
.rm__banner { position: relative; margin: 4cqw 0 5cqw; aspect-ratio: 6 / 5; border-radius: 2.4cqw; overflow: hidden; background: var(--white); color: var(--black); }
.rm__ad { position: absolute; z-index: 2; top: 1.6cqw; right: 1.6cqw; padding: .4cqw 1.4cqw; border-radius: .8cqw; background: #8a8a8a; color: var(--black); font-size: 2.4cqw; font-weight: 700; }
.rm__frame { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 6cqw; }
.rm__frame p { font-family: var(--display); font-weight: 900; font-stretch: 64%; text-transform: uppercase; font-size: 10.5cqw; line-height: .88; }
.rm__frame small { margin: 2.4cqw 0 3.6cqw; font-size: 3.2cqw; color: #444; }
.rm__frame .chip--solid { background: var(--black); color: var(--white); border-color: var(--black); }
.rm__frame--b { background: var(--black); color: var(--white); opacity: 0; border: 1px solid #444; }
.rm__frame--b img { width: 9cqw; height: 9cqw; margin-bottom: 3cqw; }
.rm__frame--b .chip--solid { margin-top: 3.6cqw; background: var(--white); color: var(--black); border-color: var(--white); }
.stage.in-view .scr--rm.is-on .rm__frame--a { animation: frameA 6s infinite; }
.stage.in-view .scr--rm.is-on .rm__frame--b { animation: frameB 6s infinite; }
@keyframes frameA { 0%, 42% { opacity: 1; } 50%, 92% { opacity: 0; } 100% { opacity: 1; } }
@keyframes frameB { 0%, 42% { opacity: 0; } 50%, 92% { opacity: 1; } 100% { opacity: 0; } }
.rm__sticky { position: absolute; z-index: 3; left: 3cqw; right: 3cqw; bottom: 6cqw; display: flex; align-items: center; gap: 2.4cqw; height: 12cqw; padding: 0 2.6cqw; border-radius: 2.6cqw; background: var(--white); color: var(--black); font-size: 3cqw; font-weight: 600; line-height: 1.15; box-shadow: 0 2cqw 6cqw rgba(0, 0, 0, .6); }
.rm__sticky img { width: 7.4cqw; height: 7.4cqw; padding: 1.2cqw; border-radius: 50%; background: var(--black); flex: none; }
.rm__sticky b { margin-left: auto; padding: 1.6cqw 3.2cqw; border-radius: 99px; background: var(--black); color: var(--white); font-size: 2.8cqw; }
.stage.in-view .scr--rm.is-on .rm__sticky { animation: stickyUp .9s .5s var(--ease) both; }
@keyframes stickyUp { from { transform: translateY(160%); } to { transform: none; } }

/* Screen 3: Lead lands */
.scr--lock { background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), url("../assets/img/cloud-sm.jpg") 30% center / cover, #000; }
.lock__time { padding-top: 20cqw; text-align: center; }
.lock__time small { display: block; font-size: 4cqw; color: #d6d6d6; }
.lock__time b { display: block; font-family: var(--display); font-weight: 700; font-stretch: 88%; font-size: 24cqw; line-height: 1; letter-spacing: -.02em; }
.notif { display: flex; gap: 3cqw; margin: 3cqw 4cqw 0; padding: 3.4cqw; border-radius: 5cqw; background: rgba(38, 38, 38, .78); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); opacity: 0; transform: translateY(8cqw); }
.lock__time + .notif { margin-top: 9cqw; }
.notif__ico { display: grid; place-items: center; width: 10.5cqw; height: 10.5cqw; flex: none; border-radius: 2.6cqw; background: var(--white); color: var(--black); }
.notif__ico .ico { width: 5cqw; height: 5cqw; }
.notif > div { flex: 1; min-width: 0; }
.notif p:first-child { display: flex; justify-content: space-between; font-size: 3.9cqw; }
.notif em { font-style: normal; font-size: 3cqw; color: #aaa; }
.notif p + p { margin-top: .6cqw; font-size: 3.8cqw; color: #e8e8e8; line-height: 1.3; }
.stage.in-view .scr--lock.is-on .notif { animation: notifIn .7s var(--ease) forwards; }
.stage.in-view .scr--lock.is-on .notif:nth-child(2) { animation-delay: .3s; }
.stage.in-view .scr--lock.is-on .notif:nth-child(3) { animation-delay: 1s; }
.stage.in-view .scr--lock.is-on .notif:nth-child(4) { animation-delay: 1.7s; }
@keyframes notifIn { to { opacity: 1; transform: none; } }

/* ---------- Services ---------- */
.services { padding-block: clamp(5rem, 12vw, 11rem); border-top: 1px solid var(--line); }
.services__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.services__head { position: sticky; top: 7rem; }
.services__head .h2 { --h2-size: clamp(2.6rem, 5.6vw, 5.4rem); }
.services__head .lead { margin: 1.8rem 0 2rem; }
.svc li { padding: 2.2rem 0 2.4rem; border-top: 1px solid var(--line); }
.svc li:last-child { border-bottom: 1px solid var(--line); }
.svc h3 { margin-bottom: 1rem; font-family: var(--display); font-weight: 850; font-stretch: 68%; text-transform: uppercase; font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height: .92; }
.svc p { max-width: 38em; color: rgba(255, 255, 255, .74); }

/* ---------- Landing pages ---------- */
.pages { padding-block: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--line); overflow: hidden; }
.pages__head { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.pages__head .h2 { --h2-size: clamp(2.8rem, 6.2vw, 5.8rem); }
.seg { display: inline-flex; margin-top: 1.5rem; padding: .25rem; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 99px; }
.seg button { padding: .55rem 1.3rem; border-radius: 99px; font-weight: 600; font-size: .95rem; transition: background .25s, color .25s; }
.seg button.is-on { background: var(--white); color: var(--black); }

.rail { --iw: 1280; --ar: 1.6; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-inline: var(--edge); scroll-padding-left: var(--edge); overscroll-behavior-x: contain; }
.rail::-webkit-scrollbar, .reviews__rail::-webkit-scrollbar { display: none; }
.rail[data-mode="mobile"] { --iw: 390; --ar: .5; }
.rail__track { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); width: max-content; padding-block: .5rem; padding-right: var(--edge); align-items: flex-start; }
.slide { flex: none; width: min(780px, 82vw); scroll-snap-align: start; transition: width .5s var(--ease); }
.rail[data-mode="mobile"] .slide { width: min(300px, 74vw); }
.device { background: #131313; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-radius .5s var(--ease); }
.rail[data-mode="mobile"] .device { border-radius: 36px; }
.device__bar { display: flex; align-items: center; height: 40px; padding: 0 14px; gap: 14px; }
.dots { display: flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3a; }
.device__url { flex: 1; max-width: 62%; margin-inline: auto; padding: .22rem 1rem; border-radius: 99px; background: var(--black); color: #b5b5b5; font-size: .78rem; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rail[data-mode="mobile"] .dots { display: none; }
.rail[data-mode="mobile"] .device__url { max-width: 80%; }
.device__screen { position: relative; aspect-ratio: var(--ar); background: #0e0e0e; overflow: hidden; }
.device__screen::before { content: "Loading live page"; position: absolute; inset: 0; display: grid; place-items: center; color: #666; font-size: .9rem; }
.device__screen iframe {
  position: absolute; left: 0; top: 0; z-index: 1; width: calc(var(--iw) * 1px); height: calc(var(--iw) * 1px / var(--ar));
  max-width: none; border: 0; background: #fff; transform-origin: 0 0; transform: scale(var(--s, .5)); pointer-events: none; opacity: 0; transition: opacity .7s;
}
.slide.is-loaded iframe { opacity: 1; }
/* Previews are inert until clicked, so the page never gets trapped by a scroll inside an embedded page. */
.device__activate { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: center; padding: 0 0 1.1rem; cursor: pointer; background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent 40%); transition: background .25s; }
.device__activate span { padding: .55rem 1.1rem; border-radius: 99px; background: rgba(0, 0, 0, .78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, .35); font-size: .88rem; font-weight: 600; color: var(--white); transition: background .25s, color .25s; }
.device__activate:hover span { background: var(--white); color: var(--black); }
.device__activate:focus-visible { outline-offset: -4px; }
.device__done { position: absolute; z-index: 3; bottom: 1rem; left: 50%; transform: translateX(-50%); display: none; padding: .5rem 1rem; border-radius: 99px; background: rgba(0, 0, 0, .78); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, .45); font-size: .85rem; font-weight: 600; color: var(--white); }
.device__done:hover { background: var(--white); color: var(--black); }
.device.is-active .device__activate { display: none; }
.device.is-active .device__done { display: block; }
.device.is-active .device__screen iframe { pointer-events: auto; }
.device.is-active { border-color: rgba(255, 255, 255, .55); }
.slide__info { padding-top: 1.4rem; }
.slide__info h3 { font-family: var(--display); font-weight: 850; font-stretch: 68%; text-transform: uppercase; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; }
.slide__info p { margin: .6rem 0 1rem; max-width: 34em; color: var(--mute); }

.rail__ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.arrows { display: flex; gap: .7rem; }
.arrow { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .5); transition: background .25s, color .25s, opacity .25s; }
.arrow .ico { width: 22px; height: 22px; }
.arrow:hover:not(:disabled) { background: var(--white); color: var(--black); }
.arrow:disabled { opacity: .3; cursor: default; }

/* ---------- Proof + clients ---------- */
.proof { padding-block: clamp(5rem, 10vw, 9rem) clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line); overflow: hidden; }
.proof__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.proof__grid .h2 { --h2-size: clamp(2.8rem, 6.2vw, 5.8rem); }
.marquee { margin-top: clamp(3rem, 6vw, 5rem); border-block: 1px solid var(--line); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; width: max-content; padding-block: 1.6rem; animation: marq-left 80s linear infinite; }
.marquee__track + .marquee__track { border-top: 1px solid var(--line); animation-name: marq-right; animation-duration: 95s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track li { display: flex; align-items: center; justify-content: center; padding-right: clamp(3rem, 6vw, 5.5rem); }
/* Logos arrive in every colour. Turning them white keeps the wall on-brand and consistent. */
.lg { width: auto; height: auto; max-width: 170px; max-height: 44px; opacity: .8; transition: opacity .25s; }
.lg:hover { opacity: 1; }
.lg--t { filter: brightness(0) invert(1); }
.lg--o { filter: grayscale(1) invert(1) contrast(1.15); mix-blend-mode: screen; }
@keyframes marq-left { to { transform: translateX(-50%); } }
@keyframes marq-right { from { transform: translateX(-50%); } to { transform: none; } }

/* ---------- Reviews ---------- */
.reviews { padding-block: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--line); overflow: hidden; }
.reviews__head { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.reviews__head .h2 { --h2-size: clamp(3.4rem, 9vw, 9rem); }
.stars { display: flex; gap: .3rem; margin-bottom: 1.1rem; }
.stars .ico { width: 1.7rem; height: 1.7rem; }
.reviews__side .lead { margin-bottom: 1rem; }
.reviews__rail { display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: .5rem var(--edge); scroll-padding-left: var(--edge); align-items: flex-start; overscroll-behavior-x: contain; }
.rev { flex: none; width: min(410px, 84vw); scroll-snap-align: start; display: flex; flex-direction: column; gap: 1.1rem; padding: 1.8rem; background: var(--s1); border: 1px solid var(--line); border-radius: 22px; }
.rev__stars { display: flex; gap: .15rem; }
.rev__stars .ico { width: 1.05rem; height: 1.05rem; }
.rev__text { color: rgba(255, 255, 255, .88); white-space: pre-line; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 9; line-clamp: 9; overflow: hidden; }
.rev.is-open .rev__text { -webkit-line-clamp: unset; line-clamp: unset; display: block; }
.rev__more { align-self: flex-start; font-size: .92rem; font-weight: 600; text-decoration: underline; text-underline-offset: .25em; }
.rev__name { margin-top: auto; padding-top: .4rem; font-weight: 600; }

/* ---------- About ---------- */
.about { padding-block: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about__photos { position: sticky; top: 6.5rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: .9rem; }
.ph { position: relative; overflow: hidden; border-radius: 14px; background: #111; }
.ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.ph--tall { grid-row: 1 / span 2; }
.ph--tall img { position: absolute; inset: 0; }
.ph--a, .ph--b { aspect-ratio: 1; }
.ph--b img { object-position: 50% 30%; }
.ph figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .7rem; font-size: .82rem; background: linear-gradient(transparent, rgba(0, 0, 0, .8)); }
.about__copy .h2 { --h2-size: clamp(2.8rem, 5.6vw, 5.4rem); margin-bottom: 1.8rem; }
.about__copy p { max-width: 36em; margin-bottom: 1.1rem; color: rgba(255, 255, 255, .78); }
.about__copy p.lead { color: rgba(255, 255, 255, .9); }
.quote { margin: 2.4rem 0; }
.quote p { max-width: 12em; margin: 0 0 .9rem; font-family: var(--display); font-weight: 850; font-stretch: 66%; text-transform: uppercase; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: .94; color: var(--white); }
.quote footer { color: var(--mute); font-size: .95rem; }

/* ---------- Why us (the one white section) ---------- */
.why { padding-block: clamp(5rem, 10vw, 9rem); background: var(--white); color: var(--black); }
.why__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.why__head { position: sticky; top: 7rem; }
.why__head .h2 { --h2-size: clamp(2.8rem, 6vw, 5.8rem); margin-bottom: 1.6rem; }
.why .lead { color: #333; }
.why__list { border-top: 2px solid var(--black); }
.why__list li { padding: .16em 0 .12em; border-bottom: 1px solid var(--black); font-family: var(--display); font-weight: 900; font-stretch: 64%; text-transform: uppercase; font-size: clamp(2.4rem, 5.2vw, 4.9rem); line-height: 1; }
.why__list li small { display: block; margin-top: .55rem; padding-bottom: .5rem; max-width: 34em; font-family: var(--body); font-stretch: 100%; font-weight: 400; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.45; text-transform: none; color: #333; }

/* ---------- Contact ---------- */
.contact { position: relative; padding-block: clamp(5rem, 10vw, 9rem); isolation: isolate; overflow: hidden; }
.contact__sky { position: absolute; inset: 0; z-index: -2; }
.contact__sky img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.contact__sky::after { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--black) 0%, rgba(0, 0, 0, .3) 35%, rgba(0, 0, 0, .78) 100%); }
.contact__grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact__copy .lead { margin: 1.8rem 0 2.2rem; color: rgba(255, 255, 255, .85); }
.contact__list a { display: flex; align-items: center; gap: 1.1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); text-decoration: none; font-size: 1.45rem; font-weight: 600; transition: padding .3s var(--ease); }
.contact__list li:last-child a { border-bottom: 1px solid var(--line); }
.contact__list a:hover { padding-left: .6rem; }
.contact__list .ico { width: 1.6rem; height: 1.6rem; }
.contact__list small { display: block; font-size: .85rem; font-weight: 400; color: var(--mute); line-height: 1.2; }
.contact__addr { margin-top: 1.4rem; color: var(--mute); }

.form { display: grid; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.4rem); background: rgba(0, 0, 0, .74); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 24px; }
.form__title { font-family: var(--display); font-weight: 850; font-stretch: 70%; text-transform: uppercase; font-size: 2rem; line-height: 1; }
.form label { display: grid; gap: .4rem; font-size: .9rem; color: var(--mute); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form input, .form textarea { width: 100%; padding: .85rem 1rem; border: 1px solid rgba(255, 255, 255, .3); border-radius: 12px; background: transparent; color: var(--white); font: inherit; font-size: 1rem; transition: border-color .2s; }
.form textarea { resize: vertical; min-height: 7rem; }
.form input:hover, .form textarea:hover { border-color: rgba(255, 255, 255, .55); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--white); outline-offset: 2px; border-color: var(--white); }
.form__error { color: var(--white); font-weight: 600; padding: .8rem 1rem; border-left: 3px solid var(--white); background: rgba(255, 255, 255, .08); }
.form__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__done { display: none; gap: 1rem; outline: none; }
.form__done .lead { max-width: none; color: rgba(255, 255, 255, .85); }
.form__done a { font-weight: 600; text-underline-offset: .25em; }
.form.is-sent > *:not(.form__done) { display: none; }
.form.is-sent .form__done { display: grid; }
.form .btn:disabled { opacity: .6; cursor: progress; }

/* ---------- Footer + FAB ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 2.6rem; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; }
.footer img { height: 26px; width: auto; }
.footer p { color: var(--mute); font-size: .95rem; }
.fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 55; display: flex; align-items: center; gap: .55rem;
  padding: .85rem 1.25rem; border-radius: 99px; background: var(--white); color: var(--black); font-weight: 600; text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .6); transform: translateY(160%); opacity: 0; transition: transform .5s var(--ease), opacity .4s;
}
.fab.is-show { transform: none; opacity: 1; }
.fab:hover { background: var(--paper); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav__links { gap: 1rem; font-size: .9rem; }
}

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.2rem;
    padding: 6rem var(--gutter) 3rem; background: var(--black);
    font-family: var(--display); font-weight: 850; font-stretch: 68%; text-transform: uppercase; font-size: clamp(2.6rem, 11vw, 4rem);
    opacity: 0; visibility: hidden; transform: translateY(-2%); transition: opacity .35s, transform .5s var(--ease), visibility 0s .35s;
  }
  .nav__links a:not(.btn) { color: var(--white); line-height: 1; }
  .nav__links .btn { font-family: var(--body); font-stretch: 100%; text-transform: none; font-size: 1.05rem; margin-top: 1rem; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav.is-open::before { opacity: 0; }
  .nav__logo, .nav__toggle { position: relative; z-index: 2; }

  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__award { width: 120px; order: -1; }
  .award__grid { grid-template-columns: 1fr; }
  .award__mark { max-width: 240px; }
  .creds { grid-template-columns: 1fr; }
  .creds li, .creds li + li { padding: 1.4rem 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .services__grid, .pages__head, .proof__grid, .reviews__head, .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .services__head, .why__head, .about__photos { position: static; }
  .pages__head, .proof__grid, .reviews__head { align-items: start; }

  /* Stage: phone on top, copy underneath */
  .stage { height: 500vh; }
  .stage__pin { align-items: flex-start; padding-top: 4.4rem; }
  .stage__grid { grid-template-columns: 1fr; gap: 1rem; }
  .stage__device { order: -1; }
  .phone { --ph: min(46svh, 440px); }
  .stage__title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .stage__steps { min-height: 15rem; }
  .step h3 { font-size: clamp(2.1rem, 9vw, 3.2rem); max-width: 12em; }
  .step p { margin-top: .9rem; font-size: 1rem; }
  .stage__dots { margin-top: .4rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero__content { padding-top: 7rem; }
  .form__row { grid-template-columns: 1fr; }
  .form__actions .btn { flex: 1 1 100%; }
  .fab span { display: none; }
  .fab { padding: .95rem; }
  .arrow { width: 46px; height: 46px; }
  .rail__ctrl { gap: 1rem; }
  .why__list li { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .display { font-size: clamp(4.4rem, 22vw, 8rem); }
}

@media (max-height: 640px) and (min-width: 981px) {
  .stage__steps { min-height: 21rem; }
  .step h3 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .sky--a img, .sky--b img { animation: none; }
  .hero__title .line > span { transform: none; }
  .marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .marquee__track { width: auto; flex-wrap: wrap; justify-content: center; row-gap: 1.4rem; animation: none !important; }
  .js .award__title .w { opacity: 1; }
  .rm__scroll { animation: none !important; }
}

/* ---------- Unbounce partner badge ---------- */
.pages__badge { width: min(240px, 62%); height: auto; margin-bottom: 1.5rem; padding: 10px 14px; border-radius: 12px; background: var(--white); }

/* ---------- Anniversary film ---------- */
.film { padding-block: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--line); }
.film__head { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.film__head .h2 { --h2-size: clamp(2.8rem, 6.6vw, 6.2rem); }
.film__frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 22px; background: #0d0d0d; border: 1px solid var(--line); }
.film__video { display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }
/* The poster is black and white to match the site. The film itself plays in full colour. */
.film__play { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; background: var(--black); transition: opacity .5s, visibility 0s .5s; }
.film__play img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(.62); transition: transform 1.4s var(--ease); }
.film__play:hover img { transform: scale(1.035); }
.film__btn { position: relative; display: grid; place-items: center; width: clamp(76px, 10vw, 120px); aspect-ratio: 1; border-radius: 50%; background: var(--white); color: var(--black); box-shadow: 0 0 0 0 rgba(255, 255, 255, .5); transition: transform .35s var(--ease); }
.film__btn .ico { width: 36%; height: 36%; margin-left: 6%; }
.film__play:hover .film__btn { transform: scale(1.08); }
.film__play:focus-visible { outline-offset: -6px; }
.film__time { position: absolute; left: clamp(1rem, 2.4vw, 2rem); bottom: clamp(1rem, 2.4vw, 1.8rem); font-weight: 600; font-size: 1rem; }
.film__frame.is-playing .film__play { opacity: 0; visibility: hidden; pointer-events: none; }
@media (max-width: 980px) { .film__head { grid-template-columns: 1fr; align-items: start; } }
