/* visionmixer.app — design system
   Brand: navy stage, teal + blue beams, red tally. Native-Mac font stack. */
:root {
  --bg: #0a111d;
  --bg-raise: #0f1826;
  --panel: #121d2e;
  --panel-2: #16233a;
  --line: rgba(148, 175, 215, 0.14);
  --line-strong: rgba(148, 175, 215, 0.26);
  --text: #e9eef7;
  --text-2: #9fb0c8;
  --text-3: #66758d;
  --teal: #2fd0c0;
  --blue: #3f93ec;
  --red: #ff4a4a;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: transparent;   /* let the floating orbs (fixed, z-index -1) glow through */
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Softly drifting color blobs behind everything — a little life + a nod to the
   pink from the screenshots. Sit below content; disabled for reduced-motion. */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-orbs span { position: absolute; border-radius: 50%; filter: blur(72px); will-change: transform; }
.bg-orbs .o1 { width: 48vw; height: 48vw; left: -10vw; top: -8vh; opacity: 0.22;
  background: radial-gradient(circle, #ff4d97 0%, transparent 66%); animation: orb-a 34s ease-in-out infinite; }
.bg-orbs .o2 { width: 42vw; height: 42vw; right: -12vw; top: 14vh; opacity: 0.16;
  background: radial-gradient(circle, #2fd0c0 0%, transparent 66%); animation: orb-b 44s ease-in-out infinite; }
.bg-orbs .o3 { width: 40vw; height: 40vw; left: 16vw; bottom: -12vh; opacity: 0.15;
  background: radial-gradient(circle, #3f7bff 0%, transparent 66%); animation: orb-c 52s ease-in-out infinite; }
.bg-orbs .o4 { width: 32vw; height: 32vw; right: 6vw; bottom: 8vh; opacity: 0.14;
  background: radial-gradient(circle, #b14bff 0%, transparent 66%); animation: orb-a 40s ease-in-out infinite reverse; }
@keyframes orb-a { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6vw,5vh) scale(1.12)} }
@keyframes orb-b { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,7vh) scale(1.08)} }
@keyframes orb-c { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(5vw,-6vh) scale(1.15)} }
@media (prefers-reduced-motion: reduce) { .bg-orbs span { animation: none !important; } }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 17, 29, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand svg { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--text-2); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-block; border-radius: 10px; font-weight: 600; font-size: 15px;
  padding: 10px 20px; transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #34e0cd, #1fa8c9);
  color: #05231f;
  box-shadow: 0 4px 18px rgba(47, 208, 192, 0.28);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(47, 208, 192, 0.4); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-lg { padding: 14px 28px; font-size: 16.5px; border-radius: 12px; }
.nav .btn { padding: 8px 16px; font-size: 14px; }

/* Store-closed mode: Download keeps its label, gains a small tag underneath,
   and links to #newsletter. Applied by the site-config script. */
.btn-soon { line-height: 1.15; text-align: center; padding-top: 8px; padding-bottom: 7px; }
.soon-tag {
  display: block; font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.72;
}
.nav .btn-soon { padding-top: 5px; padding-bottom: 4px; }
.btn-lg.btn-soon { padding-top: 11px; padding-bottom: 10px; }
.btn-lg.btn-soon .soon-tag { font-size: 10.5px; }

/* Audience line under the hero sub + the "easy" band under the header. */
.hero-for {
  color: var(--text-3); font-size: 13.5px; letter-spacing: 0.4px;
  margin: 14px 0 4px;
}
.easy { padding: 8px 24px 26px; }
.easy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1060px; margin: 0 auto;
}
.easy-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px;
}
.easy-card h3 { font-size: 15.5px; margin-bottom: 7px; color: var(--teal); }
.easy-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; }
@media (max-width: 760px) { .easy-grid { grid-template-columns: 1fr; } }

/* ── Hero ────────────────────────────────────────────── */
.hero { position: relative; padding: 92px 0 30px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -40% -20% auto; height: 560px; pointer-events: none;
  background:
    radial-gradient(560px 340px at 38% 30%, rgba(47, 208, 192, 0.16), transparent 70%),
    radial-gradient(560px 340px at 62% 30%, rgba(63, 147, 236, 0.16), transparent 70%);
}
.hero h1 { font-size: clamp(38px, 6vw, 62px); max-width: 820px; margin: 0 auto; }
.hero h1 .grad {
  background: linear-gradient(100deg, #37e2cf 10%, #47a2f5 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-2); max-width: 640px; margin: 22px auto 0; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13.5px; color: var(--text-3); }
.hero-shot { margin: 56px auto 0; max-width: 1020px; position: relative; }
.hero-shot svg { width: 100%; height: auto; display: block; border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line); }
/* Real product hero video: rounded card, soft shadow, and a light zoom that
   trims the macOS menu bar / desktop edges while keeping the app window. */
.hero-media { position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--line);
  background: #0e1622; aspect-ratio: 16 / 9; }
.hero-video { width: 100%; height: 100%; display: block; object-fit: cover;
  transform: scale(1.055); transform-origin: 50% 64%; }

.works-with { padding: 34px 0 8px; text-align: center; }
.works-with .label { font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--text-3); }
.works-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-top: 14px; }
.works-badges span { color: var(--text-2); font-weight: 600; font-size: 15.5px; opacity: 0.82; }

