/* VYNE public website. Tokens: /assets/brand/tokens.css. No external requests, no inline styles (strict CSP). */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  background: var(--bg); color: var(--text); font: 400 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--text); }
h1, h2, h3, h4 { margin: 0; color: var(--text); letter-spacing: -.02em; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
button { font: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }
.hidden, [hidden] { display: none !important; }
body.no-scroll { overflow: hidden; }
.pricing.single { grid-template-columns: minmax(0, 560px); }
.offscreen { position: fixed; left: -9999px; top: 0; opacity: 0; }
.muted { color: var(--muted); }
.wrap { width: min(1200px, 100% - 48px); margin-inline: auto; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: var(--accent); color: #fff; }
.skip:focus { top: 12px; }

/* ───── buttons ───── */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 22px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 650; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
  cursor: pointer; user-select: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, #3b82f6, #2563eb);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .18), 0 8px 24px -10px rgb(37 99 235 / .9);
}
.btn-primary:hover { color: #fff; background: linear-gradient(180deg, #4b8df8, #2f6df0); box-shadow: inset 0 1px 0 rgb(255 255 255 / .22), 0 12px 32px -10px rgb(59 130 246 / .95); }
.btn-ghost { color: var(--text); background: rgb(255 255 255 / .03); border-color: var(--border-strong); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); background: rgb(255 255 255 / .06); }
.btn-sm { --h: 40px; padding: 0 16px; font-size: 13px; border-radius: 10px; }
.btn-lg { --h: 56px; padding: 0 28px; font-size: 15px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; box-shadow: none; transform: none; }
.btn .spin { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgb(255 255 255 / .35); border-top-color: #fff; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ───── navigation ───── */
.notice-bar { padding: 10px 16px; text-align: center; font-size: 14px; color: var(--text); background: linear-gradient(90deg, #0f1b3d, #172554 50%, #0f1b3d); border-bottom: 1px solid var(--border); }
.nav { position: sticky; top: 0; z-index: 40; transition: background-color .25s, border-color .25s, backdrop-filter .25s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgb(8 10 15 / .78); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom-color: rgb(255 255 255 / .06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-name { font-weight: 800; letter-spacing: .22em; font-size: 17px; }
/* The official VYNE deer logo: transparent PNG on the dark background, never boxed, never stretched. */
.brand img, .logo-img { object-fit: contain; filter: drop-shadow(0 0 10px rgb(56 189 248 / .25)); }
.auth-logo { display: block; width: 88px; height: 88px; margin: 0 auto 14px; object-fit: contain; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 10px; color: var(--text-2); font-size: 15px; font-weight: 500; transition: color .15s, background-color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); background: rgb(255 255 255 / .05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-strong); background: rgb(255 255 255 / .03); padding: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.menu-btn span { width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.drawer { position: fixed; inset: 72px 0 0; z-index: 39; background: rgb(8 10 15 / .97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); animation: fade .2s var(--ease); }
.drawer-links { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 32px; }
.drawer-links a:not(.btn) { padding: 16px 12px; font-size: 20px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.drawer-links .btn { margin-top: 20px; }
@keyframes fade { from { opacity: 0; } }

/* ───── sections ───── */
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--accent-2); font-size: 13px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.section-head h2, .h2 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 750; }
.section-head p, .lead { margin-top: 18px; font-size: clamp(17px, 1.5vw, 19px); color: var(--text-2); }
.grad { background: linear-gradient(100deg, #93c5fd 0%, #60a5fa 35%, #818cf8 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.divider-top::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }

/* ───── hero ───── */
.hero { position: relative; overflow: hidden; padding: 72px 0 104px; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 900px; z-index: -2;
  background:
    radial-gradient(600px 380px at 72% 30%, rgb(37 99 235 / .28), transparent 70%),
    radial-gradient(520px 340px at 22% 10%, rgb(129 140 248 / .16), transparent 70%),
    radial-gradient(900px 500px at 50% 0%, #0f1b3d, transparent 72%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgb(255 255 255 / .035) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 8px; border-radius: 999px; background: rgb(255 255 255 / .04); border: 1px solid var(--border-strong); color: var(--text-2); font-size: 13.5px; font-weight: 500; }
.pill b { white-space: nowrap; flex: none; padding: 2px 8px; border-radius: 999px; font-size: 11px; letter-spacing: .08em; color: #fff; background: linear-gradient(90deg, var(--accent), #4f46e5); }
.hero h1 { margin-top: 24px; font-size: clamp(40px, 4.4vw, 62px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; }
.hero .lead { max-width: 560px; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 36px; padding: 0; list-style: none; color: var(--text-2); font-size: 14.5px; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.tick { width: 18px; height: 18px; flex: none; color: var(--success); }
.hero-price { margin-top: 18px; color: var(--muted); font-size: 14px; min-height: 22px; }
.hero-price strong { color: var(--text); font-weight: 650; }

/* ───── hero artwork: the official VYNE banner (16:9, never cropped) ───── */
.hero-art { position: relative; margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid rgb(96 165 250 / .22);
  box-shadow: 0 40px 90px -30px rgb(0 0 0 / .9), 0 0 70px -20px rgb(37 99 235 / .55); background: #050813; }
.hero-art img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }

/* ───── app mock-up (a drawing of the real client layout, built from the same tokens) ───── */
.mock-stage { position: relative; perspective: 1600px; }
.mock-stage::before { content: ""; position: absolute; inset: 8% 4% -6%; z-index: -1; border-radius: 40px; background: radial-gradient(closest-side, rgb(37 99 235 / .45), transparent); filter: blur(30px); }
.app {
  --mock-radius: 16px;
  display: grid; grid-template-columns: 172px 1fr; overflow: hidden;
  border-radius: var(--mock-radius); border: 1px solid rgb(255 255 255 / .09);
  background: var(--surface); box-shadow: 0 40px 90px -30px rgb(0 0 0 / .9), 0 0 0 1px rgb(0 0 0 / .6);
  transform: rotateY(-7deg) rotateX(3deg); transform-origin: 60% 50%; transition: transform .6s var(--ease);
  font-size: 12px; line-height: 1.4; user-select: none;
}
.mock-stage:hover .app { transform: rotateY(-3deg) rotateX(1.5deg); }
.app-side { padding: 14px 10px; background: #0a0d12; border-right: 1px solid var(--border); }
.app-logo { display: flex; align-items: center; gap: 8px; padding: 2px 6px 14px; font-weight: 800; letter-spacing: .18em; font-size: 12px; }
.app-logo img { width: 20px; height: 20px; }
.app-nav { display: flex; flex-direction: column; gap: 2px; }
.app-nav span { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 8px; color: var(--text-2); font-weight: 500; }
.app-nav span i { width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid currentColor; opacity: .7; }
.app-nav span.on { color: #fff; background: linear-gradient(90deg, rgb(37 99 235 / .32), rgb(37 99 235 / .08)); box-shadow: inset 2px 0 0 var(--accent-hover); }
.app-main { padding: 16px 18px 18px; background: linear-gradient(180deg, #0d1118, #0b0f16); min-width: 0; }
.app-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.app-top h4 { font-size: 16px; letter-spacing: -.01em; }
.app-top p { color: var(--muted); font-size: 11px; }
.badge-lic { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 600; color: #86efac; background: rgb(34 197 94 / .12); border: 1px solid rgb(34 197 94 / .3); }
.badge-lic::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.app-hero { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 14px; border-radius: 12px; border: 1px solid var(--border); background: linear-gradient(120deg, #111a2e, #0f1522); }
.app-hero small { color: var(--muted); display: block; margin-bottom: 2px; }
.app-hero strong { font-size: 14px; }
.app-start { padding: 9px 16px; border-radius: 9px; font-weight: 700; letter-spacing: .08em; font-size: 11px; color: #fff; background: linear-gradient(180deg, #3b82f6, #2563eb); box-shadow: 0 6px 18px -6px rgb(37 99 235 / .9); }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0; }
.app-stat { padding: 10px 12px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); }
.app-stat small { color: var(--muted); display: block; }
.app-stat b { font-size: 13px; }
.meter { height: 4px; margin-top: 8px; border-radius: 4px; background: rgb(255 255 255 / .06); overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.meter .w30 { width: 30%; } .meter .w42 { width: 42%; } .meter .w64 { width: 64%; } .meter .w78 { width: 78%; }
.app-list { border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.app-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border); background: rgb(255 255 255 / .012); }
.app-row:last-child { border-bottom: 0; }
.app-row span { color: var(--text-2); }
.st { font-size: 10px; font-weight: 650; padding: 2px 8px; border-radius: 999px; }
.st-ok { color: #86efac; background: rgb(34 197 94 / .12); }
.st-live { color: #93c5fd; background: rgb(59 130 246 / .14); }
.mock-caption { margin-top: 18px; text-align: center; color: var(--muted); font-size: 12.5px; }

/* ───── trust strip ───── */
.strip { border-block: 1px solid var(--border); background: linear-gradient(180deg, rgb(255 255 255 / .015), transparent); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; border-left: 1px solid var(--border); }
.strip-item:first-child { border-left: 0; padding-left: 0; }
.strip-item svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--accent-2); }
.strip-item b { display: block; font-size: 15px; }
.strip-item span { color: var(--muted); font-size: 14px; }

/* ───── feature cards ───── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative; padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgb(255 255 255 / .03), rgb(255 255 255 / .01)), var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-1);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px; color: #bfdbfe;
  background: linear-gradient(145deg, rgb(59 130 246 / .28), rgb(79 70 229 / .12)); border: 1px solid rgb(96 165 250 / .28);
}
.icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; font-weight: 650; letter-spacing: -.01em; }
.card p { margin-top: 10px; color: var(--text-2); font-size: 15px; }
.card .kicker { display: block; margin-bottom: 8px; color: var(--accent-2); font-size: 12px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

/* ───── showcase ───── */
.showcase { display: flex; flex-direction: column; gap: 120px; }
.show-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.show-row.flip .show-copy { order: 2; }
.show-copy h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 750; }
.show-copy p { margin-top: 16px; color: var(--text-2); font-size: 17px; }
.checks { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.checks li { display: flex; gap: 12px; color: var(--text-2); }
.checks li svg { margin-top: 3px; }
.panel {
  position: relative; padding: 22px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #111a2e, #0c1119 60%); border: 1px solid rgb(255 255 255 / .08); box-shadow: var(--shadow-2);
}
.panel::before { content: ""; position: absolute; inset: -40% -20% auto auto; width: 70%; height: 90%; background: radial-gradient(closest-side, rgb(59 130 246 / .22), transparent); }
.panel-title { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; color: var(--text-2); font-weight: 600; }
.panel-title b { color: var(--text); font-size: 15px; }
.panel .app-list, .panel .app-row { position: relative; font-size: 13px; }
.cols-gap { margin-top: 12px; position: relative; }
.center-actions { justify-content: center; margin-top: 36px; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.tile { padding: 14px; border-radius: 12px; background: rgb(255 255 255 / .03); border: 1px solid var(--border); }
.tile small { display: block; color: var(--muted); font-size: 12px; }
.tile b { display: block; margin-top: 4px; font-size: 18px; }
.chart { display: flex; align-items: flex-end; gap: 4px; height: 70px; margin-top: 12px; }
.chart i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--accent-2), rgb(37 99 235 / .4)); opacity: .85; }
.h20 { height: 20%; } .h28 { height: 28%; } .h35 { height: 35%; } .h40 { height: 40%; } .h46 { height: 46%; } .h52 { height: 52%; } .h60 { height: 60%; } .h66 { height: 66%; } .h74 { height: 74%; } .h82 { height: 82%; }
.swatches { display: flex; gap: 10px; margin-top: 14px; position: relative; }
.swatch { width: 44px; height: 44px; border-radius: 12px; border: 2px solid rgb(255 255 255 / .1); }
.swatch.on { border-color: #fff; box-shadow: 0 0 0 3px rgb(59 130 246 / .5); }
.sw1 { background: linear-gradient(135deg, #2563eb, #38bdf8); } .sw2 { background: linear-gradient(135deg, #7c3aed, #ec4899); } .sw3 { background: linear-gradient(135deg, #059669, #22d3ee); } .sw4 { background: linear-gradient(135deg, #f59e0b, #ef4444); } .sw5 { background: linear-gradient(135deg, #334155, #0f172a); }
.slider { position: relative; height: 6px; margin-top: 18px; border-radius: 6px; background: rgb(255 255 255 / .08); }
.slider i { position: absolute; inset: 0 38% 0 0; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.slider b { position: absolute; left: 62%; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; background: #fff; box-shadow: 0 2px 8px rgb(0 0 0 / .5); }
.timeline-mini { position: relative; display: grid; gap: 10px; }
.tl { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 12px; background: rgb(255 255 255 / .03); border: 1px solid var(--border); font-size: 13.5px; }
.tl .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.tl span { color: var(--muted); font-size: 12.5px; }
.tl code { font-family: var(--mono); font-size: 12px; color: var(--text-2); }

/* ───── steps ───── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--surface); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 18px; font-size: 14px; font-weight: 750; letter-spacing: .12em; color: var(--accent-2); }
.step h3 { font-size: 18px; }
.step p { margin-top: 8px; color: var(--text-2); font-size: 15px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 38px; right: -18px; width: 18px; height: 1px; background: var(--border-strong); }

/* ───── pricing ───── */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 360px)); justify-content: center; gap: 22px; }
.price-card {
  position: relative; display: flex; flex-direction: column; padding: 34px 30px 30px; border-radius: 24px;
  background: linear-gradient(180deg, rgb(255 255 255 / .04), rgb(255 255 255 / .01)), var(--surface);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-2);
}
.price-card.featured { border-color: rgb(96 165 250 / .55); box-shadow: var(--shadow-glow); background: linear-gradient(180deg, rgb(37 99 235 / .14), rgb(37 99 235 / .02) 55%), var(--surface); }
.price-card .flag { position: absolute; top: -12px; left: 30px; padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: linear-gradient(90deg, var(--accent), #4f46e5); }
.price-card h3 { font-size: 20px; }
.price-card .sub { margin-top: 4px; color: var(--muted); font-size: 14.5px; }
.amount { display: flex; align-items: baseline; gap: 8px; margin: 26px 0 4px; }
.amount b { font-size: 54px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.amount s { color: var(--muted); font-size: 18px; }
.amount span { color: var(--text-2); font-size: 16px; }
.per { color: var(--muted); font-size: 14px; min-height: 22px; }
.price-card .small-note { margin: -14px 0 18px; min-height: 0; font-size: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--text-2); background: rgb(255 255 255 / .04); border: 1px solid var(--border-strong); }
.chip.good { color: #86efac; background: rgb(34 197 94 / .1); border-color: rgb(34 197 94 / .3); }
.chip.blue { color: #93c5fd; background: rgb(59 130 246 / .1); border-color: rgb(59 130 246 / .3); }
.price-card ul { display: grid; gap: 12px; margin: 22px 0 28px; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--border); flex: 1; }
.price-card li { display: flex; gap: 10px; color: var(--text-2); font-size: 15px; }
.price-card .btn { margin-top: auto; }
.unavailable { margin-top: auto; padding: 14px 16px; border-radius: 12px; text-align: center; font-size: 14px; color: var(--text-2); background: rgb(255 255 255 / .03); border: 1px dashed var(--border-strong); }
.pricing-note { margin: 34px auto 0; max-width: 760px; text-align: center; color: var(--muted); font-size: 14px; }
.state { max-width: 560px; margin: 0 auto; padding: 40px 32px; text-align: center; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); }
.state h3 { font-size: 20px; }
.state p { margin-top: 10px; color: var(--text-2); }
.state .btn { margin-top: 22px; }
.state-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 16px; color: #fcd34d; background: rgb(245 158 11 / .12); border: 1px solid rgb(245 158 11 / .3); }
.state-icon.bad { color: #fca5a5; background: rgb(239 68 68 / .12); border-color: rgb(239 68 68 / .3); }
.state-icon.good { color: #86efac; background: rgb(34 197 94 / .12); border-color: rgb(34 197 94 / .3); }
.state-icon.info { color: #93c5fd; background: rgb(59 130 246 / .12); border-color: rgb(59 130 246 / .3); }
.state-icon svg { width: 24px; height: 24px; }
.skeleton { position: relative; overflow: hidden; border-radius: 24px; min-height: 480px; background: var(--surface); border: 1px solid var(--border); }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgb(255 255 255 / .04), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }

/* ───── FAQ ───── */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border-radius: 16px; border: 1px solid var(--border); background: var(--surface); transition: border-color .2s, background-color .2s; }
.faq details[open] { border-color: var(--border-hover); background: var(--surface-2); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--text-2); border-bottom: 2px solid var(--text-2); transform: rotate(45deg) translate(-2px, -2px); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq .answer { padding: 0 24px 22px; color: var(--text-2); }
.faq .answer p + p { margin-top: 10px; }

/* ───── CTA band ───── */
.cta { position: relative; overflow: hidden; padding: 64px; border-radius: 28px; text-align: center; isolation: isolate; border: 1px solid rgb(96 165 250 / .28); background: linear-gradient(135deg, #0f1b3d, #111a36 50%, #1a1745); }
.cta::before { content: ""; position: absolute; inset: auto -10% -60% -10%; height: 120%; z-index: -1; background: radial-gradient(closest-side, rgb(59 130 246 / .35), transparent); }
.cta h2 { font-size: clamp(30px, 4vw, 46px); }
.cta p { margin: 16px auto 0; max-width: 560px; color: var(--text-2); font-size: 18px; }
.cta .hero-actions { justify-content: center; }

/* ───── page header (inner pages) ───── */
.page-head { position: relative; padding: 64px 0 40px; text-align: center; isolation: isolate; }
.page-head::before { content: ""; position: absolute; inset: -40% 0 auto; height: 520px; z-index: -1; background: radial-gradient(640px 300px at 50% 20%, rgb(37 99 235 / .22), transparent 70%); }
.page-head h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -.03em; }
.page-head p { margin: 18px auto 0; max-width: 640px; color: var(--text-2); font-size: 18px; }

/* ───── forms, checkout, order ───── */
.checkout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: 28px; align-items: start; }
.box { padding: 30px; border-radius: 22px; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-1); }
.box + .box { margin-top: 20px; }
.box h2 { font-size: 20px; }
.box .hint { margin-top: 6px; color: var(--muted); font-size: 14px; }
.stepper { display: flex; gap: 8px; margin-bottom: 26px; padding: 0; list-style: none; flex-wrap: wrap; }
.stepper li { display: flex; align-items: center; gap: 8px; padding: 7px 14px 7px 8px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted); border: 1px solid var(--border); }
.stepper li b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; font-size: 12px; background: rgb(255 255 255 / .06); }
.stepper li.on { color: var(--text); border-color: rgb(96 165 250 / .5); }
.stepper li.on b { background: var(--accent); color: #fff; }
.stepper li.done b { background: var(--success); color: #04120a; }
.field { display: grid; gap: 8px; margin-top: 22px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); }
.field .opt { color: var(--muted); font-weight: 500; }
.input {
  width: 100%; height: 52px; padding: 0 16px; border-radius: 12px; font: inherit; font-size: 16px; color: var(--text);
  background: var(--input); border: 1px solid var(--border-strong); transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: var(--disabled); }
.input:hover { border-color: var(--border-hover); }
.input:focus { outline: none; border-color: var(--accent-hover); box-shadow: var(--focus); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.field .err { color: #fca5a5; font-size: 13.5px; min-height: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; color: var(--text-2); font-size: 14.5px; cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; flex: none; accent-color: var(--accent); }
.disclose { margin-top: 18px; }
.disclose summary { cursor: pointer; color: var(--link); font-size: 14.5px; font-weight: 600; list-style: none; }
.disclose summary::-webkit-details-marker { display: none; }
.pay-methods { display: grid; gap: 12px; margin-top: 26px; }
.ltc-box { padding: 18px; border-radius: 14px; background: rgb(255 255 255 / .02); border: 1px solid var(--border-strong); }
.ltc-head { display: flex; align-items: center; gap: 12px; }
.ltc-mark svg { width: 22px; height: 22px; stroke-width: 2.6; }
.ltc-head b { display: block; font-size: 16px; }
.ltc-head div span { color: var(--muted); font-size: 13.5px; }
.ltc-mark { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #3d8fd9, #345d9d); box-shadow: 0 6px 18px -8px rgb(52 93 157 / .9); }
.ltc-steps { display: grid; gap: 10px; margin: 16px 0 0; padding-left: 20px; color: var(--text-2); font-size: 14.5px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-2); font-size: 15px; }
.summary-row b { color: var(--text); font-weight: 600; text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; }
.summary-total span { color: var(--text-2); }
.summary-total b { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.secure { display: flex; gap: 10px; margin-top: 20px; padding: 14px; border-radius: 12px; font-size: 13.5px; color: var(--text-2); background: rgb(255 255 255 / .02); border: 1px solid var(--border); }
.secure svg { width: 18px; height: 18px; flex: none; color: var(--accent-2); margin-top: 1px; }
.alert { display: flex; gap: 12px; padding: 16px 18px; border-radius: 14px; font-size: 15px; border: 1px solid; }
.alert svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.alert.warn { color: #fde68a; background: rgb(245 158 11 / .08); border-color: rgb(245 158 11 / .3); }
.alert.bad { color: #fecaca; background: rgb(239 68 68 / .08); border-color: rgb(239 68 68 / .3); }
.alert.info { color: #bfdbfe; background: rgb(59 130 246 / .08); border-color: rgb(59 130 246 / .3); }
.alert.good { color: #bbf7d0; background: rgb(34 197 94 / .08); border-color: rgb(34 197 94 / .3); }
.alert + .box, .box + .alert, .alert + .alert { margin-top: 18px; }
.narrow { max-width: 760px; margin-inline: auto; }
.mb { margin-bottom: 28px; display: grid; gap: 12px; }
.login-box h2 { font-size: 24px; margin-top: 4px; }
.login-box .hint { font-size: 15px; margin-top: 10px; }
.signed-as { margin-top: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; color: var(--text-2); background: rgb(59 130 246 / .06); border: 1px solid rgb(59 130 246 / .2); }
.messages:not(:empty) { display: grid; gap: 12px; margin-bottom: 18px; }
.box h2.mt { margin-top: 32px; }
.dl-main h3 { font-size: 16px; margin-bottom: 8px; }
.status-hero .state-icon { width: 64px; height: 64px; border-radius: 20px; }
.status-hero .state-icon svg { width: 30px; height: 30px; }
.status-hero + .box, .status-hero + .alert { margin-top: 28px; }
.status-hero { text-align: center; padding: 16px 0 8px; }
.status-hero h1 { margin-top: 18px; font-size: clamp(30px, 4vw, 44px); }
.status-hero p { margin-top: 12px; color: var(--text-2); font-size: 17px; }
.license {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding: 18px 20px; border-radius: 14px;
  background: var(--input); border: 1px solid rgb(96 165 250 / .5); box-shadow: var(--shadow-glow);
}
.license code { font-family: var(--mono); font-size: clamp(16px, 2.4vw, 22px); letter-spacing: .06em; color: #e0ecff; word-break: break-all; user-select: all; }
.timeline { display: grid; gap: 0; margin-top: 8px; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 12px 0; color: var(--muted); }
.timeline li::before { content: ""; position: absolute; left: 13px; top: 38px; bottom: -10px; width: 2px; background: var(--border); }
.timeline li:last-child::before { display: none; }
.timeline li i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--border-strong); background: var(--bg); }
.timeline li.done { color: var(--text); }
.timeline li.done i { border-color: var(--success); background: rgb(34 197 94 / .15); }
.timeline li.done i::after { content: ""; width: 7px; height: 11px; margin-top: -3px; border-right: 2px solid var(--success); border-bottom: 2px solid var(--success); transform: rotate(45deg); }
.timeline li.now { color: var(--text); }
.timeline li.now i { border-color: var(--accent-hover); }
.timeline li.now i::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-hover); animation: pulse 1.4s infinite; }
.timeline li.fail i { border-color: var(--danger); background: rgb(239 68 68 / .12); }
.timeline li small { display: block; color: var(--muted); font-size: 13px; }
@keyframes pulse { 50% { transform: scale(.6); opacity: .5; } }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ───── download ───── */
.dl { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.dl-main { display: flex; flex-direction: column; gap: 22px; padding: 36px; border-radius: 24px; border: 1px solid rgb(96 165 250 / .35); background: linear-gradient(160deg, #111a2e, #0c1119 70%); box-shadow: var(--shadow-glow); }
.dl-head { display: flex; align-items: center; gap: 18px; }
.dl-head img { width: 64px; height: 64px; }
.dl-head h2 { font-size: 26px; }
.meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.meta div { padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border); background: rgb(255 255 255 / .02); }
.meta small { display: block; color: var(--muted); font-size: 12.5px; }
.meta b { display: block; margin-top: 4px; font-size: 16px; }
.hash { font-family: var(--mono); font-size: 12.5px; color: var(--text-2); word-break: break-all; padding: 12px 14px; border-radius: 12px; background: var(--input); border: 1px solid var(--border); }
.notes { white-space: pre-line; color: var(--text-2); font-size: 15px; }
.req { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.req li { display: flex; gap: 12px; color: var(--text-2); font-size: 15px; }
.req li b { color: var(--text); display: block; }
ol.install { display: grid; gap: 14px; margin: 16px 0 0; padding: 0; list-style: none; counter-reset: i; }
ol.install li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; color: var(--text-2); counter-increment: i; }
ol.install li::before { content: counter(i); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; font-weight: 700; font-size: 14px; color: #bfdbfe; background: rgb(59 130 246 / .14); border: 1px solid rgb(59 130 246 / .3); }

/* ───── legal ───── */
.prose { max-width: 780px; margin: 0 auto; color: var(--text-2); font-size: 16.5px; }
.prose h2 { margin: 40px 0 12px; font-size: 22px; }
.prose p, .prose ul { margin: 0 0 14px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.review { margin-bottom: 32px; }

/* ───── customer area ───── */
.nav-auth, .drawer-auth { display: contents; }
.nav-user { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 12px 0 6px; border-radius: 10px; color: var(--text); font-weight: 600; font-size: 14px; border: 1px solid var(--border-strong); background: rgb(255 255 255 / .03); }
.nav-user:hover { color: var(--text); border-color: var(--border-hover); }
.avatar { flex: none; border-radius: 50%; object-fit: cover; background: var(--elevated); }
.avatar-text { display: inline-grid; place-items: center; width: 28px; height: 28px; font-weight: 700; font-size: 13px; color: #dbeafe; background: linear-gradient(145deg, #1e40af, #312e81); }
.dash-user .avatar-text { width: 40px; height: 40px; font-size: 16px; }
.acct .avatar-text { width: 64px; height: 64px; font-size: 24px; }
.dash { padding: 32px 0 64px; min-height: 60vh; }
.dash-shell { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: 28px; align-items: start; }
.dash-side { position: sticky; top: 92px; padding: 14px; border-radius: 16px; border: 1px solid var(--border); background: #0a0d12; }
.dash-user { display: flex; align-items: center; gap: 12px; padding: 6px 6px 16px; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.dash-user b { display: block; font-size: 15px; }
.dash-user span { color: var(--muted); font-size: 13px; }
.dnav { display: grid; gap: 2px; }
.dnav-link { display: flex; align-items: center; gap: 11px; padding: 10px; border-radius: 10px; color: var(--text-2); font-weight: 500; font-size: 14.5px; transition: background-color .15s, color .15s; }
.dnav-link svg { width: 18px; height: 18px; opacity: .85; }
.dnav-link:hover { color: var(--text); background: rgb(255 255 255 / .04); }
.dnav-link[aria-current="page"] { color: #fff; background: linear-gradient(90deg, rgb(37 99 235 / .28), rgb(37 99 235 / .06)); box-shadow: inset 2px 0 0 var(--accent-hover); }
.dash-main { display: grid; gap: 18px; min-width: 0; animation: fade .2s var(--ease); }
.dash-main:focus { outline: none; }
.dash-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 14px; }
.dash-head h1 { font-size: clamp(24px, 3vw, 30px); }
.dash-head p { margin-top: 6px; color: var(--text-2); }
.row-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.dgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.dgrid.three { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); margin-bottom: 18px; }
.dcard { display: grid; gap: 6px; padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, rgb(255 255 255 / .025), transparent), var(--surface); min-width: 0; }
.dcard-top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.dcard-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #bfdbfe; background: rgb(59 130 246 / .12); border: 1px solid rgb(59 130 246 / .22); }
.dcard-icon svg { width: 16px; height: 16px; }
.dcard b { font-size: 21px; font-weight: 750; letter-spacing: -.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dcard small { color: var(--text-2); font-size: 13px; }
.dcard.good { border-color: rgb(34 197 94 / .35); } .dcard.good b { color: #86efac; }
.dcard.warn { border-color: rgb(245 158 11 / .35); } .dcard.warn b { color: #fcd34d; }
.dcard.info { border-color: rgb(59 130 246 / .35); }
.dpanel { padding: 22px; border-radius: 16px; border: 1px solid var(--border); background: var(--surface); min-width: 0; }
.dpanel h2 { font-size: 18px; }
.cta-mini { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.cta-mini p { margin-top: 4px; color: var(--text-2); }
.table-wrap { overflow-x: auto; padding: 0; }
.dtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.dtable th { padding: 12px 16px; text-align: left; font-size: 11.5px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); border-bottom: 1px solid var(--border); white-space: nowrap; }
.dtable td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.dtable tbody tr:last-child td { border-bottom: 0; }
.dbadge { display: inline-flex; align-items: center; height: 24px; padding: 0 9px; border-radius: 999px; font-size: 11.5px; font-weight: 650; border: 1px solid; white-space: nowrap; }
.b-green { color: #86efac; background: rgb(34 197 94 / .1); border-color: rgb(34 197 94 / .28); }
.b-blue { color: #93c5fd; background: rgb(59 130 246 / .1); border-color: rgb(59 130 246 / .28); }
.b-amber { color: #fcd34d; background: rgb(245 158 11 / .1); border-color: rgb(245 158 11 / .3); }
.b-red { color: #fca5a5; background: rgb(239 68 68 / .1); border-color: rgb(239 68 68 / .3); }
.b-gray { color: var(--text-2); background: rgb(255 255 255 / .04); border-color: var(--border-strong); }
.b-violet { color: #c4b5fd; background: rgb(139 92 246 / .1); border-color: rgb(139 92 246 / .3); }
.mono { font-family: var(--mono); font-size: 13px; }
.small { font-size: 13px; }
.tlink { margin-left: 8px; font-size: 13px; font-weight: 600; }
.lic { display: grid; gap: 16px; }
.lic-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.dkv { display: grid; grid-template-columns: 120px 1fr; gap: 8px 14px; margin: 0; font-size: 14.5px; }
.dkv dt { color: var(--muted); }
.dkv dd { margin: 0; }
.keybox { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: 12px; background: var(--input); border: 1px solid var(--border-strong); }
.keybox code { font-family: var(--mono); font-size: 16px; letter-spacing: .05em; color: #e0ecff; word-break: break-all; user-select: all; }
.acct { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.acct > div { flex: 1; min-width: 180px; }
.acct h2 { font-size: 20px; }
.sessions, .tips { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.sessions li { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); }
.sessions li .small { flex-basis: 100%; }
.tips { padding-left: 20px; list-style: disc; color: var(--text-2); }
.notes-box { margin-top: 20px; }
.notes-box h2 { margin-bottom: 8px; font-size: 16px; }
.dpanel > .btn-lg { margin: 4px 0 8px; }
.skeleton.short { min-height: 220px; }

/* ───── toasts ───── */
.toasts { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: grid; gap: 10px; }
.toast { min-width: 240px; max-width: 360px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; color: var(--text); background: var(--elevated); border: 1px solid var(--border-strong); box-shadow: var(--shadow-2); animation: toast-in .25s var(--ease); }
.toast.good { border-color: rgb(34 197 94 / .45); }
.toast.bad { border-color: rgb(239 68 68 / .45); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }

/* ───── footer ───── */
.footer { margin-top: 40px; border-top: 1px solid var(--border); background: linear-gradient(180deg, transparent, rgb(15 27 61 / .25)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.footer-brand p { margin-top: 14px; max-width: 320px; font-size: 14.5px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h2 { margin-bottom: 6px; font-size: 13px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
.footer-col a { color: var(--text-2); font-size: 14.5px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0 36px; border-top: 1px solid var(--border); color: var(--text-2); font-size: 13px; }

/* ───── reveal on scroll (only when JS runs; content is visible without it) ───── */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }

/* ───── responsive ───── */
@media (min-width: 1600px) {
  .wrap { width: min(1320px, 100% - 64px); }
  .hero { padding: 96px 0 128px; }
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .mock-stage { max-width: 760px; margin: 0 auto; width: 100%; }
  .hero-art { max-width: 820px; margin: 0 auto; width: 100%; }
  .app { transform: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .show-row, .show-row.flip { grid-template-columns: 1fr; gap: 40px; }
  .show-row.flip .show-copy { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .strip-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .checkout, .dl { grid-template-columns: 1fr; }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side { position: static; }
  .dnav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; }
  .dash-user { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-cta .btn { display: none; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .hero { padding: 40px 0 72px; }
  .hero-actions .btn { width: 100%; }
  .app { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .app-stats { grid-template-columns: repeat(2, 1fr); }
  .app-stats .app-stat:nth-child(3) { display: none; }
  .features, .steps { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item, .strip-item:nth-child(3) { border-left: 0; padding: 20px 0; }
  .strip-item + .strip-item { border-top: 1px solid var(--border); }
  .card, .box, .step { padding: 24px; }
  .price-card { padding: 30px 22px 24px; }
  .cta { padding: 44px 22px; }
  .showcase { gap: 80px; }
  .cols-2, .meta { grid-template-columns: 1fr; }
  .dl-main { padding: 26px; }
  .license { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-user span { display: none; }
  .nav-user { padding: 0 6px; }
  .dtable thead { display: none; }
  .dtable, .dtable tbody, .dtable tr, .dtable td { display: block; width: 100%; }
  .dtable tr { padding: 12px 16px; border-bottom: 1px solid var(--border); }
  .dtable td { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border: 0; }
  .dtable td::before { content: attr(data-label); color: var(--muted); font-size: 13px; }
  .dkv { grid-template-columns: 1fr; }
  .toasts { left: 16px; right: 16px; }
  .toast { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .app { transform: none; }
}

/* ───── Litecoin payment (checkout?payment=…) ───── */
.input-row { display: flex; gap: 10px; }
.input-row .input { flex: 1; min-width: 0; text-transform: uppercase; letter-spacing: .04em; }
.hint.good { color: #86efac; font-weight: 600; }
.mono { font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace; }
.pay-view { display: grid; gap: 18px; max-width: 760px; }
.pay-head { display: flex; gap: 16px; align-items: center; }
.pay-head img { flex: none; filter: drop-shadow(0 0 18px rgb(59 130 246 / .45)); }
.pay-head h2 { font-size: 26px; margin-top: 2px; }
.pay-box { display: grid; gap: 18px; }
.pay-grid { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 24px; align-items: center; }
.pay-qr { padding: 10px; border-radius: 16px; background: #fff; box-shadow: 0 0 0 1px rgb(96 165 250 / .35), 0 18px 40px -18px rgb(37 99 235 / .8); }
.pay-qr svg { width: 232px; height: 232px; }
.pay-fields { display: grid; gap: 16px; min-width: 0; }
.pay-field { display: grid; gap: 8px; justify-items: start; min-width: 0; }
.pay-field .label { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.pay-value { width: 100%; padding: 12px 14px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); user-select: all; }
.pay-value.big { font-size: 22px; font-weight: 700; }
.pay-value.addr { font-size: 15px; overflow-wrap: anywhere; word-break: break-all; line-height: 1.45; }
.pay-timer { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.pay-timer svg { width: 18px; height: 18px; }
.pay-timer b { color: var(--text); font-size: 18px; }
.pay-progress { display: flex; gap: 14px; align-items: center; }
.pay-progress .spin { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 2px solid rgb(96 165 250 / .3); border-top-color: #60a5fa; animation: spin .8s linear infinite; }
.pay-success { display: grid; justify-items: center; gap: 10px; text-align: center; padding: 36px 24px; border-color: rgb(34 197 94 / .35); }
.pay-success img { filter: drop-shadow(0 0 26px rgb(59 130 246 / .55)); }
.pay-success .big { font-size: 20px; font-weight: 800; letter-spacing: .08em; color: #86efac; }
@media (max-width: 640px) {
  .pay-grid { grid-template-columns: 1fr; justify-items: center; }
  .pay-qr svg { width: 200px; height: 200px; }
  .pay-value.big { font-size: 19px; }
  .input-row { flex-direction: column; }
}
.pay-view .box + .box { margin-top: 0; }
