/* =========================================================
   eHandel · mHandel landing — tokens derived from Figma
   "Symfonia w chmurze" (node 49:900)
   ========================================================= */
:root {
  --ink: #141821;
  --ink-2: #515b6b;
  --muted: #6e7888;
  --divider: #e2e5eb;
  --pill: #eef0f4;
  --icon-bg: #edf0ee;
  --brand: #00dd00;
  --brand-ink: #0b2e18;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --surface: #ffffff;
  --bg-1: #fcfdfc;
  --bg-2: #f6f9f5;
  --bg-3: #edf3ec;
  --amber-bg: #fdf7e7;
  --amber-ink: #8a5a00;
  --shadow-card: 0 8px 10px rgba(20, 50, 30, .07);
  --shadow-float: 0 24px 48px -16px rgba(20, 50, 30, .22);
  --r-card: 24px;
  --r-md: 16px;
  --r-pill: 999px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Quicksand', 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; line-height: 1.12; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 32px); } }

/* ---------- background blobs ---------- */
.bg-blobs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.blob-a { width: 720px; height: 720px; left: -240px; top: -200px; background: radial-gradient(circle, rgba(0,221,0,.18), transparent 70%); animation: drift 22s var(--ease-soft) infinite alternate; }
.blob-b { width: 640px; height: 640px; right: -260px; top: 30vh; background: radial-gradient(circle, rgba(21,128,61,.16), transparent 70%); animation: drift 28s var(--ease-soft) infinite alternate-reverse; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(60px, 80px, 0) scale(1.08); } }

/* ---------- pills / buttons ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; line-height: 1.4; background: var(--pill); color: var(--ink-2); }
.pill-green { background: var(--green-100); color: var(--green-700); }
.pill-white { background: rgba(255,255,255,.92); color: var(--ink); backdrop-filter: blur(8px); }
.pill-outline-green { background: rgba(0,221,0,.12); color: var(--brand); border: 1px solid rgba(0,221,0,.35); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px; line-height: 1.2; border: 1px solid transparent; cursor: pointer; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .25s, color .25s, border-color .25s; will-change: transform; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .1s; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 8px 20px -8px rgba(0,221,0,.6); }
.btn-primary:hover { background: #1ae61a; box-shadow: 0 14px 28px -10px rgba(0,221,0,.7); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1f2531; box-shadow: 0 14px 28px -12px rgba(20,24,33,.5); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--divider); box-shadow: var(--shadow-card); }
.btn-ghost:hover { border-color: #cfd5de; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-700); }
.link-arrow::after { content: ''; width: 8px; height: 8px; border-right: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); transition: transform .3s var(--ease-out); }
.link-arrow:hover::after { transform: translateX(6px) rotate(45deg); }

.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); margin-bottom: 16px; }
.eyebrow-green { color: var(--brand); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; }
.nav-inner { width: min(var(--container), 100% - 48px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 12px 10px 16px; border-radius: var(--r-pill); background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 rgba(20,50,30,.04); transition: box-shadow .4s var(--ease-out), background-color .4s, transform .4s var(--ease-out); }
.nav.is-scrolled .nav-inner { transform: translateY(-6px); }
.nav.is-scrolled .nav-inner { background: rgba(255,255,255,.9); box-shadow: var(--shadow-card); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; background: transparent; display: grid; place-items: center; overflow: hidden; }
.brand-mark img { width: 24px; height: 25px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.brand-text small { font-size: 11px; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background-color .25s, color .25s; }
.nav-links a:hover, .nav-links a.is-active { background: var(--green-50); color: var(--green-700); }
.nav-cta { display: flex; gap: 8px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--divider); background: #fff; position: relative; cursor: pointer; }
.nav-burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), top .35s var(--ease-out); }
.nav-burger span:first-child { top: 17px; } .nav-burger span:last-child { top: 25px; }
.nav-burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.nav-mobile { display: none; width: min(var(--container), 100% - 48px); margin: 10px auto 0; padding: 12px; border-radius: var(--r-card); background: rgba(255,255,255,.95); backdrop-filter: blur(16px); box-shadow: var(--shadow-float); flex-direction: column; gap: 4px; transform-origin: top; transform: translateY(-8px) scale(.98); opacity: 0; pointer-events: none; transition: transform .35s var(--ease-out), opacity .3s; }
.nav-mobile a { padding: 12px 16px; border-radius: 14px; font-weight: 600; }
.nav-mobile a:not(.btn):hover { background: var(--green-50); }
.nav-mobile.is-open { transform: none; opacity: 1; pointer-events: auto; }
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-mobile { display: flex; }
}
@media (max-width: 640px) { .nav-inner, .nav-mobile { width: calc(100% - 32px); } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 156px 0 72px; min-height: 100svh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 68px); font-weight: 700; margin: 20px 0 22px; overflow-wrap: anywhere; }
.hero .accent-line { color: var(--green-700); }
.hero .accent { position: relative; white-space: nowrap; }
.hero .accent::after { content: ''; position: absolute; left: .02em; right: .02em; bottom: .2em; height: .14em; background: var(--brand); border-radius: 4px; opacity: .45; z-index: -1; transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease-out) .6s; }
.hero h1.is-visible .accent::after { transform: scaleX(1); }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); max-width: 560px; }
.lead strong { color: var(--ink); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-facts { display: flex; gap: 32px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--divider); flex-wrap: wrap; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts b { font-size: 32px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.hero-facts span { font-size: 13px; color: var(--muted); margin-top: 6px; }

.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-float); background: var(--ink); aspect-ratio: 1 / 1; max-height: 640px; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.4s var(--ease-out); }
.hero-visual.is-visible .hero-img-wrap img { transform: scale(1); }

.scroll-hint { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--divider); border-radius: 14px; display: none; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--green-600); animation: hint 1.8s var(--ease-soft) infinite; }
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (min-height: 800px) and (min-width: 960px) { .scroll-hint { display: block; } }

@media (max-width: 960px) {
  .hero { padding-top: 120px; min-height: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-visual { margin-inline: 0; }
  .hero-img-wrap { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .hero .accent { white-space: normal; }
  .pill { white-space: normal; max-width: 100%; }
  .hero-facts { gap: 20px; }
  .hero-facts b { font-size: 26px; }
}

/* ---------- trust strip ---------- */
.strip { padding: 12px 0 40px; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--divider); }
@media (max-width: 640px) { .strip-inner i { display: none; } .strip-inner { gap: 14px; } }