/* ── Feature rows ────────────────────────────────────── */
.features { padding: 72px 0 8px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.kicker.teal { color: var(--teal); } .kicker.blue { color: #5aa5f0; } .kicker.red { color: #ff7b6e; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 58px 0;
}
.feature:nth-child(even) .f-visual { order: -1; }
.feature h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 10px 0 14px; }
.feature .f-copy p { color: var(--text-2); font-size: 16.5px; }
.feature ul { margin: 18px 0 0; padding: 0; list-style: none; }
.feature li { color: var(--text-2); padding: 5px 0 5px 26px; position: relative; font-size: 15.5px; }
.feature li::before {
  content: ""; position: absolute; left: 2px; top: 13px; width: 12px; height: 7px;
  border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}
.f-visual svg {
  width: 100%; height: auto; display: block; border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--line);
}
/* Real product screenshots — panels of varied shapes. Show each at its natural
   aspect ratio, centered, with the rounded card + shadow hugging the image
   itself (no letterbox bands, no forced-16:9 cropping). */
.f-media { display: flex; align-items: center; justify-content: center; }
.f-media img {
  display: block; max-width: 100%; max-height: 520px; width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--line);
}
/* Deck feature: the grid, with the mini viewer as a SEPARATE floating window
   overhanging the corner so it clearly reads as its own panel on top. */
.deck-stack { position: relative; display: inline-block; }
.deck-stack .deck-grid { max-height: 440px; }
.deck-stack .deck-mini {
  position: absolute; right: -7%; bottom: -14%; width: 33%; height: auto;
  max-height: none; border-radius: 12px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255,255,255,0.14);
}
@media (max-width: 760px) {
  .deck-stack .deck-mini { right: -3%; bottom: -10%; width: 38%; }
}

/* ── Pricing ─────────────────────────────────────────── */
.pricing { padding: 88px 0; text-align: center; }
.pricing h2 { font-size: clamp(28px, 4vw, 40px); }
.pricing .sub { color: var(--text-2); margin-top: 12px; }
.price-card {
  max-width: 460px; margin: 40px auto 0; text-align: left;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-strong); border-radius: 20px; padding: 34px 34px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.price-line { display: flex; align-items: baseline; gap: 10px; }
.price-line .amount { font-size: 54px; font-weight: 800; letter-spacing: -0.03em; }
.price-line .terms { color: var(--text-2); font-size: 15px; }
.price-card ul { list-style: none; margin: 20px 0 26px; padding: 0; }
.price-card li { padding: 7px 0 7px 28px; position: relative; color: var(--text-2); font-size: 15.5px; }
.price-card li::before {
  content: ""; position: absolute; left: 2px; top: 15px; width: 12px; height: 7px;
  border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}
