:root {
  color-scheme: dark;
  --page: #090a0c;
  --page-deep: #050607;
  --panel: #101216;
  --panel-2: #0c0e11;
  --panel-hover: #14171b;
  --text: #f5f5f3;
  --muted: #a9abb0;
  --quiet: #72757c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --white: #f7f7f5;
  --black: #070809;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  --radius: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 68% 5%, rgba(255, 255, 255, 0.035), transparent 28rem),
    radial-gradient(circle at 10% 36%, rgba(255, 255, 255, 0.025), transparent 24rem),
    linear-gradient(180deg, #0a0b0d 0%, #070809 54%, #090a0c 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.shell {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.brand-logo {
  flex: 0 0 auto;
  width: 54px;
  height: 40px;
  overflow: visible;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.38));
}

.brand-logo.small {
  width: 30px;
  height: 22px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28));
}

.wordmark {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark.small {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #d1d2d4;
  font-size: 14px;
  font-weight: 550;
}

.nav a:not(.button) {
  transition: color 0.2s ease;
}

.nav a:not(.button):hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 740;
  letter-spacing: -0.015em;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.primary {
  color: #0a0b0c;
  border-color: #fff;
  background: linear-gradient(180deg, #fff, #e5e5e3);
  box-shadow: 0 11px 26px rgba(255, 255, 255, 0.09), inset 0 1px #fff;
}

.button.primary:hover {
  background: #fff;
}

.button.wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(510px, 1.04fr);
  align-items: center;
  gap: 54px;
  min-height: 625px;
  padding: 42px 0 70px;
}

.hero-copy {
  padding: 20px 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 790;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  color: #9d9fa4;
  font-weight: 650;
}

.hero h1 .hero-primary {
  margin-top: 0;
  color: #f5f5f3;
  font-weight: 790;
  white-space: nowrap;
}

.lead,
.page-lead {
  max-width: 640px;
  margin: 25px 0 0;
  color: #c6c7ca;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 31px 0 0;
  max-width: 510px;
}

.hero-point {
  display: grid;
  gap: 10px;
  color: #e0e1e2;
  font-size: 13px;
  line-height: 1.35;
}

.hero-point svg {
  width: 29px;
  height: 29px;
  color: #d9dade;
  stroke-width: 1.65;
}

.direct-path-note {
  display: inline-grid;
  gap: 5px;
  margin-top: 22px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background:
    radial-gradient(circle at 9% 0%, rgba(255, 255, 255, 0.075), transparent 32%),
    rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.direct-path-note span {
  color: #8f9298;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.direct-path-note strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.direct-path-flow {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.direct-path-flow b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f4f4ef;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 780;
  background: rgba(0, 0, 0, 0.18);
}

.direct-path-flow i {
  position: relative;
  width: 22px;
  height: 1px;
  flex: 0 0 22px;
  background: rgba(255, 255, 255, 0.34);
}

.direct-path-flow i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  transform: translateY(-50%) rotate(45deg);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.hero-actions .button {
  min-height: 49px;
  padding-inline: 24px;
}

.trial-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #8f9298;
  font-size: 12px;
}

.trial-note svg {
  width: 14px;
  height: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 20px;
  width: 560px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.075), transparent 64%);
  filter: blur(20px);
  pointer-events: none;
}

.laptop {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  margin-right: 17px;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.55));
}

.screen-shell {
  position: relative;
  width: 88%;
  aspect-ratio: 1.55;
  margin: 0 auto;
  padding: 12px 11px 10px;
  border: 2px solid #4d5055;
  border-bottom-color: #2a2d31;
  border-radius: 23px 23px 11px 11px;
  background: linear-gradient(145deg, #15171a, #050607);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), inset 0 0 0 1px rgba(0, 0, 0, 0.9);
}

.screen-shell::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 3px;
  left: 50%;
  width: 92px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 0 0 9px 9px;
  background: #060708;
}

.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px 12px 5px 5px;
  color: #dfe0e2;
  background: radial-gradient(circle at 72% 0, rgba(255, 255, 255, 0.04), transparent 42%), #0b0d10;
}

.screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: #101216;
  font-size: 12px;
  font-weight: 650;
}

.screen-header .screen-logo {
  width: 22px;
  height: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.32));
}

.app-grid {
  display: grid;
  grid-template-columns: 102px 1fr;
  height: calc(100% - 38px);
}