/* ---------- sections ---------- */
.section { padding: 112px 0; position: relative; }
.section-tight { padding-top: 32px; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 48px); margin-bottom: 18px; }
.section-head p { font-size: 17px; color: var(--ink-2); }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,.72); }
@media (max-width: 640px) { .section { padding: 72px 0; } .section-head { margin-bottom: 36px; } }

/* ---------- products ---------- */
.products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-3); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.product-card:hover .product-media img { filter: saturate(1.1); }
.product-media .pill { position: absolute; left: 20px; top: 20px; }
.product-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.product-body h3 { font-size: 28px; }
.product-body p { color: var(--ink-2); }
.price-line { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.price-line b { font-size: 30px; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.price-line span { font-size: 13px; color: var(--muted); }
@media (max-width: 800px) { .products { grid-template-columns: minmax(0, 1fr); } }

.note-card { margin-top: 24px; display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; border-radius: var(--r-md); background: var(--amber-bg); color: #4a3a12; }
.note-card p { font-size: 15px; }
.note-card p b { color: var(--ink); }
.note-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--amber-ink); color: var(--amber-ink); display: grid; place-items: center; font-weight: 700; font-size: 13px; margin-top: 2px; }

/* ---------- api ---------- */
.api-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.api-visual { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16 / 9; background: #fff; }
.api-visual img { width: 100%; height: 100%; object-fit: cover; }
.api-copy h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.api-copy p { color: var(--ink-2); font-size: 17px; }
.check-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list li::before { content: ''; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e18' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; }
@media (max-width: 900px) { .api-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(210px, auto); gap: 16px; }
.bento-item { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.bento-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.bento-item h3 { font-size: 20px; }
.bento-item p { font-size: 15px; color: var(--ink-2); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bi-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--icon-bg); color: var(--green-700); display: grid; place-items: center; margin-bottom: 6px; }
.bento-dark { background: linear-gradient(160deg, var(--ink) 0%, #12331f 60%, var(--green-700) 100%); color: #fff; justify-content: flex-start; }
.bento-dark h3 { font-size: 26px; margin-top: 8px; }
.bento-dark p { color: rgba(255,255,255,.78); }
.bento-dark .pill { align-self: flex-start; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 16px; }
.mini-tags li { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .bento { grid-template-columns: minmax(0, 1fr); } .bento-wide, .bento-tall { grid-column: auto; grid-row: auto; } }

/* ---------- accordion (eHandel) ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--surface); border-radius: 20px; box-shadow: var(--shadow-card); overflow: hidden; border: 1px solid transparent; transition: box-shadow .4s var(--ease-out), border-color .3s; }
.acc-item:hover { box-shadow: var(--shadow-float); }
.acc-item.is-open { border-color: var(--green-100); }
.acc-trigger { width: 100%; display: flex; align-items: center; gap: 18px; padding: 20px 24px; background: none; border: 0; text-align: left; cursor: pointer; color: var(--ink); }
.acc-icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--icon-bg); color: var(--green-700); display: grid; place-items: center; transition: background-color .3s, color .3s, transform .4s var(--ease-out); }
.acc-item.is-open .acc-icon { background: var(--brand); color: var(--brand-ink); }
.acc-title { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; line-height: 1.25; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.acc-title .pill { font-family: var(--font); font-size: 12px; padding: 4px 10px; }
.acc-chevron { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--pill); position: relative; transition: transform .45s var(--ease-out), background-color .3s; }
.acc-chevron::before { content: ''; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -6px 0 0 -4px; border-right: 2px solid var(--ink-2); border-bottom: 2px solid var(--ink-2); transform: rotate(45deg); }
.acc-item.is-open .acc-chevron { transform: rotate(180deg); background: var(--green-100); }
.acc-item.is-open .acc-chevron::before { border-color: var(--green-700); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-body { min-height: 0; overflow: hidden; }
.acc-body > p, .acc-body > .mini-tags { margin: 0 24px 22px 90px; }
.acc-body p { font-size: 16px; color: var(--ink-2); line-height: 1.65; opacity: 0; transform: translateY(-6px); transition: opacity .4s var(--ease-out) .1s, transform .4s var(--ease-out) .1s; }
.acc-item.is-open .acc-body p { opacity: 1; transform: none; }
.acc-body .mini-tags { padding-top: 0; margin-top: -8px; }
.acc-body .mini-tags li { background: var(--green-50); border-color: var(--green-100); color: var(--green-700); }
.acc-item-dark { background: linear-gradient(160deg, var(--ink) 0%, #12331f 60%, var(--green-700) 100%); color: #fff; }
.acc-item-dark .acc-trigger { color: #fff; }
.acc-item-dark .acc-icon { background: rgba(255,255,255,.1); color: var(--brand); }
.acc-item-dark.is-open .acc-icon { background: var(--brand); color: var(--brand-ink); }
.acc-item-dark .acc-chevron { background: rgba(255,255,255,.1); }
.acc-item-dark .acc-chevron::before { border-color: rgba(255,255,255,.8); }
.acc-item-dark.is-open .acc-chevron { background: rgba(0,221,0,.2); }
.acc-item-dark.is-open .acc-chevron::before { border-color: var(--brand); }
.acc-item-dark .acc-body p { color: rgba(255,255,255,.78); }
.acc-item-dark .acc-body .mini-tags li { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); color: #fff; }
.acc-item-dark.is-open { border-color: rgba(0,221,0,.35); }
@media (max-width: 640px) {
  .acc-trigger { gap: 14px; padding: 16px 16px; }
  .acc-icon { width: 42px; height: 42px; border-radius: 12px; }
  .acc-title { font-size: 17px; }
  .acc-body > p, .acc-body > .mini-tags { margin: 0 16px 18px 16px; }
}

/* ---------- mobile section ---------- */
.section-mobile { background: var(--surface); border-radius: 48px; margin-inline: 16px; box-shadow: var(--shadow-card); }
.mobile-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.mobile-copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 18px; }
.mobile-copy > p { font-size: 17px; color: var(--ink-2); }
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; margin-top: 32px; position: relative; }
.steps::before { content: ''; position: absolute; left: 15px; top: 16px; bottom: 16px; width: 2px; background: linear-gradient(var(--green-100), var(--green-500)); border-radius: 2px; }
.steps li { counter-increment: step; display: flex; align-items: center; gap: 16px; padding: 8px 0; position: relative; }
.steps li::before { content: counter(step); flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 2px solid var(--green-500); color: var(--green-700); font-size: 13px; font-weight: 700; display: grid; place-items: center; position: relative; z-index: 1; }
.steps li:last-child::before { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.steps b { font-weight: 600; }
.steps-caption { margin-top: 16px; font-size: 14px; color: var(--muted); }
.mobile-features { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.feature-row { display: flex; gap: 20px; padding: 22px 24px; border-radius: 20px; background: var(--bg-2); border: 1px solid transparent; transition: background-color .4s, border-color .4s, transform .5s var(--ease-out); }
.feature-row:hover { background: var(--green-50); border-color: var(--green-100); transform: translateX(6px); }
.fr-icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: #fff; color: var(--green-700); display: grid; place-items: center; box-shadow: var(--shadow-card); }
.feature-row h3 { font-size: 18px; margin-bottom: 4px; }
.feature-row p { font-size: 15px; color: var(--ink-2); }
@media (max-width: 960px) { .mobile-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; } .section-mobile { border-radius: 32px; margin-inline: 8px; } }

/* ---------- compare ---------- */
.compare { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--divider); }
.compare-table th { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); font-weight: 700; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; width: 210px; }
.compare-table tbody tr { transition: background-color .3s; }
.compare-table tbody tr:hover { background: var(--bg-1); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tr.hl td { background: var(--green-50); }
.compare-table td:first-child { font-weight: 500; }
.cell-text { display: inline-block; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 5px 12px; border-radius: var(--r-pill); background: var(--pill); line-height: 1.3; }
.compare-table i { display: inline-block; width: 26px; height: 26px; border-radius: 50%; }
.compare-table i.yes { background: var(--brand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e18' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E"); background-size: 15px; background-position: center; background-repeat: no-repeat; }
.compare-table i.no { background: var(--pill); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e7888' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E"); background-size: 15px; background-position: center; background-repeat: no-repeat; }
@media (max-width: 640px) { .compare-table th, .compare-table td { padding: 14px 14px; font-size: 14px; } .compare-table th:not(:first-child), .compare-table td:not(:first-child) { width: 92px; } .cell-text { white-space: normal; font-size: 11px; padding: 4px 8px; border-radius: 10px; max-width: 100%; } }

/* ---------- pricing ---------- */
.section-pricing { color: #fff; overflow: hidden; border-radius: 48px; margin-inline: 16px; background: linear-gradient(160deg, var(--ink) 0%, #12331f 100%); }
.pricing-bg { position: absolute; inset: -10% 0; z-index: 0; opacity: .8; }
.pricing-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s linear; will-change: transform; }
.section-pricing::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,33,.55), rgba(20,24,33,.35) 40%, rgba(18,51,31,.75)); z-index: 0; }
.section-pricing .container { position: relative; z-index: 1; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.plan { position: relative; min-width: 0; transition: transform .8s cubic-bezier(.22,1,.36,1), box-shadow .8s cubic-bezier(.22,1,.36,1); background: rgba(255,255,255,.96); color: var(--ink); border-radius: var(--r-card); padding: 32px 30px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-float); transition: transform .5s var(--ease-out); }
.plan:hover { transform: translateY(-6px); }
.plan-kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.plan h3 { font-size: 28px; }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.plan-price b { font-size: 44px; font-weight: 800; letter-spacing: -.035em; line-height: 1; white-space: nowrap; }
.plan-price span { font-size: 14px; color: var(--muted); }
.plan-unit { font-size: 13px; color: var(--muted); }
.plan-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.plan-list li::before { content: ''; flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 2px; background: var(--brand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e18' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.plan-featured { background: linear-gradient(160deg, #ffffff 0%, var(--green-50) 100%); border: 2px solid var(--brand); }
.plan-badge { position: absolute; top: -14px; left: 28px; padding: 6px 14px; border-radius: var(--r-pill); background: var(--brand); color: var(--brand-ink); font-size: 12px; font-weight: 700; }
.plan-outline { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); box-shadow: none; }
.plan-outline .plan-kicker, .plan-outline .plan-price span, .plan-outline .plan-unit { color: rgba(255,255,255,.65); }
.plan-list-muted li { color: rgba(255,255,255,.82); }
.plan-list-muted li::before { background: rgba(255,255,255,.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300dd00' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.plan-list-muted b { color: #fff; }
.pricing-note { margin-top: 28px; padding: 24px 28px; border-radius: var(--r-md); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.pricing-note h4 { font-size: 15px; margin-bottom: 10px; color: var(--brand); }
.pricing-note ul { display: flex; flex-direction: column; gap: 8px; }
.pricing-note li { font-size: 15px; color: rgba(255,255,255,.8); }
.pricing-note li b { color: #fff; }
@media (max-width: 960px) { .plans { grid-template-columns: minmax(0, 1fr); } .section-pricing { border-radius: 32px; margin-inline: 8px; } .plan-featured { order: -1; } }

/* ---------- calculator ---------- */
.calc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; }
.calc { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 36px; }
.calc h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 12px; }
.calc-intro { color: var(--ink-2); font-size: 15px; margin-bottom: 28px; }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: flex; justify-content: space-between; font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.calc-field label span { min-width: 32px; text-align: right; padding: 2px 10px; border-radius: var(--r-pill); background: var(--green-100); color: var(--green-700); font-weight: 700; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--green-500) var(--fill, 100%), var(--pill) var(--fill, 100%)); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--green-600); box-shadow: 0 4px 10px rgba(20,50,30,.2); cursor: grab; transition: transform .25s var(--ease-out); }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--green-600); box-shadow: 0 4px 10px rgba(20,50,30,.2); cursor: grab; }
.calc-toggle { display: flex; align-items: center; gap: 12px; font-weight: 500; cursor: pointer; margin-bottom: 28px; }
.calc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.switch { width: 46px; height: 26px; border-radius: 13px; background: var(--pill); position: relative; transition: background-color .3s; flex: none; }
.switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(20,50,30,.2); transition: transform .35s var(--ease-out); }
.calc-toggle input:checked + .switch { background: var(--brand); }
.calc-toggle input:checked + .switch::after { transform: translateX(20px); }
.calc-summary { border-radius: 20px; padding: 24px; background: linear-gradient(135deg, var(--ink) 0%, var(--green-700) 100%); color: #fff; }
.cs-head { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--brand); font-weight: 600; }
.cs-total { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 18px; }
.cs-total b { font-size: 48px; font-weight: 800; letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.cs-total small { font-size: 18px; color: rgba(255,255,255,.7); }
.cs-rows { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cs-rows > div { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,.75); }
.cs-rows dd { margin: 0; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.cs-rows > div.is-hidden { display: none; }
.cs-foot { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.55); }

.examples { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }
.examples h3 { font-size: 28px; margin-bottom: 8px; }
.example { background: var(--surface); border-radius: 20px; box-shadow: var(--shadow-card); padding: 22px 24px; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.example:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.ex-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.ex-head b { font-size: 26px; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.ex-head span { font-size: 13px; color: var(--muted); font-weight: 500; }
.ex-bar { display: flex; gap: 3px; height: 10px; margin: 14px 0 10px; border-radius: 5px; overflow: hidden; }
.ex-bar i { display: block; width: var(--w); height: 100%; transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease-out); }
.ex-bar i:nth-child(1) { background: var(--ink); }
.ex-bar i:nth-child(2) { background: var(--green-500); }
.ex-bar i:nth-child(3) { background: var(--green-100); }
.ex-bar i.multi { background: var(--brand); }
.example.is-visible .ex-bar i { transform: scaleX(1); }
.ex-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--muted); font-weight: 500; }
@media (max-width: 960px) { .calc-grid { grid-template-columns: minmax(0, 1fr); } .calc { padding: 28px 22px; } }

