
:root {
  --bg: #080a0f;
  --panel: #11141b;
  --panel-2: #151821;
  --border: #2a2f3a;
  --text: #f7f8fa;
  --muted: #9aa3b2;
  --accent: #8fb8ff;
  --accent-strong: #6ca3ff;
  --success: #7ee2a8;
  --warning: #f4c76b;
  --shadow: 0 24px 70px rgba(0,0,0,.34);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--accent); color: #07101e; padding: .7rem 1rem; border-radius: 0 0 10px 0; font-weight: 800; }
.skip-link:focus { left: 0; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(8,10,15,.87); border-bottom: 1px solid rgba(42,47,58,.84); }
.nav { max-width: var(--max); margin: auto; min-height: 74px; padding: 0 28px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(145deg, var(--accent), #c9ddff); color: #08101c; box-shadow: 0 8px 25px rgba(143,184,255,.24); font-weight: 950; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: .94rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { margin-left: 4px; }
.menu-button { display: none; margin-left: auto; border: 1px solid var(--border); color: var(--text); background: var(--panel); border-radius: 10px; padding: 8px 10px; cursor: pointer; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
main { min-height: 65vh; }
section { padding: 76px 0; }
.hero { padding: 82px 0 58px; overflow: hidden; position: relative; }
.hero:before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(63,112,190,.17); filter: blur(90px); top: -250px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; margin-bottom: 18px; }
.eyebrow:before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); max-width: 950px; }
h2 { font-size: clamp(2rem, 4.1vw, 3.55rem); }
h3 { font-size: 1.18rem; letter-spacing: -.018em; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 740px; margin: 24px 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 18px; border-radius: 11px; border: 1px solid transparent; font-weight: 800; text-decoration: none; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #07101d; box-shadow: 0 12px 28px rgba(143,184,255,.2); }
.button-primary:hover { background: #aac9ff; }
.button-secondary { background: rgba(17,20,27,.75); border-color: var(--border); color: var(--text); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge { border: 1px solid var(--border); background: rgba(17,20,27,.72); color: var(--muted); padding: 7px 10px; border-radius: 999px; font-size: .84rem; }
.hero-visual { position: relative; padding: 12px; border-radius: 24px; border: 1px solid var(--border); background: linear-gradient(145deg, rgba(25,29,39,.94), rgba(9,11,16,.98)); box-shadow: var(--shadow); }
.hero-visual img { border-radius: 15px; width: 100%; height: auto; object-fit: contain; aspect-ratio: auto; }
.hero-visual:after { content: "Local workstation"; position: absolute; right: 22px; bottom: 22px; color: var(--success); border: 1px solid rgba(126,226,168,.32); background: rgba(8,15,13,.86); border-radius: 999px; padding: 7px 10px; font-size: .78rem; font-weight: 800; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 580px; margin: 0; }
.surface { background: var(--panel); border-block: 1px solid var(--border); }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.card { background: linear-gradient(145deg, rgba(21,24,33,.98), rgba(13,16,23,.98)); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.card p { color: var(--muted); margin: 12px 0 0; }
.card .number { font-size: .8rem; color: var(--accent); font-weight: 850; letter-spacing: .12em; margin-bottom: 32px; }
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; color: var(--muted); }
.feature-list li { display: flex; gap: 9px; }
.feature-list li:before { content: "✓"; color: var(--success); font-weight: 900; }
.problem-card { min-height: 190px; }
.audio-card audio { width: 100%; margin-top: 20px; }
.audio-meta { color: var(--accent); font-weight: 700; font-size: .82rem; margin-top: 10px; }
.screenshot-section img { border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); width: 100%; height: auto; object-fit: contain; aspect-ratio: auto; }
.callout { border: 1px solid rgba(143,184,255,.28); background: linear-gradient(145deg, rgba(29,42,67,.58), rgba(15,18,26,.96)); border-radius: 24px; padding: clamp(28px,5vw,58px); }
.callout p { color: var(--muted); max-width: 760px; margin: 18px 0 0; }
.price-card { display: flex; flex-direction: column; min-height: 100%; }
.price { font-size: 2.4rem; letter-spacing: -.04em; margin-top: 16px; font-weight: 900; }
.price small { font-size: .95rem; color: var(--muted); font-weight: 600; }
.price-card .button { margin-top: auto; }
.recommended { border-color: rgba(143,184,255,.55); box-shadow: 0 0 0 1px rgba(143,184,255,.08), 0 25px 60px rgba(0,0,0,.24); }
.pill { display: inline-flex; width: fit-content; border-radius: 999px; background: var(--accent); color: #07101d; padding: 5px 9px; font-size: .73rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--panel); }
th, td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--text); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--border); border-radius: 14px; background: var(--panel); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; color: var(--text); }
details p { color: var(--muted); margin: 12px 0 0; }
.prose { max-width: 850px; }
.prose h2 { font-size: 1.75rem; margin-top: 42px; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--accent); }
.notice { border-left: 3px solid var(--warning); background: rgba(244,199,107,.08); padding: 18px 20px; border-radius: 0 12px 12px 0; color: #e4d7bb; }
.timeline { position: relative; display: grid; gap: 18px; }
.release { display: grid; grid-template-columns: 150px 1fr; gap: 24px; }
.release .version { color: var(--accent); font-weight: 900; }
.contact-card { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.site-footer { border-top: 1px solid var(--border); padding: 52px 0 30px; background: #07090d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 34px; }
.footer-copy { color: var(--muted); max-width: 460px; }
.footer-title { font-weight: 850; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; color: #737c8b; font-size: .82rem; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); }
.text-link { color: var(--accent); text-decoration: none; font-weight: 750; }
.compact-hero { padding: 74px 0 28px; }
.compact-hero h1 { max-width: 950px; font-size: clamp(2.55rem,5vw,4.4rem); }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.center .actions { justify-content: center; }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, var(--max)); }
  .nav { padding: 0 16px; min-height: 66px; }
  .menu-button { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: rgba(8,10,15,.98); border-bottom: 1px solid var(--border); padding: 18px 16px 22px; flex-direction: column; align-items: stretch; gap: 6px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 9px 4px; }
  .nav-cta { margin: 8px 0 0; }
  .hero { padding-top: 58px; }
  section { padding: 58px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .release { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
}