.sidebar {
  padding: 13px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #0d0f12;
}

.side-label {
  margin: 0 0 8px 4px;
  color: #73767d;
  font-size: 7px;
  letter-spacing: 0.09em;
  font-weight: 740;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 7px;
  margin-bottom: 2px;
  border-radius: 4px;
  color: #8f9298;
  font-size: 8px;
}

.side-item.active {
  color: #fff;
  background: #1a1d21;
}

.side-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.side-gap {
  height: 9px;
}

.workspace {
  display: grid;
  grid-template-columns: 1.34fr 0.92fr;
  grid-template-rows: 1fr 0.65fr;
  gap: 9px;
  min-width: 0;
  padding: 12px;
}

.ui-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 7px;
  background: linear-gradient(180deg, #111318, #0c0e11);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d8d9db;
  font-size: 7.5px;
}

.concert {
  position: relative;
  height: calc(100% - 25px);
  min-height: 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 5%, rgba(255, 255, 255, 0.46), transparent 12%),
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.25), transparent 28%),
    radial-gradient(ellipse at 82% 0%, rgba(255, 255, 255, 0.27), transparent 29%),
    linear-gradient(180deg, #24262a 0%, #0e1013 65%, #050607 100%);
}

.concert::before,
.concert::after {
  content: "";
  position: absolute;
  inset: -15% -5% 20%;
  opacity: 0.44;
  background:
    linear-gradient(70deg, transparent 45%, rgba(255, 255, 255, 0.34) 50%, transparent 55%),
    linear-gradient(110deg, transparent 45%, rgba(255, 255, 255, 0.24) 50%, transparent 55%),
    linear-gradient(82deg, transparent 47%, rgba(255, 255, 255, 0.18) 50%, transparent 53%);
  filter: blur(1px);
}

.concert::after {
  transform: scaleX(-1);
  opacity: 0.26;
}

.crowd {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background:
    radial-gradient(circle at 6% 55%, #050607 0 5px, transparent 5.5px),
    radial-gradient(circle at 14% 66%, #050607 0 6px, transparent 6.5px),
    radial-gradient(circle at 23% 47%, #050607 0 7px, transparent 7.5px),
    radial-gradient(circle at 34% 66%, #050607 0 7px, transparent 7.5px),
    radial-gradient(circle at 44% 50%, #050607 0 6px, transparent 6.5px),
    radial-gradient(circle at 55% 65%, #050607 0 8px, transparent 8.5px),
    radial-gradient(circle at 66% 46%, #050607 0 7px, transparent 7.5px),
    radial-gradient(circle at 77% 67%, #050607 0 7px, transparent 7.5px),
    radial-gradient(circle at 88% 50%, #050607 0 6px, transparent 6.5px),
    linear-gradient(#050607, #020303);
  clip-path: polygon(0 37%, 6% 47%, 11% 32%, 18% 48%, 24% 24%, 32% 46%, 39% 29%, 47% 48%, 55% 23%, 63% 44%, 70% 27%, 78% 45%, 86% 31%, 94% 49%, 100% 37%, 100% 100%, 0 100%);
}

.meter-panel {
  grid-row: span 2;
}

.meter-content {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px;
  height: calc(100% - 25px);
  padding: 11px;
}

.meters {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  padding-bottom: 5px;
}

.meter-bar {
  position: relative;
  width: 9px;
  height: 82%;
  border-radius: 2px;
  background: repeating-linear-gradient(to top, #1e2125 0 3px, transparent 3px 5px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.meter-bar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  left: 1px;
  height: var(--level, 55%);
  border-radius: 1px;
  background: linear-gradient(to top, #efefed, #777b82);
}

.meter-stats {
  display: grid;
  align-content: start;
  gap: 15px;
  padding-top: 5px;
}

.stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat span {
  color: #74777e;
  font-size: 7px;
  letter-spacing: 0.06em;
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  padding: 11px;
  color: #8e9198;
  font-size: 7.5px;
}

.network-grid b {
  color: #e8e9ea;
  font-weight: 600;
}

.input-panel {
  padding-bottom: 8px;
}

.input-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 7px;
  padding: 6px 9px 0;
  color: #96999f;
  font-size: 7px;
}

.input-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: #26292e;
}

.input-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--fill, 58%);
  border-radius: inherit;
  background: #bfc1c5;
}

.input-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--fill, 58%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2f2f0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px #08090a;
}

.laptop-base {
  position: relative;
  height: 25px;
  margin-top: -1px;
  border-radius: 3px 3px 35px 35px / 3px 3px 12px 12px;
  background: linear-gradient(180deg, #606367 0, #26282b 19%, #0a0b0c 68%, #2c2f32 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  right: 39%;
  left: 39%;
  height: 5px;
  border-radius: 0 0 5px 5px;
  background: #17191b;
}

.laptop-base::after {
  content: "NearField";
  position: absolute;
  top: 5px;
  left: 50%;
  color: rgba(255, 255, 255, 0.12);
  font-size: 7px;
  letter-spacing: -0.02em;
  transform: translateX(-50%);
}

.section {
  padding: 36px 0 0;
}

.section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(27px, 3.2vw, 39px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 680;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 170px;
  padding: 26px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #dddeda;
}

.feature-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.5;
}

.feature-card h3 {
  margin: 1px 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: #a8aab0;
  font-size: 14px;
  line-height: 1.52;
}

.feature-meta {
  margin-top: 9px;
  color: #777a81;
  font-size: 12px;
}

.workflow {
  padding-top: 54px;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr;
  align-items: center;
  min-height: 142px;
  padding: 22px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.009));
}

.workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
}

.workflow-step svg {
  width: 48px;
  height: 48px;
  color: #d9dade;
  stroke-width: 1.4;
}

.workflow-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.workflow-step span {
  display: block;
  color: #8f9298;
  font-size: 12px;
  line-height: 1.45;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: #c0c2c5;
}

.workflow-arrow svg {
  width: 25px;
  height: 25px;
}

.network-requirement {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 15px;
  margin-top: 16px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.018);
  color: #aeb0b5;
}

.network-requirement svg {
  width: 31px;
  height: 31px;
  color: #d9dade;
  stroke-width: 1.45;
}

.network-requirement strong {
  display: block;
  margin-bottom: 4px;
  color: #ececea;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.network-requirement span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.pricing {
  padding-top: 23px;
}

.pricing-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.52fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008));
}

