/* ---------- tokens ---------- */
:root {
  --bg: #0b0c0e;
  --bg-raised: #111214;
  --card: #17181b;
  --card-border: #2a2c30;
  --text: #e8e8e6;
  --text-dim: #b7b9bd;
  --muted: #8a8d93;
  --accent: #e8a23d;
  --accent-dim: #6b5228;
  --accent-ink: #1a1204;
  --accent-light: #f6c878;
  --accent-deep: #d4841f;
  --sony: #4a90d9;
  --sony-ink: #08131f;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --wrap: 1100px;
  --wrap-narrow: 760px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(1200px 600px at 50% -10%, #1b1d21 0%, var(--bg) 60%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* subtle film-grain texture over the whole page, cinema-suite feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav, main, .footer { position: relative; z-index: 2; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }

a { color: inherit; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(232, 162, 61, 0.12);
  color: var(--accent);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-size: 0.9em;
}

/* ---------- brand mark ---------- */
.brand-mark {
  display: inline-block;
  width: 14px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.brand.small .brand-mark { width: 11px; height: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 14, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 15px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--text); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: var(--accent-ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 24px -10px rgba(232, 162, 61, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 32px -8px rgba(232, 162, 61, 0.7);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 6px 14px -8px rgba(232, 162, 61, 0.5);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.32); }

.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-disabled {
  background: var(--card-border);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}
.btn-disabled:hover { transform: none; filter: none; }

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.eyebrow.center { justify-content: center; }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.muted { color: var(--muted); font-weight: 700; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 44px;
}

/* ---------- hero ---------- */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-title {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* ---------- camera-to-timeline flow ---------- */
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.flow-panel {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px 24px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

.flow-label {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
}

/* camera panel */
.flow-camera { width: 300px; text-align: center; }

.cam-icon-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.6));
}

.cam-icon { width: 100%; height: auto; display: block; }

.shot-btn {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.shot-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffd18f, var(--accent) 55%, #a8691a 100%);
  box-shadow: 0 0 5px 1px rgba(232, 162, 61, 0.55);
  animation: shot-press 2.6s ease-in-out infinite;
}

.shot-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: shot-ring 2.6s ease-out infinite;
}

.shot-flash {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 150, 0.95), rgba(232, 162, 61, 0.3) 45%, transparent 72%);
  opacity: 0;
  animation: shot-flash 2.6s ease-out infinite;
}

@keyframes shot-press {
  0%, 4%, 100% { transform: scale(1); }
  6%           { transform: scale(0.7); }
  12%          { transform: scale(1.12); }
  18%          { transform: scale(1); }
}

@keyframes shot-flash {
  0%, 4%  { opacity: 0; transform: scale(0.5); }
  8%      { opacity: 1; transform: scale(1); }
  32%     { opacity: 0; transform: scale(1.8); }
  100%    { opacity: 0; }
}

@keyframes shot-ring {
  0%, 5%  { opacity: 0; transform: scale(0.5); }
  10%     { opacity: 0.9; transform: scale(1); }
  60%     { opacity: 0; transform: scale(3.4); }
  100%    { opacity: 0; }
}

.flow-press {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.flow-tc {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--accent);
}

/* connector */
.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: none;
  color: var(--muted);
}

.flow-connector span {
  font-size: 11px;
  white-space: nowrap;
}

.flow-arrow-wrap { position: relative; width: 56px; height: 10px; }
.flow-arrow { width: 56px; height: 10px; color: var(--card-border); display: block; }

.flow-travel {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px 1px rgba(232, 162, 61, 0.7);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: flow-travel 2.6s ease-in-out infinite;
}

@keyframes flow-travel {
  0%, 18%   { opacity: 0; left: 0%; }
  22%       { opacity: 1; left: 0%; }
  38%       { opacity: 1; left: 100%; }
  42%, 100% { opacity: 0; left: 100%; }
}

/* premiere timeline panel */
.flow-timeline { width: 420px; }

.tl-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: var(--muted);
}

.tl-name { color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tl-ruler {
  display: flex;
  justify-content: space-between;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
  padding: 0 2px;
}

.tl-track { display: flex; align-items: stretch; gap: 1px; margin-bottom: 1px; }
.tl-track-v { margin-top: 2px; }

.tl-trackhead {
  flex: none;
  width: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: #1a1b1e;
  border-radius: 6px 0 0 6px;
}

.tl-trackhead-active {
  color: #cfe0ff;
  background: #223047;
  box-shadow: inset 2px 0 0 #4f7fd6;
}

.tl-tools { display: flex; gap: 3px; }

.tl-tools i {
  width: 6px;
  height: 6px;
  border-radius: 1.5px;
  background: currentColor;
  opacity: 0.35;
  display: block;
}

.tl-clip {
  position: relative;
  flex: 1;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  border: 1px solid #000;
  border-left: none;
}

.tl-clip-video {
  height: 46px;
  background: linear-gradient(180deg, #47547a 0%, #3a4568 100%);
}

.tl-thumbrow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 15px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, #6c7cab, #566093);
}

.tl-clip-audio {
  height: 30px;
  background: linear-gradient(180deg, #2c5850 0%, #1f453f 100%);
  color: rgba(255, 255, 255, 0.55);
}

.tl-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tl-playhead {
  position: absolute;
  top: -6px;
  bottom: 0;
  width: 1px;
  background: #7fd4e8;
  z-index: 3;
}

.tl-playhead::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -3.5px;
  width: 7px;
  height: 6px;
  background: #7fd4e8;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.tl-flag {
  position: absolute;
  top: -9px;
  width: 11px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  transform: translateX(-50%);
  opacity: 0.9;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.tl-flag-in {
  opacity: 1;
  animation: flag-drop 2.6s ease-out infinite;
}

@keyframes flag-drop {
  0%, 36% { transform: translate(-50%, -14px); opacity: 0; }
  40%     { transform: translate(-50%, 0); opacity: 1; }
  100%    { transform: translate(-50%, 0); opacity: 1; }
}

.tl-landing {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 150, 0.9), rgba(232, 162, 61, 0.25) 50%, transparent 75%);
  transform: translate(-50%, 50%) scale(0.3);
  opacity: 0;
  z-index: 1;
  animation: landing-glow 2.6s ease-out infinite;
}

