/* Sky Blinds — cinematic. Near-black ground, warm white type, one sun accent.
   The first three sections are transparent over a fixed WebGL room; from
   .solid down the page sits on its own ground. */
:root {
  --bg: #050506;
  --bg2: #0b0b0d;
  --ink: #f2efe9;
  --muted: rgba(242, 239, 233, .62);
  --dim: rgba(242, 239, 233, .38);
  --line: rgba(242, 239, 233, .14);
  --line2: rgba(242, 239, 233, .28);
  --sun: #ffb37a;
  --blue: #4aa8ff;
  --sans: "Inter Tight", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --gut: clamp(16px, 4vw, 56px);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 16px/1.6 var(--sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .fv__h { margin: 0; font-weight: 400; letter-spacing: -.035em; line-height: 1; text-wrap: balance; }
p { margin: 0; }
button { font: inherit; color: inherit; }
.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 400; }
.muted { color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--ink); color: var(--bg); padding: 8px 14px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 1px solid var(--sun); outline-offset: 4px; }
::selection { background: var(--sun); color: #000; }
.wrap { width: min(1320px, 100% - 2 * var(--gut)); margin-inline: auto; }
.label { color: var(--muted); display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }

/* ---------- canvas + fallback ---------- */
.gl { position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100lvh; z-index: 0; pointer-events: none; }
.gl-fallback { position: fixed; inset: 0; z-index: -1;
  background:
    repeating-linear-gradient(-28deg, rgba(255,179,122,0) 0 34px, rgba(255,179,122,.16) 34px 52px),
    radial-gradient(70% 60% at 30% 70%, rgba(255,150,90,.22), transparent 70%), #0a0806; }
.gl-on .gl-fallback { display: none; }
main, .nav, .dock { position: relative; z-index: 2; }

/* ---------- loader ---------- */
.loader { display: none; }
.js .loader { display: flex; position: fixed; inset: 0; z-index: 100; background: var(--bg); flex-direction: column; justify-content: flex-end; padding: var(--gut); transition: opacity .9s ease .1s, visibility 0s 1s; }
.js.is-loaded .loader { opacity: 0; visibility: hidden; }
.loader__in { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 14px; }
.loader__n { color: var(--ink); }
.loader__bar { height: 1px; background: var(--line); }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--ink); transition: width .3s ease; }

