:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-soft: #0d0f12;
  --panel: #111318;
  --panel-raised: #15181d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f6f7;
  --muted: #9da3ad;
  --muted-strong: #c8ccd2;
  --silver: #d8dce1;
  --white: #ffffff;
  --success: #74db9b;
  --warning: #f2cb73;
  --danger: #ff8d8d;
  --max: 1260px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.035), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--white); color: var(--bg); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--bg);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 8, 10, .76);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 8, 10, .94);
}
.header-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; gap: 4px; }
.brand-copy strong { font-size: .94rem; letter-spacing: .14em; }
.brand-copy small { color: var(--muted); font-size: .67rem; letter-spacing: .28em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: .72rem .86rem;
  cursor: pointer;
  font-size: .82rem;
  letter-spacing: .04em;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active {
  color: var(--white);
  background: rgba(255,255,255,.055);
}
.nav-link-external { border-left: 1px solid var(--line); border-radius: 0; margin-left: 5px; padding-left: 16px; }
.header-store-button {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  color: var(--bg);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 8px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .05em;
  transition: transform .2s ease, background .2s ease;
}
.header-store-button:hover { transform: translateY(-2px); background: var(--silver); }
.mobile-menu { display: none; }

.view { display: none; animation: viewIn .32s ease both; }
.view.is-active { display: block; }
@keyframes viewIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.hero {
  min-height: calc(100svh - 84px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 86%);
}
.hero-glow {
  position: absolute;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .09;
  pointer-events: none;
}
.hero-glow-one { background: white; top: -23rem; right: -13rem; }
.hero-glow-two { background: white; left: -30rem; bottom: -36rem; }
.hero-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding: 88px 0 104px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow > span { width: 28px; height: 1px; background: currentColor; opacity: .7; }
.hero h1, .page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 9vw, 8.7rem);
  line-height: .78;
  letter-spacing: -.045em;
  font-weight: 900;
}
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.58);
  font-style: normal;
}
.hero-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  border: 1px solid var(--line-strong);
  min-height: 50px;
  padding: 0 1.3rem;
  border-radius: 9px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  cursor: pointer;
  font-weight: 800;
  font-size: .79rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--white); color: var(--bg); border-color: var(--white); }
.button-primary:hover { background: var(--silver); }
.button-secondary { background: transparent; color: var(--text); }
.button-secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.38); }
.button-light { background: var(--bg); color: var(--white); border-color: var(--bg); }
.button-light:hover { background: #16181c; }
.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-proof > div { display: grid; gap: 3px; padding-right: 30px; margin-right: 30px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border: 0; }
.hero-proof strong { font-family: var(--display); font-size: 1.24rem; letter-spacing: .035em; }
.hero-proof span { color: var(--muted); font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }

.hero-panel {
  border: 1px solid var(--line-strong);
  background: rgba(13,15,18,.78);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.terminal-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.terminal-top > span { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.terminal-top p { margin: 0 0 0 auto; color: var(--muted); font-size: .62rem; letter-spacing: .14em; }
.terminal-body { padding: clamp(24px, 4vw, 42px); }
.terminal-brand { display: flex; align-items: center; gap: 26px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.terminal-brand img { width: 116px; height: 116px; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(0,0,0,.4)); }
.terminal-brand > div { display: grid; gap: 4px; }
.terminal-brand small { color: var(--muted); font-size: .59rem; letter-spacing: .14em; }
.terminal-brand strong { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: .92; }
.terminal-brand span { color: var(--muted-strong); font-size: .68rem; letter-spacing: .09em; }
.status-line { display: flex; gap: 14px; align-items: flex-start; padding: 24px 0; }
.status-dot { width: 10px; height: 10px; margin-top: 5px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(116,219,155,.08), 0 0 18px rgba(116,219,155,.5); }
.status-line p { margin: 0; display: grid; gap: 4px; }
.status-line strong { font-size: .74rem; letter-spacing: .09em; }
.status-line small { color: var(--muted); }
.terminal-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.terminal-stats > div { min-width: 0; padding: 14px; display: grid; gap: 3px; border-right: 1px solid var(--line); }
.terminal-stats > div:last-child { border: 0; }
.terminal-stats span { color: var(--muted); font-size: .54rem; letter-spacing: .1em; }
.terminal-stats strong { overflow: hidden; text-overflow: ellipsis; font-size: .67rem; letter-spacing: .04em; }

.content-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 130px) 0;
}
.content-section-dark {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max))/2));
  padding-right: max(20px, calc((100% - var(--max))/2));
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}
.section-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading h2, .cta-section h2, .trust-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: .88;
  letter-spacing: -.035em;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  padding: .5rem 0;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-button span { margin-left: .45rem; }
