/* =====================================================================
   LetsGeko.com: core styles (tokens, base, layout, shared components, home)
   Inner-page components live in pages.css
   ===================================================================== */

:root {
  --ink: #0f2219;
  --forest: #17442f;
  --geko: #2f7a4f;
  --leaf: #b9d46f;
  --leaf-soft: #dde8b5;
  --cream: #f5eee2;
  --sand: #e8dac3;
  --clay: #de6639;
  --clay-deep: #b94e27;
  --paper: #fffaf2;

  --font-display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad: clamp(1.1rem, 4vw, 3.5rem);
  --max: 1480px;
  --radius: clamp(18px, 2.2vw, 32px);
  --hdr-h: 76px;
  --ease: cubic-bezier(.65, .05, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --line: color-mix(in srgb, currentColor 16%, transparent);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Keep the scrollbar's space even while scrolling is locked (menu, video close-up), so the page never shifts sideways */
html { -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::after { /* film grain */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.011em;
  margin: 0;
  font-variation-settings: "wdth" 90;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
[hidden] { display: none !important; }
::selection { background: var(--leaf); color: var(--ink); }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip { position: fixed; left: 1rem; top: -100px; z-index: 1000; background: var(--ink); color: var(--cream); padding: .7rem 1rem; border-radius: 999px; }
.skip:focus { top: 1rem; }

/* Colour blocks. With JS animation on, sections are transparent and the body colour glides between them. */
[data-bg] { background: var(--bg); color: var(--fg); }
html.anim [data-bg] { background: transparent; color: inherit; }
html.anim body { transition: background-color .8s cubic-bezier(.33, 1, .68, 1), color .8s cubic-bezier(.33, 1, .68, 1); }
html.anim body.no-tone-transition { transition: none; }
html.anim body[data-tone="cream"]  { background-color: var(--cream);  color: var(--ink); }
html.anim body[data-tone="sand"]   { background-color: var(--sand);   color: var(--ink); }
html.anim body[data-tone="forest"] { background-color: var(--forest); color: var(--cream); }
html.anim body[data-tone="ink"]    { background-color: var(--ink);    color: var(--cream); }
html.anim body[data-tone="leaf"]   { background-color: var(--leaf);   color: var(--ink); }
html.anim body[data-tone="clay"]   { background-color: var(--clay);   color: var(--paper); }
[data-bg="cream"]  { --bg: var(--cream);  --fg: var(--ink); }
[data-bg="sand"]   { --bg: var(--sand);   --fg: var(--ink); }
[data-bg="forest"] { --bg: var(--forest); --fg: var(--cream); }
[data-bg="ink"]    { --bg: var(--ink);    --fg: var(--cream); }
[data-bg="leaf"]   { --bg: var(--leaf);   --fg: var(--ink); }
[data-bg="clay"]   { --bg: var(--clay);   --fg: var(--paper); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.sec { position: relative; padding-block: clamp(5rem, 12vw, 10rem); }
.h2 { font-size: clamp(2.4rem, 6vw, 5.8rem); font-weight: 750; line-height: .92; letter-spacing: -.015em; }
.sec-head { display: grid; gap: 1.5rem 3rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.sec-head .eyebrow { margin-bottom: 1.3rem; }
.sec-head__lede { max-width: 42ch; font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem); opacity: .85; }
@media (min-width: 900px) {
  .sec-head { grid-template-columns: 1.3fr 1fr; align-items: end; }
  .sec-head__lede { justify-self: end; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: .6em; height: .6em; border-radius: 50%; background: var(--clay); flex: none; }
body[data-tone="clay"] .eyebrow::before, [data-bg="clay"] .eyebrow::before { background: var(--ink); }

/* Split-text words */
/* Generous mask padding (cancelled by negative margins) so tall ascenders and overhangs never get clipped */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: .3em .1em; margin: -.3em -.1em; }
.w__i { display: inline-block; will-change: transform; }
[data-scrub-words] .w { overflow: visible; }
.line { display: block; }

/* ---------- Buttons & links ---------- */
.btn {
  --b-bg: var(--ink); --b-fg: var(--cream); --b-hover: var(--leaf); --b-hover-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65em;
  padding: 1.05em 1.55em;
  border-radius: 999px;
  background: var(--b-bg);
  color: var(--b-fg);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: var(--b-hover);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  transform: translateY(102%);
  transition: transform .6s var(--ease), border-radius .6s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); border-radius: 0; }
.btn:hover, .btn:focus-visible { color: var(--b-hover-fg); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; transition: transform .5s var(--ease); }
.btn:hover svg { transform: rotate(-45deg); }
.btn--sm { padding: .8em 1.15em; font-size: .92rem; }
.btn--lg { padding: 1.25em 1.9em; font-size: clamp(1rem, .95rem + .3vw, 1.2rem); }
.btn--clay  { --b-bg: var(--clay);  --b-fg: var(--paper); --b-hover: var(--ink);   --b-hover-fg: var(--cream); }
.btn--ink   { --b-bg: var(--ink);   --b-fg: var(--cream); --b-hover: var(--paper); --b-hover-fg: var(--ink); }
.btn--leaf  { --b-bg: var(--leaf);  --b-fg: var(--ink);   --b-hover: var(--paper); --b-hover-fg: var(--ink); }
.btn--cream { --b-bg: var(--cream); --b-fg: var(--ink);   --b-hover: var(--clay);  --b-hover-fg: var(--paper); }
.btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--ghost::before { background: currentColor; opacity: .14; }
.btn--ghost:hover, .btn--ghost:focus-visible { color: inherit; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-weight: 600;
  padding-bottom: .25em;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  transition: background-size .5s var(--ease);
}
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform .5s var(--ease); }
.link-arrow:hover { background-size: 0 1.5px; background-position: 100% 100%; }
.link-arrow:hover svg { transform: translateX(5px); }
.u-link { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .2em; }
.u-link:hover { color: var(--clay); }

.ico { fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.ticks { display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.35; }
.ticks svg { width: 1.2em; height: 1.2em; flex: none; margin-top: .05em; padding: .15em; border-radius: 50%; background: color-mix(in srgb, currentColor 14%, transparent); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tags span { padding: .45em .9em; border-radius: 999px; border: 1.5px solid var(--line); font-size: .9rem; font-weight: 500; }

.pill { display: inline-block; padding: .02em .38em .08em; border-radius: 999px; line-height: 1; }
.pill--leaf { background: var(--leaf); color: var(--ink); }
.pill--clay { background: var(--clay); color: var(--paper); }
.pill--cream { background: var(--cream); color: var(--ink); }

/* ---------- Page transition / loader ---------- */
.pt { position: fixed; inset: 0; z-index: 120; pointer-events: none; }
html:not(.js) .pt { display: none; }
html.js .pt:not(.is-booted) { animation: pt-failsafe .01s 6s forwards; }
@keyframes pt-failsafe { to { visibility: hidden; } }
.pt__panel {
  position: absolute; inset: 0;
  background: var(--forest);
  color: var(--leaf);
  display: grid;
  place-items: center;
  will-change: transform;
}
.pt__panel::before, .pt__panel::after {
  content: ""; position: absolute; left: -10%; right: -10%; height: 16vh; background: inherit;
}
.pt__panel::before { bottom: 100%; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.pt__panel::after { top: 100%; border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.pt.is-leaving .pt__panel { transform: translateY(calc(-100% - 17vh)); transition: transform 1s var(--ease); }
.pt.is-gone { visibility: hidden; }
.pt.is-prep .pt__panel { transform: translateY(calc(100% + 17vh)); transition: none; }
.pt.is-entering { pointer-events: auto; }
.pt.is-entering .pt__panel { transform: translateY(0); transition: transform .75s var(--ease); }
.pt__geko { width: clamp(64px, 8vw, 96px); height: auto; aspect-ratio: 100/120; animation: pt-wiggle 1.2s var(--ease) infinite alternate; }
@keyframes pt-wiggle { from { transform: rotate(-8deg); } to { transform: rotate(8deg) translateY(-6px); } }
.pt__count {
  position: absolute; left: var(--pad); bottom: clamp(1rem, 4vh, 2.5rem);
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.017em; line-height: .8;
  font-size: clamp(4rem, 14vw, 12rem); color: var(--cream);
}
.pt__count small { font-size: .35em; margin-left: .05em; color: var(--leaf); }
.pt__words { position: absolute; right: var(--pad); bottom: clamp(1.4rem, 5vh, 3rem); display: grid; text-align: right; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--cream); }
.pt__words span { opacity: .25; transition: opacity .3s; }
.pt__words span.is-on { opacity: 1; color: var(--leaf); }
html.returning .pt__count, html.returning .pt__words, .pt.is-entering .pt__count, .pt.is-entering .pt__words { display: none; }

/* ---------- Header ---------- */
.hdr {
  position: fixed;
  z-index: 60;
  top: clamp(.6rem, 1.2vw, 1rem);
  left: 50%;
  translate: -50% 0;
  width: min(calc(100% - 1.2rem), 1200px);
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .5rem .5rem .5rem 1rem;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(15, 34, 25, .08);
  border-radius: 999px;
  box-shadow: 0 12px 40px -22px rgba(15, 34, 25, .4);
  color: var(--ink);
  transition: transform .7s var(--ease), box-shadow .3s;
}
.hdr.is-hidden { transform: translateY(calc(-100% - 1.5rem)); }
.logo { display: flex; align-items: center; gap: .45rem; color: var(--forest); flex: none; }
.logo__mark { width: 28px; height: 34px; transition: transform .7s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-14deg) scale(1.1); }
.logo__word { display: flex; align-items: baseline; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; line-height: 1.2; letter-spacing: -.013em; color: var(--ink); white-space: nowrap; }
.logo__dot { color: var(--clay); }
.logo__tld { color: var(--geko); }
@media (max-width: 380px) { .logo__word { font-size: 1.12rem; } }
.nav { display: none; margin-left: auto; gap: .15rem; }
.nav a { padding: .6rem .72rem; border-radius: 999px; font-weight: 500; font-size: .95rem; transition: background .3s, color .3s; }
.nav a:hover { background: rgba(15, 34, 25, .06); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--cream); }
.roll { display: inline-block; overflow: hidden; vertical-align: top; line-height: 1.25; }
.roll > span { display: inline-block; position: relative; transition: transform .55s var(--ease); }
.roll > span::after { content: attr(data-text); position: absolute; left: 0; top: 100%; }
a:hover .roll > span { transform: translateY(-100%); }
.hdr__cta { margin-left: auto; display: none; }
.burger { margin-left: auto; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); display: grid; place-content: center; gap: 6px; flex: none; }
.burger span:not(.sr) { display: block; width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .5s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
@media (min-width: 560px) { .hdr__cta { display: inline-flex; } .burger { margin-left: 0; } }
@media (min-width: 1280px) {
  .nav { display: flex; }
  .hdr__cta { margin-left: .4rem; }
  .burger { display: none; }
}

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--forest); color: var(--cream);
  padding: calc(var(--hdr-h) + 3rem) var(--pad) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  clip-path: circle(0% at calc(100% - 2.6rem) 2.6rem);
  visibility: hidden;
  transition: clip-path .9s var(--ease), visibility 0s .9s;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 2.6rem) 2.6rem); visibility: visible; transition: clip-path .9s var(--ease), visibility 0s; }