/* ---------- cursor (fine pointers only) ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .js .cursor { display: block; position: fixed; left: 0; top: 0; z-index: 150; pointer-events: none; mix-blend-mode: difference; }
  .cursor i { display: block; width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%; background: #fff; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .cursor.is-big i { transform: scale(4.2); }
}

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; padding: 22px var(--gut); pointer-events: none; }
.nav > * { pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 12px; padding: 8px 16px 8px 10px; border-radius: 999px; border: 1px solid var(--line2); background: rgba(5,5,6,.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.brand__mark { width: 26px; height: 26px; }
.pill { display: flex; align-items: center; gap: 14px; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line2); background: rgba(5,5,6,.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font: 500 11.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.pill i { width: 46px; height: 1px; background: var(--line2); }
.pill a { transition: color .2s; } .pill a:hover { color: var(--sun); }
.nav__tel { transition: color .2s; } .nav__tel:hover { color: var(--sun); }
@media (max-width: 720px) { .nav__tel { display: none; } .pill i { width: 22px; } .nav { padding-top: 16px; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 26px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--ink); color: #0a0a0b; font: 500 14.5px/1 var(--sans); letter-spacing: -.01em; transition: background .25s, transform .25s; }
.btn:hover { background: var(--sun); transform: translateY(-1px); }
.btn--block { width: 100%; }
.ghost { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line2); background: transparent; cursor: pointer; transition: border-color .25s, color .25s, background .25s; }
.ghost:hover { border-color: var(--sun); color: var(--sun); }

/* ---------- hero ---------- */
.hero { min-height: 100vh; min-height: 100svh; position: relative; }
.hero__grid { position: absolute; inset: 0; padding: 110px var(--gut) 34px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; gap: 28px 40px; }
/* glass behind the headline: the window glare is as white as the type */
.hero__main { align-self: end; justify-self: start; max-width: 820px; padding: 26px 30px 30px; border-radius: 18px; border: 1px solid var(--line); background: rgba(5,5,6,.45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
@media (max-width: 720px) { .hero__main { padding: 20px 20px 22px; } }
.blink { width: 6px; height: 6px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 10px var(--sun); animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: .2; } }
.h1__big { display: block; font-weight: 300; font-size: clamp(3.4rem, 10.5vw, 9.6rem); line-height: .88; letter-spacing: -.055em; text-shadow: 0 2px 40px rgba(0,0,0,.35); }
.h1__sub { display: block; margin-top: 26px; max-width: 470px; font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.45; letter-spacing: -.01em; color: var(--muted); font-weight: 400; }
.term { align-self: end; justify-self: end; width: 290px; padding: 18px 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,5,6,.42); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.term__q { color: var(--muted); margin-bottom: 12px; }
.term__list { list-style: none; margin: 0 0 18px; padding: 0; }
.term__list a { display: block; padding: 5px 0; font: 400 12.5px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; transition: color .2s, padding .25s; }
.term__list a::before { content: "\2192\00a0\00a0"; color: var(--dim); }
.term__list a:hover, .term__list a.is-on { color: var(--sun); padding-left: 6px; }
.term .ghost { width: 100%; justify-content: space-between; }
.hero__stats { grid-column: 1 / -1; list-style: none; margin: 0; padding: 18px 0 0; display: flex; gap: 36px; border-top: 1px solid var(--line); color: var(--muted); flex-wrap: wrap; }
.hero__stats b { color: var(--ink); font-weight: 500; margin-right: 8px; }
.hero__scroll { position: absolute; right: var(--gut); bottom: 36px; display: flex; align-items: center; gap: 12px; color: var(--muted); }
.hero__scroll i { width: 44px; height: 1px; background: var(--line2); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--ink); animation: line 2s cubic-bezier(.6,0,.3,1) infinite; }
@keyframes line { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-rows: 1fr auto auto; padding-top: 90px; padding-bottom: 96px; gap: 22px; }
  .term { justify-self: stretch; width: auto; }
  .term__list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 12px; }
  .hero__stats { gap: 10px 22px; font-size: 10.5px; }
  .hero__scroll { display: none; }
}

/* ---------- products (canvas shows through) ---------- */
.prod { min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; padding: 120px var(--gut) 90px; }
.prod__txt { max-width: 520px; padding: 26px 28px 28px; border-radius: 16px; background: linear-gradient(180deg, rgba(5,5,6,.5), rgba(5,5,6,.72)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); }
.prod h3 { font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 300; letter-spacing: -.045em; line-height: .95; margin-bottom: 20px; }
.prod__txt > p:not(.label) { color: var(--muted); font-size: 16.5px; }
.spec { margin: 22px 0 24px; display: grid; gap: 0; }
.spec div { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--line); }
.spec dt { color: var(--dim); } .spec dd { margin: 0; }
@media (max-width: 720px) { .prod { padding: 90px var(--gut) 96px; } .prod__txt { padding: 20px; } }

