/* YsnSkin / high-tech glass interface. Keep this file self-contained so it can
   render well on the mainland without waiting for a remote font stylesheet. */

:root {
  --bg-0: #070a0f;
  --bg-1: #0c1119;
  --bg-2: #111925;
  --bg-3: #162130;
  --ink: #f4f7fb;
  --muted: #9aa9bb;
  --muted-2: #66768b;
  --line: rgb(255 255 255 / .1);
  --line-strong: rgb(255 255 255 / .19);
  --orange: #ff8a45;
  --orange-hi: #ffb273;
  --orange-dim: rgb(255 138 69 / .14);
  --cyan: #6de4ff;
  --violet: #b995ff;
  --green: #7bf0a5;
  --shadow: 0 30px 90px rgb(0 0 0 / .38);
  --shadow-soft: 0 12px 35px rgb(0 0 0 / .24);
  --font-sans: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --measure: 1320px;
  --gutter: clamp(20px, 4vw, 58px);
  --pad-x: max(var(--gutter), calc((100vw - var(--measure)) / 2));
  --section-y: clamp(84px, 10vw, 150px);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 38px;
  font-family: var(--font-sans);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg-0); color: var(--ink); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
button, input { font: inherit; }
button, a { color: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
strong, b { font-weight: 650; }
dl, dd, ul, ol { margin: 0; }

:is(a, button):focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-radius: 8px; }
.skip-link { position: fixed; z-index: 300; top: 14px; left: 14px; padding: 10px 16px; border-radius: 999px; background: var(--orange); color: #1b0d03; font-weight: 700; transform: translateY(-180%); }
.skip-link:focus-visible { transform: none; }
.site-root { min-width: 0; overflow: clip; background: var(--bg-0); }

/* buttons */
.btn { min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.btn svg { width: 16px; height: 16px; }
.btn-lg { min-height: 54px; padding-inline: 23px; font-size: 14px; }
.btn-primary { background: var(--orange); color: #190b02; box-shadow: 0 10px 25px rgb(255 138 69 / .2); }
.btn-primary:hover { background: var(--orange-hi); transform: translateY(-3px); box-shadow: 0 15px 32px rgb(255 138 69 / .28); }
.btn-ghost { border-color: var(--line-strong); background: rgb(255 255 255 / .035); color: var(--ink); backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgb(255 255 255 / .4); background: rgb(255 255 255 / .09); transform: translateY(-3px); }

/* floating navigation */
.site-header { position: fixed; z-index: 100; top: 18px; right: 0; left: 0; pointer-events: none; }
.site-nav { width: min(calc(100% - 2 * var(--gutter)), 1240px); min-height: 68px; margin: auto; padding: 10px 12px 10px 18px; border: 1px solid rgb(255 255 255 / .15); border-radius: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; background: rgb(11 16 24 / .68); box-shadow: 0 18px 50px rgb(0 0 0 / .25), inset 0 1px rgb(255 255 255 / .08); backdrop-filter: blur(22px) saturate(150%); pointer-events: auto; }
.brand { width: max-content; display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 35px; height: 35px; border: 1px solid rgb(255 255 255 / .18); border-radius: 11px; display: grid; place-items: center; overflow: hidden; background: var(--orange-dim); box-shadow: inset 0 0 18px rgb(255 138 69 / .15); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 0; line-height: 1; }
.brand-copy strong { font-size: 16px; letter-spacing: -.025em; }
.brand-copy small { margin-top: 4px; color: var(--muted-2); font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 13px; }
.nav-links a { padding: 9px 2px; transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-tutorial { display: inline-flex; align-items: center; gap: 5px; color: var(--orange); }
.nav-links a.nav-tutorial svg { width: 13px; height: 13px; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.nav-download { min-height: 42px; padding-inline: 16px; }
.nav-download svg { width: 15px; height: 15px; }
.nav-manual { min-height: 42px; padding-inline: 14px; font-size: 12px; }
.nav-manual svg { width: 14px; height: 14px; }
.btn-runtime { border-color: rgb(109 228 255 / .3); background: rgb(109 228 255 / .08); color: #c8f6ff; box-shadow: inset 0 0 24px rgb(109 228 255 / .04); }
.btn-runtime:hover { border-color: rgb(109 228 255 / .72); background: rgb(109 228 255 / .15); color: #fff; transform: translateY(-3px); }
.nav-runtime { min-height: 42px; padding-inline: 14px; font-size: 12px; white-space: nowrap; }
.nav-runtime svg { width: 14px; height: 14px; }
.menu-trigger { width: 42px; height: 42px; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; display: none; place-items: center; background: rgb(255 255 255 / .04); }
.menu-trigger svg { width: 18px; }

/* hero */
.hero-section { position: relative; min-height: min(900px, 100svh); overflow: hidden; background: var(--bg-0); }
.hero-background, .hero-grid, .hero-overlay { position: absolute; inset: 0; pointer-events: none; }
.hero-background { background: url('/assets/hero-mvp-t1-miss-fortune.jpg') 55% 28% / cover no-repeat; filter: saturate(.8); opacity: .72; }
.hero-grid { opacity: .25; background-image: linear-gradient(rgb(109 228 255 / .08) 1px, transparent 1px), linear-gradient(90deg, rgb(109 228 255 / .08) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.hero-overlay { background: radial-gradient(circle at 80% 42%, rgb(38 55 92 / .32), transparent 34%), linear-gradient(90deg, rgb(7 10 15 / .98) 0%, rgb(7 10 15 / .84) 40%, rgb(7 10 15 / .2) 80%, rgb(7 10 15 / .9) 100%), linear-gradient(0deg, var(--bg-0) 0%, transparent 30%, rgb(7 10 15 / .25) 100%); }
.hero-inner { position: relative; z-index: 2; width: min(var(--measure), 100%); min-height: 900px; margin: auto; padding: 150px var(--gutter) 90px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); align-items: center; gap: 30px; }
.hero-copy { max-width: 610px; padding-bottom: 25px; }
.hero-kicker { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgb(255 138 69 / .14), 0 0 20px var(--orange); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 5px rgb(255 138 69 / .1), 0 0 12px var(--orange); } 50% { box-shadow: 0 0 0 9px rgb(255 138 69 / .03), 0 0 27px var(--orange); } }
.hero-copy h1 { max-width: 610px; margin: 0; font-family: var(--font-display); font-size: clamp(56px, 7vw, 102px); font-weight: 600; letter-spacing: -.075em; line-height: .98; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 500px; margin-top: 28px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 11px; }
.hero-footnote { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted-2); font-size: 11px; font-weight: 650; }
.hero-footnote span { display: inline-flex; align-items: center; gap: 6px; }
.hero-footnote svg { width: 14px; height: 14px; color: var(--orange); }

/* live preview composition */
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgb(109 228 255 / .14); border-radius: 50%; transform: rotate(-18deg); pointer-events: none; }
.orbit-one { width: 660px; height: 270px; animation: orbit 12s linear infinite; }
.orbit-two { width: 520px; height: 220px; border-color: rgb(255 138 69 / .13); transform: rotate(35deg); animation: orbit 17s linear infinite reverse; }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.preview-window { position: relative; z-index: 2; width: min(100%, 600px); border: 1px solid rgb(255 255 255 / .22); border-radius: 24px; overflow: hidden; background: rgb(12 18 28 / .82); box-shadow: 0 40px 100px rgb(0 0 0 / .52), 0 0 0 10px rgb(255 255 255 / .025), inset 0 1px rgb(255 255 255 / .14); transform: perspective(1400px) rotateY(-7deg) rotateX(2deg); backdrop-filter: blur(20px); animation: window-float 8s ease-in-out infinite; }
.preview-window::after { content: ''; position: absolute; z-index: 5; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(130deg, rgb(255 255 255 / .16), transparent 20%, transparent 70%, rgb(255 255 255 / .08)); opacity: .7; mix-blend-mode: screen; }
@keyframes window-float { 0%, 100% { transform: perspective(1400px) rotateY(-7deg) rotateX(2deg) translate3d(0, 0, 0); } 50% { transform: perspective(1400px) rotateY(-7deg) rotateX(2deg) translate3d(0, -9px, 0); } }
.preview-stack { position: absolute; z-index: 1; width: min(100%, 560px); height: 340px; border: 1px solid rgb(255 255 255 / .13); border-radius: 22px; overflow: hidden; background: rgb(12 18 28 / .56); box-shadow: 0 24px 60px rgb(0 0 0 / .26); opacity: .56; pointer-events: none; transition: transform .75s cubic-bezier(.2,.8,.2,1), opacity .55s ease, filter .55s ease; }
.preview-stack::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(7 10 15 / .55), transparent 55%), linear-gradient(0deg, rgb(7 10 15 / .38), transparent 60%); }
.preview-stack img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.7); }
.preview-stack-back { transform: translate(56px, -27px) rotate(5deg) scale(.92); }
.preview-stack-front { transform: translate(-48px, 28px) rotate(-5deg) scale(.88); opacity: .36; filter: blur(.15px); }
.hero-visual:hover .preview-stack-back { transform: translate(75px, -38px) rotate(7deg) scale(.92); opacity: .68; }
.hero-visual:hover .preview-stack-front { transform: translate(-66px, 39px) rotate(-7deg) scale(.88); opacity: .48; }
.preview-window-topbar { min-height: 46px; padding: 0 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #ff6e5a; }
.window-dots i:nth-child(2) { background: #ffd36e; }
.window-dots i:nth-child(3) { background: #79e89a; }
.window-online { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.window-online b, .preview-window-footer strong b { width: 5px; height: 5px; border-radius: 50%; display: inline-block; background: currentColor; box-shadow: 0 0 9px currentColor; }
.preview-image-wrap { position: relative; height: 365px; overflow: hidden; background: var(--bg-2); }
.preview-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; animation: image-in .65s ease both; }
@keyframes image-in { from { opacity: .2; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
.preview-image-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 8 14 / .86) 0%, rgb(5 8 14 / .25) 55%, transparent 100%), linear-gradient(0deg, rgb(5 8 14 / .75) 0%, transparent 52%); }
.preview-image-copy { position: absolute; left: 28px; bottom: 27px; display: grid; gap: 5px; }
.preview-image-copy span { font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.preview-image-copy strong { font-size: 25px; letter-spacing: -.035em; }
.preview-image-copy small { color: rgb(255 255 255 / .68); font-size: 11px; }
.preview-scanline { position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgb(109 228 255 / .85), transparent); box-shadow: 0 0 18px rgb(109 228 255 / .8); animation: scan 4s ease-in-out infinite; }
@keyframes scan { 0% { top: 4%; opacity: 0; } 15%, 75% { opacity: 1; } 100% { top: 96%; opacity: 0; } }
.preview-window-footer { min-height: 72px; padding: 14px 20px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 12px; }
.preview-window-footer div { display: grid; gap: 2px; align-content: center; }
.preview-window-footer small { color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.preview-window-footer strong { display: flex; align-items: center; gap: 6px; color: var(--green); font-size: 10px; letter-spacing: .05em; }
.preview-window-footer div:nth-child(n+2) strong { color: var(--ink); }
.preview-window-footer strong span { color: var(--muted-2); font-size: 8px; }
.preview-progress { position: absolute; z-index: 7; right: 0; bottom: 0; left: 0; height: 2px; background: rgb(255 255 255 / .1); }
.preview-progress span { display: block; width: 100%; height: 100%; transform-origin: left center; animation: preview-progress 4.2s linear both; box-shadow: 0 0 12px currentColor; }
@keyframes preview-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.preview-tag { position: absolute; z-index: 3; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.preview-tag-top { top: 62px; left: 8px; writing-mode: vertical-rl; transform: rotate(180deg); }
.preview-tag-top span { width: 6px; height: 6px; margin-bottom: 9px; border-radius: 50%; display: inline-block; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.preview-tag-bottom { right: 8px; bottom: 65px; display: flex; align-items: center; gap: 6px; writing-mode: vertical-rl; }
.preview-tag-bottom svg { width: 14px; animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.preview-float { position: absolute; z-index: 4; width: 128px; padding: 13px 14px; border: 1px solid rgb(255 255 255 / .15); border-radius: 12px; display: grid; gap: 1px; background: rgb(12 18 28 / .75); box-shadow: var(--shadow-soft); backdrop-filter: blur(16px); animation: float 5s ease-in-out infinite; }
.preview-float-left { left: -6px; top: 170px; }
.preview-float-right { right: -5px; bottom: 170px; animation-delay: -2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.preview-float span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.preview-float strong { font-size: 11px; letter-spacing: .08em; }
.preview-float small { color: var(--muted-2); font-size: 9px; }
.preview-controls { position: absolute; z-index: 5; right: 54px; bottom: 34px; padding: 5px; border: 1px solid var(--line-strong); border-radius: 999px; display: flex; gap: 4px; background: rgb(7 10 15 / .72); backdrop-filter: blur(15px); }
.preview-controls button { width: 48px; height: 30px; padding: 0; border: 1px solid transparent; border-radius: 999px; overflow: hidden; opacity: .42; transition: opacity .25s ease, transform .25s ease, border-color .25s ease; }
.preview-controls button:hover, .preview-controls button.active { border-color: var(--orange); opacity: 1; transform: translateY(-2px); }
.preview-controls img { width: 100%; height: 100%; object-fit: cover; }

/* signal rail */
.signal-strip { position: relative; z-index: 2; padding: 0 var(--pad-x); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); background: rgb(10 15 23 / .92); }
.signal-item { min-height: 112px; padding: 22px 20px 22px 0; display: flex; align-items: center; gap: 13px; }
.signal-item + .signal-item { padding-left: 22px; border-left: 1px solid var(--line); }
.signal-icon { width: 36px; height: 36px; border: 1px solid rgb(255 255 255 / .12); border-radius: 12px; display: grid; place-items: center; background: rgb(255 255 255 / .04); color: var(--orange); }
.signal-icon svg { width: 17px; height: 17px; }
.signal-item div { display: grid; gap: 1px; }
.signal-item small { color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.signal-item strong { font-size: 14px; }

/* shared sections */
.page-section { scroll-margin-top: 105px; }
.section-heading { position: relative; z-index: 2; max-width: 680px; }
.section-kicker { margin: 0 0 16px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 600; letter-spacing: -.065em; line-height: 1.02; }
.section-description { max-width: 590px; margin-top: 23px; color: var(--muted); font-size: 15px; line-height: 1.9; }

/* product */
.product-section { position: relative; padding: var(--section-y) var(--pad-x); background: radial-gradient(circle at 24% 20%, rgb(109 228 255 / .07), transparent 24%), var(--bg-0); }
.product-section::before { content: 'YsnSkin / INTERFACE'; position: absolute; top: 74px; right: var(--pad-x); color: rgb(255 255 255 / .13); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.product-stage { margin-top: 65px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr); grid-template-rows: auto auto; gap: 18px; align-items: start; }
.product-shot { position: relative; min-width: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow-soft); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.product-shot:hover { transform: translateY(-7px); border-color: rgb(255 255 255 / .28); box-shadow: var(--shadow); }
.product-shot-main { grid-row: span 2; }
.product-shot-side { align-self: stretch; }
.product-shot img { width: 100%; height: auto; transition: transform .6s ease; }
.product-shot:hover img { transform: scale(1.025); }
.shot-label { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 10px; border: 1px solid rgb(255 255 255 / .16); border-radius: 999px; display: inline-flex; gap: 8px; color: rgb(255 255 255 / .78); background: rgb(8 12 18 / .62); font-size: 8px; font-weight: 800; letter-spacing: .15em; backdrop-filter: blur(12px); }
.shot-label span { color: var(--orange); }
.product-shot figcaption { min-height: 66px; padding: 13px 17px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; background: rgb(255 255 255 / .025); }
.product-shot figcaption small { color: var(--orange); font-size: 10px; font-weight: 700; }
.product-shot figcaption strong { font-size: 13px; }
.product-shot figcaption svg { width: 16px; color: var(--muted-2); }
.product-gallery-extra { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-gallery-extra .product-shot { min-width: 0; }
.product-note { align-self: center; padding: 13px 12px 26px 14px; }
.product-note h3 { margin: 0; font-family: var(--font-display); font-size: 27px; letter-spacing: -.045em; line-height: 1.16; }
.product-note > p:not(.section-kicker) { max-width: 340px; margin-top: 15px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.text-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 7px; color: var(--orange); font-size: 12px; font-weight: 700; }
.text-link svg { width: 15px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* pricing */
.pricing-section { position: relative; padding: var(--section-y) var(--pad-x); overflow: hidden; background: var(--bg-1); }
.pricing-section::before { content: 'ACCESS / 2026'; position: absolute; top: 74px; right: var(--pad-x); color: rgb(255 255 255 / .13); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.pricing-glow { position: absolute; top: -250px; right: 12%; width: 500px; height: 500px; border-radius: 50%; background: rgb(185 149 255 / .11); filter: blur(95px); pointer-events: none; }
.pricing-intro { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(270px, .78fr) minmax(0, 1.42fr); gap: clamp(36px, 5vw, 74px); align-items: center; }
.pricing-grid { position: relative; z-index: 2; margin-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.pricing-card { position: relative; min-height: 440px; padding: 26px 25px 22px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(160deg, rgb(255 255 255 / .07), rgb(255 255 255 / .018) 44%), rgb(11 17 26 / .8); box-shadow: var(--shadow-soft); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.pricing-card:hover { transform: translateY(-8px); border-color: rgb(255 255 255 / .28); box-shadow: var(--shadow); }
.pricing-card-glow { position: absolute; top: -100px; right: -80px; width: 250px; height: 250px; border-radius: 50%; background: rgb(255 138 69 / .14); filter: blur(60px); pointer-events: none; }
.pricing-violet .pricing-card-glow { background: rgb(185 149 255 / .17); }
.pricing-cyan .pricing-card-glow { background: rgb(109 228 255 / .14); }
.pricing-card-head { position: relative; display: flex; align-items: center; gap: 10px; }
.pricing-index { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.pricing-violet .pricing-index { color: var(--violet); }
.pricing-cyan .pricing-index { color: var(--cyan); }
.pricing-label { font-size: 14px; font-weight: 700; }
.pricing-popular { margin-left: auto; padding: 5px 8px; border: 1px solid rgb(185 149 255 / .38); border-radius: 999px; color: var(--violet); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.pricing-price { position: relative; margin-top: 48px; display: flex; align-items: baseline; gap: 7px; }
.pricing-price strong { font-family: var(--font-display); font-size: clamp(54px, 6vw, 80px); font-weight: 600; letter-spacing: -.08em; line-height: .85; }
.pricing-price span { color: var(--muted); font-size: 14px; }
.pricing-period { position: relative; margin-top: 12px; color: var(--orange); font-size: 12px; font-weight: 700; }
.pricing-violet .pricing-period { color: var(--violet); }
.pricing-cyan .pricing-period { color: var(--cyan); }
.pricing-description { position: relative; min-height: 52px; margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.community-offer { position: relative; min-height: 250px; padding: 30px 36px; border: 1px solid rgb(255 138 69 / .28); border-radius: var(--r-lg); display: flex; align-items: flex-start; justify-content: center; flex-direction: column; gap: 15px; overflow: hidden; background: radial-gradient(circle at 86% 20%, rgb(185 149 255 / .16), transparent 38%), linear-gradient(110deg, rgb(255 138 69 / .12), rgb(185 149 255 / .08)); box-shadow: 0 16px 42px rgb(0 0 0 / .16), inset 0 1px 0 rgb(255 255 255 / .08); }
.community-offer::before { content: 'COMMUNITY / 8H BONUS'; position: absolute; top: 22px; right: 27px; color: rgb(255 255 255 / .2); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.community-offer::after { content: ''; position: absolute; right: -55px; bottom: -85px; width: 220px; height: 220px; border: 1px solid rgb(255 255 255 / .12); border-radius: 50%; box-shadow: 0 0 0 22px rgb(255 255 255 / .025), 0 0 0 44px rgb(255 255 255 / .018); pointer-events: none; }
.community-offer-icon { width: 44px; height: 44px; border: 1px solid rgb(255 138 69 / .36); border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; color: var(--orange); background: rgb(255 138 69 / .12); box-shadow: 0 0 26px rgb(255 138 69 / .14); }
.community-offer-icon svg { width: 18px; height: 18px; }
.community-offer-copy { position: relative; z-index: 1; display: grid; gap: 7px; }
.community-offer-copy small { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.community-offer-copy strong { color: var(--ink); font-size: 21px; letter-spacing: .01em; }
.community-offer-copy > span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.community-offer-copy em { color: var(--orange); font-style: normal; font-weight: 750; }
.pricing-card ul { position: relative; margin-top: 18px; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; list-style: none; color: var(--muted); font-size: 12px; }
.pricing-card li { display: flex; align-items: center; gap: 8px; }
.pricing-card li svg { width: 14px; height: 14px; color: var(--green); }
.pricing-action { position: relative; min-height: 42px; margin-top: auto; padding: 0 14px; border: 1px solid rgb(255 255 255 / .16); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: var(--ink); background: rgb(255 255 255 / .04); font-size: 12px; font-weight: 700; }
.pricing-action svg { width: 14px; }
.pricing-card:hover .pricing-action { border-color: var(--orange); background: var(--orange); color: #190b02; }
.pricing-violet:hover .pricing-action { border-color: var(--violet); background: var(--violet); color: #160e21; }
.pricing-cyan:hover .pricing-action { border-color: var(--cyan); background: var(--cyan); color: #07151b; }
.pricing-card.disabled { opacity: .68; cursor: not-allowed; }
.pricing-card.disabled:hover { transform: none; border-color: var(--line); box-shadow: var(--shadow-soft); }
.pricing-card.disabled .pricing-action { color: var(--muted-2); }
.pricing-card.disabled:hover .pricing-action { border-color: rgb(255 255 255 / .16); background: rgb(255 255 255 / .04); color: var(--muted-2); }
.pricing-note { position: relative; z-index: 2; margin-top: 20px; display: flex; align-items: center; gap: 7px; color: var(--muted-2); font-size: 11px; }
.pricing-note svg { width: 14px; height: 14px; color: var(--green); }

/* workflow */
.workflow-section { position: relative; padding: var(--section-y) var(--pad-x); overflow: hidden; display: grid; grid-template-columns: minmax(0, .86fr) minmax(410px, .9fr); align-items: center; gap: clamp(50px, 8vw, 125px); background: var(--bg-0); }
.workflow-backdrop { position: absolute; inset: 0; background-position: 50% 20%; background-size: cover; opacity: .12; filter: saturate(.75); animation: backdrop-in .6s ease; pointer-events: none; }
.workflow-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-0) 13%, rgb(7 10 15 / .9) 47%, rgb(7 10 15 / .86) 100%); pointer-events: none; }
@keyframes backdrop-in { from { opacity: 0; } to { opacity: .12; } }
.workflow-copy, .picker-demo { position: relative; z-index: 2; }
.process-list { margin-top: 38px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { padding: 15px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr; gap: 10px; }
.process-list li > span { color: var(--orange); font-size: 10px; font-weight: 800; }
.process-list strong { font-size: 13px; }
.process-list p { margin-top: 2px; color: var(--muted-2); font-size: 12px; }
.picker-demo { width: 100%; border: 1px solid rgb(255 255 255 / .18); border-radius: var(--r-lg); overflow: hidden; background: rgb(12 18 28 / .88); box-shadow: var(--shadow); backdrop-filter: blur(22px); }
.picker-titlebar { min-height: 86px; padding: 15px 17px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 13px; background: rgb(255 255 255 / .035); }
.picker-avatar { width: 54px; height: 54px; border: 1px solid rgb(255 255 255 / .22); border-radius: 15px; overflow: hidden; }
.picker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.picker-titlebar div:nth-child(2) { display: grid; gap: 1px; }
.picker-titlebar small { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.picker-titlebar strong { font-size: 15px; }
.picker-titlebar span { color: var(--muted-2); font-size: 11px; }
.picker-titlebar button { width: 32px; height: 32px; padding: 0; border: 1px solid transparent; border-radius: 50%; display: grid; place-items: center; background: transparent; color: var(--muted); }
.picker-titlebar button:hover { border-color: var(--line); background: rgb(255 255 255 / .06); color: var(--ink); }
.picker-titlebar button svg { width: 16px; }
.picker-grid { padding: 15px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.picker-grid > button { position: relative; padding: 0; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--bg-3); text-align: left; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.picker-grid > button:hover, .picker-grid > button.selected { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 10px 24px rgb(0 0 0 / .25); }
.picker-grid img { width: 100%; height: 102px; object-fit: cover; }
.picker-grid span { min-height: 56px; padding: 8px 10px; display: block; }
.picker-grid strong { display: block; font-size: 10px; }
.picker-grid small { display: block; margin-top: 2px; color: var(--muted-2); font-size: 9px; }
.picker-grid i { position: absolute; top: 8px; right: 8px; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: #190b02; }
.picker-grid i svg { width: 12px; }
.picker-footer { min-height: 72px; padding: 13px 15px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgb(255 255 255 / .025); }
.picker-footer p { display: flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: 10px; }
.picker-footer p > span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.picker-footer p.ready { color: var(--green); }
.picker-footer p.ready > span { box-shadow: 0 0 0 5px rgb(123 240 165 / .12), 0 0 12px var(--green); }
.picker-footer .btn { min-height: 40px; padding-inline: 15px; font-size: 11px; }
.picker-footer .btn svg { width: 14px; }

/* companion */
.companion-section { padding: var(--section-y) var(--pad-x); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: clamp(45px, 8vw, 120px); background: var(--bg-1); }
.companion-visual { position: relative; min-width: 0; }
.companion-glow { position: absolute; z-index: 0; inset: 10% -4% -10%; border-radius: 50%; background: rgb(109 228 255 / .13); filter: blur(85px); }
.companion-shot { position: relative; z-index: 1; width: 100%; border: 1px solid var(--line-strong); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.companion-badge { position: absolute; z-index: 2; right: 20px; bottom: 18px; padding: 7px 10px; border: 1px solid rgb(123 240 165 / .32); border-radius: 999px; display: flex; align-items: center; gap: 7px; color: var(--green); background: rgb(7 12 16 / .68); font-size: 8px; font-weight: 800; letter-spacing: .13em; backdrop-filter: blur(13px); }
.companion-badge b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.behavior-list { margin-top: 35px; border-top: 1px solid var(--line); }
.behavior-list > div { padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 145px) 1fr; gap: 14px; }
.behavior-list dt { font-size: 12px; font-weight: 700; }
.behavior-list dd { color: var(--muted); font-size: 12px; }

/* closing */
.closing-section { padding: var(--section-y) var(--pad-x); display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); align-items: center; gap: 90px; background: radial-gradient(circle at 15% 20%, rgb(255 138 69 / .1), transparent 30%), var(--bg-2); }
.closing-copy { max-width: 620px; }
.closing-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(42px, 5.2vw, 72px); font-weight: 600; letter-spacing: -.07em; line-height: 1.02; }
.closing-copy > p:not(.section-kicker) { max-width: 460px; margin: 23px 0 28px; color: var(--muted); font-size: 14px; }
.closing-panel { padding: 7px; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgb(255 255 255 / .035); box-shadow: var(--shadow-soft); }
.closing-panel > div { padding: 18px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; }
.closing-panel > div:last-child { border-bottom: 0; }
.closing-panel span { width: 38px; height: 38px; border: 1px solid rgb(255 138 69 / .26); border-radius: 12px; display: grid; place-items: center; background: var(--orange-dim); color: var(--orange); }
.closing-panel svg { width: 17px; }
.closing-panel strong { font-size: 13px; }
.closing-panel small { grid-column: 2; margin-top: -8px; color: var(--muted-2); font-size: 11px; }

/* footer and mobile menu */
.site-footer { padding: 28px var(--pad-x); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; background: var(--bg-0); }
.site-footer .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.site-footer .brand-copy strong { font-size: 14px; }
.site-footer .brand-copy small { display: none; }
.site-footer p, .site-footer > span { color: var(--muted-2); font-size: 11px; }
.mobile-menu { position: fixed; z-index: 200; inset: 0; padding: 24px; display: flex; flex-direction: column; background: rgb(7 10 15 / .98); visibility: hidden; transform: translateY(-100%); transition: transform .38s cubic-bezier(.2,.75,.2,1), visibility .38s ease; }
.mobile-menu::before { content: ''; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgb(109 228 255 / .15) 1px, transparent 1px), linear-gradient(90deg, rgb(109 228 255 / .15) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(180deg, black, transparent 70%); pointer-events: none; }
.mobile-menu.open { visibility: visible; transform: none; }
.mobile-menu-head { position: relative; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-head > button { width: 43px; height: 43px; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; background: rgb(255 255 255 / .05); }
.mobile-menu-head svg { width: 18px; }
.mobile-menu-links { position: relative; margin-top: 65px; display: grid; }
.mobile-menu-links a { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; font-size: 26px; font-weight: 600; letter-spacing: -.04em; }
.mobile-menu-links a:first-child { border-top: 1px solid var(--line); }
.mobile-menu-links span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.mobile-menu-links svg { width: 18px; margin-left: auto; color: var(--muted-2); }
.mobile-menu-actions { position: relative; margin-top: auto; display: grid; gap: 10px; }
.mobile-menu-actions .btn { width: 100%; }

/* Optional .NET desktop runtime download */
.runtime-dialog-backdrop { position: fixed; z-index: 260; inset: 0; padding: 24px; display: grid; place-items: center; overflow: auto; background: rgb(3 6 10 / .82); backdrop-filter: blur(18px) saturate(120%); animation: runtime-backdrop-in .2s ease both; }
.runtime-dialog { position: relative; width: min(100%, 620px); overflow: hidden; border: 1px solid rgb(255 255 255 / .18); border-radius: 26px; padding: 28px; background: linear-gradient(145deg, rgb(18 27 40 / .98), rgb(8 13 21 / .99)); box-shadow: 0 42px 120px rgb(0 0 0 / .58), inset 0 1px rgb(255 255 255 / .08); animation: runtime-dialog-in .28s cubic-bezier(.2,.8,.2,1) both; }
.runtime-dialog-accent { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent); box-shadow: 0 0 22px rgb(109 228 255 / .48); }
.runtime-dialog-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.runtime-dialog-icon { width: 48px; height: 48px; border: 1px solid rgb(109 228 255 / .25); border-radius: 15px; display: grid; place-items: center; color: var(--cyan); background: rgb(109 228 255 / .09); }
.runtime-dialog-icon svg { width: 22px; height: 22px; }
.runtime-dialog-heading { display: grid; gap: 2px; }
.runtime-dialog-heading small { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.runtime-dialog-heading strong { font-size: 22px; letter-spacing: -.035em; }
.runtime-dialog-close { width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); background: rgb(255 255 255 / .035); }
.runtime-dialog-close:hover { border-color: var(--line-strong); color: #fff; background: rgb(255 255 255 / .08); }
.runtime-dialog-close svg { width: 17px; height: 17px; }
.runtime-dialog-lead { margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.runtime-dialog-notice { margin-top: 20px; padding: 15px 16px; border: 1px solid rgb(123 240 165 / .18); border-radius: 15px; display: flex; align-items: center; gap: 12px; background: rgb(123 240 165 / .065); }
.runtime-dialog-notice > svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--green); }
.runtime-dialog-notice div { display: grid; gap: 2px; }
.runtime-dialog-notice strong { font-size: 13px; }
.runtime-dialog-notice span { color: var(--muted); font-size: 11px; }
.runtime-dialog-steps { margin-top: 20px; padding: 0; display: grid; gap: 9px; list-style: none; }
.runtime-dialog-steps li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; display: grid; grid-template-columns: 32px 1fr; align-items: start; gap: 10px; background: rgb(255 255 255 / .025); }
.runtime-dialog-steps li > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.runtime-dialog-steps p { margin: 0; display: grid; gap: 2px; }
.runtime-dialog-steps strong { font-size: 12px; }
.runtime-dialog-steps small { color: var(--muted-2); font-size: 10px; line-height: 1.6; }
.runtime-dialog-actions { margin-top: 24px; display: grid; grid-template-columns: 1.35fr .8fr; gap: 10px; }
.runtime-dialog-actions .btn { width: 100%; }
@keyframes runtime-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes runtime-dialog-in { from { opacity: 0; transform: translateY(12px) scale(.975); } to { opacity: 1; transform: none; } }

/* admin-managed appearance background */
body.appearance-enabled::before { content: ''; position: var(--background-position, absolute); z-index: 0; inset: 0; background: var(--site-background, none) center / cover no-repeat; opacity: var(--overall-alpha, 1); filter: blur(var(--background-blur, 0)); pointer-events: none; }
body.appearance-enabled .site-root { position: relative; z-index: 1; }
body.appearance-enabled :is(.signal-strip, .product-section, .pricing-section, .workflow-section, .companion-section, .closing-section) { background-color: rgb(7 10 15 / var(--dark-alpha, .9)); }
body.appearance-enabled :is(.picker-demo, .product-shot, .pricing-card, .closing-panel) { border-radius: var(--component-radius, var(--r-lg)); }

@media (max-width: 1120px) {
  .hero-inner { grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr); gap: 0; }
  .hero-copy h1 { font-size: clamp(52px, 6vw, 82px); }
  .hero-visual { transform: scale(.92); transform-origin: center right; }
  .workflow-section, .companion-section { gap: 55px; }
}

@media (max-width: 920px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-download, .nav-manual, .nav-runtime { display: none; }
  .menu-trigger { display: grid; }
  .hero-section { min-height: 0; }
  .hero-inner { min-height: 0; padding-top: 142px; padding-bottom: 72px; grid-template-columns: 1fr; gap: 10px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { min-height: 570px; margin-top: 20px; transform: none; transform-origin: center; }
  .preview-window { width: min(100%, 590px); }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-item:nth-child(3) { border-left: 0; }
  .signal-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .product-stage { grid-template-columns: minmax(0, 1fr) minmax(260px, .75fr); }
  .pricing-intro { grid-template-columns: 1fr; gap: 35px; }
  .workflow-section, .companion-section, .closing-section { grid-template-columns: 1fr; }
  .workflow-copy, .companion-copy, .closing-copy { max-width: 680px; }
  .picker-demo { max-width: 570px; }
  .companion-visual { order: -1; }
  .closing-panel { max-width: 560px; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --section-y: 78px; }
  .site-header { top: 10px; }
  .site-nav { width: calc(100% - 2 * var(--gutter)); min-height: 60px; padding: 8px 9px 8px 13px; border-radius: 18px; }
  .brand-mark { width: 31px; height: 31px; border-radius: 9px; }
  .brand-copy strong { font-size: 15px; }
  .hero-inner { padding-top: 112px; padding-bottom: 60px; }
  .hero-copy h1 { font-size: clamp(52px, 15vw, 80px); }
  .hero-lead { margin-top: 22px; font-size: 14px; line-height: 1.8; }
  .hero-cta { margin-top: 27px; display: grid; }
  .hero-cta .btn { width: 100%; }
  .hero-footnote { gap: 9px 12px; font-size: 10px; }
  .hero-visual { min-height: 460px; margin-top: 4px; }
  .orbit-one { width: 420px; height: 190px; }
  .orbit-two { width: 340px; height: 150px; }
  .preview-window { width: calc(100% - 16px); border-radius: 18px; transform: none; }
  .preview-stack { width: calc(100% - 20px); height: 224px; border-radius: 16px; }
  .preview-stack-back { transform: translate(28px, -18px) rotate(4deg) scale(.92); }
  .preview-stack-front { transform: translate(-24px, 20px) rotate(-4deg) scale(.88); }
  .preview-image-wrap { height: 245px; }
  .preview-image-copy { left: 18px; bottom: 18px; }
  .preview-image-copy strong { font-size: 19px; }
  .preview-window-footer { min-height: 60px; padding: 10px 12px; gap: 6px; }
  .preview-window-footer small { font-size: 7px; }
  .preview-window-footer strong { font-size: 8px; }
  .preview-float { width: 104px; padding: 10px; }
  .preview-float-left { left: -4px; top: 122px; }
  .preview-float-right { right: -4px; bottom: 120px; }
  .preview-float small { font-size: 8px; }
  .preview-controls { right: 50%; bottom: 15px; transform: translateX(50%); }
  .preview-controls button { width: 40px; height: 26px; }
  .preview-tag-top { top: 24px; left: -3px; }
  .preview-tag-bottom { right: -2px; bottom: 48px; }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-item { min-height: 92px; padding: 15px 5px 15px 0; gap: 8px; }
  .signal-item + .signal-item { padding-left: 10px; }
  .signal-icon { width: 30px; height: 30px; border-radius: 9px; }
  .signal-icon svg { width: 14px; height: 14px; }
  .signal-item small { font-size: 7px; }
  .signal-item strong { font-size: 11px; }
  .section-heading h2 { font-size: clamp(40px, 12vw, 58px); }
  .section-description { font-size: 13px; }
  .product-section::before, .pricing-section::before { display: none; }
  .product-stage { margin-top: 42px; grid-template-columns: 1fr; }
  .product-shot-main { grid-row: auto; }
  .product-gallery-extra { grid-template-columns: 1fr; }
  .product-note { padding: 8px 2px 12px; }
  .product-shot figcaption { min-height: 58px; grid-template-columns: auto 1fr; }
  .product-shot figcaption svg { display: none; }
  .pricing-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .pricing-card { min-height: 405px; }
  .pricing-price { margin-top: 38px; }
  .community-offer { min-height: 190px; padding: 26px 24px; }
  .pricing-note { align-items: flex-start; }
  .workflow-section { gap: 35px; }
  .picker-grid { grid-template-columns: 1fr 1fr; padding: 10px; gap: 7px; }
  .picker-grid img { height: 74px; }
  .picker-grid span { min-height: 50px; padding: 6px 7px; }
  .picker-grid strong { font-size: 9px; }
  .picker-grid small { font-size: 8px; }
  .picker-footer { display: grid; gap: 10px; }
  .picker-footer .btn { width: 100%; }
  .companion-badge { right: 10px; bottom: 10px; font-size: 7px; }
  .behavior-list > div { grid-template-columns: 1fr; gap: 3px; }
  .closing-section { gap: 38px; }
  .closing-copy h2 { font-size: clamp(44px, 13vw, 62px); }
  .closing-copy .btn { width: 100%; }
  .closing-panel > div { padding: 14px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 11px; }
  .site-footer p { order: 3; }
  .mobile-menu { padding: 16px 18px 22px; }
  .mobile-menu-links { margin-top: 42px; }
  .mobile-menu-links a { font-size: 22px; }
  .runtime-dialog-backdrop { padding: 12px; align-items: end; }
  .runtime-dialog { padding: 22px 18px 18px; border-radius: 22px; }
  .runtime-dialog-heading strong { font-size: 19px; }
  .runtime-dialog-lead { margin-top: 19px; font-size: 13px; }
  .runtime-dialog-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .product-shot:hover, .pricing-card:hover, .picker-grid > button:hover, .btn-primary:hover { transform: none; }
}