.menu__nav { display: grid; gap: .2rem; }
.menu__nav a {
  display: flex; align-items: baseline; gap: .8rem;
  font-family: var(--font-display); font-weight: 750; letter-spacing: -.015em; line-height: 1;
  font-size: clamp(2.6rem, 11vw, 5rem);
  opacity: 0; transform: translateY(40px);
  transition: opacity .5s, transform .8s var(--ease), color .3s;
}
.menu__nav a small { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--leaf); }
.menu__nav a:hover, .menu__nav a[aria-current="page"] { color: var(--leaf); }
.menu.is-open .menu__nav a { opacity: 1; transform: none; }
.menu.is-open .menu__nav a:nth-child(1) { transition-delay: .18s; }
.menu.is-open .menu__nav a:nth-child(2) { transition-delay: .23s; }
.menu.is-open .menu__nav a:nth-child(3) { transition-delay: .28s; }
.menu.is-open .menu__nav a:nth-child(4) { transition-delay: .33s; }
.menu.is-open .menu__nav a:nth-child(5) { transition-delay: .38s; }
.menu.is-open .menu__nav a:nth-child(6) { transition-delay: .43s; }
.menu.is-open .menu__nav a:nth-child(7) { transition-delay: .48s; }
.menu.is-open .menu__nav a:nth-child(8) { transition-delay: .53s; }
.menu__foot { display: grid; gap: 1rem; font-weight: 500; }
.menu__social { display: flex; flex-wrap: wrap; gap: 1.2rem; opacity: .8; }
.menu__geko { position: absolute; right: -8vw; bottom: -6vh; width: 60vw; max-width: 380px; height: auto; aspect-ratio: 100/120; color: var(--geko); opacity: .35; transform: rotate(-24deg); pointer-events: none; }