/* ---------- studio ---------- */
.studio { min-height: 100vh; display: flex; justify-content: flex-end; align-items: center; padding: 110px var(--gut) 80px; }
.studio__panel { width: min(440px, 100%); display: grid; gap: 22px; padding: 28px; border-radius: 18px; background: rgba(8,8,10,.66); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--line); }
.studio h2 { font-size: clamp(2.2rem, 3.6vw, 3.2rem); font-weight: 300; letter-spacing: -.045em; line-height: .95; }
.studio .label { margin-bottom: -6px; }
.ctl { border: 0; margin: 0; padding: 0; min-width: 0; }
.ctl legend { display: flex; justify-content: space-between; width: 100%; padding: 0; margin-bottom: 10px; color: var(--muted); }
.ctl__val { color: var(--sun); }
.seg { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line2); border-radius: 999px; padding: 3px; }
.seg button { padding: 10px 2px; border: 0; background: none; border-radius: 999px; cursor: pointer; font: 500 13px/1 var(--sans); color: var(--muted); transition: background .25s, color .25s; }
.seg button[aria-checked="true"] { background: var(--ink); color: #0a0a0b; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatches button { width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; background: var(--c); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); transition: transform .25s, box-shadow .25s; }
.swatches button[aria-checked="true"] { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--sun); transform: scale(1.06); }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 28px; background: transparent; cursor: pointer; }
input[type=range]::-webkit-slider-runnable-track { height: 1px; background: var(--line2); }
input[type=range]::-moz-range-track { height: 1px; background: var(--line2); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -9px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 5px rgba(255,179,122,.18); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border: 0; border-radius: 50%; background: var(--ink); }
.ctl__scale { display: flex; justify-content: space-between; color: var(--dim); font-size: 10.5px; }
.remote { border-top: 1px solid var(--line); padding-top: 18px; }
.remote__h { margin-bottom: 8px; }
.remote__sub { font-size: 14px; margin-bottom: 14px; }
.remote__keys { display: flex; gap: 8px; }
.remote__keys button { flex: 1; height: 46px; border-radius: 999px; border: 1px solid var(--line2); background: none; cursor: pointer; font-size: 13px; transition: border-color .2s, color .2s, background .2s; }
.remote__keys button:hover, .remote__keys button.is-on { border-color: var(--sun); color: var(--sun); background: rgba(255,179,122,.08); }
.remote__keys button:disabled { opacity: .3; cursor: not-allowed; }
.remote__note { color: var(--sun); min-height: 1.3em; margin-top: 10px; font-size: 10.5px; }
@media (max-width: 900px) { .studio { align-items: flex-end; padding-top: 55vh; } }

/* ---------- solid sections ---------- */
.solid { position: relative; z-index: 2; background: var(--bg); box-shadow: 0 -120px 120px -20px var(--bg); }
.sec { padding: clamp(80px, 11vw, 150px) 0; border-top: 1px solid var(--line); }
.sec h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); font-weight: 300; letter-spacing: -.045em; line-height: .96; }
.h2-wide { max-width: 900px; margin-bottom: 60px; }
.rv { opacity: 1; }
.rv-ready .rv { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.rv-ready .rv.is-in { opacity: 1; transform: none; }

.field__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.mosaic { margin: 0; position: relative; aspect-ratio: 1200 / 644; overflow: hidden; border-radius: 6px; background: #111; }
.mosaic img, .mosaic canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mosaic canvas { z-index: 1; image-rendering: pixelated; }
.mosaic.is-done canvas { display: none; }
.mosaic figcaption { position: absolute; z-index: 2; left: 14px; bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(5,5,6,.6); backdrop-filter: blur(8px); }
.steps { list-style: none; margin: 40px 0 0; padding: 0; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line); }
.steps li span { color: var(--sun); padding-top: 4px; }
.steps h3 { font-size: 1.3rem; letter-spacing: -.02em; margin-bottom: 6px; font-weight: 500; }
.steps p { color: var(--muted); font-size: 15.5px; }

.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why > div { padding: 26px 24px 10px 0; border-top: 1px solid var(--line2); margin-right: 24px; }
.why span { color: var(--sun); }
.why h3 { font-size: 1.35rem; letter-spacing: -.02em; margin: 26px 0 12px; font-weight: 500; line-height: 1.1; }
.why p { color: var(--muted); font-size: 15.5px; }

/* versus: one row per decision, the online way dimmed, ours lit */
.vs__head { max-width: 900px; margin-bottom: 60px; }
.vs__head .muted { margin-top: 26px; max-width: 540px; }
.vs__cols, .vs__row { display: grid; grid-template-columns: minmax(150px, .7fr) 1fr 1fr; gap: 0 clamp(24px, 4vw, 60px); }
.vs__cols { padding-bottom: 16px; color: var(--dim); }
.vs__cols span:last-child { color: var(--sun); }
.vs__row { padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.vs__row:last-child { border-bottom: 1px solid var(--line); }
.vs__row h3 { color: var(--muted); padding-top: 5px; line-height: 1.4; }
.vs__them { color: var(--dim); font-size: 15.5px; }
.vs__us { position: relative; padding-left: 20px; font-size: 17px; letter-spacing: -.01em; line-height: 1.5; }
.vs__us::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--sun); }
.vs__tag { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.vs__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 50px; }
.vs__note { color: var(--dim); font-size: 10.5px; }
@media (max-width: 720px) {
  .vs__cols { display: none; }
  .vs__row { grid-template-columns: 1fr; gap: 14px; padding: 24px 0 26px; }
  .vs__row h3 { color: var(--ink); padding: 0; }
  .vs__tag { position: static; width: auto; height: auto; overflow: visible; clip: auto; display: block; margin-bottom: 6px; font-size: 10px; color: var(--dim); }
  .vs__us .vs__tag { color: var(--sun); }
  .vs__head { margin-bottom: 40px; }
  .vs__cta .btn { width: 100%; }
}
@media (max-width: 480px) { .pill__vs { display: none; } }