.price-card .btn { width: 100%; text-align: center; }
.price-foot { margin-top: 14px; font-size: 13px; color: var(--text-3); text-align: center; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { padding: 24px 0 90px; }
.faq h2 { text-align: center; font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 34px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none; position: relative; padding-right: 26px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: -2px; font-size: 20px; color: var(--text-3); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-2); font-size: 14.5px; margin-top: 10px; }

/* ── Download band + footer ──────────────────────────── */
.dl-band {
  text-align: center; padding: 78px 24px;
  background:
    radial-gradient(640px 300px at 50% 0%, rgba(47, 208, 192, 0.12), transparent 70%),
    var(--bg-raise);
  border-top: 1px solid var(--line);
}
.dl-band h2 { font-size: clamp(28px, 4vw, 38px); }
.dl-band p { color: var(--text-2); margin: 14px 0 30px; }
footer { border-top: 1px solid var(--line); padding: 34px 0; }
.foot-inner { display: flex; align-items: center; gap: 20px; color: var(--text-3); font-size: 13.5px; flex-wrap: wrap; }
.foot-inner .brand { font-size: 14px; }
.foot-inner .brand svg { width: 20px; height: 20px; }
.foot-links { margin-left: auto; display: flex; gap: 18px; }
.foot-links a { color: var(--text-3); }
.foot-links a:hover { color: var(--text-2); }

@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 26px; padding: 40px 0; }
  .feature:nth-child(even) .f-visual { order: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding-top: 64px; }
}

/* ── Comparison table ────────────────────────────────── */
.compare { padding: 80px 0 20px; }
.compare h2 { text-align: center; font-size: clamp(26px, 3.4vw, 34px); }
.compare-sub { text-align: center; color: var(--text-2); margin: 12px auto 34px; max-width: 560px; }
.compare-scroll {
  overflow-x: auto; border: 1px solid var(--line-strong); border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.compare table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; font-size: 14.5px; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line); }
.compare td:first-child { text-align: left; color: var(--text); max-width: 340px; font-weight: 500; }
.compare td:not(:first-child):not(.vm) { color: var(--text-3); font-size: 13.5px; }
.compare thead th { background: var(--panel-2); color: var(--text-2); font-size: 13.5px; font-weight: 700; }
.compare th.vm {
  background: linear-gradient(135deg, #34e0cd, #1fa8c9); color: #062a26;
  font-weight: 800; font-size: 15px; letter-spacing: 0.2px;
  border-left: 1px solid rgba(47, 208, 192, 0.45); border-right: 1px solid rgba(47, 208, 192, 0.45);
}
.compare td.vm {
  background: rgba(47, 208, 192, 0.09); color: var(--text); font-weight: 600;
  border-left: 1px solid rgba(47, 208, 192, 0.32); border-right: 1px solid rgba(47, 208, 192, 0.32);
  border-bottom-color: rgba(47, 208, 192, 0.18);
}
.compare tbody tr:hover td { background: rgba(255, 255, 255, 0.022); }
.compare tbody tr:hover td.vm { background: rgba(47, 208, 192, 0.14); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .y {
  display: inline-flex; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: #04302b; font-weight: 800; font-size: 14px;
  align-items: center; justify-content: center;
}
.compare td.vm .y { width: 30px; height: 30px; font-size: 16px; box-shadow: 0 3px 12px rgba(47, 208, 192, 0.35); }
.compare .n {
  display: inline-flex; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid #35435c; color: #5a698d; font-weight: 600; font-size: 12px;
  align-items: center; justify-content: center;
}
.compare .cellnote { font-size: 11.5px; color: var(--text-3); display: block; margin-top: 4px; }
.compare-note { text-align: center; color: var(--text-3); font-size: 12.5px; margin-top: 16px; }