@keyframes landing-glow {
  0%, 36% { opacity: 0; transform: translate(-50%, 50%) scale(0.3); }
  40%     { opacity: 1; transform: translate(-50%, 50%) scale(1); }
  56%     { opacity: 0; transform: translate(-50%, 50%) scale(1.8); }
  100%    { opacity: 0; }
}

@media (max-width: 720px) {
  .flow { flex-direction: column; }
  .flow-connector { flex-direction: row; }
  .flow-arrow-wrap { transform: rotate(90deg); }
  .flow-arrow { width: 40px; }
  .flow-camera, .flow-timeline { width: 100%; max-width: 340px; }
  .how-layout { flex-direction: column; }
  .how-panel-shot { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ---------- problem / statement ---------- */
.problem { padding: 40px 0 110px; }

.statement {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.statement-body {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- how it works ---------- */
.how { padding: 90px 0; background: var(--bg-raised); }

.how-layout {
  display: flex;
  gap: 72px;
  align-items: center;
  margin: 56px 0 76px;
}

.how-steps { flex: 1; min-width: 300px; }

.step-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 20px;
  color: var(--text-dim);
}

.step-list li:first-child { padding-top: 0; }
.step-list strong { color: var(--text); }

.step-num {
  flex: none;
  width: 52px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: rgba(232, 162, 61, 0.4);
}

.how-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin: 0;
}

.how-panel-shot {
  flex: none;
  width: 340px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 70px -24px rgba(232, 162, 61, 0.3);
}

.panel-shot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-shot-caption {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list li {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.idx {
  flex: none;
  width: 40px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--muted);
  padding-top: 3px;
}

.feature-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
}

/* ---------- cards (shared) ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ---------- compatibility ---------- */
.compat { padding: 90px 0; }

.compat-card { display: grid; gap: 28px; }

.compat-row h3 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.compat-row p,
.compat-row ul {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.compat-row ul { padding-left: 20px; }
.compat-row li { margin-bottom: 4px; }

.compat-not { border-top: 1px solid var(--card-border); padding-top: 24px; }
.compat-not p { color: var(--muted); }

/* ---------- camera collage ---------- */
.cam-collage {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 16px;
}

.cam-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 26px -14px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease;
}

.cam-tile:hover { transform: translateY(-3px); }

.cam-eos { background: var(--card); color: var(--text); }
.cam-xf { background: var(--accent); color: var(--accent-ink); border-color: transparent; }

.cam-legend {
  display: flex;
  gap: 20px;
  font-size: 12.5px;
  color: var(--muted);
}

.cam-legend span { display: inline-flex; align-items: center; gap: 7px; }

.cam-swatch {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}

.cam-swatch.cam-eos { background: var(--card-border); }
.cam-swatch.cam-xf { background: var(--accent); }
.cam-swatch.cam-sony { background: var(--sony); }

.cam-sony { background: var(--sony); color: var(--sony-ink); border-color: transparent; }

.cam-group { margin-bottom: 22px; }
.cam-group:last-of-type { margin-bottom: 0; }
.cam-group-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.cam-group .cam-collage { margin: 0 0 4px; }
.cam-group-note { font-size: 13px; color: var(--muted); margin: 8px 0 0; }

/* ---------- download ---------- */
.download { padding: 40px 0 110px; }

.download-card {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  padding-top: 44px;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -8px rgba(232, 162, 61, 0.55);
}

.download-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.download-name {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 15px;
}

.download-version {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  font-size: 13px;
}

.download-desc {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 24px;
}

.download-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.download-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--text-dim);
}

.download-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.download-req {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
  margin-bottom: 22px;
}

.download-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.6;
}

/* ---------- faq ---------- */
.faq { padding: 90px 0 120px; background: var(--bg-raised); }

.accordion {
  display: grid;
  gap: 12px;
}

.acc-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  font-family: inherit;
}

.acc-icon {
  flex: none;
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.acc-item.open .acc-icon { transform: rotate(45deg); }

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.acc-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-dim); }

/* ---------- legal pages ---------- */
.legal {
  padding: 90px 0 80px;
}

.legal h1 {
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.legal .legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 40px;
}

.legal h2 {
  font-size: 19px;
  margin: 40px 0 12px;
}

.legal p, .legal li {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal ul {
  padding-left: 20px;
  margin: 12px 0;
}

.legal a { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 70px 0 56px; }
  .mock-card { padding: 22px 18px 18px; }
  .mock-card-head { flex-direction: column; gap: 4px; align-items: flex-start; }
  .feature-list li { gap: 18px; }
  .how, .compat, .faq { padding: 64px 0; }
  .problem, .download { padding: 30px 0 70px; }
}