/* ---------- CTA ---------- */
.section-cta { padding-top: 24px; }
.cta-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 56px; border-radius: 32px; background: linear-gradient(135deg, var(--ink) 0%, #12331f 55%, var(--green-700) 100%); color: #fff; box-shadow: var(--shadow-float); position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; width: 520px; height: 520px; right: -200px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(0,221,0,.35), transparent 70%); pointer-events: none; }
.cta-copy h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 14px; }
.cta-copy p { color: rgba(255,255,255,.75); font-size: 17px; }
.cta-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.cta-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input { padding: 15px 18px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); color: #fff; outline: none; transition: border-color .3s, background-color .3s; }
.cta-form input::placeholder { color: rgba(255,255,255,.55); }
.cta-form input:focus { border-color: var(--brand); background: rgba(255,255,255,.16); }
.cta-sent { display: none; font-size: 14px; color: var(--brand); font-weight: 600; }
.cta-form.sent .cta-form-fields, .cta-form.sent .btn { display: none; }
.cta-form.sent .cta-sent { display: block; }
@media (max-width: 900px) { .cta-card { grid-template-columns: minmax(0, 1fr); padding: 36px 28px; gap: 28px; } .cta-form-fields { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { padding: 48px 0 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--divider); }
.footer p { font-size: 13px; color: var(--muted); max-width: 420px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 12px 20px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.footer nav a { transition: color .25s; }
.footer nav a:hover { color: var(--green-700); }

/* ---------- reveal animations ---------- */
.reveal, .reveal-scale { opacity: 0; will-change: transform, opacity; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: calc(var(--d, 0) * 1ms); }
.reveal { transform: translate3d(0, 28px, 0); }
.reveal-scale { transform: scale(.94) translate3d(0, 20px, 0); }
.reveal.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .blob, .scroll-hint span { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* =========================================================
   Cinematic opener (GSAP ScrollTrigger, pinned)
   ========================================================= */
.opener { position: relative; width: 100%; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; justify-content: center; perspective: 1500px; background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%); }
.opener-grain { position: absolute; inset: 0; pointer-events: none; z-index: 5; opacity: .06; mix-blend-mode: multiply; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>'); }
.opener-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .7; background-size: 60px 60px; background-image: linear-gradient(to right, rgba(20,24,33,.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(20,24,33,.06) 1px, transparent 1px); -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%); mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%); will-change: transform, filter, opacity; }

.opener-text, .opener-cta { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; will-change: transform, filter, opacity; }
.op-line { font-family: var(--font-display); font-weight: 700; margin: 0; font-size: clamp(40px, 7vw, 104px); line-height: 1.02; letter-spacing: -.02em; visibility: hidden; }
.op-line-1 { color: var(--ink); }
.op-line-2 { color: var(--green-700); padding-bottom: .08em; }
.op-hint { margin-top: 40px; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); visibility: hidden; }
.op-hint span { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(0,221,0,.18); }