/* ---------- Scroll crawler ---------- */
.crawler { position: fixed; top: 0; right: clamp(.4rem, 1vw, 1rem); z-index: 50; width: 26px; height: 32px; color: var(--clay); pointer-events: none; display: none; filter: drop-shadow(0 0 1.5px var(--paper)); }
@media (min-width: 760px) { .crawler { display: block; } }
.crawler svg { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.crawler.is-down svg { transform: rotate(180deg); }
.crawler .leg-a, .crawler .leg-b { transform-box: view-box; transform-origin: 50% 50%; }
.crawler.is-moving .leg-a { animation: leg-a .22s linear infinite alternate; }
.crawler.is-moving .leg-b { animation: leg-b .22s linear infinite alternate; }
@keyframes leg-a { from { transform: rotate(-7deg); } to { transform: rotate(7deg); } }
@keyframes leg-b { from { transform: rotate(7deg); } to { transform: rotate(-7deg); } }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; left: 0; top: 0; z-index: 200;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border-radius: 50%; background: var(--clay);
  display: none; place-items: center;
  pointer-events: none;
  transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background .3s, opacity .3s;
}
html.has-cursor .cursor { display: grid; }
html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor label { cursor: none; }
html.has-cursor input, html.has-cursor textarea, html.has-cursor select { cursor: auto; }
/* A dialog opened with showModal() sits in the browser top layer, above every z-index, so the
   custom dot is trapped underneath it. Hand the real pointer back while a modal is open. */
html.has-cursor.modal-open { cursor: auto; }
html.has-cursor.modal-open a, html.has-cursor.modal-open button, html.has-cursor.modal-open label { cursor: pointer; }
html.has-cursor.modal-open video { cursor: auto; }
html.has-cursor.modal-open .cursor { opacity: 0; }
.cursor.is-hover { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: color-mix(in srgb, var(--clay) 28%, transparent); backdrop-filter: blur(2px); }
.cursor.is-label { width: 92px; height: 92px; margin: -46px 0 0 -46px; background: var(--ink); }
.cursor.is-hidden { opacity: 0; }
.cursor__label { font-size: .8rem; font-weight: 600; color: var(--cream); opacity: 0; transition: opacity .3s; }
.cursor.is-label .cursor__label { opacity: 1; }

/* ---------- Reveal initial states (only when animations are on) ---------- */
html.anim [data-reveal] { opacity: 0; }
html.anim [data-stagger] > * { opacity: 0; }

/* =====================================================================
   HOME
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--hdr-h) + clamp(2.5rem, 7vh, 5rem));
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
  display: grid;
  align-content: space-between;
  gap: 3rem;
  overflow: hidden;
}
.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.2fr 1fr; } }
.hero__copy .eyebrow { margin-bottom: 1.6rem; }
.hero__title {
  font-size: clamp(3.3rem, 8.6vw, 9.2rem);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.018em;
  color: var(--forest);
}
.hl { position: relative; display: inline-block; color: var(--clay); }
.hl__squiggle { position: absolute; left: -2%; bottom: -.1em; width: 104%; height: .24em; overflow: visible; pointer-events: none; }
.hl__squiggle path { fill: none; stroke: var(--leaf); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
html.anim .hl__squiggle path { stroke-dashoffset: 1; }
.hl__geko { position: absolute; right: -.5em; bottom: .12em; width: .34em; height: .41em; color: var(--forest); transform: rotate(62deg); }
.hero__row { display: grid; gap: 1.6rem; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.hero__lede { max-width: 38ch; font-size: clamp(1.05rem, 1rem + .35vw, 1.3rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.hero__visual { position: relative; }
/* The tilted 3D group sits in the same plane as its phones, so it could catch a click meant for a phone.
   Only the phones take the pointer (the chips and badge are decoration). */