.text-button:hover { color: var(--white); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.26); box-shadow: 0 24px 56px rgba(0,0,0,.32); }
.product-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 55%),
    #0d0f12;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.product-placeholder img { width: 36%; height: 36%; object-fit: contain; opacity: .52; filter: grayscale(1); }
.badge-row { position: absolute; inset: 12px 12px auto; display: flex; flex-wrap: wrap; gap: 7px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 .55rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(7,8,10,.82);
  backdrop-filter: blur(8px);
  color: var(--muted-strong);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-featured, .badge-new { background: var(--white); color: var(--bg); border-color: var(--white); }
.badge-free { color: var(--success); border-color: rgba(116,219,155,.35); }
.badge-warning { color: var(--warning); border-color: rgba(242,203,115,.35); }
.badge-danger { color: var(--danger); border-color: rgba(255,141,141,.35); }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.product-category { margin: 0 0 9px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-body h3 { margin: 0; font-family: var(--display); font-size: 1.72rem; line-height: 1; letter-spacing: -.015em; }
.product-description {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: .87rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.framework-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.framework-pill { padding: .3rem .48rem; border: 1px solid var(--line); color: var(--muted-strong); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; }
.product-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.product-price { display: grid; line-height: 1.1; }
.product-price strong { font-family: var(--display); font-size: 1.45rem; }
.product-price span { color: var(--muted); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; }
.card-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  padding: .65rem .78rem;
  color: var(--text);
  cursor: pointer;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.card-button:hover { background: var(--white); color: var(--bg); }
.product-skeleton { min-height: 430px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.product-skeleton::after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(240%); } }

.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line); }
.benefit-card { position: relative; min-height: 310px; padding: 30px; border-right: 1px solid var(--line); }
.benefit-card:last-child { border: 0; }
.benefit-number { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
.benefit-icon { margin-top: 45px; font-size: 2rem; color: var(--silver); }
.benefit-card h3 { margin: 22px 0 10px; font-family: var(--display); font-size: 1.48rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .84rem; }

.bundle-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.bundle-card { border: 1px solid var(--line); background: var(--panel); padding: clamp(24px,4vw,42px); position: relative; overflow: hidden; }
.bundle-card::after { content:""; position:absolute; width:220px; height:220px; right:-120px; bottom:-130px; border:1px solid rgba(255,255,255,.1); border-radius:50%; box-shadow:0 0 0 40px rgba(255,255,255,.018),0 0 0 80px rgba(255,255,255,.012); }
.bundle-card > * { position: relative; z-index: 1; }
.bundle-card small { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.bundle-card h3 { margin: 12px 0; font-family: var(--display); font-size: clamp(2rem,4vw,3.5rem); line-height:.92; }
.bundle-card p { max-width: 560px; color: var(--muted); }
.bundle-products { display:flex; flex-wrap:wrap; gap:7px; margin:22px 0; }
.bundle-products span { border:1px solid var(--line); padding:.38rem .55rem; font-size:.64rem; color:var(--muted-strong); }
.bundle-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:22px; border-top:1px solid var(--line); }
.bundle-status { display:grid; }
.bundle-status strong { font-family:var(--display); font-size:1.3rem; }
.bundle-status span { color:var(--muted); font-size:.62rem; text-transform:uppercase; letter-spacing:.08em; }

.trust-section { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,8vw,110px); align-items:center; border-top:1px solid var(--line); }
.trust-copy > p:last-child { max-width:620px; color:var(--muted); }
.review-panel { min-height:320px; display:grid; place-items:center; align-content:center; text-align:center; border:1px dashed rgba(255,255,255,.2); background:var(--panel); padding:36px; }
.review-panel .empty-icon { font-size:2.4rem; color:var(--muted); }
.review-panel strong { margin-top:15px; font-family:var(--display); font-size:1.65rem; }
.review-panel p { max-width:420px; color:var(--muted); }

