/* COS landing page v2 */
@font-face { font-family: "Inter"; src: url("../assets/fonts/inter-latin-wght-normal.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }


:root {
  --terra: #9b4e45;
  --terra-d: #6e3029;
  --terra-dd: #4a1f1a;
  --terra-l: #c07166;
  --cream: #eedfd1;
  --blush: #f7ece6;
  --sand: #f4f5f7;
  --ink: #241715;
  --text: #4b3b37;
  --muted: #9a8883;
  --line: rgba(155, 78, 69, .14);
  --line-n: rgba(36, 23, 21, .09);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --gut: clamp(16px, 4vw, 56px);
  --sec: clamp(72px, 8.5vw, 120px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-weight: 400; color: var(--text); background: #fff; line-height: 1.6; font-size: 15px; font-feature-settings: "cv11", "ss01"; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 600; letter-spacing: -.03em; text-wrap: balance; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--terra); color: #fff; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--gut); }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.1; }
.sec { padding: var(--sec) 0; position: relative; }
.head { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 48px; row-gap: 16px; align-items: end; justify-items: start; text-align: left; margin-bottom: clamp(40px, 5vw, 64px); }
.head .kicker { grid-column: 1 / -1; }
.head h2 { grid-column: 1; max-width: 760px; }
.head > .btn, .head > p { grid-column: 2; grid-row: 2; justify-self: end; margin-bottom: 6px; }
.head > p { max-width: 360px; text-align: left; }
.kicker { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); padding: 4px 10px; border-radius: 4px; background: var(--blush); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; border-radius: 6px; font-size: 14px; font-weight: 500; border: 0; cursor: pointer; white-space: nowrap; transition: background .25s, color .25s, box-shadow .3s; }
.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; }
.btn-terra { background: var(--terra); color: #fff; box-shadow: 0 8px 20px -10px rgba(155, 78, 69, .8); }
.btn-terra:hover { background: var(--terra-d); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--cream); }

/* HERO */
.hero {
  position: relative; overflow: hidden; color: #fff; padding-bottom: 36px;
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(238, 223, 209, .22), transparent 70%),
    radial-gradient(60% 80% at 100% 100%, var(--terra-dd), transparent 70%),
    linear-gradient(160deg, var(--terra) 0%, var(--terra-d) 100%);
}
.hdr { position: relative; z-index: 20; }
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: inline-flex; align-items: center; background: #fff; border-radius: 10px; padding: 8px 14px; box-shadow: 0 8px 24px -12px rgba(36, 23, 21, .45); }
.logo img { height: 28px; width: auto; }
.nav { display: flex; gap: 36px; font-size: 13px; }
.nav a { opacity: .85; transition: opacity .2s; }
.nav a:hover { opacity: 1; }
.hdr-r { display: flex; gap: 10px; align-items: center; }
.burger { display: none; width: 40px; height: 40px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, .4); background: none; position: relative; cursor: pointer; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: #fff; transition: transform .3s, top .3s; }
.burger span:first-child { top: 15px; } .burger span:last-child { top: 23px; }
.hdr.open .burger span:first-child { top: 19px; transform: rotate(45deg); }
.hdr.open .burger span:last-child { top: 19px; transform: rotate(-45deg); }
.mnav { display: none; }

.hero-in { position: relative; min-height: clamp(560px, 78vh, 760px); }
.hero-mark { position: absolute; left: var(--gut); top: 40px; width: clamp(90px, 11vw, 150px); fill: rgba(238, 223, 209, .18); transform: rotate(-12deg); }
.hero-photo { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: min(560px, 46vw); aspect-ratio: 4 / 5; overflow: hidden; border-radius: 280px 280px 0 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; animation: zoom 14s ease-out both; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(110, 48, 41, .75), transparent 40%), linear-gradient(to bottom, rgba(155, 78, 69, .15), transparent); }
@keyframes zoom { from { transform: scale(1.12); } }
.hero-side { position: absolute; right: var(--gut); top: 40px; width: 300px; }
.hero-side p { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 11px; padding: 5px 11px; border: 1px solid rgba(255, 255, 255, .38); border-radius: 4px; backdrop-filter: blur(6px); background: rgba(255, 255, 255, .05); }
.hero-h { position: absolute; left: var(--gut); bottom: 56px; z-index: 3; color: #fff; font-size: clamp(44px, 6.6vw, 92px); line-height: 1.02; font-weight: 600; letter-spacing: -.045em; text-shadow: 0 10px 40px rgba(74, 31, 26, .35); }
.hero-lines { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 5px; padding-bottom: 6px; }
.hero-lines i { height: 3px; background: rgba(255, 255, 255, .85); }
.hero-lines i:nth-child(2) { opacity: .7; } .hero-lines i:nth-child(3) { opacity: .5; } .hero-lines i:nth-child(4) { opacity: .3; }

/* MAP */
.gridlines { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-n) 1px, transparent 1px), linear-gradient(90deg, var(--line-n) 1px, transparent 1px);
  background-size: 120px 120px; background-position: center top;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 40%, transparent 100%); -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 40%, transparent 100%); }