.reels { position: relative; height: clamp(400px, 46vw, 620px); perspective: 1400px; transform-style: preserve-3d; pointer-events: none; }
.reels > .reel { pointer-events: auto; }
.reel {
  --reel-w: clamp(150px, 16vw, 236px);
  position: absolute;
  width: var(--reel-w);
  /* iPhone proportions: 3.4% titanium bezels around an exactly 9:16 screen, so reels show uncropped. */
  aspect-ratio: 100 / 172.49;
  container-type: inline-size;
  border-radius: 15% / 8.7%;
  background: linear-gradient(150deg, #4a4f4c 0%, #1a1d1c 22%, #0b0d0c 55%, #232725 82%, #3d423f 100%);
  box-shadow:
    0 50px 80px -40px rgba(15, 34, 25, .6),
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    inset 0 0 0 2.5px rgba(0, 0, 0, .55);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.reel:focus-visible { outline: 3px solid var(--clay); outline-offset: 6px; }
/* Side buttons: power on the right, volume up and down on the left */
.reel::before, .reel::after { content: ""; position: absolute; width: 1.6%; border-radius: 2px; }
.reel::before { right: -1.3%; top: 27%; height: 13%; background: linear-gradient(90deg, #4b504d, #141615); }
.reel::after { left: -1.3%; top: 20%; height: 17%; background: linear-gradient(to bottom, #3a3e3c 0 40%, transparent 40% 60%, #3a3e3c 60%); }
.reel--1 { left: 0; top: 14%; rotate: -10deg; z-index: 1; }
.reel--2 { left: 30%; top: 2%; rotate: 3deg; z-index: 3; }
.reel--3 { left: 60%; top: 17%; rotate: 11deg; z-index: 2; }
@media (max-width: 999px) {
  .reels { max-width: 560px; margin-inline: auto; }
  .reel { --reel-w: clamp(130px, 34vw, 220px); }
  .reel--2 { left: 32%; }
  .reel--3 { left: auto; right: 0; }
}
.reel__screen {
  position: absolute; inset: 3.4cqw;
  border-radius: 11.6cqw;
  overflow: hidden;
  padding: 12% 9% 9%;
  display: flex; flex-direction: column;
  font-size: clamp(.55rem, .72vw, .78rem);
  line-height: 1.25;
}
/* Real reels inside the phones: fill the screen, cropped to its rounded corners (the mask keeps Safari
   clipping the video even inside the 3D-tilted, rotated phones). */
.reel__screen--video {
  padding: 0;
  background: var(--ink);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.reel__video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; background: var(--ink); pointer-events: none; }
/* The close-up's first picture: the small phone's current frame, until the HD video shows its own */
.reel__frame { position: absolute; inset: 0; display: block; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity .2s linear; }
.reel__frame.is-on { opacity: 1; transition: none; }

/* iPhone details, sized in cqw (percent of the phone's width) so they scale with every phone */
.reel__island {
  position: absolute; z-index: 3; top: 2.9cqw; left: 50%;
  display: flex; align-items: center; justify-content: flex-end; gap: 2cqw;
  width: 30cqw; height: 8.8cqw; padding: 0 2.3cqw;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #000;
  box-shadow: 0 0 0 .35cqw rgba(255, 255, 255, .05);
  transition: width .55s var(--ease);
}
.reel__island::after { content: ""; flex: none; width: 3.4cqw; height: 3.4cqw; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #3c4f75 0 18%, #101726 55%, #05070b 100%); box-shadow: 0 0 0 .45cqw #0d0d0d; }
.reel__island-wave { display: flex; align-items: center; gap: .9cqw; height: 4cqw; margin-right: auto; opacity: 0; transition: opacity .3s; }
.reel__island-wave i { width: .9cqw; height: 100%; border-radius: 99px; background: var(--leaf); transform: scaleY(.35); }
.reel__status {
  position: absolute; z-index: 2; top: 2.9cqw; left: 0; right: 0; height: 8.8cqw;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8cqw 0 10.5cqw;
  color: #fff;
  font: 600 4.6cqw/1 var(--font-body);
  letter-spacing: .01em;
  text-shadow: 0 .3cqw 1cqw rgba(0, 0, 0, .35);
  pointer-events: none;
}
.reel__status-icons { display: flex; align-items: center; gap: 1.4cqw; }
.reel__status-icons svg { width: auto; height: 3.3cqw; fill: currentColor; filter: drop-shadow(0 .2cqw .6cqw rgba(0, 0, 0, .35)); }
.reel__home { position: absolute; z-index: 2; bottom: 2.2cqw; left: 50%; width: 34cqw; height: 1.3cqw; transform: translateX(-50%); border-radius: 99px; background: rgba(255, 255, 255, .88); box-shadow: 0 0 1.2cqw rgba(0, 0, 0, .35); pointer-events: none; }
.reel__hint {
  position: absolute; z-index: 2; left: 50%; bottom: 8cqw;
  display: inline-flex; align-items: center; gap: 1.8cqw;
  padding: 2.4cqw 4cqw;
  border-radius: 99px;
  background: rgba(15, 34, 25, .62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font: 600 max(10px, 5cqw)/1 var(--font-body);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 2cqw);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.reel__hint svg { width: 1.15em; height: 1.15em; }
.reel:hover .reel__hint, .reel:focus-visible .reel__hint { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none) { .reel--2 .reel__hint { opacity: 1; transform: translate(-50%, 0); } }

/* Close-up: the clicked phone opens large in the middle and plays with sound */
.reel-stage { position: fixed; inset: 0; z-index: 110; }
.reel-stage[hidden] { display: none; }
.reel-stage__backdrop {
  position: absolute; inset: 0;
  opacity: 0;
  background: rgba(8, 14, 11, .74);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  cursor: zoom-out;
}
.reel--stage {
  --reel-w: min(86vw, calc(88vh / 1.7249));
  position: fixed; left: 50%; top: 50%; z-index: 1;
  rotate: none;
  cursor: default;
  transform: translate(-50%, -50%);
  will-change: transform;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(255, 255, 255, .2), inset 0 0 0 2.5px rgba(0, 0, 0, .55);
}
@supports (height: 1svh) { .reel--stage { --reel-w: min(86vw, calc(88svh / 1.7249)); } }
.reel-stage.is-playing .reel__island { width: 38cqw; } /* room for the sound wave without covering the status icons */
.reel-stage.is-playing .reel__island-wave { opacity: 1; }
.reel-stage.is-playing:not(.is-muted) .reel__island-wave i { animation: island-wave .9s ease-in-out infinite alternate; }
.reel-stage .reel__island-wave i:nth-child(2) { animation-delay: -.3s; }
.reel-stage .reel__island-wave i:nth-child(3) { animation-delay: -.6s; }
.reel-stage .reel__island-wave i:nth-child(4) { animation-delay: -.15s; }
@keyframes island-wave { from { transform: scaleY(.3); } to { transform: scaleY(1); } }
.reel-stage__controls { position: fixed; z-index: 2; top: clamp(12px, 3vh, 28px); right: clamp(12px, 3vw, 32px); display: flex; gap: 10px; opacity: 0; }
.reel-stage__btn {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  padding: 0; border: 0; border-radius: 50%;
  background: rgba(245, 238, 226, .14);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease);
}
.reel-stage__btn:hover { background: rgba(245, 238, 226, .26); transform: scale(1.06); }
.reel-stage__btn:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }
.reel-stage__btn svg { width: 22px; height: 22px; }
.reel-stage .icon-sound-off, .reel-stage.is-muted .icon-sound-on { display: none; }
.reel-stage.is-muted .icon-sound-off { display: block; }
html.reel-open, html.reel-open body { overflow: hidden; }
.reel__bars { display: flex; gap: 4px; margin-bottom: .8em; }
.reel__bars i { flex: 1; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, .35); overflow: hidden; position: relative; }
.reel__bars i.is-done { background: rgba(255, 255, 255, .95); }
.reel__bars i.is-live::after { content: ""; position: absolute; inset: 0; background: #fff; transform-origin: left; animation: bar 4s linear infinite; }
@keyframes bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.reel__user { display: flex; align-items: center; gap: .5em; font-weight: 600; }
.reel__avatar { width: 1.8em; height: 1.8em; border-radius: 50%; background: var(--cream); box-shadow: 0 0 0 2px var(--leaf); }
.reel__art { flex: 1; display: grid; place-items: center; position: relative; }
.reel__cap { font-weight: 600; font-size: 1.05em; max-width: 80%; }
.reel__side { position: absolute; right: 7%; bottom: 22%; display: grid; gap: 1em; text-align: center; font-weight: 600; font-size: .9em; }
.reel__side span { display: grid; justify-items: center; gap: .2em; }
.reel__side svg { width: 1.9em; height: 1.9em; }
.reel__screen--cafe { background: radial-gradient(120% 80% at 50% 45%, #ea8055 0%, var(--clay) 55%, var(--clay-deep) 100%); color: var(--paper); }
.reel__screen--cafe .cup { width: 62%; fill: none; stroke: var(--paper); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; animation: bob 3s ease-in-out infinite; }
.reel__screen--cafe .steam { position: absolute; top: 12%; width: 40%; fill: none; stroke: var(--paper); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 6 10; animation: steam 1.6s linear infinite; opacity: .8; }
@keyframes steam { to { stroke-dashoffset: -32; } }
@keyframes bob { 50% { transform: translateY(-6%); } }
.reel__screen--clinic { background: var(--leaf); color: var(--ink); padding-top: 14%; gap: .7em; }
.book__top { display: flex; gap: .6em; align-items: center; }
.book__top b { display: block; font-size: 1.05em; }
.book__top small { opacity: .7; }
.book__logo { width: 2.6em; height: 2.6em; border-radius: .8em; background: var(--forest); color: var(--leaf); display: grid; place-items: center; flex: none; }
.book__logo .ico { width: 70%; height: 70%; stroke-width: 5; }
.book__h { font-family: var(--font-display); font-weight: 750; font-size: 2em; letter-spacing: -.013em; line-height: 1; margin-top: .3em; }
.book__days { display: grid; grid-template-columns: repeat(4, 1fr); gap: .35em; }
.book__days span { display: grid; justify-items: center; padding: .5em 0; border-radius: .8em; background: rgba(15, 34, 25, .08); font-size: .85em; }
.book__days b { font-size: 1.3em; }
.book__days .is-on { background: var(--forest); color: var(--cream); }
.book__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35em; }
.book__slots span { padding: .55em 0; text-align: center; border-radius: 99px; border: 1px solid rgba(15, 34, 25, .25); font-weight: 600; font-size: .85em; }
.book__slots .is-taken { opacity: .35; text-decoration: line-through; }
.book__slots .is-on { background: var(--clay); color: var(--paper); border-color: var(--clay); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 5px rgba(222, 102, 57, .25); } }
.book__cta { margin-top: auto; padding: .9em; text-align: center; border-radius: 99px; background: var(--ink); color: var(--leaf); font-weight: 700; }
.reel__screen--estate { background: linear-gradient(170deg, var(--geko), var(--forest) 60%, var(--ink)); color: var(--cream); }
.reel__tag { align-self: flex-start; padding: .35em .8em; border-radius: 99px; background: var(--leaf); color: var(--ink); font-weight: 700; font-size: .85em; }
.reel__screen--estate .house { width: 64%; height: auto; aspect-ratio: 1; color: var(--leaf); stroke-width: 3; animation: bob 3.4s ease-in-out infinite .4s; }
.estate__meta b { display: block; font-family: var(--font-display); font-size: 1.5em; letter-spacing: -.009em; line-height: 1; margin-bottom: .3em; }
.estate__meta small { opacity: .75; }

.chip-float {
  position: absolute; z-index: 5;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .75em 1.05em;
  border-radius: 999px;
  font-size: clamp(.75rem, .9vw, .92rem);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 20px 40px -20px rgba(15, 34, 25, .5);
  animation: float 5s ease-in-out infinite;
}
.chip-float b { font-weight: 700; }
.chip-float svg { width: 1.3em; height: 1.3em; }
.chip-float--a { left: 2%; bottom: 6%; background: var(--ink); color: var(--cream); }
.chip-float--a svg { color: var(--leaf); }
.chip-float--b { right: 0; top: 0; background: var(--paper); color: var(--ink); animation-delay: -2.5s; }
.chip-float__dot { width: .6em; height: .6em; border-radius: 50%; background: var(--geko); box-shadow: 0 0 0 4px rgba(47, 122, 79, .2); }
@keyframes float { 50% { transform: translateY(-12px); } }

.badge { position: absolute; z-index: 6; right: 4%; bottom: -2%; width: clamp(96px, 10vw, 140px); aspect-ratio: 1; border-radius: 50%; background: var(--leaf); color: var(--ink); display: grid; place-items: center; box-shadow: 0 20px 40px -20px rgba(15, 34, 25, .5); }
.badge__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.badge__ring text { font-family: var(--font-body); font-size: 17px; font-weight: 700; letter-spacing: .08em; fill: currentColor; }
.badge__geko { width: 30%; height: auto; aspect-ratio: 100/120; color: var(--forest); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.2rem; border-top: 1.5px solid rgba(15, 34, 25, .12); font-size: .9rem; font-weight: 500; }
.hero__niches { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; }
.hero__niches li { display: flex; align-items: center; gap: .5rem; }
.hero__niches li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--geko); }
.scrollcue { display: none; align-items: center; gap: .7rem; text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 600; }
.scrollcue i { position: relative; width: 1.5px; height: 42px; background: rgba(15, 34, 25, .18); overflow: hidden; }
.scrollcue i::after { content: ""; position: absolute; inset: 0; background: var(--clay); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { from { transform: translateY(-100%); } to { transform: translateY(100%); } }
@media (min-width: 760px) { .scrollcue { display: inline-flex; } }

/* Marquee bands */
.bands { position: relative; padding-block: clamp(3rem, 8vw, 7rem); overflow: hidden; }
.marquee { position: relative; overflow: hidden; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.6rem); padding-right: clamp(1.2rem, 3vw, 2.6rem); white-space: nowrap; font-family: var(--font-display); font-weight: 800; letter-spacing: -.015em; line-height: 1.15; padding-block: .08em; font-size: clamp(2.2rem, 6.5vw, 6rem); }
.marquee__group svg { width: .62em; height: .74em; flex: none; }
.marquee__group b { font-size: .55em; }
html:not(.anim) .marquee__track { animation: marquee 40s linear infinite; }
html:not(.anim) [data-marquee="reverse"] .marquee__track { animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html:not(.anim) .marquee__track { animation: none; } }
.bands .marquee { width: 112%; margin-left: -6%; padding-block: clamp(.9rem, 2vw, 1.6rem); }
.marquee--forest { background: var(--forest); color: var(--cream); transform: rotate(-3deg); z-index: 2; box-shadow: 0 30px 50px -30px rgba(15, 34, 25, .45); }
.marquee--forest svg { color: var(--leaf); }
.marquee--leaf { background: var(--leaf); color: var(--ink); transform: rotate(2.5deg); margin-top: clamp(-4.5rem, -5vw, -2rem); }
.marquee--leaf b { color: var(--clay); }

/* Manifesto */
.manifesto__text { margin-top: 2rem; font-family: var(--font-display); font-weight: 650; font-size: clamp(2rem, 5vw, 5rem); line-height: 1.04; letter-spacing: -.013em; max-width: 22ch; font-variation-settings: "wdth" 88; }
.manifesto__foot { margin-top: clamp(3rem, 6vw, 5rem); display: grid; gap: 1.6rem; align-items: end; padding-top: 2rem; border-top: 1.5px solid var(--line); }
.manifesto__foot p { max-width: 46ch; opacity: .85; }
@media (min-width: 900px) { .manifesto__foot { grid-template-columns: 1fr auto; } }

/* Stacking niche cards */
.stack { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.stack__card {
  --dim: 0;
  position: sticky;
  top: calc(var(--hdr-h) + 1.2rem + var(--i) * 16px);
  min-height: min(76vh, 620px);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3.2rem);
  display: grid;
  gap: 2rem;
  overflow: hidden;
  transform-origin: 50% 0;
  box-shadow: 0 -20px 50px -30px rgba(15, 34, 25, .35);
}
.stack__card::after { content: ""; position: absolute; inset: 0; background: var(--ink); opacity: var(--dim); pointer-events: none; border-radius: inherit; }
@media (min-width: 900px) { .stack__card { grid-template-columns: 1.1fr 1fr; } }
.stack__card--clay { background: var(--clay); color: var(--paper); }
.stack__card--forest { background: var(--forest); color: var(--cream); }
.stack__card--leaf { background: var(--leaf); color: var(--ink); }
.stack__card--ink { background: var(--ink); color: var(--cream); }
.stack__main { display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem; }
.stack__num { font-weight: 600; letter-spacing: .1em; font-size: .85rem; opacity: .8; }
.stack__title { font-size: clamp(2.5rem, 5.6vw, 5.4rem); font-weight: 800; letter-spacing: -.017em; line-height: .9; }
.stack__dl { display: grid; gap: 1.2rem; margin-top: auto; }
.stack__dl div { padding-top: 1rem; border-top: 1.5px solid var(--line); }
.stack__dl dt { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-bottom: .35rem; }
.stack__dl dd { font-size: clamp(1.1rem, 1rem + .5vw, 1.45rem); font-weight: 500; line-height: 1.3; }
.stack__art { position: relative; min-height: 240px; border-radius: calc(var(--radius) - 8px); background: color-mix(in srgb, currentColor 9%, transparent); display: grid; place-items: center; overflow: hidden; }
/* Industry photo fills the panel; the floating tags sit on top */
.stack__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.stack__card:hover .stack__img { transform: scale(1.04); }
.stack__tag { position: absolute; left: var(--x); top: var(--y); padding: .55em 1em; border-radius: 999px; font-size: clamp(.78rem, .8vw, .92rem); font-weight: 600; background: var(--paper); color: var(--ink); box-shadow: 0 14px 30px -16px rgba(15, 34, 25, .5); animation: float 6s ease-in-out infinite; }
.stack__tag:nth-of-type(2) { animation-delay: -2s; }
.stack__tag:nth-of-type(3) { animation-delay: -4s; }

/* Horizontal services */
.hs { position: relative; overflow: hidden; }
.hs__pin { padding-block: clamp(5rem, 10vw, 8rem); }
.hs__track { display: flex; flex-direction: column; gap: 1.2rem; padding-inline: var(--pad); }
.hs__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem; margin-bottom: 1.5rem; }
.hs__lede { max-width: 36ch; opacity: .85; font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem); }
.hs__hint { display: none; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.hs__hint svg { width: 1.2em; height: 1.2em; animation: nudge 1.4s var(--ease) infinite; }
@keyframes nudge { 50% { transform: translateX(6px); } }
.hs__panel {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  overflow: hidden;
}
.hs__panel::after { content: attr(data-n); position: absolute; right: -.08em; bottom: -.22em; font-family: var(--font-display); font-weight: 800; font-size: clamp(10rem, 20vw, 17rem); letter-spacing: -.016em; line-height: 1; opacity: .09; pointer-events: none; }
.hs__panel p { max-width: 34ch; margin-top: 1rem; opacity: .9; }
.hs__panel--clay { background: var(--clay); color: var(--paper); }
.hs__panel--leaf { background: var(--leaf); color: var(--ink); }
.hs__panel--cream { background: var(--cream); color: var(--ink); }
.hs__panel--forest { background: var(--forest); color: var(--cream); }
.hs__top { display: flex; justify-content: space-between; align-items: flex-start; }
.hs__n { font-weight: 600; letter-spacing: .1em; font-size: .85rem; }
.hs__top .ico { width: clamp(70px, 8vw, 110px); height: auto; aspect-ratio: 1; stroke-width: 2.4; }
.hs__title { font-size: clamp(2.4rem, 4.4vw, 4.2rem); font-weight: 800; letter-spacing: -.017em; }
.hs__list { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; position: relative; z-index: 1; }
.hs__list li { padding: .45em .9em; border-radius: 99px; border: 1.5px solid var(--line); font-size: .88rem; font-weight: 500; }
.hs__end { display: grid; align-content: space-between; gap: 2rem; min-height: 300px; padding: clamp(1.5rem, 3vw, 2.6rem); border-radius: var(--radius); border: 2px dashed color-mix(in srgb, var(--cream) 40%, transparent); color: var(--cream); transition: background .5s var(--ease), color .5s var(--ease), border-color .5s; }
.hs__end:hover { background: var(--leaf); color: var(--ink); border-color: var(--leaf); }
.hs__end-kicker { font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.hs__end-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.017em; line-height: .9; }
.hs__end-arrow { width: 72px; height: 72px; border-radius: 50%; background: currentColor; display: grid; place-items: center; }
.hs__end-arrow svg { width: 30px; height: 30px; color: var(--ink); transition: transform .5s var(--ease); }
.hs__end:hover .hs__end-arrow svg { color: var(--leaf); transform: rotate(-45deg); }
@media (min-width: 900px) {
  .hs__pin { height: 100svh; padding-block: 0; display: flex; align-items: center; }
  .hs__track { flex-direction: row; align-items: stretch; gap: clamp(1rem, 1.6vw, 1.6rem); width: max-content; padding-right: 12vw; }
  .hs__intro { width: min(34vw, 460px); flex: none; justify-content: center; margin: 0 3vw 0 0; }
  .hs__hint { display: inline-flex; }
  .hs__panel { flex: none; width: min(40vw, 520px); height: min(70vh, 620px); min-height: 0; }
  .hs__end { flex: none; width: min(30vw, 380px); height: min(70vh, 620px); }
}

/* Proof */
.proof__big { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 2rem); margin-top: 1.5rem; font-family: var(--font-display); font-weight: 800; line-height: .8; letter-spacing: -.012em; font-size: clamp(7rem, 26vw, 24rem); font-variation-settings: "wdth" 94; }
.proof__from { opacity: .3; }
.proof__arrow { width: .5em; height: .5em; color: var(--clay); flex: none; }
.proof__to { color: var(--forest); }
.proof__cap { margin-top: 1.5rem; max-width: 30ch; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.8vw, 2.4rem); line-height: 1.1; letter-spacing: -.009em; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: clamp(3rem, 7vw, 6rem); }
.facts li { display: grid; gap: .7rem; align-content: space-between; min-height: 180px; padding: 1.5rem; border-radius: calc(var(--radius) - 6px); background: rgba(15, 34, 25, .08); transition: background .5s var(--ease), color .5s var(--ease), transform .5s var(--ease); }
.facts li:hover { background: var(--ink); color: var(--leaf); transform: translateY(-6px); }
.facts b { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 5vw, 4.4rem); letter-spacing: -.017em; line-height: .9; }
.facts b small { font-size: .4em; margin-left: .1em; letter-spacing: -.006em; }
.facts span { font-weight: 500; line-height: 1.3; }

