/* ============================================================
   LUOYUN INTELLIGENT — Export Website Design System
   Industrial precision · dark technical aesthetic
   ============================================================ */

:root {
  --bg: #05080f;
  --bg-soft: #0a101c;
  --surface: #0d1524;
  --surface-2: #111b2e;
  --surface-3: #16233b;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.26);
  --text: #eaf1fb;
  --text-2: #c7d7ea;
  --muted: #93a4ba;
  --muted-2: #64748b;
  --accent: #2ee6d6;
  --accent-2: #38bdf8;
  --accent-dim: rgba(46, 230, 214, 0.12);
  --blue-dim: rgba(56, 189, 248, 0.12);
  --warn: #fbbf24;
  --danger: #f87171;
  --ok: #4ade80;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 2px 4px rgba(0,0,0,0.4), 0 16px 48px rgba(0,0,0,0.5);
  --glow: 0 0 0 1px rgba(46,230,214,0.18), 0 0 40px rgba(46,230,214,0.10);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: #7ff5ec; }

::selection { background: rgba(46,230,214,.25); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }

section { position: relative; }

.section { padding-block: clamp(72px, 9vw, 128px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .7; }

.h1, .h2, .h3, .h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: var(--text); }
.h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.h4 { font-size: 1.1rem; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-2); }
.muted { color: var(--muted); }
.small { font-size: .86rem; }
.mono { font-family: var(--font-mono); }

