/* Superdock — ground-up rebuild.
   Calm dark canvas. The videos carry the colour; the page stays quiet.
   General Sans display, Inter body, one blue accent used sparingly. */
@font-face { font-family: "General Sans"; src: url("fonts/GeneralSans-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "General Sans"; src: url("fonts/GeneralSans-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "General Sans"; src: url("fonts/GeneralSans-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #08080a;            /* near-black, calm */
  --bg-soft: #0f0f13;       /* raised panels */
  --ink: #f4f4f6;
  --ink-muted: #9a9aa4;
  --ink-dim: #63636d;
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.05);
  --accent: #2e93ff; --accent-btn: #1669e0;        /* one blue; CTA + hover only */
  --display: "General Sans", -apple-system, ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", -apple-system, ui-sans-serif, system-ui, sans-serif;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow { font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }

/* buttons — one solid blue CTA, one quiet ghost. No gloss, no gimmick. */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 10px; transition: opacity .15s, background .15s; cursor: pointer; }
.btn.primary { background: var(--accent-btn, #1669e0); color: #fff; }
.btn.primary:hover { opacity: .9; }
.btn.ghost { background: rgba(255,255,255,.05); color: var(--ink); border: 1px solid var(--border); }
.btn.ghost:hover { background: rgba(255,255,255,.08); }
.btn.text { color: var(--ink-muted); padding: 12px 8px; }
.btn.text:hover { color: var(--ink); }
.btn.text::after { content: " →"; }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(8,8,10,.78); backdrop-filter: saturate(140%) blur(20px); border-bottom: 1px solid var(--border-soft); }
.nav .wrap { display: flex; align-items: center; height: 66px; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.nav .brand img { width: 26px; height: 26px; border-radius: 7px; }
/* centre the links, push the CTA to the far right */
.nav .links { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav .links a:not(.navcta) { color: var(--ink-muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav .links a:not(.navcta):hover { color: var(--ink); }
.nav .navcta { display: inline-flex; align-items: center; background: var(--accent-btn, #1669e0); color: #fff; font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 9px; box-shadow: 0 4px 14px -4px rgba(46,147,255,.5); transition: background .15s, transform .1s; }
.nav .navcta:hover { background: #1b7fee; }
.nav .navcta:active { transform: scale(.97); }
@media (max-width: 760px) { .nav .links { display: none; } }

/* hero — calm dark, confident type, product in a clean framed video (no wallpaper wash) */
.hero { text-align: center; padding: 116px 0 0; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 620px; background: radial-gradient(closest-side, rgba(46,147,255,.12), transparent 72%); pointer-events: none; }
.hero .inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 0 28px; }
.hero .pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-muted); background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; margin-bottom: 26px; }
.hero .pill b { color: var(--accent); font-weight: 600; }
.hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(44px, 6.6vw, 78px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 20px; }
.hero .sub { font-size: 20px; color: var(--ink-muted); max-width: 540px; margin: 0 auto 32px; line-height: 1.45; }
.hero .actions { display: flex; gap: 14px; justify-content: center; align-items: center; }
/* framed hero product video: a clean rounded frame, not full-bleed */
.hero .frame { position: relative; z-index: 1; max-width: 1000px; margin: 64px auto 0; padding: 0 28px; }
.hero .frame video { width: 100%; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 50px 120px -50px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02); }

/* feature — alternating, generous, video framed, text quiet */
.feat { padding: 104px 0; border-top: 1px solid var(--border-soft); }
.feat .grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feat.flip .media { order: -1; }
.feat h2 { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -0.02em; line-height: 1.08; margin: 8px 0 16px; }
.feat p { font-size: 18px; color: var(--ink-muted); max-width: 440px; margin: 0 0 30px; line-height: 1.55; }
.feat .rows { border-top: 1px solid var(--border); }
.feat .row { display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--border); padding: 14px 0; font-size: 15px; color: #cfcfd6; }
.feat .row .ic { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.feat .media video { width: 100%; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 40px 90px -50px rgba(0,0,0,.9); }
@media (max-width: 860px) { .feat { padding: 64px 0; } .feat .grid { grid-template-columns: 1fr; gap: 32px; } .feat.flip .media { order: 0; } }

/* centered feature (overview) — big statement, wide video */
.center-feat { padding: 104px 0; border-top: 1px solid var(--border-soft); text-align: center; }
.center-feat .head { max-width: 620px; margin: 0 auto 48px; padding: 0 28px; }
.center-feat h2 { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 14px; }
.center-feat p { font-size: 19px; color: var(--ink-muted); margin: 0; line-height: 1.45; }
.center-feat .media { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.center-feat .media video { width: 100%; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 50px 110px -55px rgba(0,0,0,.9); }

/* statement */
.statement { text-align: center; padding: 120px 28px; border-top: 1px solid var(--border-soft); }
.statement h2 { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 12px; max-width: 18ch; margin-inline: auto; }
.statement p { font-size: 19px; color: var(--ink-muted); margin: 0; }

/* pricing */
.pricing { text-align: center; padding: 104px 28px; border-top: 1px solid var(--border-soft); }
.pricing .head h2 { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4.4vw, 48px); letter-spacing: -0.02em; margin: 0 0 12px; }
.pricing .head p { font-size: 19px; color: var(--ink-muted); margin: 0 0 46px; }
.plaque { max-width: 400px; margin: 0 auto; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 18px; padding: 42px 38px; }
.plaque .price { font-family: var(--display); font-weight: 600; font-size: 58px; letter-spacing: -0.03em; line-height: 1; }
.plaque .price span { font-family: var(--body); font-size: 17px; font-weight: 400; color: var(--ink-muted); letter-spacing: 0; }
.plaque ul { list-style: none; padding: 0; margin: 26px 0; text-align: left; max-width: 270px; margin-inline: auto; }
.plaque li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; color: var(--ink-muted); }
.plaque li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 11px; height: 6px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plaque .btn.primary { width: 100%; justify-content: center; margin-top: 6px; }
.pricing .foot { font-size: 14px; color: var(--ink-muted); margin-top: 28px; }
.pricing .foot a { color: var(--ink); border-bottom: 1px solid var(--border); }

/* close */
.close { text-align: center; padding: 130px 28px 116px; border-top: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.close::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 700px; height: 380px; background: radial-gradient(closest-side, rgba(46,147,255,.10), transparent 72%); pointer-events: none; }
.close img.mark { width: 58px; height: 58px; border-radius: 14px; margin: 0 auto 26px; position: relative; }
.close h2 { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -0.02em; line-height: 1.04; margin: 0 0 28px; position: relative; }
.close .actions { display: flex; gap: 14px; justify-content: center; position: relative; }

footer { border-top: 1px solid var(--border-soft); padding: 44px 0; color: var(--ink-dim); font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; align-items: center; }
footer .links a { color: var(--ink-dim); margin-left: 20px; transition: color .15s; }
footer .links a:first-child { margin-left: 0; }
footer .links a:hover { color: var(--ink); }

/* doc pages */
.doc { padding: 72px 0 96px; max-width: 720px; }
.doc h1 { font-family: var(--display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; }
.doc h2 { font-family: var(--display); font-weight: 600; font-size: 22px; margin-top: 40px; letter-spacing: -0.01em; }
.doc p, .doc li { color: var(--ink-muted); font-size: 16px; line-height: 1.6; }
.doc .muted { color: var(--ink-dim); font-size: 14px; }
.postlist { list-style: none; padding: 0; }
.postlist li { padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.postlist a { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; }
.postlist a:hover { color: var(--accent); }
.postlist .date { color: var(--ink-dim); font-size: 13px; display: block; margin-top: 5px; }

/* ---- download / license doc pages ---- */
.doc-hero { text-align: center; padding: 96px 0 40px; border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.doc-hero::before { content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 720px; height: 420px; background: radial-gradient(closest-side, rgba(46,147,255,.10), transparent 72%); pointer-events: none; }
.doc-hero .wrap { position: relative; max-width: 720px; }
.doc-hero .mark { width: 66px; height: 66px; border-radius: 15px; margin: 0 auto 26px; }
.doc-hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.02em; line-height: 1.04; margin: 0 0 16px; }
.doc-hero .lead { font-size: 19px; color: var(--ink-muted); max-width: 520px; margin: 0 auto 30px; line-height: 1.5; }
.doc-hero .note, .doc-body .note { font-size: 14px; color: var(--ink-dim); max-width: 460px; margin: 18px auto 0; line-height: 1.5; }
.btn.big { font-size: 16px; padding: 14px 30px; border-radius: 12px; }
.btn.primary[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.doc-body { padding: 56px 0 96px; }
.wrap.narrow { max-width: 680px; }
.doc-body h2 { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; margin: 44px 0 14px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p { font-size: 16px; color: var(--ink-muted); line-height: 1.65; margin: 0 0 14px; }
.doc-body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; background: rgba(255,255,255,.06); border: 1px solid var(--border-soft); border-radius: 6px; padding: 2px 7px; color: var(--ink); }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0 0 8px; }
.steps li { counter-increment: s; position: relative; padding: 0 0 20px 46px; font-size: 16px; color: var(--ink-muted); line-height: 1.6; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--body); font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.steps li b { color: var(--ink); font-weight: 600; }
.doc-body .btn { margin: 8px 10px 8px 0; }
.textlink { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color .15s; }
.textlink:hover { border-bottom-color: var(--accent); }

/* ---- manage page ---- */
.row-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 6px 0 4px; }
.row-form input[type="email"] { flex: 1 1 240px; min-width: 0; padding: 12px 14px; font-size: 15px; font-family: var(--body);
  background: var(--bg-soft); color: var(--ink); border: 1px solid var(--border); border-radius: 10px; }
.row-form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.devices { list-style: none; padding: 0; margin: 8px 0 0; border-top: 1px solid var(--border); }
.devices li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.devices li b { font-weight: 600; color: var(--ink); font-size: 16px; }
.devices li .date { display: block; color: var(--ink-dim); font-size: 13px; margin-top: 3px; }
.devices li.empty { color: var(--ink-dim); justify-content: flex-start; }
.btn.ghost.small { padding: 8px 16px; font-size: 14px; }

/* ---- pricing: launch badge + anchor price ---- */
.plaque { position: relative; }
.plaque .badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); background: rgba(46,147,255,.12); border: 1px solid rgba(46,147,255,.25);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 18px; }
.plaque .price .was { font-family: var(--body); font-size: 22px; font-weight: 400; color: var(--ink-muted);
  text-decoration: line-through; margin-right: 12px; letter-spacing: 0; vertical-align: middle; }
.plaque .price .unit { font-family: var(--body); font-size: 17px; font-weight: 400; color: var(--ink-muted); letter-spacing: 0; }
.plaque .btn.primary { margin-top: 8px; }
.plaque .btn.buyline { width: 100%; justify-content: center; margin-top: 10px; }

/* FAQ: question-led, self-contained answers */
.faq { padding: 72px 0; }
.faq .wrap.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.faq h2 { font-size: 32px; margin-bottom: 28px; }
.faq h3 { font-size: 18px; margin: 26px 0 8px; }
.faq p { color: var(--ink-muted); font-size: 15px; line-height: 1.6; }
.faq .updated { font-size: 13px; color: var(--ink-muted); margin-top: 30px; }
footer, footer .links a { color: var(--ink-muted); }

/* Blog posts */
.post .crumbs { font-size: 13px; color: var(--ink-muted); margin-bottom: 14px; }
.post .crumbs a { color: var(--ink-muted); }
.post .byline { font-size: 13px; color: var(--ink-muted); margin: -6px 0 22px; }
.post img.hero { width: 100%; height: auto; border-radius: 14px; margin: 0 0 28px; display: block; }
.post h2 { margin-top: 34px; }
.post h3 { margin-top: 22px; font-size: 17px; }
.post ol.steps li b { display: inline; }
.post table.compare { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14px; }
.post table.compare th, .post table.compare td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.post table.compare th { color: var(--ink); font-weight: 600; }
.post .cta { margin: 34px 0; padding: 22px; border: 1px solid var(--border); border-radius: 14px; }
.post .cta .muted { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-muted); }
.post ul.related { padding-left: 18px; }
.post ul.related li { margin: 6px 0; }

/* FAQ accordions: the question is the control, the answer stays in the DOM for crawlers */
details.qa { border-top: 1px solid var(--border); }
details.qa:last-of-type { border-bottom: 1px solid var(--border); }
details.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary h3 { margin: 0; font-size: 17px; font-weight: 600; }
details.qa summary::after { content: "+"; font-size: 22px; line-height: 1; color: var(--ink-muted); flex: none; transition: transform .15s; }
details.qa[open] summary::after { content: "\2212"; }
details.qa p { margin: 0 0 18px; }

/* Mobile */
@media (max-width: 760px) {
  .wrap { padding: 0 18px; }
  .nav .wrap { height: 58px; justify-content: space-between; gap: 12px; }
  .nav .brand { font-size: 17px; }
  .nav .navcta { padding: 8px 14px; font-size: 13px; white-space: nowrap; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero .sub { font-size: 17px; }
  .hero .pill { font-size: 12px; padding: 5px 12px; }
  .hero .actions, .close .actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .actions .btn, .close .actions .btn { text-align: center; }
  .hero .frame, .media, video { max-width: 100%; }
  .center-feat .media, .feat .media { margin: 0; }
  .statement h2, .pricing h2, .close h2, .faq h2 { font-size: 28px; }
  .plaque { width: auto; margin: 0 18px; }
  .plaque .price { font-size: 40px; }
  .faq .wrap.narrow { padding: 0 18px; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
  .post img.hero { border-radius: 10px; }
  .post table.compare { display: block; overflow-x: auto; }
}

/* Reserve the video box before the poster arrives: no layout shift */
.hero .frame video, .media video { aspect-ratio: 16 / 9; width: 100%; height: auto; display: block; }

/* Answers and Compare pages: the icon is the visual anchor */
.post .answer { display: flex; gap: 18px; align-items: flex-start; margin: 22px 0 30px; padding: 20px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface, rgba(0,0,0,.02)); }
.post .answer img { flex: none; width: 72px; height: 72px; border-radius: 18px; }
.post .answer .short { margin: 0; font-size: 17px; color: var(--ink); }
.post .cta { display: flex; gap: 18px; align-items: center; }
.post .cta img { flex: none; width: 56px; height: 56px; border-radius: 14px; }
.post .cta > div p { margin: 0; }
.section-head { text-align: center; padding: 20px 0 8px; }
.section-head img { width: 96px; height: 96px; border-radius: 24px; display: block; margin: 0 auto 16px; }
.section-head p { max-width: 560px; margin: 8px auto 0; }
.qlist { list-style: none; padding: 0; margin: 28px 0 0; }
.qlist li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--border); }
.qlist li:last-child { border-bottom: 1px solid var(--border); }
.qlist img { flex: none; width: 28px; height: 28px; border-radius: 7px; margin-top: 2px; }
.qlist a { font-weight: 600; color: var(--ink); font-size: 17px; }
.qlist p { margin: 4px 0 0; font-size: 14px; }
.post table.compare td:first-child { color: var(--ink); font-weight: 500; }
.post table.compare th img { width: 22px; height: 22px; border-radius: 6px; vertical-align: -5px; margin-right: 6px; }
.post .yes { color: #1a7f37; font-weight: 600; } .post .no { color: var(--ink-dim); } .post .part { color: #9a6700; font-weight: 600; }
.vs-head { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 6px 0 26px; }
.vs-head img, .vs-head .badge { width: 88px; height: 88px; border-radius: 22px; }
.vs-head .badge { display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 34px; color: #fff; background: #5b6470; }
.vs-head .vs { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink-muted); }
.post .verdict { margin: 26px 0; padding: 18px 20px; border-left: 4px solid var(--accent); background: var(--surface, rgba(0,0,0,.02)); border-radius: 0 12px 12px 0; }
.post .verdict p { margin: 0; color: var(--ink); }
.post .disclosure { font-size: 13px; color: var(--ink-dim); }
@media (max-width: 760px) { .post .answer, .post .cta { flex-direction: column; } .vs-head img, .vs-head .badge { width: 64px; height: 64px; border-radius: 16px; } }

/* Waiting list while licences are not yet on sale */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
form.notify { margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
form.notify input { flex: 1 1 220px; min-width: 0; padding: 11px 14px; font: inherit; font-size: 15px; color: var(--ink); background: var(--surface, rgba(0,0,0,.04)); border: 1px solid var(--border); border-radius: 10px; }
form.notify input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
form.notify button { flex: 0 0 auto; }
form.notify .notify-note { flex: 1 0 100%; margin: 6px 0 0; font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