.cta-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  padding: clamp(42px,7vw,80px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:var(--white);
  color:var(--bg);
}
.cta-section .eyebrow { color:#454a51; }
.cta-section .button { min-width:210px; }

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px,10vw,150px) 0 clamp(50px,7vw,90px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(4rem,10vw,9rem); }
.page-hero > p:last-child { max-width:720px; margin:26px 0 0; color:var(--muted-strong); font-size:1.05rem; }

.catalogue-section { padding-top:42px; }
.catalogue-toolbar { display:grid; grid-template-columns:minmax(270px,1fr) minmax(0,2fr) auto; gap:14px; align-items:center; }
.search-field { min-height:48px; display:flex; align-items:center; gap:10px; border:1px solid var(--line); background:var(--panel); padding:0 14px; }
.search-field:focus-within { border-color:rgba(255,255,255,.36); }
.search-field input { width:100%; border:0; outline:0; background:transparent; color:var(--text); }
.search-field input::placeholder { color:#737984; }
.filter-scroll { display:flex; gap:7px; min-width:0; overflow:auto; scrollbar-width:none; padding:1px; }
.filter-scroll::-webkit-scrollbar { display:none; }
.filter-chip {
  min-width:max-content;
  min-height:40px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  padding:0 .75rem;
  cursor:pointer;
  font-size:.67rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.filter-chip:hover,.filter-chip.is-active { background:var(--white); color:var(--bg); border-color:var(--white); }
.sort-field select, .support-form select, .support-form input, .support-form textarea {
  width:100%;
  border:1px solid var(--line);
  background:#0c0e11;
  color:var(--text);
  outline:0;
}
.sort-field select { min-height:48px; padding:0 2.2rem 0 .9rem; }
.catalogue-summary { display:flex; justify-content:space-between; gap:20px; margin:24px 0; color:var(--muted); font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; }
.catalogue-summary p { margin:0; }
.catalogue-summary a:hover { color:var(--white); }
.empty-state { padding:90px 20px; text-align:center; border:1px dashed var(--line-strong); }
.empty-state.is-hidden { display:none; }
.empty-state .empty-icon { font-size:3rem; color:var(--muted); }
.empty-state h2 { font-family:var(--display); font-size:2.2rem; }
.empty-state p { color:var(--muted); }
.empty-state .button { margin-top:15px; }

.docs-layout { display:grid; grid-template-columns:310px minmax(0,1fr); align-items:start; gap:36px; padding-top:48px; }
.docs-sidebar { position:sticky; top:108px; }
.docs-search { margin-bottom:12px; }
.docs-sidebar nav { border:1px solid var(--line); background:var(--panel); max-height:calc(100svh - 190px); overflow:auto; }
.docs-nav-button {
  width:100%;
  display:grid;
  gap:4px;
  text-align:left;
  padding:15px 16px;
  border:0;
  border-bottom:1px solid var(--line);
  background:transparent;
  color:var(--muted-strong);
  cursor:pointer;
}
.docs-nav-button:last-child { border-bottom:0; }
.docs-nav-button:hover,.docs-nav-button.is-active { background:rgba(255,255,255,.06); color:var(--white); }
.docs-nav-button strong { font-size:.78rem; }
.docs-nav-button span { color:var(--muted); font-size:.62rem; }
.docs-content { min-height:600px; border:1px solid var(--line); background:var(--panel); padding:clamp(25px,5vw,58px); }
.docs-welcome { min-height:450px; display:grid; align-content:center; }
.docs-kicker { color:var(--muted); font-size:.65rem; letter-spacing:.15em; }
.docs-welcome h2,.docs-header h2 { margin:13px 0; font-family:var(--display); font-size:clamp(2.6rem,6vw,5rem); line-height:.9; }
.docs-welcome p,.docs-header p { max-width:680px; color:var(--muted); }
.docs-meta { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 36px; }
.docs-meta span { border:1px solid var(--line); padding:.4rem .6rem; color:var(--muted-strong); font-size:.64rem; }
.docs-section { padding:30px 0; border-top:1px solid var(--line); }
.docs-section h3 { margin:0 0 15px; font-family:var(--display); font-size:1.75rem; }
.docs-section p,.docs-section li { color:var(--muted-strong); }
.docs-section ol,.docs-section ul { margin:0; padding-left:1.4rem; }
.docs-section li + li { margin-top:9px; }
.code-block { overflow:auto; border:1px solid var(--line); background:#08090b; padding:16px; color:#dce2e9; font-family:ui-monospace,SFMono-Regular,Consolas,monospace; font-size:.8rem; white-space:pre-wrap; }
.docs-callout { margin-top:20px; border-left:3px solid var(--warning); background:rgba(242,203,115,.055); padding:15px 18px; color:var(--muted-strong); }

.updates-toolbar { display:flex; justify-content:space-between; gap:20px; align-items:center; margin-bottom:30px; }
.updates-toolbar .search-field { width:min(520px,100%); }
.updates-toolbar p { color:var(--muted); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; }
.updates-list { display:grid; gap:16px; }
.update-card { display:grid; grid-template-columns:190px minmax(0,1fr); border:1px solid var(--line); background:var(--panel); }
.update-side { padding:25px; border-right:1px solid var(--line); }
.update-side strong { display:block; font-family:var(--display); font-size:1.55rem; }
.update-side span { color:var(--muted); font-size:.64rem; letter-spacing:.07em; text-transform:uppercase; }
.update-main { padding:25px 30px; }
.update-main h2 { margin:0 0 7px; font-family:var(--display); font-size:1.8rem; }
.update-main > p { margin:0 0 17px; color:var(--muted); }
.change-list { margin:0; padding-left:1.25rem; color:var(--muted-strong); }
.change-list li + li { margin-top:7px; }
.change-type { display:inline-flex; margin-bottom:11px; border:1px solid var(--line); padding:.28rem .46rem; font-size:.58rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }

.support-layout { display:grid; grid-template-columns:390px minmax(0,1fr); gap:26px; align-items:start; }
.support-options { display:grid; gap:10px; }
.support-option { border:1px solid var(--line); background:var(--panel); padding:24px; }
.support-option > span { color:var(--muted); font-size:.62rem; letter-spacing:.1em; }
.support-option h2 { margin:18px 0 8px; font-family:var(--display); font-size:1.55rem; }
.support-option p { margin:0 0 13px; color:var(--muted); font-size:.84rem; }
.support-form { border:1px solid var(--line); background:var(--panel); padding:clamp(24px,5vw,48px); }
.form-heading h2 { margin:0; font-family:var(--display); font-size:clamp(2.4rem,5vw,4.2rem); line-height:.9; }
.form-heading > p:last-child { color:var(--muted); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-top:30px; }
.form-grid label { display:grid; gap:8px; color:var(--muted-strong); font-size:.72rem; font-weight:700; letter-spacing:.035em; }
.form-grid label > span { color:var(--muted); font-weight:400; }
.form-grid input,.form-grid select { min-height:48px; padding:0 13px; }
.form-grid textarea { resize:vertical; padding:13px; }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus { border-color:rgba(255,255,255,.4); }
.form-wide { grid-column:1/-1; }
.form-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.generated-ticket { margin-top:24px; border:1px solid rgba(116,219,155,.28); background:rgba(116,219,155,.035); }
.generated-ticket.is-hidden { display:none; }
.generated-ticket > div { display:flex; justify-content:space-between; align-items:center; gap:18px; padding:14px 16px; border-bottom:1px solid rgba(116,219,155,.2); }
.generated-ticket button { border:0; background:transparent; color:var(--success); cursor:pointer; font-size:.7rem; font-weight:800; text-transform:uppercase; }
.generated-ticket pre { margin:0; max-height:390px; overflow:auto; padding:18px; white-space:pre-wrap; color:var(--muted-strong); font-size:.78rem; }
.faq-section { border-top:1px solid var(--line); }
.faq-list { display:grid; gap:8px; }
.faq-item { border:1px solid var(--line); background:var(--panel); }
.faq-question { width:100%; min-height:66px; display:flex; justify-content:space-between; align-items:center; gap:20px; text-align:left; padding:0 20px; border:0; background:transparent; cursor:pointer; }
.faq-question strong { font-family:var(--display); font-size:1.2rem; }
.faq-question span { color:var(--muted); font-size:1.3rem; transition:transform .2s ease; }
.faq-answer { display:none; padding:0 20px 20px; color:var(--muted); }
.faq-item.is-open .faq-answer { display:block; }
.faq-item.is-open .faq-question span { transform:rotate(45deg); }

.product-dialog {
  width:min(1100px,calc(100% - 30px));
  max-height:calc(100svh - 30px);
  padding:0;
  border:1px solid var(--line-strong);
  background:#0c0e11;
  color:var(--text);
  box-shadow:var(--shadow);
}
.product-dialog::backdrop { background:rgba(0,0,0,.8); backdrop-filter:blur(6px); }
.dialog-shell { position:relative; overflow:auto; max-height:calc(100svh - 32px); }
.dialog-close {
  position:sticky;
  z-index:4;
  float:right;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  margin:16px;
  border:1px solid var(--line-strong);
  background:rgba(7,8,10,.88);
  color:var(--white);
  cursor:pointer;
  font-size:1.6rem;
}
.dialog-hero { min-height:360px; position:relative; display:grid; align-items:end; padding:clamp(28px,6vw,64px); overflow:hidden; border-bottom:1px solid var(--line); }
.dialog-hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.36; filter:saturate(.6); }
.dialog-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,#0c0e11 4%,rgba(12,14,17,.5) 70%,rgba(12,14,17,.75)); }
.dialog-hero-copy { position:relative; z-index:1; max-width:770px; }
.dialog-hero h2 { margin:10px 0; font-family:var(--display); font-size:clamp(3rem,8vw,6.5rem); line-height:.82; }
.dialog-hero p { color:var(--muted-strong); }
.dialog-content-grid { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:40px; padding:clamp(28px,6vw,64px); }
.dialog-main section + section { margin-top:38px; padding-top:35px; border-top:1px solid var(--line); }
.dialog-main h3,.dialog-side h3 { margin:0 0 14px; font-family:var(--display); font-size:1.7rem; }
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:9px; }
.feature-item { border:1px solid var(--line); padding:13px; color:var(--muted-strong); font-size:.82rem; }
.dialog-side { align-self:start; position:sticky; top:20px; border:1px solid var(--line); background:var(--panel); padding:22px; }
.dialog-price { padding-bottom:18px; border-bottom:1px solid var(--line); }
.dialog-price span { color:var(--muted); font-size:.62rem; text-transform:uppercase; letter-spacing:.08em; }
.dialog-price strong { display:block; margin-top:4px; font-family:var(--display); font-size:2.2rem; }
.spec-list { display:grid; gap:0; margin:20px 0; }
.spec-row { display:flex; justify-content:space-between; gap:20px; padding:10px 0; border-bottom:1px solid var(--line); font-size:.72rem; }
.spec-row span { color:var(--muted); }
.spec-row strong { text-align:right; }
.dialog-side .button { width:100%; margin-top:8px; }
.changelog-mini { display:grid; gap:12px; }
.changelog-mini article { border-left:2px solid var(--line-strong); padding-left:14px; }
.changelog-mini strong { display:block; font-size:.8rem; }
.changelog-mini span { color:var(--muted); font-size:.66rem; }
.changelog-mini ul { margin:8px 0 0; padding-left:1.1rem; color:var(--muted-strong); font-size:.78rem; }

.toast {
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:100;
  max-width:min(380px,calc(100% - 40px));
  padding:13px 16px;
  border:1px solid var(--line-strong);
  background:#171a1f;
  box-shadow:var(--shadow);
  color:var(--text);
  opacity:0;
  transform:translateY(15px);
  pointer-events:none;
  transition:.22s ease;
}
.toast.is-visible { opacity:1; transform:none; }

.site-footer { border-top:1px solid var(--line); width:min(var(--max),calc(100% - 40px)); margin:0 auto; padding:50px 0 24px; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width:48px; height:48px; object-fit:contain; }
.footer-brand div { display:grid; gap:3px; }
.footer-brand strong { font-size:.8rem; letter-spacing:.12em; }
.footer-brand span { color:var(--muted); font-size:.7rem; }
.footer-links { display:flex; flex-wrap:wrap; gap:8px 20px; margin:32px 0; }
.footer-links button,.footer-links a { border:0; background:transparent; padding:0; color:var(--muted); cursor:pointer; font-size:.75rem; }
.footer-links button:hover,.footer-links a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:20px; border-top:1px solid var(--line); color:var(--muted); font-size:.66rem; }
.noscript { position:fixed; inset:auto 20px 20px; z-index:200; padding:14px; background:#481c1c; color:white; }
.is-hidden { display:none !important; }

@media (max-width: 1080px) {
  .header-shell { grid-template-columns:auto 1fr auto; }
  .main-nav {
    position:absolute;
    top:84px;
    left:20px;
    right:20px;
    display:none;
    padding:10px;
    border:1px solid var(--line);
    background:#0c0e11;
    box-shadow:var(--shadow);
  }
  .main-nav.is-open { display:grid; }
  .nav-link { text-align:left; }
  .nav-link-external { border-left:0; border-top:1px solid var(--line); margin:4px 0 0; padding:12px; }
  .mobile-menu {
    justify-self:end;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    background:transparent;
    display:grid;
    align-content:center;
    gap:5px;
    padding:0 11px;
    cursor:pointer;
  }
  .mobile-menu > span:not(.sr-only) { height:1px; background:var(--white); }
  .header-store-button { display:none; }
  .hero-shell { grid-template-columns:1fr; }
  .hero-panel { max-width:720px; transform:none; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .benefit-grid { grid-template-columns:repeat(2,1fr); }
  .benefit-card:nth-child(2) { border-right:0; }
  .benefit-card:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .catalogue-toolbar { grid-template-columns:1fr auto; }
  .filter-scroll { grid-column:1/-1; grid-row:2; }
  .support-layout { grid-template-columns:1fr; }
  .support-options { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px) {
  .header-shell, .hero-shell, .content-section, .page-hero, .site-footer, .cta-section { width:min(100% - 28px,var(--max)); }
  .header-shell { min-height:74px; }
  .main-nav { top:74px; left:14px; right:14px; }
  .brand img { width:44px; height:44px; }
  .brand-copy strong { font-size:.78rem; }
  .brand-copy small { font-size:.57rem; }
  .hero { min-height:auto; }
  .hero-shell { padding:70px 0 74px; gap:54px; }
  .hero h1 { font-size:clamp(3.7rem,20vw,6rem); }
  .hero-proof { display:grid; grid-template-columns:repeat(3,1fr); }
  .hero-proof > div { padding:0 10px 0 0; margin:0 10px 0 0; }
  .terminal-brand { align-items:flex-start; }
  .terminal-brand img { width:80px; height:80px; }
  .terminal-stats { grid-template-columns:1fr; }
  .terminal-stats > div { border-right:0; border-bottom:1px solid var(--line); }
  .terminal-stats > div:last-child { border-bottom:0; }
  .section-heading { align-items:flex-start; flex-direction:column; }
  .product-grid { grid-template-columns:1fr; }
  .benefit-grid { grid-template-columns:1fr; }
  .benefit-card { min-height:250px; border-right:0; border-bottom:1px solid var(--line); }
  .benefit-card:last-child { border-bottom:0; }
  .bundle-grid { grid-template-columns:1fr; }
  .trust-section { grid-template-columns:1fr; }
  .cta-section { align-items:flex-start; flex-direction:column; margin-bottom:60px; }
  .page-hero { padding-top:76px; }
  .catalogue-toolbar { grid-template-columns:1fr; }
  .filter-scroll { grid-column:auto; grid-row:auto; }
  .sort-field select { width:100%; }
  .catalogue-summary { align-items:flex-start; flex-direction:column; }
  .docs-layout { grid-template-columns:1fr; }
  .docs-sidebar { position:static; }
  .docs-sidebar nav { max-height:260px; }
  .update-card { grid-template-columns:1fr; }
  .update-side { border-right:0; border-bottom:1px solid var(--line); }
  .updates-toolbar { align-items:flex-start; flex-direction:column; }
  .support-options { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-wide { grid-column:auto; }
  .dialog-content-grid { grid-template-columns:1fr; }
  .dialog-side { position:static; }
  .feature-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
}

@media (max-width: 460px) {
  .hero-actions,.form-actions { display:grid; }
  .hero-actions .button,.form-actions .button { width:100%; }
  .hero-proof { grid-template-columns:1fr; gap:15px; }
  .hero-proof > div { border-right:0; border-bottom:1px solid var(--line); padding:0 0 12px; margin:0; }
  .hero-proof > div:last-child { border-bottom:0; }
  .terminal-brand { flex-direction:column; }
  .bundle-bottom { align-items:flex-start; flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