/* Process path */
.process__body { position: relative; }
.process__svg, .process__geko { display: none; }
.process__steps { display: grid; gap: 1rem; counter-reset: s; }
.step { position: relative; padding: 1.6rem 1.6rem 1.6rem 4.6rem; border-radius: calc(var(--radius) - 6px); background: var(--paper); box-shadow: 0 20px 40px -30px rgba(15, 34, 25, .35); color: var(--ink); }
.step__n { position: absolute; left: 1.4rem; top: 1.6rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: var(--leaf); font-weight: 700; font-size: .8rem; transition: background .5s, color .5s, transform .6s var(--ease); }
.step h3 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); font-weight: 750; margin-bottom: .6rem; }
.step p { opacity: .8; }
.step.is-active .step__n { background: var(--clay); color: var(--paper); transform: scale(1.15); }
@media (min-width: 900px) {
  .process__body { aspect-ratio: 1000 / 1400; max-height: none; }
  .process__svg { display: block; position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
  .process__svg path { fill: none; stroke-linecap: round; }
  .process__base { stroke: rgba(15, 34, 25, .12); stroke-width: 5; stroke-dasharray: 2 14; }
  .process__line { stroke: var(--clay); stroke-width: 7; }
  .process__geko { display: block; position: absolute; left: 0; top: 0; width: 52px; height: 62px; margin: -31px 0 0 -26px; z-index: 3; color: var(--forest); will-change: transform; }
  .process__geko svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 10px rgba(15, 34, 25, .25)); }
  .process__steps { position: absolute; inset: 0; display: block; }
  .step { position: absolute; top: var(--top); width: 38%; transform: translateY(-50%); transition: transform .8s var(--ease), box-shadow .8s var(--ease); }
  .step--l { left: 2%; }
  .step--r { right: 2%; }
  .step.is-active { box-shadow: 0 30px 60px -30px rgba(15, 34, 25, .5); transform: translateY(calc(-50% - 8px)); }
}