.map { overflow: hidden; }
.map-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 40px; align-items: start; }
.map-l h2 { margin-bottom: 72px; }
.mini { width: 220px; background: #fff; border: 1px solid var(--line-n); border-radius: 8px; padding: 16px; box-shadow: 0 20px 40px -24px rgba(36, 23, 21, .25); font-size: 11px; }
.mini-h { display: flex; align-items: center; gap: 6px; font-weight: 500; color: var(--ink); margin-bottom: 10px; font-size: 12px; }
.mini-h i { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }
.mini p { color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.mini a { color: var(--terra); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 36px; margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 6px; }
.mini-bars i { flex: 1; height: var(--h); background: var(--terra-l); border-radius: 2px; opacity: .8; }
.map-c { padding-top: 150px; }
.map-c p { font-size: 13px; color: var(--muted); max-width: 220px; margin-bottom: 20px; }
.map-r { display: flex; flex-direction: column; gap: 22px; padding-top: 10px; }
.node { align-self: flex-start; margin-left: var(--x); font-size: 11px; color: var(--muted); padding: 5px 12px; border: 1px solid var(--line-n); border-radius: 4px; background: #fff; transition: all .4s var(--ease); position: relative; cursor: default; }
.node.on { color: var(--terra); border-color: var(--terra); box-shadow: 0 6px 16px -8px rgba(155, 78, 69, .6); padding-left: 24px; }
.node.on::before { content: ""; position: absolute; left: 9px; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; border: 1.5px solid var(--terra); border-radius: 2px; }
.node.on::after { content: ""; position: absolute; left: calc(100% + 8px); top: 50%; width: 100vw; height: 1px; background: linear-gradient(90deg, var(--terra), transparent 40%); }

/* Queue lanes */
.lanes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 12px; }
.lanes div { background: var(--sand); border-radius: 5px; padding: 6px 5px; display: flex; flex-direction: column; gap: 4px; min-height: 76px; }
.lanes span { font-size: 8.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lanes i { height: 11px; border-radius: 3px; background: #fff; border: 1px solid var(--line); }
.lanes div:nth-child(2) i { background: var(--blush); border-color: transparent; }
.lanes div:nth-child(2) i:first-of-type { background: var(--terra); }
.lanes div:nth-child(4) i { opacity: .55; }

/* HOW */
.how { padding-top: 40px; }
.rail { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; --rp: max(var(--gut), calc((100vw - 1280px) / 2 + var(--gut))); padding: 0 var(--rp) 12px; scroll-padding-inline: var(--rp); scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 min(360px, 80vw); scroll-snap-align: start; text-align: left; }
.shot-n { display: block; font-size: 12px; color: var(--ink); margin-bottom: 14px; }
.shot-img { position: relative; aspect-ratio: 1 / .9; border-radius: 4px; overflow: hidden; margin-bottom: 18px; }
.shot-img::before, .shot-img::after { content: ""; position: absolute; width: 18px; height: 18px; z-index: 2; border: 2px solid var(--terra); }
.shot-img::before { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.shot-img::after { right: 0; top: 0; border-left: 0; border-bottom: 0; }
.shot-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform 1s var(--ease); }
.shot:hover .shot-img img { transform: scale(1.05); }
.shot-img > span, .chip-ui { z-index: 2; }
.chip-top { position: absolute; left: 12px; top: 12px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.chip-ui { position: absolute; left: 12px; right: 12px; bottom: 12px; text-align: left; padding: 10px 12px; border-radius: 6px; color: #fff; background: rgba(36, 23, 21, .45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .18); display: flex; flex-direction: column; font-size: 11px; line-height: 1.4; }
.chip-ui b { font-weight: 500; font-size: 12px; }
.chip-ui span { opacity: .8; }
.ring { position: absolute; right: 12px; top: 50%; margin-top: -15px; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .3); border-top-color: #fff; border-right-color: #fff; }
.shot h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.shot p { font-size: 13px; color: var(--muted); max-width: 320px; }

/* MODULES */
.modules { background: var(--sand); }
.mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mod { background: #fff; border: 1px solid var(--line-n); border-radius: 6px; padding: 28px 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.mod:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 24px 40px -28px rgba(155, 78, 69, .55); }
.mod-ic { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--terra); color: #fff; margin-bottom: 22px; transition: background .3s; }
.mod:nth-child(4n+2) .mod-ic { background: var(--terra-d); }
.mod:nth-child(4n+3) .mod-ic { background: var(--terra-l); }
.mod:nth-child(4n+4) .mod-ic { background: var(--ink); }
.mod-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.mod h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.mod p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* WHY */
.why { background: linear-gradient(160deg, var(--terra-d), var(--terra-dd)); color: var(--cream); overflow: hidden; }
.why::before { content: ""; position: absolute; width: 760px; height: 760px; right: -260px; top: -320px; border-radius: 50%; background: radial-gradient(circle, rgba(192, 113, 102, .5), transparent 65%); pointer-events: none; }
.why h2 { color: #fff; }
.kicker-dark { background: rgba(255, 255, 255, .1); color: var(--cream); }
.why-lead { max-width: 380px; color: rgba(238, 223, 209, .8); font-size: 15px; }
.why-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(238, 223, 209, .16); border-left: 1px solid rgba(238, 223, 209, .16); }
.why-c { padding: 32px 28px; border-right: 1px solid rgba(238, 223, 209, .16); border-bottom: 1px solid rgba(238, 223, 209, .16); transition: background .3s; }
.why-c:hover { background: rgba(255, 255, 255, .04); }
.why-n { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; background: var(--cream); color: var(--terra-d); margin-bottom: 20px; }
.why-c h3 { color: #fff; font-size: 17px; font-weight: 500; margin-bottom: 8px; line-height: 1.35; }
.why-c p { font-size: 13px; color: rgba(238, 223, 209, .72); }

/* BUILD */
.build-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: stretch; }
.build-l { display: flex; flex-direction: column; }
.build-label { color: var(--terra); font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.build-tabs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.build-tabs li { font-size: 22px; color: #cbbdb8; cursor: pointer; transition: color .3s; letter-spacing: -.02em; }
.build-tabs li.on, .build-tabs li:hover { color: var(--ink); }
.dots { margin-top: auto; display: flex; gap: 10px; align-items: center; padding-top: 32px; }
.dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: #e3d6d2; cursor: pointer; transition: all .3s; }
.dots button.on { background: var(--terra); box-shadow: 0 0 0 4px rgba(155, 78, 69, .18); }
.stage { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 16 / 7.5; background: var(--ink); color: #fff; }
.stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; filter: grayscale(.35) contrast(1.05); transition: opacity .35s; }
.stage img.swap { opacity: 0; }
.stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(36, 23, 21, .8), transparent 55%); }
.stage h3 { position: absolute; z-index: 2; left: 28px; top: 26px; color: #fff; font-size: clamp(18px, 2vw, 24px); line-height: 1.25; }
.widget { position: absolute; z-index: 2; right: 20px; bottom: 20px; width: 290px; padding: 16px; border-radius: 6px; background: rgba(255, 255, 255, .14); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, .2); font-size: 11px; }
.widget b { display: block; font-weight: 500; font-size: 13px; margin-bottom: 10px; }
.wbar { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .25); margin-bottom: 8px; overflow: hidden; }
.wbar i { display: block; height: 100%; background: linear-gradient(90deg, #fff, var(--cream)); border-radius: inherit; transition: width .8s var(--ease); }
.widget span { opacity: .8; }

/* ORBIT */
.orbit { overflow: hidden; }
.bigword { position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%); font-size: clamp(90px, 19vw, 300px); font-weight: 600; letter-spacing: -.04em; color: #f4efed; white-space: nowrap; pointer-events: none; user-select: none; }
.orb { position: relative; width: min(500px, 88vw); aspect-ratio: 1; margin: 0 auto; }
.orb-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 60s linear infinite; overflow: visible; }
.orb-ring text { font-size: 17px; fill: var(--terra); font-family: var(--font); letter-spacing: .01em; }
.orb-ring text:nth-child(odd) { fill: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }
.orb-img { position: absolute; inset: 21%; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 10px #fff, 0 30px 60px -20px rgba(155, 78, 69, .5); }
.orb-img img { width: 100%; height: 100%; object-fit: cover; object-position: 12% 0%; }

/* SPECIALTIES */
.spec { background: linear-gradient(180deg, #fff 0%, var(--blush) 45%, #fff 100%); }
.checker { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cell { aspect-ratio: 1.3 / 1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.cell.img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cell.img:hover img { transform: scale(1.06); }
.cell.txt { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px; background: rgba(255, 255, 255, .5); }
.cell.txt b { color: var(--ink); font-weight: 500; font-size: 15px; }
.cell.txt span { color: var(--muted); font-size: 12px; margin-top: 2px; }
.cell-btn { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); background: #fff; color: var(--ink); font-size: 11px; font-weight: 500; padding: 6px 14px; border-radius: 4px; white-space: nowrap; }

/* QUOTE */
.q-grid { display: grid; grid-template-columns: 1fr 1.9fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.q-red { background: linear-gradient(160deg, var(--terra), var(--terra-d)); color: #fff; border-radius: 4px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
.q-mark { width: 64px; height: 52px; fill: rgba(255, 255, 255, .35); }
.q-red b { display: block; font-size: 20px; font-weight: 500; line-height: 1.3; }
.q-red span { font-size: 11px; opacity: .8; }
.q-card { background: #fafafa; border: 1px solid var(--line-n); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; }
.q-bar { width: 2px; height: 16px; background: var(--terra); margin-bottom: 16px; }
.q-card p { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink); line-height: 1.55; flex: 1; }
.q-by { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-n); }
.q-av { width: 36px; height: 36px; border-radius: 50%; background: var(--blush); }
.q-by b { display: block; color: var(--ink); font-weight: 500; font-size: 13px; }
.q-by span { font-size: 11px; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-grid h2 { margin-top: 18px; }
.faq-list details { border-top: 1px solid var(--line-n); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-n); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; color: var(--ink); font-size: 16px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--terra); font-size: 22px; line-height: 1; transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 40px 22px 0; color: var(--muted); }

/* FOOTER */
.ftr { position: relative; overflow: hidden; color: #fff; padding-top: clamp(64px, 8vw, 100px);
  background: radial-gradient(60% 80% at 0% 0%, var(--terra-l), transparent 60%), linear-gradient(160deg, var(--terra), var(--terra-d)); }
.ftr-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.ftr h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); margin-bottom: 24px; }
.demo-body { display: flex; flex-wrap: wrap; gap: 8px; max-width: 640px; }
.demo input { flex: 1 1 200px; height: 44px; padding: 0 14px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .1); color: #fff; outline: none; font-size: 13px; transition: border-color .2s, background .2s; }
.demo input::placeholder { color: rgba(255, 255, 255, .7); }
.demo input:focus { border-color: #fff; background: rgba(255, 255, 255, .16); }
.demo input.bad { border-color: #ffd0c4; background: rgba(255, 208, 196, .18); }
.demo .btn { height: 44px; flex: 1 1 200px; }
.demo-note { font-size: 12px; opacity: .8; margin-top: 10px; }
.demo .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.demo-note.err { opacity: 1; color: #ffd0c4; }
.demo button[disabled] { opacity: .7; cursor: progress; }
.ftr-kicker { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; margin-bottom: 14px; }
.ftr-side { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ftr-logo { display: inline-flex; background: #fff; border-radius: 10px; padding: 10px 16px; }
.ftr-logo img { height: 34px; width: auto; }
.ftr-by { font-size: 12px; opacity: .85; margin-bottom: 8px; }
.ftr-cols { display: flex; gap: 56px; font-size: 12px; }
.ftr-cols h4 { font-size: 12px; font-weight: 500; margin-bottom: 10px; }
.ftr-cols a { display: block; opacity: .75; padding: 2px 0; }
.ftr-cols a:hover { opacity: 1; }
.ftr-bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; font-size: 11px; opacity: .85; }
.ftr-bot b { font-weight: 600; }
.ftr-legal { display: flex; gap: 24px; }
.ftr-word { font-size: clamp(110px, 25vw, 380px); font-weight: 600; letter-spacing: -.05em; line-height: .78; text-align: center; margin-bottom: -.06em; padding-top: 24px; white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .02)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }


/* FRAMES */
.frame { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-n); box-shadow: 0 40px 80px -40px rgba(74, 31, 26, .45), 0 2px 6px rgba(36, 23, 21, .05); }
.frame img { width: 100%; height: auto; display: block; }
.frame-bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; background: var(--sand); border-bottom: 1px solid var(--line-n); }
.frame-bar i { width: 9px; height: 9px; border-radius: 50%; background: #e4d8d2; }
.frame-bar span { margin-left: 12px; font-size: 11px; color: var(--muted); }
.frame-dark { border-color: rgba(255, 255, 255, .12); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }

/* PRODUCT BAND */
.show { position: relative; padding: 0 0 clamp(56px, 7vw, 96px); background: linear-gradient(180deg, var(--sand) 0, #fff 70%); }
.show .frame-lg { margin-top: clamp(48px, 6vw, 80px); }
.show-notes { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.show-notes li { border-top: 2px solid var(--terra); padding-top: 14px; }
.show-notes b { display: block; color: var(--ink); font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.show-notes span { font-size: 13px; color: var(--muted); }

/* real screens inside flow cards */
.shots-rail .shot-img { background: var(--sand); border: 1px solid var(--line-n); }
.shots-rail .shot-img img { object-fit: cover; object-position: top center; filter: none; }
.shots-rail .chip-top { top: auto; bottom: 10px; left: 10px; color: var(--terra); background: #fff; padding: 3px 8px; border-radius: 4px; box-shadow: 0 2px 8px rgba(36, 23, 21, .12); font-weight: 500; }

/* TOUR */
.tour { background: var(--sand); }
.tour-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.tour-tabs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.tour-tab { width: 100%; text-align: left; background: none; border: 0; border-left: 2px solid var(--line-n); padding: 12px 16px; cursor: pointer; transition: border-color .3s, background .3s; border-radius: 0 6px 6px 0; }
.tour-tab b { display: block; font-weight: 500; font-size: 15px; color: var(--muted); transition: color .3s; }
.tour-tab span { display: block; font-size: 12px; color: var(--muted); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s; }
.tour-tab:hover b { color: var(--ink); }
.tour-tab.on { border-left-color: var(--terra); background: #fff; }
.tour-tab.on b { color: var(--ink); }
.tour-tab.on span { max-height: 40px; opacity: 1; margin-top: 2px; }
.tour-stage img { transition: opacity .3s ease; }
.tour-stage img.swap { opacity: 0; }
.tour-desc { display: none; margin-top: 18px; font-size: 15px; color: var(--text); max-width: 620px; }
.tour-desc.on { display: block; }

/* WHY with screen */
.why-body { position: relative; display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.why-shot { margin: 0; }
.why-shot img { max-height: 560px; object-fit: cover; object-position: bottom; }
.why-shot figcaption { margin-top: 12px; font-size: 12px; color: rgba(238, 223, 209, .7); }
.why-body .why-grid { grid-template-columns: repeat(2, 1fr); }

/* COMPLIANCE */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comp-card { border: 1px solid var(--line-n); border-radius: 8px; padding: clamp(24px, 3vw, 36px); background: #fff; }
.comp-card h3 { font-size: 20px; margin: 16px 0 14px; }
.comp-card ul { margin: 0; padding: 0; list-style: none; }
.comp-card li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line-n); font-size: 14px; }
.comp-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 14px; border-radius: 50%; background: var(--terra) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3l2.3 2.3 4.7-5' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 9px no-repeat; }
.comp-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: var(--blush); color: var(--terra-d); }
.comp-dark { background: var(--ink); border-color: var(--ink); color: rgba(238, 223, 209, .82); }
.comp-dark h3 { color: #fff; }
.comp-dark li { border-top-color: rgba(238, 223, 209, .12); }
.comp-dark .comp-badge { background: rgba(255, 255, 255, .1); color: var(--cream); }
.ftr-badges { display: flex; gap: 8px; }
.ftr-badges span { border: 1px solid rgba(255, 255, 255, .35); border-radius: 4px; padding: 2px 8px; }

/* DETAILS with devices */
.details-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.details-list { list-style: none; margin: 0; padding: 0; }
.details-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.details-list b { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; color: var(--ink); font-weight: 500; font-size: 16px; }
.details-list b i { font-style: normal; }
.dt-ic { flex: none; width: 22px; height: 22px; fill: none; stroke: #e8401f; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.details-list span { display: block; padding-left: 32px; }
.details-list span { font-size: 13px; color: var(--muted); }
.devices { border-radius: 18px; overflow: hidden; }
.devices img { display: block; width: 100%; height: auto; }

/* BUILD stage with real screens */
.stage img { opacity: 1; filter: none; object-position: top left; }
.stage::after { background: linear-gradient(0deg, rgba(36, 23, 21, .85) 0%, rgba(36, 23, 21, .35) 38%, transparent 60%); }
.stage h3 { top: auto; bottom: 26px; left: 28px; max-width: 46%; }

/* TRUST BADGES */
.trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.trust-b { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px 9px 10px; border-radius: 8px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .35); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background .25s; }
a.trust-b:hover { background: rgba(255, 255, 255, .2); }
.trust-b svg { width: 26px; height: 26px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-b > span { display: flex; flex-direction: column; font-size: 11px; line-height: 1.3; opacity: .9; }
.trust-b b { font-size: 13px; font-weight: 600; opacity: 1; }
.trust-light { grid-column: 2; grid-row: 2; justify-self: end; margin: 0 0 4px; }
.trust-light .trust-b, .trust-demo .trust-b { background: #fff; border-color: var(--line); color: var(--terra-d); backdrop-filter: none; box-shadow: 0 10px 24px -16px rgba(155, 78, 69, .6); }
.trust-light .trust-b b, .trust-demo .trust-b b { color: var(--ink); }
.trust-light .trust-b > span, .trust-demo .trust-b > span { color: var(--muted); }
.trust-demo { margin-top: 14px; }

/* HERO LIVE QUEUE */
.hero-live { background: linear-gradient(180deg, #fff 0%, #f7f1ee 100%); padding: 120px 32px 0; display: flex; flex-direction: column; gap: 14px; color: var(--ink); }
.hero-live::after { background: linear-gradient(to top, rgba(110, 48, 41, .92) 0%, rgba(110, 48, 41, .55) 22%, transparent 42%); pointer-events: none; }
.live-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22, 163, 74, .5); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); } 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); } }
.live-time { margin-left: auto; font-weight: 400; color: var(--muted); font-variant-numeric: tabular-nums; }
.live-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.live-stats div { background: #fff; border: 1px solid var(--line-n); border-radius: 8px; padding: 8px; }
.live-stats b { display: block; font-size: 20px; font-weight: 600; font-variant-numeric: tabular-nums; transition: color .3s; }
.live-stats b.bump { color: var(--terra); }
.live-stats span { font-size: 10px; color: var(--muted); }
.live-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.live-list li { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line-n); border-radius: 10px; padding: 8px 10px; font-size: 12px; animation: slideIn .45s var(--ease) both; }
.live-list li.leaving { animation: slideOut .35s ease forwards; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } }
@keyframes slideOut { to { opacity: 0; transform: translateX(16px); } }
.live-av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 600; background: var(--blush); color: var(--terra-d); }
.live-list b { display: block; font-weight: 600; font-size: 12.5px; }
.live-list small { color: var(--muted); font-size: 11px; }
.live-st { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 99px; white-space: nowrap; }
.st-wait { background: #fef3c7; color: #92400e; }
.st-doc { background: #e0f2fe; color: #075985; }
.st-pharm { background: #ede9fe; color: #5b21b6; }
.st-done { background: #dcfce7; color: #166534; }
.st-alert { display: inline-block; margin-top: 2px; font-size: 10px; color: #b91c1c; }

/* TRY IT */
.try-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.try-card { background: #fff; border: 1px solid var(--line-n); border-radius: 12px; padding: clamp(20px, 2.6vw, 30px); box-shadow: 0 30px 60px -44px rgba(36, 23, 21, .4); }
.try-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.try-top h3 { font-size: 20px; margin: 6px 0 18px; }
.rx-patient { display: grid; grid-template-columns: 40px 1fr; gap: 4px 12px; align-items: center; padding: 12px; border-radius: 10px; background: var(--sand); }
.rx-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--terra); color: #fff; font-weight: 600; font-size: 13px; grid-row: span 2; }
.rx-patient b { display: block; color: var(--ink); font-weight: 600; }
.rx-patient div span { font-size: 12px; color: var(--muted); }
.rx-alert { grid-column: 2; justify-self: start; font-size: 11px; font-weight: 600; color: #b91c1c; background: #fee2e2; padding: 3px 8px; border-radius: 99px; }
.rx-drugs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 12px; }
.rx-drugs button { border: 1px solid var(--line-n); background: #fff; border-radius: 99px; padding: 8px 14px; font-size: 13px; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.rx-drugs button:hover { border-color: var(--terra); transform: translateY(-1px); }
.rx-drugs button:disabled { opacity: .45; cursor: default; transform: none; border-color: var(--line-n); }
.rx-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-n); }
.rx-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-n); font-size: 13px; animation: slideIn .35s var(--ease) both; }
.rx-list li span { color: var(--muted); font-size: 12px; }
.rx-empty { color: var(--muted); }
.rx-block[hidden] { display: none; }
.rx-block { margin-top: 14px; border: 1px solid #fecaca; background: #fef2f2; border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 6px; animation: shake .4s ease; }
.rx-block b { color: #991b1b; }
.rx-block span, .rx-block label { font-size: 12.5px; color: #b91c1c; }
.rx-block textarea { width: 100%; border: 1px solid #fecaca; border-radius: 8px; padding: 8px 10px; font: inherit; font-size: 13px; resize: vertical; }
.rx-block textarea:focus { outline: none; border-color: #f87171; }
.rx-actions { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-link { background: none; border: 0; color: #991b1b; font-size: 13px; text-decoration: underline; cursor: pointer; padding: 0; }
@keyframes shake { 20%, 60% { transform: translateX(-4px); } 40%, 80% { transform: translateX(4px); } }
.rx-note { margin-top: 10px; font-size: 12.5px; color: #166534; min-height: 18px; }

.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; user-select: none; touch-action: pan-y; background: #d9b8a3; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba-tag { position: absolute; top: 12px; font-size: 11px; font-weight: 600; color: #fff; background: rgba(36, 23, 21, .55); padding: 4px 9px; border-radius: 99px; pointer-events: none; }
.ba-l { left: 12px; } .ba-r { right: 12px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.ba-handle i { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; margin: -20px 0 0 -20px; border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(36, 23, 21, .3); }
.ba-handle i::before, .ba-handle i::after { content: ""; position: absolute; top: 50%; width: 0; height: 0; border: 5px solid transparent; margin-top: -5px; }
.ba-handle i::before { left: 8px; border-right-color: var(--terra); }
.ba-handle i::after { right: 8px; border-left-color: var(--terra); }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba:focus-within .ba-handle i { box-shadow: 0 0 0 3px var(--terra); }
.try-foot { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

/* ROLE FILTER */
.role-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 20px; }
.role-filter span { font-size: 13px; color: var(--muted); margin-right: 4px; }
.role-filter button { border: 1px solid var(--line-n); background: #fff; border-radius: 99px; padding: 7px 14px; font-size: 13px; cursor: pointer; transition: all .2s; }
.role-filter button.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.mod { transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s, opacity .3s, filter .3s; }
.mods.filtered .mod.off { opacity: .28; filter: grayscale(1); }
.mods.filtered .mod.hit { border-color: var(--terra); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 4px; }
.btn-ghost-w { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .5); }
.btn-ghost-w:hover { background: rgba(255, 255, 255, .12); }

/* HERO: left-aligned two-column layout on desktop */
@media (min-width: 1001px) {
  .hero-in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); grid-template-rows: 1fr auto auto; column-gap: clamp(32px, 5vw, 80px); min-height: clamp(560px, 72vh, 720px); padding-top: 24px; }
  .hero-mark { top: 0; opacity: .6; }
  .hero-h { position: static; grid-column: 1; grid-row: 2; align-self: end; margin-bottom: 20px; font-size: clamp(48px, 5.6vw, 84px); }
  .hero-side { position: static; grid-column: 1; grid-row: 3; width: auto; max-width: 560px; padding-bottom: 64px; }
  .hero-side p { font-size: 16px; }
  .hero-photo { position: relative; left: auto; transform: none; grid-column: 2; grid-row: 1 / 4; align-self: end; width: 100%; max-width: 480px; justify-self: end; }
  .hero-live::after { background: linear-gradient(to top, rgba(110, 48, 41, .35) 0%, transparent 18%); }
}

/* Small laptops: keep hero text clear of the photo */
@media (min-width: 1001px) and (max-width: 1280px) {
  .hero-h { font-size: clamp(44px, 5.4vw, 70px); }
}

/* Reveal */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1000px) {
  .try-grid { grid-template-columns: 1fr; }
  .hero-in .hero-h { order: 1; margin-top: 48px; }
  .hero-in .hero-side { order: 2; margin: 20px 0 32px; }
  .hero-in .hero-photo { order: 3; }
  .hero-in .hero-live { padding: 22px; aspect-ratio: auto; border-radius: 20px; align-self: stretch; max-width: 560px; }
  .hero-live::after { display: none; }
  .head { grid-template-columns: 1fr; }
  .head > .btn, .head > p, .trust-light { grid-column: 1; grid-row: auto; justify-self: start; margin-bottom: 0; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-tabs { flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 0; }
  .tour-tab { white-space: nowrap; border-left: 0; border-bottom: 2px solid var(--line-n); border-radius: 0; }
  .tour-tab.on { border-bottom-color: var(--terra); }
  .tour-tab span { display: none; }
  .why-body { grid-template-columns: 1fr; }
  .why-shot { max-width: 380px; margin: 0 auto; }
  .details-grid { grid-template-columns: 1fr; }
  .show-notes { grid-template-columns: 1fr; gap: 14px; }
  .mods { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav, .hdr-r .btn { display: none; }
  .burger { display: block; }
  .mnav { display: flex; flex-direction: column; max-height: 0; overflow: hidden; padding: 0 var(--gut); background: var(--terra-d); transition: max-height .4s var(--ease); }
  .mnav a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); font-size: 16px; }
  .hdr.open .mnav { max-height: 400px; }
  .hero-in { min-height: 0; padding-top: 20px; padding-bottom: 48px; display: flex; flex-direction: column; }
  .hero-mark { top: 0; }
  .hero-side { position: relative; right: auto; top: auto; width: auto; max-width: 420px; order: 1; margin: 72px 0 32px; }
  .hero-photo { position: relative; left: auto; transform: none; order: 2; width: 100%; max-width: 420px; align-self: center; }
  .hero-h { position: relative; left: auto; bottom: auto; order: 3; margin-top: -70px; }
  .map-in { grid-template-columns: 1fr 1fr; }
  .map-c { padding-top: 0; }
  .map-r { grid-column: 1 / -1; }
  .build-grid { grid-template-columns: 1fr; gap: 24px; }
  .build-tabs { flex-direction: row; gap: 20px; }
  .dots { display: none; }
  .stage { aspect-ratio: 4 / 3; }
  .q-grid, .faq-grid { grid-template-columns: 1fr; }
  .q-red { min-height: 200px; }
}
@media (max-width: 640px) {
  .live-stats b { font-size: 16px; }
  .hero-in .hero-live { padding: 16px 12px; }
  .comp-grid, .why-body .why-grid { grid-template-columns: 1fr; }
  .stage { aspect-ratio: auto; background: none; overflow: visible; display: flex; flex-direction: column; gap: 14px; }
  .stage img { position: static; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; border: 1px solid var(--line-n); }
  .stage::after { display: none; }
  .stage h3 { position: static; max-width: none; color: var(--ink); font-size: 20px; }
  .widget { position: static; width: auto; background: var(--ink); backdrop-filter: none; }
  .mod { padding: 20px 18px; }
  .mod-ic { width: 40px; height: 40px; margin-bottom: 14px; }
  .mods { gap: 10px; }
  .hero-side { margin-top: 56px; }
  .show-notes li { padding-top: 10px; }
  .mods, .why-grid { grid-template-columns: 1fr; }
  .mod { padding: 24px 20px; }
  .logo { padding: 6px 10px; }
  .logo img { height: 24px; }
  .map-in { grid-template-columns: 1fr; }
  .map-l h2 { margin-bottom: 28px; }
  .node.on::after { display: none; }
  .map-r { gap: 14px; }
  .node { margin-left: calc(var(--x) * .5); }
  .widget { left: 16px; right: 16px; width: auto; bottom: 16px; }
  .stage h3 { left: 18px; top: 18px; }
  .build-tabs li { font-size: 18px; }
  .checker { grid-template-columns: repeat(2, 1fr); }
  .cell.img:last-child { display: none; }
  .ftr-cols { gap: 40px; }
  .faq-list details p { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rv { opacity: 1; transform: none; }
}

/* Hero queue: app window card, no arch */
.hero-in .hero-live { aspect-ratio: auto; height: auto; border-radius: 14px; padding: 0 0 16px; overflow: hidden; background: #fff; box-shadow: 0 40px 80px -30px rgba(36, 23, 21, .55), 0 0 0 1px rgba(255, 255, 255, .25); }
.hero-in .hero-live::after { display: none; }
.hero-in .hero-live .live-head { padding: 12px 16px; background: var(--sand); border-bottom: 1px solid var(--line-n); }
.hero-in .hero-live .live-stats, .hero-in .hero-live .live-list { margin: 0 16px; }
.hero-in .hero-live .live-stats div { background: var(--sand); border-color: transparent; }
@media (min-width: 1001px) { .hero-in .hero-live { align-self: center; margin-bottom: 36px; } }

/* Single testimonial */

/* ================= HERO IMAGE + PREMIUM MOTION ================= */
.hero { background: #7a3530; isolation: isolate; }
.hero-bg { position: absolute; inset: -3%; z-index: -1; overflow: hidden; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 60%; transform-origin: 75% 70%; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(74, 31, 26, .55) 0%, rgba(74, 31, 26, .25) 45%, transparent 70%), linear-gradient(0deg, rgba(74, 31, 26, .35), transparent 30%); }
.hero-sheen { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: soft-light;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 244, 232, .75) 50%, transparent 60%);
  background-size: 260% 100%; background-position: 130% 0; opacity: 0; }
.hero-mark, .hero-lines { display: none; }
.hero-h .ln { display: inline-block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; vertical-align: top; }
.hero-h .w { display: inline-block; }
.hero-in .hero-live { transform-style: preserve-3d; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent); transform: skewX(-20deg); transition: left .7s var(--ease); pointer-events: none; }
.btn:hover::after { left: 130%; }

/* Scroll reveals: softer, with blur */
.js .rv { filter: blur(6px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s), filter 1s var(--ease) var(--d, 0s); }
.js .rv.in { filter: none; }
.frame, .mod, .shot, .try-card, .comp-card, .why-c { will-change: auto; }

/* Intro sequence, only when JS and motion are allowed */
.motion .hero-bg img { animation: bgIn 2.6s cubic-bezier(.16, 1, .3, 1) both; }
.motion .hero-sheen { animation: sheen 3.2s 1s ease-in-out both, sheenLoop 9s 5s ease-in-out infinite; }
.motion .hdr { animation: fadeDown .9s .15s var(--ease) both; }
.motion .hero-h .w { animation: wordUp 1.1s var(--ease) both; animation-delay: calc(.35s + var(--i, 0) * .08s); }
.motion .hero-side > * { animation: riseIn 1s var(--ease) both; animation-delay: calc(.85s + var(--i, 0) * .09s); }
.motion .hero-in .hero-live { animation: cardIn 1.4s .6s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes bgIn { from { transform: scale(1.14); filter: brightness(.7) saturate(.8); } to { transform: none; filter: none; } }
@keyframes sheen { from { opacity: 0; background-position: 130% 0; } 30% { opacity: 1; } to { opacity: 0; background-position: -30% 0; } }
@keyframes sheenLoop { 0%, 70% { opacity: 0; background-position: 130% 0; } 80% { opacity: .8; } 100% { opacity: 0; background-position: -30% 0; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-14px); } }
@keyframes wordUp { from { transform: translateY(110%) rotate(4deg); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes cardIn { from { opacity: 0; transform: perspective(1200px) translateY(60px) rotateX(14deg) scale(.94); filter: blur(10px); } to { opacity: 1; transform: none; filter: none; } }

@media (max-width: 1000px) {
  .hero-bg img { object-position: 78% 100%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(74, 31, 26, .6) 0%, rgba(74, 31, 26, .35) 55%, rgba(74, 31, 26, .15) 100%); }
}
@media (max-width: 640px) {
  .hero-h { font-size: clamp(38px, 11vw, 48px); }
  .hero-bg img { object-position: 85% 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .js .rv { filter: none; }
}
html, body { overflow-x: clip; }


/* Day one */
.dayone { background: var(--sand); }
.d1-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.d1 { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 28px 24px 30px; border-radius: 14px; background: #fff; border: 1px solid #e6e7eb; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.d1::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--terra), var(--terra-l)); transform: scaleX(.18); transform-origin: 0 50%; transition: transform .6s var(--ease); }
.d1:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -28px rgba(36, 23, 21, .45); border-color: #d9d3d1; }
.d1:hover::before { transform: scaleX(1); }
.d1-n { font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--terra); font-variant-numeric: tabular-nums; }
.d1 b { font-size: 19px; line-height: 1.25; font-weight: 600; letter-spacing: -.015em; color: var(--ink); }
.d1 p { margin: 0; font-size: 15px; line-height: 1.6; color: #6b5a56; }
@media (max-width: 1024px) { .d1-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .d1-grid { grid-template-columns: 1fr; gap: 14px; } .d1 { padding: 24px 20px; } }

/* Demo request confirmation */
.ok-modal { width: min(420px, calc(100vw - 32px)); padding: 0; border: 0; border-radius: 16px; background: #fff; color: var(--ink); box-shadow: 0 40px 80px -30px rgba(36, 23, 21, .55); }
.ok-modal::backdrop { background: rgba(36, 23, 21, .55); backdrop-filter: blur(4px); }
.ok-modal[open] { animation: okIn .45s var(--ease); }
.ok-modal[open]::backdrop { animation: okFade .3s ease; }
.ok-in { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 32px 28px 28px; }
.ok-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--blush); margin-bottom: 6px; }
.ok-ic svg { width: 26px; height: 26px; fill: none; stroke: var(--terra); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; }
.ok-modal[open] .ok-ic svg { animation: okTick .5s .2s var(--ease) forwards; }
.ok-in h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.ok-in p { margin: 0 0 10px; font-size: 15px; line-height: 1.6; color: #6b5a56; }
.ok-in .btn { width: 100%; }
@keyframes okIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes okFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes okTick { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .ok-modal[open], .ok-modal[open]::backdrop { animation: none; } .ok-ic svg { stroke-dashoffset: 0; } .ok-modal[open] .ok-ic svg { animation: none; } }