.areas { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.areas .muted { margin-top: 26px; max-width: 440px; }
.areas__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.areas__cols h3 { color: var(--sun); margin-bottom: 16px; font-size: 11.5px; }
.areas__cols ul { list-style: none; margin: 0; padding: 0; }
.areas__cols li { padding: 9px 0; border-top: 1px solid var(--line); font-size: 17px; letter-spacing: -.01em; }

.rev__grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.rev__num { font-size: clamp(7rem, 20vw, 17rem); font-weight: 300; letter-spacing: -.07em; line-height: .8;
  background: linear-gradient(180deg, var(--ink) 30%, rgba(255,179,122,.55)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stars { color: var(--sun); letter-spacing: 4px; }
.rev h2 { max-width: 640px; margin-bottom: 30px; }

.quote__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.quote .muted { margin-top: 26px; max-width: 460px; }
.contact { margin: 36px 0 0; }
.contact div { display: grid; grid-template-columns: 80px 1fr; padding: 14px 0; border-top: 1px solid var(--line); }
.contact dt { color: var(--dim); } .contact dd { margin: 0; word-break: break-word; }
.contact a:hover { color: var(--sun); }
.form { border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 34px); background: var(--bg2); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; margin-bottom: 22px; }
.f { display: grid; gap: 8px; }
.f > span { color: var(--muted); font-size: 10.5px; }
.f--full { grid-column: 1 / -1; }
.f input, .f select, .f textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line2); border-radius: 0; background: transparent; color: var(--ink); padding: 10px 0 12px; font: 400 16px/1.3 var(--sans); transition: border-color .25s; }
.f select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.f select option { background: #111; }
.f textarea { resize: vertical; }
.f input:focus, .f select:focus, .f textarea:focus { outline: 0; border-color: var(--sun); }
.form__design { color: var(--sun); margin-bottom: 16px; font-size: 10.5px; }
.form-status { margin-top: 14px; font-size: 14.5px; min-height: 1.2em; }
.form-status.is-error { color: #ffb3b3; } .form-status.is-error a { color: #fff; text-decoration: underline; }
.form-status.is-ok { color: #a8f0c6; }

.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-size: 1.15rem; letter-spacing: -.015em; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 300 22px/1 var(--sans); color: var(--sun); transition: transform .3s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 22px; max-width: 640px; }

.foot { border-top: 1px solid var(--line); overflow: hidden; position: relative; }
.foot__row { display: flex; flex-wrap: wrap; gap: 14px 34px; color: var(--muted); padding: 26px 0 34px; border-top: 1px solid var(--line); }
.foot__row a:hover { color: var(--sun); }

/* footer: two video scenes crossfading in one frame */
.fx { position: relative; min-height: min(92vh, 820px); overflow: hidden; }
.fv { position: absolute; inset: 0; display: flex; opacity: 0; visibility: hidden; transition: opacity 1.4s ease, visibility 0s 1.4s; }
.fv.is-on { opacity: 1; visibility: visible; z-index: 1; transition: opacity 1.4s ease, visibility 0s; }
.fv__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 9s linear; }
.fv.is-on .fv__vid { transform: scale(1); }
.fv__in { position: relative; }
.fv__in > * { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.fv.is-on .fv__in > * { opacity: 1; transform: none; }
.fv.is-on .fv__in > :nth-child(2) { transition-delay: .15s; }
.fv.is-on .fv__in > :nth-child(3) { transition-delay: .3s; }
.fv__h { font-size: clamp(2.3rem, 5.4vw, 5rem); font-weight: 300; letter-spacing: -.05em; line-height: .95; }
.fv__h em { font-style: normal; color: var(--sun); }
.fv__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* walk: warm shadows, text bottom-left */
.fv--walk { align-items: flex-end; }
.fv--walk .fv__shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, var(--bg) 0%, rgba(5,5,6,.2) 30%, rgba(5,5,6,.35) 60%, rgba(5,5,6,.92) 100%),
  linear-gradient(90deg, rgba(5,5,6,.75), transparent 65%),
  radial-gradient(60% 50% at 80% 30%, rgba(255,160,90,.18), transparent 70%); }