.price-panel,
.license-panel {
  padding: 31px 42px;
}

.price-panel {
  border-right: 1px solid var(--line);
}

.pricing h3 {
  margin: 0 0 26px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.price-line strong {
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.price-line span {
  font-size: 16px;
}

.billed {
  margin: 8px 0 18px;
  color: #85888e;
  font-size: 12px;
}

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

.check-list li {
  position: relative;
  padding-left: 21px;
  color: #d2d3d5;
  font-size: 13px;
  line-height: 1.35;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #ececea;
  font-weight: 760;
}

.price-foot {
  margin-top: 10px;
  color: #6f7278;
  text-align: center;
  font-size: 10px;
}

.legal-inline-note {
  margin: 13px 0 0;
  color: #85888f;
  font-size: 12px;
  line-height: 1.55;
}

.legal-inline-note.compact {
  margin-top: -4px;
  font-size: 11px;
}

.legal-inline-note a {
  color: #d9dade;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 3px;
}

.legal-inline-note a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.56);
}

.license-items {
  display: grid;
  gap: 21px;
}

.license-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
}

.license-item svg {
  width: 39px;
  height: 39px;
  color: #d2d3d6;
  stroke-width: 1.4;
}

.license-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.license-item span {
  display: block;
  color: #9a9ca2;
  font-size: 13px;
  line-height: 1.45;
}

.brand-cta {
  padding: 42px 0 65px;
}

.brand-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
  overflow: hidden;
  padding: 35px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 255, 255, 0.09), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
}

.brand-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 90px;
  width: 220px;
  height: 220px;
  opacity: 0.2;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 1.3px, transparent 1.8px) 0 0/7px 7px;
  mask-image: radial-gradient(circle, transparent 0 19%, #000 20% 70%, transparent 72%);
  transform: translateY(-50%);
}

.brand-panel > * {
  position: relative;
  z-index: 2;
}