.grad-text {
  background: linear-gradient(92deg, #2ee6d6 0%, #38bdf8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .7; }

.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-5 { grid-column: span 5; }

@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .col-span-7, .col-span-5, .col-span-6 { grid-column: span 12; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  /* collapse inline-styled multi-column grids to a single column on small screens */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: .01em; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: linear-gradient(92deg, #17c3b5, #0ea5e9);
  color: #04151a; box-shadow: 0 4px 20px rgba(23, 195, 181, 0.28);
}
.btn-primary:hover { color: #04151a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(23, 195, 181, 0.4); }

.btn-ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-outline-accent { border-color: rgba(46,230,214,.45); color: var(--accent); background: transparent; }
.btn-outline-accent:hover { background: var(--accent-dim); color: #7ff5ec; border-color: var(--accent); }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.topbar {
  border-bottom: 1px solid rgba(148,163,184,.12);
  background: rgba(5,8,15,.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 34px; gap: 18px; font-size: 12.5px; color: var(--muted);
}
.topbar a { color: var(--text-2); font-weight: 500; }
.topbar a:hover { color: var(--accent); }
.topbar-contacts, .topbar-links { display: flex; align-items: center; gap: 12px; }
.topbar-links .tb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px rgba(74,222,128,.7); }
.tb-sep { width: 1px; height: 12px; background: rgba(148,163,184,.25); }
@media (max-width: 720px) {
  .topbar-links { display: none; }
  .topbar-inner { justify-content: center; }
}
.site-header.scrolled {
  background: rgba(5, 8, 15, 0.82);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand img { width: 38px; height: 38px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; }
.brand-sub { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { list-style: none; position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 8px; color: var(--text-2);
  font-size: 14.5px; font-weight: 500;
}
.nav-link:hover { color: var(--accent); background: rgba(255,255,255,.04); }
.nav-link .caret { width: 9px; height: 9px; opacity: .6; transition: transform .2s ease; }
.nav-item:hover .caret { transform: rotate(180deg); }
.nav-link.active { color: var(--accent); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; padding: 10px; border-radius: 14px;
  background: rgba(13, 21, 36, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item::before {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
  /* invisible hover bridge: keeps the menu open while the cursor crosses the gap */
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-item.open .caret { transform: rotate(180deg); }
.dropdown a {
  display: flex; gap: 12px; padding: 11px 12px; border-radius: 10px; color: var(--text-2);
  align-items: flex-start;
}
.dropdown a:hover { background: var(--accent-dim); color: var(--text); }
.dropdown .d-title { font-size: 14px; font-weight: 600; color: var(--text); display: block; margin-bottom: 1px; }
.dropdown .d-sub { font-size: 12px; color: var(--muted); }
.dropdown .d-icon { width: 34px; height: 34px; flex: none; border-radius: 8px; background: var(--blue-dim); display: grid; place-items: center; }
.dropdown .d-icon svg { width: 18px; height: 18px; stroke: var(--accent-2); }
.dropdown.cols-2 { min-width: 470px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.dropdown.cols-2 .d-group {
  grid-column: 1 / -1;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); padding: 10px 12px 3px; border-bottom: 1px solid var(--line); margin-bottom: 4px;
}
.dropdown.cols-2 .d-group:first-child { padding-top: 4px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.03); color: var(--text-2); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: border-color .2s ease, color .2s ease;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn svg { width: 15px; height: 15px; stroke: var(--accent); }
.lang-btn .caret { width: 9px; height: 9px; opacity: .65; transition: transform .2s ease; }
.lang-switch:hover .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 150px;
  background: rgba(13,21,36,.97); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-2); padding: 6px; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.lang-menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 9px 12px; border: none; border-radius: 8px; background: transparent; color: var(--text-2);
  font-size: 13.5px; cursor: pointer; font-family: var(--font-body); text-align: left;
}
.lang-menu button:hover { background: var(--accent-dim); color: var(--text); }
.lang-menu button.active { color: var(--accent); font-weight: 600; }
.lang-menu button .flag { font-size: 15px; line-height: 1; }
.lang-menu button .ok { width: 14px; height: 14px; stroke: var(--accent); }

/* Mobile language row */
.mobile-langs { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 0 6px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.mobile-langs button {
  flex: 1; min-width: 88px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 12px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent;
  color: var(--text-2); font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: var(--font-body);
}
.mobile-langs button.active { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.mobile-langs button .flag { font-size: 14px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); cursor: pointer; place-items: center;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(46,230,214,.55);
}

/* Floating action buttons */
.fab-stack { position: fixed; right: 22px; bottom: 24px; z-index: 150; display: grid; gap: 12px; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  border: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.45); position: relative;
}
.fab:hover { transform: translateY(-3px) scale(1.04); }
.fab svg { width: 24px; height: 24px; }
.fab-wa { background: #25D366; color: #fff; }
.fab-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: waPulse 2.4s infinite; border: 2px solid rgba(37,211,102,.7);
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.fab-top { background: rgba(13,21,36,.9); border: 1px solid var(--line-strong); color: var(--accent); visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s, transform .2s ease; }
.fab-top.show { visibility: visible; opacity: 1; }
.fab-top svg { width: 20px; height: 20px; }
.fab-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(4px);
  background: rgba(13,21,36,.95); border: 1px solid var(--line); color: var(--text-2);
  font-size: 12.5px; padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: all .2s ease; pointer-events: none;
}
.fab:hover .fab-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@media (max-width: 640px) { .fab-stack { right: 16px; bottom: 18px; } }
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--text); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: rgba(5,8,15,.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 110px 32px 40px;
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { display: block; padding: 13px 4px; color: var(--text); font-family: var(--font-display); font-size: 21px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .m-sub { display: flex; gap: 6px; flex-wrap: wrap; padding: 6px 0 18px; }
.mobile-nav .m-sub a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.mobile-nav .m-group {
  display: block; margin: 18px 4px 2px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.mobile-nav .m-sub-link { font-size: 16px !important; font-family: var(--font-body) !important; font-weight: 500 !important; padding: 10px 4px !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; }

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 150px 0 90px; position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 560px at 78% -10%, rgba(56,189,248,.13), transparent 60%),
    radial-gradient(900px 520px at 8% 108%, rgba(46,230,214,.10), transparent 60%),
    var(--bg);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 16px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--text-2);
  background: rgba(255,255,255,.03); margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(46,230,214,.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,230,214,.55); }
  70% { box-shadow: 0 0 0 9px rgba(46,230,214,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,214,0); }
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-proof { display: flex; gap: clamp(22px, 4vw, 48px); flex-wrap: wrap; align-items: center; }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item b { font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 700; letter-spacing: -.02em; }
.proof-item b em { font-style: normal; color: var(--accent); }
.proof-item span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.proof-sep { width: 1px; height: 42px; background: var(--line-strong); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .disc {
  width: min(430px, 88%); animation: floaty 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 80px rgba(46,230,214,.14));
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-14px) rotate(1.2deg);} }

.hud-card {
  position: absolute; background: rgba(13,21,36,.88); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-2);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 12px; animation: floaty 6s ease-in-out infinite reverse;
}
.hud-card .hud-label { color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.hud-card b { color: var(--accent); font-weight: 600; }
.hud-1 { top: 12%; left: 0; }
.hud-2 { bottom: 16%; right: 2%; animation-delay: 1.4s; }
.hud-3 { top: 46%; right: -2%; animation-delay: .7s; }
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hud-1 { left: -4px; } .hud-2 { right: 0; } .hud-3 { right: 0; }
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  padding: 160px 0 70px; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(56,189,248,.12), transparent 60%),
    radial-gradient(700px 380px at 5% 120%, rgba(46,230,214,.09), transparent 60%),
    var(--bg);
}
.page-hero .hero-grid-bg { background-size: 52px 52px; }
.page-hero h1 { margin: 4px 0 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 18px; font-family: var(--font-mono); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 11px; height: 11px; }
.breadcrumb .cur { color: var(--accent); }

/* ---------- Feature cards ---------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0) 45%), var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: rgba(46,230,214,.35); box-shadow: var(--shadow-1), var(--glow); }
.card .card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-dim); border: 1px solid rgba(46,230,214,.22); margin-bottom: 18px;
}
.card .card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; }
.card .card-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(180deg, rgba(46,230,214,.05), transparent), var(--surface);
  border-block: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-block: 48px; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -.02em; display: block; }
.stat b em { font-style: normal; color: var(--accent); }
.stat span { color: var(--muted); font-size: 13.5px; display: block; margin-top: 4px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ---------- Product showcase ---------- */
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.product-tile {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  display: flex; flex-direction: column; position: relative; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-tile:hover { border-color: rgba(46,230,214,.4); transform: translateY(-4px); box-shadow: var(--shadow-2), var(--glow); }
.product-tile .tile-visual {
  padding: 42px 36px 8px; display: grid; place-items: center; min-height: 270px;
  background: radial-gradient(480px 260px at 50% 0%, rgba(56,189,248,.08), transparent 65%);
}
.product-tile .tile-visual svg { width: min(300px, 84%); }
.product-tile .tile-body { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-tile .tile-tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(46,230,214,.3); border-radius: 999px; padding: 4px 12px; background: var(--accent-dim);
}
.product-tile h3 { font-size: 1.55rem; }
.product-tile .tile-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 6px; }
.product-tile .tile-specs div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); padding-bottom: 7px; font-size: 13.5px; }
.product-tile .tile-specs dt { color: var(--muted); }
.product-tile .tile-specs dd { color: var(--text); font-family: var(--font-mono); font-weight: 500; text-align: right; }
.product-tile .tile-actions { margin-top: auto; display: flex; gap: 12px; padding-top: 18px; flex-wrap: wrap; }
@media (max-width: 560px) {
  .product-tile .tile-specs { grid-template-columns: 1fr; }
  .product-tile .tile-specs div { flex-direction: column; gap: 2px; }
  .product-tile .tile-specs dd { text-align: left; }
}
@media (max-width: 900px) { .product-showcase { grid-template-columns: 1fr; } }

