/* ===== ReoMac — landing styles ===== */
:root {
  --bg: #0b0e14;
  --bg-soft: #11151f;
  --card: #161b28;
  --card-hover: #1b2132;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --muted: #9aa4b8;
  --accent: #4f8cff;
  --accent-2: #7c5cff;
  --accent-glow: rgba(79, 140, 255, 0.35);
  --green: #3ddc84;
  --red: #ff5d5d;
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(11, 14, 20, 0.75);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 0 18px var(--accent-glow);
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important; padding: 8px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.88rem !important;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: transform 0.15s ease;
}
.nav-cta:hover { transform: translateY(-1px); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(79, 140, 255, 0.18), transparent 70%),
    radial-gradient(500px 280px at 75% 10%, rgba(124, 92, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; }
.badge-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79, 140, 255, 0.12);
  border: 1px solid rgba(79, 140, 255, 0.3);
  color: var(--accent);
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.15rem; color: var(--muted);
  max-width: 640px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

/* hero proof chips */
.hero-stats {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 0 0 52px;
  animation: fadeUp 0.7s 0.5s ease both;
}
.stat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600; color: var(--text);
  background: rgba(28, 32, 46, 0.6);
  border: 1px solid rgba(79, 140, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 140, 255, 0.55);
  box-shadow: 0 6px 22px rgba(79, 140, 255, 0.18);
}
.stat-chip .stat-ic { font-size: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 12px;
  font-weight: 600; font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-secondary {
  background: var(--card); color: var(--text);
  border: 1px solid var(--border);
}
.appstore-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 9px 20px;
  color: #fff; text-align: left; line-height: 1.2;
  position: relative;
}
.appstore-badge:hover { text-decoration: none; }
.appstore-badge .apple { font-size: 1.7rem; }
.appstore-badge small { display: block; font-size: 0.62rem; color: #bbb; letter-spacing: 0.03em; }
.appstore-badge strong { font-size: 1.02rem; font-weight: 600; }
.soon-tag {
  position: absolute; top: -10px; right: -12px;
  background: var(--accent-2); color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase;
}

/* ===== App window mockup ===== */
.app-window {
  max-width: 860px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 60px rgba(79, 140, 255, 0.08);
  overflow: hidden;
}
.app-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.tl-dot { width: 12px; height: 12px; border-radius: 50%; }
.tl-dot.r { background: #ff5f57; } .tl-dot.y { background: #febc2e; } .tl-dot.g { background: #28c840; }
.app-titlebar .title { flex: 1; text-align: center; font-size: 0.8rem; color: var(--muted); margin-right: 52px; }
.app-body { padding: 0; position: relative; }
.app-body svg, .shot-frame svg { display: block; width: 100%; height: auto; }

/* control bar under hero video */
.app-controls {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
.ctl {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 11px;
}
.ctl.rec { color: var(--red); }
.ctl.live { color: var(--green); }
.spacer { flex: 1; }

/* ===== Sections ===== */
section { padding: 84px 0; }
section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow {
  color: var(--accent); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  display: block; margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* =====================================================
   Device mockups (MacBook Pro / Air, Mac Studio) & FX
   ===================================================== */

/* ---- MacBook frame ---- */
.macbook { position: relative; }
.macbook .mb-screen {
  position: relative;
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 9px 9px 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 70px rgba(79, 140, 255, 0.08);
}
.macbook .mb-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 9px;
  background: #05070b;
  border-radius: 0 0 7px 7px;
  z-index: 8;
}
.macbook .mb-base {
  position: relative;
  height: 13px;
  background: linear-gradient(180deg, #3d4452, #232834 55%, #141821);
  border-radius: 0 0 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.macbook .mb-base::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 16%; min-width: 70px; height: 5px;
  background: linear-gradient(180deg, #10141b, #1d222c);
  border-radius: 0 0 7px 7px;
}
.macbook::after {
  content: ""; position: absolute; left: 6%; right: 6%; bottom: -30px; height: 50px;
  background: radial-gradient(ellipse at center, rgba(79, 140, 255, 0.30), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.mb-screen .mac-window { border: none; border-radius: 8px; box-shadow: none; }

/* hero tilt */
.hero-mock { perspective: 1200px; }
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* ---- Devices lineup section ---- */
.devices-sec { position: relative; overflow: hidden; }
.devices-stage { position: relative; padding: 20px 0 10px; }
.aurora {
  position: absolute; left: 50%; top: 42%;
  width: 620px; height: 620px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg,
    rgba(79, 140, 255, 0.16), rgba(124, 92, 255, 0.14),
    rgba(79, 209, 255, 0.12), rgba(79, 140, 255, 0.16));
  border-radius: 50%;
  filter: blur(85px);
  animation: auroraSpin 20s linear infinite;
  pointer-events: none;
}
@keyframes auroraSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.devices {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.device { margin: 0; text-align: center; }
.device figcaption { margin-top: 22px; }
.device figcaption strong { display: block; font-size: 0.98rem; font-weight: 700; }
.device figcaption span { display: block; color: var(--muted); font-size: 0.84rem; max-width: 240px; margin: 4px auto 0; }
.dev-float { animation: floatY 7s ease-in-out infinite; }
.d-air .dev-float { animation-delay: -2.4s; }
.d-pro .dev-float { animation-duration: 8s; }
.d-studio .dev-float { animation-delay: -4.6s; animation-duration: 7.4s; }

.d-air .macbook { width: 240px; }
.d-pro .macbook { width: 330px; }
.macbook.air .mb-screen { padding: 7px 7px 8px; border-radius: 13px 13px 0 0; }
.macbook.air .mb-notch { width: 62px; height: 7px; }
.macbook.air .mb-base { height: 9px; }
.macbook .mb-screen, .sd-screen { box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55); }

.dev-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.dev-chip { position: absolute; top: 7px; left: 7px; padding: 4px 9px; font-size: 9px; border-radius: 12px; z-index: 2; }
.dev-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 3px; background: #05070b;
}
.dev-grid > span:not(.dev-chip) {
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.dev-grid > span.ir {
  filter: grayscale(1) brightness(1.05) contrast(1.25) sepia(0.9) hue-rotate(55deg) saturate(2.4);
}

/* Studio Display + Mac Studio */
.studio-set { position: relative; display: flex; align-items: flex-end; gap: 18px; }
.studio-display { width: 300px; }
.sd-screen {
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px;
}
.sd-stand {
  width: 64px; height: 36px; margin: 0 auto;
  background: linear-gradient(180deg, #2e3441, #1a1f29);
  clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
}
.sd-foot {
  width: 120px; height: 6px; margin: 0 auto;
  border-radius: 3px;
  background: linear-gradient(180deg, #343b49, #181d26);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}
.dev-timeline {
  position: absolute; left: 8px; right: 8px; bottom: 7px;
  height: 10px; border-radius: 6px;
  background: rgba(10, 12, 18, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 2;
}
.dt-seg { position: absolute; top: 2.5px; height: 4px; border-radius: 2px; background: rgba(48, 209, 88, 0.7); }
.dt-seg.s1 { left: 6%; width: 14%; }
.dt-seg.s2 { left: 30%; width: 22%; }
.dt-seg.s3 { left: 62%; width: 10%; }
.dt-head { position: absolute; top: -2px; bottom: -2px; left: 44%; width: 1.5px; background: #fff; border-radius: 1px; }
.mac-studio {
  position: relative;
  width: 104px; height: 60px;
  border-radius: 13px;
  background: linear-gradient(180deg, #424957 0%, #2a303c 55%, #1b2029 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
.ms-port {
  position: absolute; bottom: 11px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #0d1117;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.12);
}
.ms-port:nth-child(1) { left: 14px; }
.ms-port:nth-child(2) { left: 28px; }
.ms-slot {
  position: absolute; bottom: 13px; right: 14px;
  width: 26px; height: 2.5px; border-radius: 2px;
  background: #0d1117;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.ms-led {
  position: absolute; top: 12px; right: 12px;
  width: 3px; height: 3px; border-radius: 50%;
  background: #fff; opacity: 0.85;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  animation: blinkDot 3.2s ease-in-out infinite;
}

/* ---- Ambient FX: grid, particles, beams ---- */
.fx-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 140, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 25%, transparent 78%);
}
.fx-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.fx-particles span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.95), rgba(79, 140, 255, 0) 70%);
  opacity: 0;
  animation: particleDrift var(--d) linear var(--delay) infinite;
}
.fx-particles span.p2 {
  background: radial-gradient(circle, rgba(124, 92, 255, 0.95), rgba(124, 92, 255, 0) 70%);
}
@keyframes particleDrift {
  0%   { transform: translate3d(0, 0, 0) scale(0.5); opacity: 0; }
  12%  { opacity: var(--o); }
  85%  { opacity: var(--o); }
  100% { transform: translate3d(var(--dx), var(--dy), 0) scale(1.1); opacity: 0; }
}
.fx-beam {
  position: absolute; left: -32%;
  width: 36vw; max-width: 460px; height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 140, 255, 0.65) 42%, rgba(79, 209, 255, 0.95) 50%, transparent);
  filter: drop-shadow(0 0 6px rgba(79, 140, 255, 0.55));
  opacity: 0;
  pointer-events: none;
  animation: beamShoot 9s ease-in-out infinite;
}
.fx-beam.bm1 { top: 16%; }
.fx-beam.bm2 { top: 38%; animation-delay: 4.6s; }
@keyframes beamShoot {
  0%   { transform: translateX(0) rotate(-13deg); opacity: 0; }
  5%   { opacity: 0.85; }
  17%  { transform: translateX(160vw) rotate(-13deg); opacity: 0; }
  100% { transform: translateX(160vw) rotate(-13deg); opacity: 0; }
}

/* primary button sheen sweep */
.btn-primary, .nav-cta { position: relative; overflow: hidden; }
.btn-primary::after, .nav-cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  animation: sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
.nav-cta::after { animation-delay: 1.6s; }
@keyframes sheen {
  0%, 55% { left: -70%; }
  100%    { left: 150%; }
}

/* ===== Compare (problem → solution) ===== */
.compare { position: relative; overflow: hidden; }
.compare::before {
  content: "";
  position: absolute; inset: auto -20% -50%;
  height: 120%;
  background: radial-gradient(560px 300px at 70% 80%, rgba(124, 92, 255, 0.10), transparent 70%);
  pointer-events: none;
}
.compare-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 920px; margin: 0 auto;
  align-items: stretch;
}
.compare-card {
  border-radius: 20px;
  padding: 30px 28px;
  background: var(--card);
  border: 1px solid var(--border);
}
.compare-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.08rem; font-weight: 700; margin-bottom: 18px;
}
.compare-card .compare-ic {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px; font-size: 19px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}
.compare-card ul { list-style: none; }
.compare-card li {
  display: flex; gap: 11px; align-items: baseline;
  padding: 8px 0; font-size: 0.94rem;
}
.compare-card.bad { background: rgba(22, 27, 40, 0.55); }
.compare-card.bad h3, .compare-card.bad li { color: var(--muted); }
.compare-card.bad li::before { content: "✕"; color: var(--red); font-weight: 700; opacity: 0.8; }
.compare-card.good {
  position: relative;
  background:
    linear-gradient(180deg, rgba(79, 140, 255, 0.10), var(--card) 55%) padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-2), #4fd1ff, var(--accent)) border-box;
  background-size: auto, 300% 300%;
  border: 1.5px solid transparent;
  box-shadow: 0 14px 50px rgba(79, 140, 255, 0.14);
  animation: gradShift 7s ease-in-out infinite, glowPulse 3.5s ease-in-out infinite;
}
.compare-card.good li::before { content: "✓"; color: var(--green); font-weight: 700; }
.compare-card.good .compare-ic {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(124, 92, 255, 0.25));
  border-color: rgba(79, 140, 255, 0.4);
}
.compare-note {
  text-align: center; color: var(--muted); font-size: 0.8rem;
  max-width: 640px; margin: 26px auto 0; opacity: 0.75;
}

/* ===== Features ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
  border-color: rgba(79, 140, 255, 0.35);
}
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 21px;
  background: linear-gradient(135deg, rgba(79,140,255,0.18), rgba(124,92,255,0.18));
  border: 1px solid rgba(79, 140, 255, 0.25);
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature .soon-chip {
  display: inline-block; vertical-align: middle; margin-left: 8px;
  background: rgba(124, 92, 255, 0.18); color: #a98fff;
  border: 1px solid rgba(124, 92, 255, 0.4);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 8px; border-radius: 999px; text-transform: uppercase;
}
.feature p { color: var(--muted); font-size: 0.92rem; }

/* ===== Screenshots ===== */
.shots-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.shot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.shot-frame { position: relative; background: #05070b; }
.shot-caption { padding: 16px 20px; }
.shot-caption h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.shot-caption p { font-size: 0.85rem; color: var(--muted); }
.shot.wide { grid-column: 1 / -1; }

/* camera HUD bits inside SVG handled in SVG itself */

/* ===== Languages ===== */
.langs {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.lang-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 22px;
  font-weight: 600; font-size: 0.95rem;
}
.lang-chip .flag { font-size: 1.25rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: rgba(79, 140, 255, 0.55);
  background: linear-gradient(180deg, rgba(79,140,255,0.10), var(--card) 45%);
  box-shadow: 0 14px 50px rgba(79, 140, 255, 0.14);
}
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 5px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.07em;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.price-card .desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.price .per { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; margin: 22px 0 28px; flex: 1; }
.price-card li {
  padding: 7px 0; font-size: 0.92rem; color: var(--text);
  display: flex; gap: 10px; align-items: baseline;
}
.price-card li::before { content: "✓"; color: var(--green); font-weight: 700; }
.price-card li.no { color: var(--muted); }
.price-card li.no::before { content: "—"; color: var(--muted); }
.price-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 28px; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px;
  font-weight: 600; font-size: 0.98rem;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 14px;
  font-size: 1.4rem; color: var(--accent); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--muted); font-size: 0.92rem; }

/* ===== CTA band ===== */
.cta-band {
  position: relative; overflow: hidden;
  text-align: center;
  background:
    radial-gradient(500px 240px at 50% 0%, rgba(79, 140, 255, 0.16), transparent 70%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band > .container { position: relative; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; }

/* ===== Footer / sitemap ===== */
footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 14px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-about p { color: var(--muted); font-size: 0.88rem; max-width: 300px; margin-top: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}

/* ===== Legal pages ===== */
.legal {
  max-width: 780px; margin: 0 auto; padding: 64px 24px 96px;
}
.legal h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 40px; }
.legal h2 {
  font-size: 1.25rem; font-weight: 700; margin: 40px 0 14px;
  padding-top: 8px;
}
.legal h3 { font-size: 1.02rem; font-weight: 700; margin: 24px 0 10px; }
.legal p, .legal li { color: #c5ccdb; font-size: 0.95rem; }
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal .callout {
  background: rgba(79, 140, 255, 0.08);
  border: 1px solid rgba(79, 140, 255, 0.25);
  border-radius: 12px; padding: 16px 20px; margin: 24px 0;
  font-size: 0.9rem; color: var(--text);
}
.back-link { display: inline-block; margin-bottom: 28px; font-size: 0.9rem; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid, .shots-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 64px 0 48px; }
  .app-controls { flex-wrap: wrap; }
  .devices { gap: 44px; }
  .d-pro .macbook { width: 290px; }
  .studio-display { width: 250px; }
  .mac-studio { width: 88px; height: 52px; }
  .aurora { width: 420px; height: 420px; }
}

/* =====================================================
   Animations & multi-page additions
   ===================================================== */

/* active nav link */
.nav-links a.active { color: var(--text); position: relative; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.25; }
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 14px 50px rgba(79, 140, 255, 0.14); }
  50%      { box-shadow: 0 14px 60px rgba(79, 140, 255, 0.32); }
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -24px) scale(1.08); }
  66%  { transform: translate(-30px, 18px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* hero entrance (on load) */
.hero .badge-soft   { animation: fadeUp 0.7s 0.05s ease both; }
.hero h1            { animation: fadeUp 0.7s 0.15s ease both; }
.hero p.lead        { animation: fadeUp 0.7s 0.28s ease both; }
.hero .hero-ctas    { animation: fadeUp 0.7s 0.4s ease both; }
.hero .app-window   { animation: fadeUp 0.9s 0.55s ease both; }

/* animated gradient headline */
.hero h1 .grad, .page-hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #4fd1ff, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}

/* floating logo glow */
.logo-mark { transition: transform 0.2s ease; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }

/* live dot blink (HTML chips + SVG circles tagged .blink) */
.ctl.live, .blink { animation: blinkDot 1.6s ease-in-out infinite; }

/* featured pricing card glow */
.price-card.featured { animation: glowPulse 3.5s ease-in-out infinite; }

/* soon tag bounce */
.soon-tag { animation: floatY 2.8s ease-in-out infinite; }

/* scroll-reveal (JS adds .visible) */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* subpage hero */
.page-hero {
  position: relative; overflow: hidden;
  padding: 84px 0 60px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .blob, .hero .blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; animation: blobDrift 14s ease-in-out infinite;
}
.page-hero .blob.b1, .hero .blob.b1 { width: 420px; height: 320px; left: 8%; top: -120px; background: rgba(79, 140, 255, 0.22); }
.page-hero .blob.b2, .hero .blob.b2 { width: 380px; height: 300px; right: 6%; top: -80px; background: rgba(124, 92, 255, 0.18); animation-delay: -7s; }
.hero .blob.b1 { top: 40px; }
.hero .blob.b2 { top: 120px; }
.page-hero h1 {
  position: relative;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.page-hero p {
  position: relative;
  color: var(--muted); font-size: 1.08rem;
  max-width: 620px; margin: 0 auto;
  animation: fadeUp 0.7s 0.25s ease both;
}
.page-hero .crumbs {
  position: relative;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 18px;
  animation: fadeIn 0.8s ease both;
}
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--accent); }

/* teaser link rows on home */
.more-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; margin-top: 34px;
}
.more-link .arrow { transition: transform 0.2s ease; }
.more-link:hover .arrow { transform: translateX(5px); }
.center { text-align: center; }