.brand-panel h2 {
  margin: 0 0 9px;
  font-size: clamp(29px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.brand-panel p {
  margin: 0;
  color: #9b9da3;
  font-size: 15px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 64px 0 28px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.eyebrow,
.release-channel,
.release-meta span,
.download-meta span {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.release-summary-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.release-summary-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.release-summary-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.release-summary-panel span {
  color: var(--quiet);
  font-size: 12px;
}

.release-summary-panel strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

.release-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0 68px;
}

.release-tabs {
  position: sticky;
  top: 20px;
  display: grid;
  align-self: start;
  gap: 10px;
}

.release-tab {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  text-align: left;
  font: inherit;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
}

.release-tab[aria-selected="true"] {
  color: var(--black);
  border-color: #fff;
  background: linear-gradient(180deg, #fff, #e6e6e2);
}

.release-feed {
  display: grid;
  gap: 16px;
}

.release-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 15, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.release-card.latest {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.release-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.release-card h2,
.release-card h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.release-channel {
  margin-bottom: 10px;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f0f1f0;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.release-copy {
  max-width: 760px;
  margin: 0;
  color: #b7b9bd;
  font-size: 15px;
  line-height: 1.58;
}

.release-notes {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-notes li {
  position: relative;
  padding-left: 20px;
  color: #d2d3d5;
  font-size: 14px;
  line-height: 1.48;
}

.release-notes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #d9dade;
  border-radius: 50%;
}

.release-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.release-meta,
.download-meta {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.release-meta span,
.download-meta span {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.release-meta strong,
.download-meta strong {
  display: block;
  overflow: hidden;
  color: #f5f5f3;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.hash {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.empty-state,
.load-state {
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: #72757b;
  font-size: 12px;
}

.footer-brand {
  color: #b8b9bd;
  font-weight: 650;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: #bfc0c4;
}

.legal-brand-mark {
  object-fit: contain;
}

.legal-page {
  padding: 58px 0 74px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 24px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.legal-card {
  max-width: 920px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(10, 12, 15, 0.78);
  box-shadow: var(--shadow);
}

.legal-card p,
.legal-card li {
  color: #c6c7ca;
  font-size: 15px;
  line-height: 1.72;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--text);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-card h3 {
  margin: 24px 0 8px;
  color: #e4e5e6;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-card a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.legal-card code {
  color: #f2f2ef;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.93em;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(450px, 1.04fr);
    gap: 25px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav a:not(.button) {
    display: none;
  }

  .hero,
  .page-hero-grid,
  .release-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    justify-content: center;
    min-height: 450px;
  }

  .laptop {
    width: min(92%, 650px);
    margin-right: 0;
  }

  .hero h1,
  .lead,
  .hero-points,
  .direct-path-note {
    max-width: 680px;
  }

  .workflow-shell {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .price-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-tabs {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 670px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 68px;
  }

  .wordmark {
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  .brand-logo {
    width: 46px;
    height: 34px;
  }

  .nav .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .laptop {
    width: 100%;
  }

  .screen-shell {
    width: 96%;
    border-radius: 16px 16px 8px 8px;
  }

  .app-grid {
    grid-template-columns: 72px 1fr;
  }

  .sidebar {
    padding: 9px 6px;
  }

  .side-label {
    font-size: 5px;
  }

  .side-item {
    height: 17px;
    padding: 0 4px;
    font-size: 5.5px;
  }

  .workspace {
    gap: 5px;
    padding: 7px;
  }

  .panel-title {
    height: 19px;
    padding: 0 6px;
    font-size: 5.5px;
  }

  .concert,
  .meter-content {
    height: calc(100% - 19px);
  }

  .meter-content,
  .network-grid {
    padding: 7px;
  }

  .network-grid {
    font-size: 5.5px;
  }

  .input-row {
    grid-template-columns: 28px 1fr;
    padding: 4px 6px 0;
    font-size: 5px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(45px, 13vw, 63px);
  }

  .hero h1 .hero-primary {
    white-space: normal;
  }

  .lead,
  .page-lead {
    font-size: 15px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-point {
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
  }

  .hero-point svg {
    width: 24px;
    height: 24px;
  }

  .direct-path-note {
    display: grid;
    padding: 13px 14px;
  }

  .direct-path-flow {
    gap: 7px;
  }

  .direct-path-flow b {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.76rem;
  }

  .direct-path-flow i {
    width: 16px;
    flex-basis: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .brand-panel .button,
  .cta-actions {
    width: 100%;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .network-requirement {
    grid-template-columns: 34px 1fr;
    padding: 15px 16px;
  }

  .network-requirement svg {
    width: 27px;
    height: 27px;
  }

  .price-panel,
  .license-panel,
  .brand-panel {
    padding: 28px 24px;
  }

  .brand-panel,
  .download-row,
  .release-card-header {
    grid-template-columns: 1fr;
  }

  .release-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .release-tabs {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