/* Service picker: tick what you need, get a quote for just those (no fixed packages) */
.picker__grid { display: grid; gap: .8rem; }
@media (min-width: 560px) { .picker__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .picker__grid { grid-template-columns: repeat(4, 1fr); } } /* 8 services = two even rows */
.pick { position: relative; display: block; cursor: pointer; }
.pick input { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.pick__card { position: relative; display: grid; gap: .45rem; align-content: start; height: 100%; min-height: 210px; padding: 1.5rem 1.4rem 1.3rem; border-radius: calc(var(--radius) - 6px); border: 2px solid rgba(15, 34, 25, .1); background: var(--paper); color: var(--ink); transition: transform .5s var(--ease), border-color .35s, background .35s, box-shadow .5s var(--ease); }
.pick:hover .pick__card { transform: translateY(-5px); border-color: rgba(15, 34, 25, .35); }
.pick__ico { width: 2.6rem; height: 2.6rem; margin-bottom: .5rem; color: var(--clay); stroke-width: 3.5; }
.pick__name { padding-right: 2.2rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 1.6vw, 1.45rem); letter-spacing: -.006em; line-height: 1.15; }
.pick__desc { font-size: .95rem; opacity: .75; }
.pick__bill { margin-top: auto; padding-top: .9rem; font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .6; }
.pick__tick { position: absolute; top: 1.1rem; right: 1.1rem; display: grid; place-items: center; width: 1.9rem; height: 1.9rem; border-radius: 50%; border: 2px solid rgba(15, 34, 25, .2); color: transparent; transition: background .35s, border-color .35s, color .35s, transform .5s var(--ease); }
.pick__tick svg { width: 1rem; height: 1rem; }
.pick input:checked + .pick__card { border-color: var(--ink); background: var(--leaf); box-shadow: 0 24px 50px -30px rgba(15, 34, 25, .6); }
.pick input:checked + .pick__card .pick__ico { color: var(--forest); }
.pick input:checked + .pick__card .pick__tick { background: var(--ink); border-color: var(--ink); color: var(--leaf); transform: scale(1.08); }
.pick input:focus-visible + .pick__card { outline: 3px solid var(--clay); outline-offset: 3px; }
/* Phones: compact rows (icon left, text right) so eight services don't make a long scroll */
@media (max-width: 559px) {
  .pick__card { grid-template-columns: auto 1fr; column-gap: .9rem; row-gap: .15rem; min-height: 0; padding: 1rem 3.2rem 1rem 1rem; }
  .pick__ico { grid-row: span 3; width: 2.1rem; height: 2.1rem; margin: .1rem 0 0; }
  .pick__name { padding-right: 0; font-size: 1.15rem; }
  .pick__desc { font-size: .9rem; }
  .pick__bill { padding-top: .35rem; }
  .pick__tick { top: 50%; right: 1rem; translate: 0 -50%; }
}
.picker__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.picker__count { font-family: var(--font-display); font-weight: 650; font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
.picks__more { margin-top: 2.5rem; }

/* CTA */
.cta { overflow: hidden; }
.cta__inner { position: relative; z-index: 1; }
.cta__title { margin-top: 1.4rem; font-size: clamp(2.6rem, 7.4vw, 7.6rem); font-weight: 800; line-height: .9; letter-spacing: -.018em; max-width: 14ch; }
.cta--compact .cta__title { max-width: 18ch; font-size: clamp(2.4rem, 5.6vw, 5.6rem); margin-top: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: clamp(2rem, 4vw, 3rem); }
.cta__geko { position: absolute; right: -4vw; bottom: -12%; width: clamp(220px, 34vw, 520px); height: auto; aspect-ratio: 100/120; opacity: .16; transform: rotate(-30deg); pointer-events: none; }
.rotator { position: relative; display: inline-grid; vertical-align: bottom; overflow: hidden; padding: .24em .08em; margin: -.24em -.02em; color: var(--ink); }
.rotator > span { grid-area: 1 / 1; justify-self: start; display: inline-block; white-space: nowrap; padding-block: .06em; }
[data-bg="cream"] .rotator { color: var(--clay); }

/* ---------- Footer ---------- */
.ftr { position: relative; background: var(--ink); color: var(--cream); padding-top: clamp(4rem, 9vw, 8rem); overflow: hidden; z-index: 1; }
.ftr__top { display: grid; gap: 3rem; }
@media (min-width: 960px) { .ftr__top { grid-template-columns: 1.2fr 1fr; align-items: end; } }
.ftr__big { display: inline-flex; align-items: center; gap: .25em; margin-top: 1rem; font-family: var(--font-display); font-weight: 800; letter-spacing: -.018em; line-height: .9; font-size: clamp(3.2rem, 9vw, 8rem); color: var(--leaf); transition: color .4s; }
.ftr__big svg { width: .7em; height: .7em; transition: transform .6s var(--ease); }
.ftr__big:hover { color: var(--clay); }
.ftr__big:hover svg { transform: rotate(-45deg); }
.ftr__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.ftr__h { font-family: var(--font-body); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--leaf); margin-bottom: 1rem; }
.ftr__cols ul { display: grid; gap: .5rem; }
.ftr__cols a { opacity: .8; transition: opacity .3s, color .3s; }
.ftr__cols a:hover { opacity: 1; color: var(--leaf); }
/* "Meet our lost geko": the link to the 404 page, where he walks around the 0. */
.ftr__egg { display: inline-flex; align-items: center; gap: .45em; }
.ftr__egg svg { width: 1em; height: 1.2em; color: var(--geko); transition: transform .5s var(--ease), color .3s; }
.ftr__egg:hover svg { color: var(--leaf); transform: rotate(-20deg) translateX(3px) scale(1.15); }
.ftr__word { margin-top: clamp(3rem, 7vw, 6rem); margin-inline: -.06em; padding: .16em .06em .2em; font-family: var(--font-display); font-weight: 800; letter-spacing: -.016em; line-height: .9; font-size: clamp(2.6rem, 11vw, 10.5rem); color: var(--forest); white-space: nowrap; overflow: hidden; user-select: none; font-variation-settings: "wdth" 85; }
.ftr__word .ch--dot { color: var(--clay); }
.ftr__word .ch { display: inline-block; will-change: transform; }
.ftr__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid rgba(245, 238, 226, .12); font-size: .85rem; opacity: .75; }
.ftr__top-btn { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; }
.ftr__top-btn svg { width: 1.1em; height: 1.1em; transform: rotate(-90deg); transition: transform .5s var(--ease); }
.ftr__top-btn:hover svg { transform: rotate(-90deg) translateX(4px); }

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 48;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--leaf);
  box-shadow: 0 16px 30px -14px rgba(15, 34, 25, .6), 0 0 0 1.5px rgba(255, 250, 242, .18);
  opacity: 0; visibility: hidden; transform: translateY(24px) scale(.8);
  transition: opacity .4s var(--ease), transform .6s var(--ease), visibility 0s .6s, background .35s, color .35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; transition: opacity .4s var(--ease), transform .6s var(--ease), visibility 0s, background .35s, color .35s; }