/* legal pages inherit reveal too */
.legal h2 { scroll-margin-top: 90px; }

/* =====================================================
   App-faithful UI mockups (mirrors ReoMac SwiftUI views)
   ===================================================== */

.logo-img { width: 32px; height: 32px; border-radius: 8px; display: block; }

/* language switcher */
.lang-switch { position: relative; }
.lang-switch summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.9rem; font-weight: 600;
  padding: 6px 10px; border-radius: 8px;
  border: 1px solid var(--border);
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { color: var(--text); }
.lang-switch[open] summary { color: var(--text); background: var(--card); }
.lang-switch ul {
  position: absolute; right: 0; top: calc(100% + 8px);
  list-style: none; min-width: 190px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  z-index: 50;
}
.lang-switch li a {
  display: block; padding: 8px 12px; border-radius: 8px;
  color: var(--text); font-size: 0.88rem;
}
.lang-switch li a:hover { background: var(--card-hover); text-decoration: none; }
.lang-switch li a.current { color: var(--accent); font-weight: 700; }

.footer-langs {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.footer-langs-label { color: var(--muted); font-weight: 600; }
.footer-langs a { color: var(--muted); }
.footer-langs a:hover { color: var(--accent); text-decoration: none; }
.footer-langs a.current { color: var(--text); font-weight: 700; }

/* ---- macOS window shell ---- */
.mac-window {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(79, 140, 255, 0.07);
}
.hero-mock { max-width: 880px; margin: 0 auto; animation: fadeUp 0.9s 0.55s ease both; }
.mock-block, .shot-block .mac-window, .shot-block .mock-desktop { max-width: 880px; margin: 0 auto; }

.mock-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  font-family: var(--font);
}
.mock-stage.solid { background: #000; }
.mock-stage.tall { aspect-ratio: 16 / 10.5; }
.stage-dim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }

/* hidden-titlebar traffic lights overlay */
.traffic { position: absolute; top: 12px; left: 12px; display: flex; gap: 8px; z-index: 6; }
.tl { width: 12px; height: 12px; border-radius: 50%; }
.tl.r { background: #ff5f57; } .tl.y { background: #febc2e; } .tl.g { background: #28c840; }

/* ultraThinMaterial glass */
.glass {
  background: rgba(28, 30, 38, 0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #f2f4f8;
}

.mock-top {
  position: absolute; top: 14px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 0 96px;
  z-index: 5;
}
.mock-top-right { display: flex; gap: 8px; }

/* tab switcher & camera switcher: capsule with segments */
.tab-switch, .cam-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border-radius: 24px; padding: 3px;
}
.seg {
  font-size: 11px; font-weight: 600;
  padding: 5px 13px; border-radius: 999px;
  color: rgba(255, 255, 255, 0.75); white-space: nowrap;
}
.seg.active {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.csw-ic {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
}
.csw-ic.on { color: #30d158; }

/* chips (LIVE, battery, audio, zoom) */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 16px; padding: 6px 11px;
  font-size: 11px; font-weight: 600;
}
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-variant-numeric: tabular-nums; }
.dim { opacity: 0.75; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot.green { background: #30d158; }
.dot.red { background: #ff453a; }
.live-word { color: #30d158; font-weight: 700; font-size: 10px; letter-spacing: 0.04em; }
.ic.yellow { color: #ffd60a; }

.batt-bar {
  position: relative; width: 32px; height: 9px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.batt-fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: linear-gradient(90deg, #28b452, #30d158); }

.audio-chip { position: absolute; left: 16px; bottom: 86px; border-radius: 20px; z-index: 5; }
.vol-slider {
  position: relative; width: 92px; height: 3px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.25);
}
.vol-fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: #fff; }
.vol-knob {
  position: absolute; top: 50%; width: 11px; height: 11px;
  border-radius: 50%; background: #fff; transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.zoom-chip { position: absolute; right: 16px; bottom: 86px; border-radius: 20px; z-index: 5; }

/* control bar (bottom-center glass pill) */
.control-bar {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  border-radius: 30px; padding: 10px 18px;
  z-index: 5;
}
.control-bar.slim { gap: 10px; }
.vdiv { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.12); border-radius: 1px; }

.icon-btn {
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  transition: transform 0.15s ease, background 0.15s ease;
}
.icon-btn:hover { transform: scale(1.07); background: rgba(255, 255, 255, 0.18); }
.b22 { width: 22px; height: 22px; }
.b24 { width: 24px; height: 24px; }
.b26 { width: 26px; height: 26px; }
.b28 { width: 28px; height: 28px; }
.b32 { width: 32px; height: 32px; }
.b36 { width: 36px; height: 36px; }
.b40 { width: 40px; height: 40px; }
.icon-btn.power.live-on { background: rgba(48, 209, 88, 0.28); color: #30d158; border: 1px solid rgba(48, 209, 88, 0.4); }
.icon-btn.rec-btn { color: #ff453a; }
.icon-btn.filled { background: rgba(255, 255, 255, 0.22); }
.icon-btn.scissors-on { background: rgba(255, 214, 10, 0.25); color: #ffd60a; border: 1px solid rgba(255, 214, 10, 0.4); }

.ptz { display: inline-flex; align-items: center; gap: 6px; }
.ptz-ud { display: inline-flex; flex-direction: column; gap: 6px; }

.quality-pill {
  font-size: 11px; font-weight: 700;
  width: 34px; height: 22px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---- camera grid mock ---- */
.grid-tiles {
  position: absolute; inset: 58px 14px 76px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.tile {
  position: relative; border-radius: 14px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.tile.hovered { border-color: rgba(255, 255, 255, 0.35); }
.tile.hovered::after { content: ""; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.06); }
.tile-name {
  position: absolute; left: 8px; bottom: 8px;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 10px; border-radius: 999px;
  z-index: 2;
}
.tile-rec {
  position: absolute; left: 8px; top: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 700; color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 9px; border-radius: 999px;
  z-index: 2;
}
.tile-actions {
  position: absolute; right: 8px; bottom: 8px;
  display: inline-flex; gap: 5px; z-index: 2;
}
.tile-actions .icon-btn { background: rgba(0, 0, 0, 0.5); }
.tile-show {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 14px; border-radius: 12px;
  z-index: 3;
}

/* IR night-vision: filtered photo + vignette */
.tile.ir, .thumb.ir {
  filter: grayscale(1) brightness(1.05) contrast(1.25) sepia(0.9) hue-rotate(55deg) saturate(2.4);
}
.tile.ir::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.tile.ir .tile-name { filter: none; }

/* ---- recordings mock ---- */
.rec-panel {
  position: absolute; left: 24px; right: 24px; bottom: 16px;
  border-radius: 22px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 5;
}
.rec-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rec-cams { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.06); border-radius: 999px; padding: 2px; }
.rec-controls { display: inline-flex; align-items: center; gap: 8px; }
.rec-tools { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; }
.speed-pill {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.clip-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: #ffd60a;
  background: rgba(255, 214, 10, 0.08);
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 10px; padding: 6px 10px;
}
.clip-spacer { flex: 1; }
.clip-btn {
  font-size: 10px; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px; border-radius: 999px;
}
.clip-btn.save { background: rgba(255, 214, 10, 0.3); color: #ffd60a; }

.thumb-strip { display: flex; gap: 8px; overflow: hidden; }
.thumb {
  position: relative; flex: 0 0 100px; height: 56px;
  border-radius: 8px; background-size: cover; background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.thumb.sel { border: 2px solid #30d158; }
.thumb-t {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 8.5px; color: #fff; padding: 8px 6px 3px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.day-row { justify-content: center; gap: 14px; }
.day-center { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); }

.timeline { position: relative; height: 58px; }
.tl-base { position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: rgba(255, 255, 255, 0.25); }
.tl-seg {
  position: absolute; top: 12px; height: 22px;
  border-radius: 4px; background: rgba(48, 209, 88, 0.4);
}
.tl-seg.sel { background: rgba(48, 209, 88, 0.85); }
.tl-clip {
  position: absolute; top: 8px; height: 30px;
  background: rgba(255, 214, 10, 0.18);
  border: 1px solid rgba(255, 214, 10, 0.5);
  border-radius: 4px;
}
.tl-handle { position: absolute; top: -1px; bottom: -1px; width: 4px; background: #ffd60a; border-radius: 2px; }
.tl-handle.l { left: -2px; } .tl-handle.r { right: -2px; }
.tl-playhead { position: absolute; top: 2px; height: 40px; width: 1.5px; background: #fff; }
.tl-bubble {
  position: absolute; top: 42px; left: 50%; transform: translateX(-50%);
  font-size: 9px; color: #000; font-weight: 700;
  background: #fff; border-radius: 999px; padding: 1px 7px;
  white-space: nowrap;
}
.tl-ticks {
  position: absolute; left: 0; right: 0; top: 34px;
  display: flex; justify-content: space-between;
  font-size: 8.5px; color: rgba(255, 255, 255, 0.45);
}

/* ---- mini player mock ---- */
.mock-desktop {
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #1b2030, #0d111b 55%, #131b2c);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.fake-win {
  position: absolute; border-radius: 10px;
  background: rgba(26, 32, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 34px 20px 16px;
  display: flex; flex-direction: column; gap: 11px;
}
.fake-win.one { left: 5%; top: 12%; width: 52%; height: 64%; }
.fake-win.two { left: 14%; top: 36%; width: 46%; height: 56%; background: rgba(20, 26, 40, 0.92); }
.fake-bar { position: absolute; top: 0; left: 0; right: 0; height: 24px; background: rgba(255, 255, 255, 0.05); }
.fake-line { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); }
.w45 { width: 45%; } .w55 { width: 55%; } .w60 { width: 60%; } .w70 { width: 70%; } .w75 { width: 75%; } .w80 { width: 80%; } .w85 { width: 85%; }

.mini-window {
  position: absolute; right: 6%; bottom: 10%;
  width: 38%; aspect-ratio: 16 / 9;
  border-radius: 14px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  z-index: 3;
}
.mini-window .tile-rec { top: 8px; left: 8px; }
.mini-close { position: absolute; top: 8px; right: 8px; background: rgba(0, 0, 0, 0.5); }
.mini-actions { position: absolute; bottom: 8px; left: 8px; display: inline-flex; gap: 6px; }
.mini-actions .icon-btn { background: rgba(0, 0, 0, 0.5); }
.mini-caption {
  position: absolute; bottom: 8px; right: 10px;
  font-size: 9px; color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.5); border-radius: 999px; padding: 3px 8px;
}

/* shot figures on screenshots page */
.shots-stack { display: flex; flex-direction: column; gap: 56px; }
.shot-block { margin: 0; }
.shot-block figcaption { max-width: 880px; margin: 18px auto 0; text-align: center; }
.shot-block figcaption h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.shot-block figcaption p { color: var(--muted); font-size: 0.92rem; }

.ic { display: inline-block; vertical-align: middle; }

/* mockup responsiveness */
@media (max-width: 700px) {
  .mock-top { padding-left: 80px; }
  .cam-switch .seg:not(.active) { display: none; }
  .rec-tools .mono.dim { display: none; }
  .audio-chip .vol-slider { width: 48px; }
  .thumb { flex-basis: 72px; height: 42px; }
  .seg { padding: 4px 9px; font-size: 10px; }
  .control-bar { gap: 8px; padding: 8px 12px; }
}

/* =====================================================
   SEO/UX corrections: a11y, mobile nav, focus
   ===================================================== */

/* skip link */
.skip-link {
  position: absolute; left: 16px; top: -48px;
  z-index: 200;
  background: var(--accent); color: #fff;
  padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-weight: 700; font-size: 0.9rem;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; text-decoration: none; }

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

/* hamburger (mobile nav) */
.nav-toggle { display: none; }
.nav-burger {
  display: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid var(--border); border-radius: 10px;
}
.nav-burger span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
    padding: 12px 24px 18px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { display: block; padding: 11px 8px; font-size: 1rem !important; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--accent); }
  .nav-cta { text-align: center; margin-top: 6px; }
  .lang-switch { padding: 4px 0; }
  .lang-switch ul { position: static; margin-top: 8px; box-shadow: none; }
}

/* CTA band actions */
.cta-actions {
  display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
}

/* ---- macOS-only alert (shown to Windows / non-Mac visitors) ---- */
.os-alert {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 300;
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 380px;
  padding: 16px 18px;
  background: linear-gradient(160deg, rgba(28, 32, 46, 0.92), rgba(17, 21, 31, 0.95));
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(79, 140, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(79, 140, 255, 0.12);
  opacity: 0; transform: translateY(16px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.os-alert.show { opacity: 1; transform: none; }
.os-alert-icon { border-radius: 9px; flex-shrink: 0; }
.os-alert-text strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.os-alert-body { color: var(--muted); font-size: 0.85rem; line-height: 1.5; margin: 0; }
.os-alert-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.85rem; line-height: 1;
  padding: 4px 6px; border-radius: 6px;
  flex-shrink: 0; margin: -4px -6px 0 0;
}
.os-alert-close:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); }
@media (max-width: 480px) {
  .os-alert { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ---- Reolink informational page ---- */
.reo-prose { max-width: 760px; margin: -16px auto 0; }
.reo-prose p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 16px; }
.reo-prose p:last-child { margin-bottom: 0; }

.reo-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 820px; margin: 44px auto 0;
}
.reo-stat {
  text-align: center; padding: 24px 12px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.reo-stat strong {
  display: block; font-size: 1.9rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #6ea8ff, #b89bff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.reo-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.82rem; line-height: 1.4; }

.reo-spotlight {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: center;
  max-width: 920px; margin: 0 auto;
}
.reo-spotlight-mock {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 10;
}
.reo-spotlight-mock .dev-screen { width: 100%; height: 100%; background-size: cover; background-position: center; position: relative; }
.reo-spec dl { display: flex; flex-direction: column; gap: 0; }
.reo-spec dl > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 2px; border-bottom: 1px solid var(--border);
}
.reo-spec dt { color: var(--muted); font-size: 0.9rem; }
.reo-spec dd { font-weight: 600; font-size: 0.92rem; text-align: right; }
.reo-spec-note { margin-top: 18px; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.reo-bridge-grid { margin-top: 12px; }
.reo-disclaimer { margin-top: 36px; font-size: 0.82rem; }

@media (max-width: 760px) {
  .reo-stats { grid-template-columns: repeat(2, 1fr); }
  .reo-spotlight { grid-template-columns: 1fr; }
}

/* reduced motion: switch everything off */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