.opener-cta { visibility: hidden; }
.opener-cta h2 { font-size: clamp(36px, 5.5vw, 76px); letter-spacing: -.02em; margin-bottom: 18px; color: var(--ink); }
.opener-cta p { max-width: 560px; color: var(--ink-2); font-size: clamp(16px, 1.3vw, 19px); margin-bottom: 36px; }
.opener-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.opener-stage { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none; perspective: 1500px; }
.op-card { position: relative; width: 85vw; height: 85vh; border-radius: 40px; overflow: hidden; pointer-events: auto; visibility: hidden; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(145deg, #1d6b3a 0%, #0b2e18 48%, var(--ink) 100%); border: 1px solid rgba(255,255,255,.05); box-shadow: 0 40px 100px -20px rgba(0,0,0,.55), 0 20px 40px -20px rgba(0,0,0,.45), inset 0 1px 2px rgba(255,255,255,.18), inset 0 -2px 4px rgba(0,0,0,.6); will-change: transform, width, height; }
.op-sheen { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 5; background: radial-gradient(800px circle at var(--mx, 50%) var(--my, 50%), rgba(0,221,0,.10) 0%, transparent 42%); mix-blend-mode: screen; }
.op-card-grid { position: relative; z-index: 1; width: 100%; height: 100%; max-width: 1240px; margin: 0 auto; padding: 24px 48px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 40px; }

.op-card-left { visibility: hidden; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.op-card-left h1 { font-size: clamp(34px, 3.9vw, 58px); line-height: 1.08; letter-spacing: -.02em; margin: 18px 0 20px; color: #fff; }
.op-card-left .accent-line { color: var(--brand); }
.op-card-left .accent { position: relative; white-space: nowrap; }
.op-lead { color: rgba(255,255,255,.74); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.6; max-width: 540px; }
.op-lead strong { color: #fff; }
.op-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.op-facts { display: flex; gap: 32px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.op-facts li { display: flex; flex-direction: column; }
.op-facts b { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #fff; }
.op-facts span { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; }

.op-mockup-wrap { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; perspective: 1000px; visibility: hidden; will-change: transform, opacity; }
.op-mockup-scale { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.op-phone { position: relative; width: 280px; height: 580px; border-radius: 48px; background: #111; box-shadow: inset 0 0 0 2px #52525b, inset 0 0 0 7px #000, 0 40px 80px -15px rgba(0,0,0,.8), 0 15px 25px -5px rgba(0,0,0,.6); transform-style: preserve-3d; will-change: transform; }
.op-hw { position: absolute; width: 3px; background: linear-gradient(90deg, #404040, #171717); border-radius: 3px 0 0 3px; box-shadow: -2px 0 5px rgba(0,0,0,.8); }
.op-hw-1 { left: -3px; top: 120px; height: 25px; } .op-hw-2 { left: -3px; top: 160px; height: 45px; } .op-hw-3 { left: -3px; top: 220px; height: 45px; } .op-hw-4 { right: -3px; top: 170px; height: 70px; border-radius: 0 3px 3px 0; }
.op-screen { position: absolute; inset: 7px; border-radius: 42px; overflow: hidden; background: #f6f9f5; box-shadow: inset 0 0 15px rgba(0,0,0,1); }
.op-glare { position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(110deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 45%); }
.op-island { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 76px; height: 22px; border-radius: 999px; background: #000; z-index: 5; }
.op-app { position: relative; height: 100%; padding: 50px 20px 32px; display: flex; flex-direction: column; gap: 12px; }
.op-app-figma { padding: 0; background: #f6f9f5; }
.op-screen-img { display: block; width: 100%; height: auto; margin-top: -11.03%; will-change: transform; }

.op-badge { position: absolute; z-index: 6; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 18px; visibility: hidden; background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.02)); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 25px 50px -12px rgba(0,0,0,.7), inset 0 1px 1px rgba(255,255,255,.2); will-change: transform, opacity; }
.op-badge-1 { top: 48px; left: -80px; } .op-badge-2 { bottom: 80px; right: -80px; }
.op-badge-icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, rgba(0,221,0,.25), rgba(0,221,0,.05)); border: 1px solid rgba(0,221,0,.3); color: var(--brand); }
.op-badge-icon svg { width: 18px; height: 18px; }
.op-badge b { display: block; font-size: 14px; letter-spacing: -.01em; }
.op-badge small { display: block; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }

@media (max-width: 1024px) {
  .op-card-grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr; padding: 20px 20px; gap: 0; justify-items: center; text-align: center; }
  .op-card-left { order: 1; align-items: center; }
  .op-card-left h1 { font-size: clamp(28px, 6vw, 40px); margin: 12px 0 12px; }
  .op-card-left .accent { white-space: normal; }
  .op-lead, .op-facts { display: none; }
  .op-actions { justify-content: center; margin-top: 16px; }
  .op-mockup-wrap { order: 2; height: 380px; }
  .op-mockup-scale { transform: scale(.6); }
  .op-badge-1 { left: -10px; top: 20px; } .op-badge-2 { right: -10px; bottom: 40px; }
}
@media (max-width: 640px) {
  .op-card { width: 92vw; height: 92vh; border-radius: 32px; }
  .op-mockup-wrap { height: 340px; }
  .op-mockup-scale { transform: scale(.55); }
}
@media (prefers-reduced-motion: reduce) {
  .opener { display: none; }
}

/* ---------- section motion (motion.js) ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; z-index: 60; pointer-events: none; }
.strip { overflow: hidden; }
.strip-inner { display: block; }
.strip-inner .strip-track { display: flex; width: max-content; will-change: transform; }
.strip-inner .strip-group { display: flex; align-items: center; gap: 22px; padding-right: 22px; white-space: nowrap; }
.strip-inner .strip-group i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--divider); flex: none; }
.w { display: inline-block; perspective: 600px; }
.wi { display: inline-block; transform-origin: 50% 100%; will-change: transform, opacity; }
.steps::before { transform: scaleY(0); transform-origin: top; transition: transform 1.4s var(--ease-out) .25s; }
.steps.is-visible::before { transform: scaleY(1); }
.cta-card { background-size: 160% 160%; }

.product-media img { transform: scale(1.12); }
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } .steps::before { transform: none; transition: none; } }