.fv--walk .fv__vid { filter: sepia(.35) saturate(1.3) hue-rotate(-8deg) brightness(.82); }
.fv--walk .fv__in { padding: 140px 0 80px; }

/* window: text left over a warm shade */
.fv--window { align-items: center; }
.fv--window .fv__shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 70%, rgba(5,5,6,.9) 100%),
  linear-gradient(90deg, rgba(5,5,6,.88) 0%, rgba(5,5,6,.55) 42%, transparent 75%); }
.fv--window .fv__vid { filter: sepia(.25) saturate(1.1) brightness(.9); }
.fv--window .fv__in { padding: 120px 0; }

/* progress: one thin bar per scene, the live one fills over its hold time */
.fx__bars { position: absolute; z-index: 2; right: var(--gut); bottom: 34px; display: flex; gap: 8px; }
.fx__bars i { width: 46px; height: 2px; background: var(--line2); position: relative; overflow: hidden; }
.fx__bars i::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; }
.fx__bars i.is-on::after { animation: fxbar var(--hold, 9s) linear forwards; }
.fx__bars i.is-done::after { transform: scaleX(1); }
@keyframes fxbar { to { transform: scaleX(1); } }

@media (max-width: 720px) {
  .fx { min-height: 88vh; }
  .fv--window { align-items: flex-end; }
  .fv--window .fv__shade { background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, rgba(5,5,6,.6) 55%, rgba(5,5,6,.95) 100%); }
  .fv--walk .fv__in, .fv--window .fv__in { padding: 45vh 0 70px; }
  .fx__bars { left: var(--gut); right: auto; bottom: 26px; }
}

@media (max-width: 960px) {
  .field__grid, .areas, .quote__grid, .faq__grid, .rev__grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr 1fr; row-gap: 30px; }
}
@media (max-width: 560px) {
  .why { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .areas__cols { grid-template-columns: 1fr; }
}

/* ---------- phone call dock ---------- */
.dock { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .dock { display: flex; position: fixed; z-index: 70; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); height: 50px; border-radius: 999px;
    align-items: center; justify-content: center; background: var(--ink); color: #0a0a0b; font-size: 12px; font-weight: 500; }
}

/* ---------- thank-you ---------- */
.ty { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 100px var(--gut); }
.ty h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 300; letter-spacing: -.055em; margin: 30px 0 22px; }
.ty p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.ty .brand { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