/* ---------- Photo cards & banners ---------- */
.photo-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); display: flex; flex-direction: column;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.photo-card:hover { transform: translateY(-5px); border-color: rgba(46,230,214,.4); box-shadow: var(--shadow-2), var(--glow); }
.photo-card .pc-media { position: relative; height: 190px; overflow: hidden; }
.photo-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-card .pc-media { aspect-ratio: 16 / 10; height: auto; }
.photo-card .pc-media.fit img { object-fit: contain; padding: 10px; }
.photo-card .pc-media.fit { background: radial-gradient(circle at 50% 42%, rgba(56,189,248,.10), rgba(11,19,34,.55) 60%, #0b1322 100%); }
.photo-card:hover .pc-media img { transform: scale(1.07); }
.photo-card .pc-media.fit:hover img { transform: none; }
.photo-card .pc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,15,.88) 100%);
}
.photo-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.photo-card .pc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: rgba(5,8,15,.72); border: 1px solid rgba(46,230,214,.4);
  border-radius: 999px; padding: 5px 11px; backdrop-filter: blur(6px);
}
.photo-card h3 { font-size: 1.12rem; }
.photo-card p { color: var(--muted); font-size: 14px; }
.photo-card .card-link { margin-top: auto; }
.photo-card .card-link svg { width: 14px; height: 14px; }