.to-top:hover, .to-top:focus-visible { background: var(--clay); color: var(--paper); }
.to-top__arrow { width: 22px; height: 22px; transform: rotate(-90deg); transition: transform .5s var(--ease); }
.to-top:hover .to-top__arrow { transform: rotate(-90deg) translateX(4px); }
.to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); pointer-events: none; }
.to-top__ring circle { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: var(--p-off, 1); }
@media (min-width: 760px) { .to-top { right: 3.4rem; bottom: 1.4rem; } } /* clears the scroll geko on the right edge */

/* ---------- Avatars (community) ---------- */
.av { --s: 56px; flex: none; width: var(--s); height: var(--s); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: calc(var(--s) * .36); letter-spacing: -.009em; line-height: 1; box-shadow: 0 0 0 3px var(--paper); }
.av--clay { background: var(--clay); color: var(--paper); }
.av--forest { background: var(--forest); color: var(--leaf); }
.av--leaf { background: var(--leaf); color: var(--forest); }
.av--sand { background: var(--sand); color: var(--clay-deep); }
.av--ink { background: var(--ink); color: var(--cream); }
.av--cream { background: var(--cream); color: var(--forest); }
.facepile { display: flex; align-items: center; }
.facepile .av { transition: transform .5s var(--ease); }
.facepile .av + .av { margin-left: calc(var(--s) * -.16); }
.facepile:hover .av { transform: translateY(-5px); }
.facepile:hover .av:nth-child(2) { transition-delay: .04s; }
.facepile:hover .av:nth-child(3) { transition-delay: .08s; }
.facepile:hover .av:nth-child(4) { transition-delay: .12s; }
.facepile:hover .av:nth-child(5) { transition-delay: .16s; }

/* Home: community teaser */
.crew__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .crew__grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }
.crew__grid .h2 { margin-block: 1.3rem 1.4rem; }
.crew__lede { max-width: 40ch; margin-bottom: 2rem; font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem); opacity: .85; }
.crew__card { display: grid; gap: 1.4rem; padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: var(--radius); background: var(--paper); color: var(--ink); rotate: -1.5deg; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .6); transition: rotate .6s var(--ease); }
.crew__card:hover { rotate: 0deg; }
.crew__reach b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(3.4rem, 6vw, 5.4rem); letter-spacing: -.017em; line-height: 1.05; color: var(--forest); }
.crew__reach span { font-weight: 500; opacity: .7; }
.crew__list li { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-top: 1px solid rgba(15, 34, 25, .1); }
.crew__list .av { --s: 44px; box-shadow: none; }
.crew__who { display: grid; line-height: 1.25; }
.crew__who b { font-weight: 600; }
.crew__who small { opacity: .6; }
.crew__count { margin-left: auto; display: flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.009em; }
.crew__count svg { width: 18px; height: 18px; color: var(--clay); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