.photo-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; border: 1px solid var(--line);
}
.photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,8,15,.15) 0%, rgba(5,8,15,.45) 55%, rgba(5,8,15,.92) 100%); }
.photo-banner .pb-content { position: relative; z-index: 2; padding: clamp(24px, 4vw, 44px); max-width: 640px; }
.photo-banner .pb-content h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.photo-banner .pb-content p { color: var(--text-2); margin-bottom: 18px; }

.photo-collage { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.photo-collage .pc-media { height: 100%; min-height: 200px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.photo-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-collage .pc-media:hover img { transform: scale(1.05); }
.photo-collage .pc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,8,15,.75)); }
.photo-collage .pc-cap { position: absolute; left: 16px; bottom: 12px; z-index: 2; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 900px) { .photo-collage { grid-template-columns: 1fr; } }

/* Hero photo backdrop */
.hero-photo {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .14; filter: saturate(.75); transform: scale(1.05); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(5,8,15,.92) 0%, rgba(5,8,15,.55) 45%, rgba(5,8,15,.28) 75%, rgba(5,8,15,.55) 100%),
  radial-gradient(1100px 560px at 78% -10%, rgba(56,189,248,.16), transparent 60%),
  radial-gradient(900px 520px at 8% 108%, rgba(46,230,214,.10), transparent 60%);
}

/* Interactive encoder demo */
.demo-panel {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--surface);
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 420px;
}
.demo-stage { position: relative; display: grid; place-items: center; padding: 36px; overflow: hidden; }
.demo-stage::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(46,230,214,.10), transparent 65%); }
.demo-disc { position: relative; width: min(300px, 78%); cursor: grab; touch-action: none; user-select: none; }
.demo-disc:active { cursor: grabbing; }
.demo-disc svg { width: 100%; height: auto; }
.demo-hint { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.demo-readout { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 36px 34px; border-left: 1px solid var(--line); background: rgba(5,8,15,.45); }
.demo-readout .ro-item { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; border-bottom: 1px dashed var(--line); padding-bottom: 12px; }
.demo-readout .ro-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.demo-readout .ro-value { font-family: var(--font-mono); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 700; color: var(--accent); }
.demo-readout .ro-value small { font-size: .55em; color: var(--muted); font-weight: 500; }
.demo-readout .ro-bar { height: 6px; border-radius: 3px; background: rgba(148,163,184,.15); overflow: hidden; }
.demo-readout .ro-bar i { display: block; height: 100%; width: 50%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .12s linear; }
@media (max-width: 900px) { .demo-panel { grid-template-columns: 1fr; } .demo-readout { border-left: none; border-top: 1px solid var(--line); } }
@media (max-width: 480px) { .demo-readout .ro-value { font-size: 1.12rem; } .demo-readout { padding: 26px 22px; } }

/* ---------- Spec tables ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.spec-table thead th {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: rgba(46,230,214,.06);
}
.spec-table tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }
.spec-table tbody tr:hover { background: rgba(46,230,214,.05); }
.spec-table td:first-child { color: var(--muted); width: 38%; font-weight: 500; }
.spec-table td:last-child { color: var(--text); font-family: var(--font-mono); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
@media (max-width: 640px) {
  .table-wrap {
    -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    position: relative;
  }
  .table-wrap::after {
    content: "Scroll →";
    position: sticky; right: 10px; bottom: 8px; float: right;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
    color: var(--accent); background: rgba(5,8,15,.85); border: 1px solid rgba(46,230,214,.35);
    border-radius: 999px; padding: 4px 10px; pointer-events: none; margin: 8px 10px 0 0;
  }
}

/* comparison table */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
.cmp-table th, .cmp-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp-table thead th { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.cmp-table thead th:first-child { color: var(--muted); font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; }
.cmp-table .rm-col { background: rgba(46,230,214,.06); }
.cmp-table .rm-col th, .cmp-table .rm-col td { color: var(--accent); font-weight: 600; }
.cmp-table tbody td:first-child { color: var(--muted); font-weight: 500; white-space: nowrap; }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.cmp-table .bar { display: inline-block; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); vertical-align: middle; margin-right: 8px; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.tab-btn {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text-2); font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: all .2s ease;
}
.tab-btn:hover { color: var(--accent); border-color: var(--accent); }
.tab-btn.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px; background: transparent; border: none; cursor: pointer;
  color: var(--text); font-family: var(--font-display); font-size: 16px; font-weight: 600; text-align: left;
}
.acc-head .acc-icon { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .25s ease, border-color .25s ease; }
.acc-head .acc-icon svg { width: 13px; height: 13px; stroke: var(--accent); }
.acc-item.open .acc-icon { transform: rotate(45deg); border-color: var(--accent); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body-inner { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; }
.acc-body-inner p + p { margin-top: 10px; }

/* ---------- Application cards ---------- */
.app-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent), var(--surface);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; position: relative; overflow: hidden;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(56,189,248,.4); box-shadow: var(--shadow-1), 0 0 40px rgba(56,189,248,.08); }
.app-card .app-num { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: .2em; }
.app-card .app-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-dim); border: 1px solid rgba(56,189,248,.22); display: grid; place-items: center; margin: 14px 0 16px; }
.app-card .app-icon svg { width: 21px; height: 21px; stroke: var(--accent-2); }
.app-card h3 { margin-bottom: 8px; }
.app-card p { color: var(--muted); font-size: 14px; }
.app-card .app-tag { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--accent); background: var(--accent-dim); border-radius: 999px; padding: 4px 11px; }

/* ---------- Process / timeline ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding-bottom: 38px; position: relative; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 31px; top: 58px; bottom: 4px; width: 1px; background: linear-gradient(var(--line-strong), transparent); }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 16px; font-weight: 700; color: var(--accent);
  border: 1px solid rgba(46,230,214,.35); background: var(--accent-dim);
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 620px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(46,230,214,.25);
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(46,230,214,.12), transparent 60%),
    linear-gradient(180deg, #0d1a2c, #0a1322);
  padding: clamp(40px, 6vw, 72px); display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between;
}
.cta-band h2 { max-width: 640px; margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 560px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: clamp(60px, 8vw, 110px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 60px 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 16px 0 20px; max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-2); font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--accent); }
.cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cert-chip { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; color: var(--text-2); border: 1px solid var(--line); border-radius: 6px; padding: 5px 9px; background: rgba(255,255,255,.02); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent), var(--surface);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: span 2; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.field input, .field select, .field textarea {
  background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--text); padding: 12px 14px; font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .2s ease, box-shadow .2s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,230,214,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .field.full { grid-column: span 1; } }

/* ---------- Contact info cards ---------- */
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--surface); }
.info-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-dim); border: 1px solid rgba(46,230,214,.22); display: grid; place-items: center; margin-bottom: 16px; }
.info-card .ic svg { width: 21px; height: 21px; stroke: var(--accent); }
.info-card h3 { font-size: 15px; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--muted); font-size: 14px; word-break: break-word; }
.info-card a:hover { color: var(--accent); }

/* ---------- Blog ---------- */
.blog-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(46,230,214,.35); box-shadow: var(--shadow-1), var(--glow); }
.blog-card .blog-thumb { height: 180px; display: grid; place-items: center; background: radial-gradient(300px 150px at 50% 0%, rgba(56,189,248,.14), transparent 70%), var(--surface-2); border-bottom: 1px solid var(--line); padding: 20px; }
.blog-card .blog-thumb svg { width: 150px; }
.blog-card .blog-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .blog-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); display: flex; gap: 10px; align-items: center; }
.blog-card .blog-meta .tag { color: var(--accent); }
.blog-card h3 { font-size: 1.15rem; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 14px; }
.blog-card .card-link { margin-top: auto; }

.article { max-width: 780px; margin-inline: auto; }
.article .h1 { margin-bottom: 14px; }
.article-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-family: var(--font-mono); font-size: 12.5px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article h2 { font-family: var(--font-display); font-size: 1.55rem; margin: 40px 0 16px; }
.article h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 30px 0 12px; }
.article p { color: var(--text-2); margin-bottom: 18px; }
.article ul, .article ol { color: var(--text-2); margin: 0 0 20px 22px; }
.article li { margin-bottom: 8px; }
.article blockquote { border-left: 3px solid var(--accent); padding: 14px 22px; margin: 26px 0; background: var(--accent-dim); border-radius: 0 10px 10px 0; color: var(--text-2); }
.article .callout { border: 1px solid rgba(56,189,248,.3); background: var(--blue-dim); border-radius: 12px; padding: 18px 22px; margin: 26px 0; font-size: 14.5px; color: var(--text-2); }
.article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article table th, .article table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.article table th { background: var(--surface-2); font-family: var(--font-display); }

/* ---------- Logos / trust ---------- */
.trust-strip { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; color: var(--muted); font-size: 13.5px; font-weight: 600; background: rgba(255,255,255,.02); }
.trust-chip svg { width: 16px; height: 16px; stroke: var(--accent); }

/* ---------- Spec highlight tiles ---------- */
.spec-tile { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: var(--surface); }
.spec-tile .st-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 8px; }
.spec-tile .st-value { font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 700; color: var(--text); }
.spec-tile .st-value em { font-style: normal; color: var(--accent); }
.spec-tile .st-note { font-size: 12.5px; color: var(--muted); margin-top: 5px; display: block; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .js-anim .reveal { opacity: 1; transform: none; }
}

.js-anim .hero-visual::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: min(430px, 88%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,230,214,.12), rgba(56,189,248,.05) 45%, transparent 68%);
  filter: blur(4px); pointer-events: none;
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: none; margin: clamp(48px, 6vw, 80px) 0; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 12.5px; color: var(--text-2); border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 13px; background: rgba(255,255,255,.02); }
.chip.accent { color: var(--accent); border-color: rgba(46,230,214,.35); background: var(--accent-dim); }
.quote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; color: var(--text-2); font-size: 17px; font-style: italic;
}
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 14.5px; }
.check-list svg { width: 18px; height: 18px; stroke: var(--accent); flex: none; margin-top: 3px; }

/* page transitions */
.page-wrap { animation: pageIn .45s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
}

@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #111; }
}
