:root {
  color-scheme: dark;
  --bg: #080a08;
  --bg-soft: #0e110e;
  --panel: #131712;
  --panel-high: #1a1f18;
  --line: rgba(229, 238, 221, 0.14);
  --line-bright: rgba(229, 238, 221, 0.26);
  --text: #f2f5ee;
  --muted: #a8b0a2;
  --green: #3dfa61;
  --green-dark: #0d6e29;
  --amber: #ffdb52;
  --red: #ff5338;
  --brass: #bd9b59;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 4%, rgba(61, 250, 97, 0.08), transparent 28rem),
    linear-gradient(180deg, #0a0d09 0%, var(--bg) 38%, #0a0b09 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 7.5vw, 6.7rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.3vw, 4.3rem);
  font-weight: 720;
}

h3 {
  font-size: 1.45rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green);
  color: #061009;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 8, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.98rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.footer a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 40px;
  margin-left: 0;
  padding-inline: 15px;
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
}

.button-primary {
  border-color: #79ff8f;
  background: var(--green);
  color: #061009;
  box-shadow: 0 12px 34px rgba(61, 250, 97, 0.16);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(61, 250, 97, 0.25);
}

.button-secondary {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover,
.button-small:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.64fr);
  align-items: center;
  gap: 60px;
  min-height: 770px;
  padding-block: 90px 110px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: #c2c9bd;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.73rem;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.app-icon {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.58));
  animation: icon-float 7s ease-in-out infinite;
}

.app-orbit {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(61, 250, 97, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 250, 97, 0.14), transparent 67%);
  box-shadow: inset 0 0 80px rgba(61, 250, 97, 0.06), 0 0 90px rgba(61, 250, 97, 0.06);
}

.app-orbit::before,
.app-orbit::after {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(255, 219, 82, 0.17);
  border-radius: inherit;
  content: "";
}

.app-orbit::after {
  inset: 25%;
  border-color: rgba(255, 255, 255, 0.1);
}

.version-plate {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: rgba(8, 10, 8, 0.86);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.version-plate span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.version-plate strong {
  color: var(--green);
  font-size: 1.2rem;
}

.rack-preview {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 32%),
    #0a0c0a;
  box-shadow: inset 0 0 0 5px #131611, 0 30px 80px rgba(0, 0, 0, 0.38);
}

.rack-preview::before,
.rack-preview::after {
  position: absolute;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #474a43;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
  content: "";
}

.rack-preview::before { left: 21px; }
.rack-preview::after { right: 21px; }

.rack-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 10px 26px;
}

.rack-topline h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.rack-controls {
  display: flex;
  gap: 11px;
  padding-bottom: 5px;
}

.rack-controls i {
  width: 13px;
  height: 13px;
  border: 1px solid #4e554a;
  border-radius: 50%;
  background: #252922;
}

.rack-controls i:first-child { background: var(--green); box-shadow: 0 0 14px rgba(61, 250, 97, 0.65); }
.rack-controls i:nth-child(2) { background: #53491e; }
.rack-controls i:nth-child(3) { background: #482018; }

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

.meter-card {
  padding: 14px;
  border: 1px solid #2c302a;
  border-radius: 17px;
  background: linear-gradient(145deg, #1e221c, #080908 70%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09), 0 16px 35px rgba(0, 0, 0, 0.3);
}

.meter-screen {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  border: 10px solid #11150f;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 48%),
    radial-gradient(circle at 50% 110%, rgba(226, 255, 215, 0.55), transparent 48%),
    linear-gradient(135deg, #79ed59, #33ae3a);
  box-shadow: inset 0 0 30px rgba(0, 45, 10, 0.32), 0 0 20px rgba(61, 250, 97, 0.08);
}

.meter-scale {
  position: absolute;
  top: 18px;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(4, 52, 15, 0.75);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.62rem;
  font-weight: 800;
}

.meter-arc {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 74%;
  aspect-ratio: 2 / 1;
  border: 2px solid rgba(5, 55, 17, 0.62);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.meter-arc::before {
  position: absolute;
  inset: 12px 12px auto;
  height: 56%;
  border-top: 1px dashed rgba(6, 57, 18, 0.55);
  border-radius: 50%;
  content: "";
}

.needle {
  position: absolute;
  bottom: 31px;
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 112px;
  border-radius: 2px;
  background: #ff3d2f;
  box-shadow: 0 0 3px rgba(255, 40, 30, 0.55);
  transform: translateX(-50%) rotate(var(--needle));
  transform-origin: 50% 100%;
}

.needle-pin {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 3;
  width: 19px;
  height: 19px;
  border: 5px solid #e73529;
  border-radius: 50%;
  background: #75160e;
  transform: translateX(-50%);
}

.meter-value {
  position: absolute;
  bottom: 14px;
  left: 15px;
  color: rgba(5, 42, 13, 0.8);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.meter-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 5px 3px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.meter-label span { font-weight: 800; letter-spacing: 0.12em; }
.meter-label small { color: var(--muted); font-size: 0.62rem; letter-spacing: 0.1em; }

.visual-note {
  margin: 20px 4px 0;
  color: #737b70;
  font-size: 0.72rem;
  text-align: right;
}

.screens-section {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 32%),
    #0a0c0a;
  box-shadow: inset 0 0 0 5px #131611, 0 30px 80px rgba(0, 0, 0, 0.38);
}

.screens-section::before,
.screens-section::after {
  position: absolute;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #474a43;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
  content: "";
}

.screens-section::before { left: 21px; }
.screens-section::after { right: 21px; }

.screens-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 54px;
  padding: 18px 10px 34px;
}

.screens-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.screens-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 18px;
}

.app-shot,
.menubar-shot {
  margin: 0;
}

.screenshot-frame {
  padding: 9px;
  overflow: hidden;
  border: 1px solid #30352d;
  border-radius: 18px;
  background: #060706;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.07);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 11px;
}

.app-shot figcaption {
  display: grid;
  gap: 3px;
  padding: 15px 10px 2px;
}

.app-shot figcaption strong {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-shot figcaption span,
.menubar-shot figcaption {
  color: var(--muted);
  font-size: 0.82rem;
}

.menubar-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 50%, rgba(61, 250, 97, 0.09), transparent 28rem),
    rgba(255, 255, 255, 0.018);
}

.menubar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
  padding-block: 130px;
}

.menubar-copy h2 {
  max-width: 740px;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
}

.menubar-copy > p:last-of-type {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.menubar-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.menubar-points span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #c5cdc0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.68rem;
}

.menubar-shot {
  width: min(100%, 390px);
  justify-self: center;
  padding: 18px;
  border: 1px solid #30352d;
  border-radius: 24px;
  background: #080a08;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.5), 0 0 70px rgba(61, 250, 97, 0.05);
}

.menubar-shot-crop {
  overflow: hidden;
  border-radius: 16px;
}

.menubar-shot-crop img {
  width: 100%;
  height: auto;
  margin-bottom: -26px;
  border-radius: 16px;
  transform: translateY(-26px);
}

.menubar-shot figcaption {
  padding: 15px 3px 0;
  text-align: center;
}

.feature-section,
.modes-section,
.install-section {
  padding-block: 150px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading p:last-child,
.split-copy p,
.integration-grid p,
.center-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-signal), transparent 68%);
  content: "";
  opacity: 0.16;
}

.feature-card h3 { margin-top: 80px; }
.feature-card p { color: var(--muted); }
.feature-number { color: var(--card-signal); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.78rem; font-weight: 800; }
.signal-green { --card-signal: var(--green); }
.signal-amber { --card-signal: var(--amber); }
.signal-red { --card-signal: var(--red); }

.workshop-section,
.integration-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.split-layout,
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 130px;
}

.workshop-panel,
.code-card {
  overflow: hidden;
  border: 1px solid #31362e;
  border-radius: 16px;
  background: #090b09;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 0 0 5px #141813;
}

.panel-titlebar,
.code-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid #2a2f28;
  color: #7f887b;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.panel-dot,
.code-card-top span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.panel-dot.green,
.code-card-top span:first-child { background: var(--green); box-shadow: 0 0 10px rgba(61, 250, 97, 0.45); }
.panel-dot.amber,
.code-card-top span:nth-child(2) { background: var(--amber); }
.panel-dot.red,
.code-card-top span:nth-child(3) { background: var(--red); }
.panel-titlebar > span:last-child { margin-left: auto; }

.diagnostic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid #1d211c;
  color: #bcc4b7;
  font-size: 0.9rem;
}

.diagnostic-row:last-child { border-bottom: 0; }
.diagnostic-row strong { color: var(--green); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.64rem; letter-spacing: 0.08em; text-align: right; }
.split-copy h2 { font-size: clamp(2.3rem, 4.1vw, 4rem); }

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.mode-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 820px;
  padding: 5px;
  margin: 0 auto 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0f0c;
}

.mode-strip span {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.mode-strip .active {
  background: #242a22;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.theme-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
}

.theme-chip i {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 5px solid rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  background: var(--theme-color);
  box-shadow: 0 0 18px var(--theme-glow);
}

.theme-green { --theme-color: #3dfa61; --theme-glow: rgba(61, 250, 97, 0.3); }
.theme-amber { --theme-color: #ffcf4d; --theme-glow: rgba(255, 207, 77, 0.3); }
.theme-red { --theme-color: #ff5338; --theme-glow: rgba(255, 83, 56, 0.3); }
.theme-lcd { --theme-color: #b8dc68; --theme-glow: rgba(184, 220, 104, 0.25); }
.theme-dark { --theme-color: #8ba0a8; --theme-glow: rgba(139, 160, 168, 0.22); }

.center-copy {
  max-width: 740px;
  margin: 42px auto 0;
  text-align: center;
}

.integration-grid h2 { font-size: clamp(2.3rem, 4.1vw, 4rem); }
.code-card-top small { margin-left: auto; color: #727a6f; }
.code-card pre { padding: 30px; margin: 0; overflow: auto; color: #bff6c9; font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.82rem; line-height: 1.8; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 18px;
  min-height: 190px;
  padding: 26px;
  border-top: 1px solid var(--line-bright);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.steps > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.76rem;
}

.steps h3 { margin: 4px 0 12px; }
.steps p { color: var(--muted); font-size: 0.92rem; }

.requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.requirements div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: #0e110e;
}

.requirements span { color: var(--green); font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.62rem; letter-spacing: 0.09em; }
.requirements strong { font-size: 0.92rem; }

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 45px;
  margin-bottom: 120px;
  border: 1px solid rgba(61, 250, 97, 0.22);
  border-radius: 24px;
  background: radial-gradient(circle at 0 50%, rgba(61, 250, 97, 0.1), transparent 35%), #10130f;
}

.final-cta img { width: 96px; filter: drop-shadow(0 14px 25px rgba(0, 0, 0, 0.35)); }
.final-cta h2 { margin-bottom: 8px; font-size: clamp(1.9rem, 3.5vw, 3.3rem); }
.final-cta p:last-child { margin: 0; color: var(--muted); }

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 110px;
}

.footer p { margin: 0; font-size: 0.82rem; }
.footer nav { display: flex; gap: 22px; }

.policy-main {
  padding-block: 100px 140px;
}

.policy-hero {
  max-width: 900px;
  margin-bottom: 76px;
}

.policy-hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.policy-date {
  color: #747d71;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
}

.policy-content {
  max-width: 830px;
}

.policy-content section {
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.policy-content p {
  color: #b5bdb0;
}

.policy-content a {
  color: var(--green);
  text-underline-offset: 3px;
}

.policy-content code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #1c211a;
  color: #d5f7d9;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 80px;
  }

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

  .app-icon { width: min(78vw, 390px); }
  .app-orbit { width: min(72vw, 400px); }
  .version-plate { right: 14%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .feature-card h3 { margin-top: 50px; }
  .screens-heading,
  .split-layout,
  .integration-grid,
  .menubar-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .final-cta { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .nav { min-height: 68px; gap: 14px; }
  .nav-links { display: none; }
  .nav .button { margin-left: auto; }
  .brand span { display: none; }
  .hero { gap: 30px; padding-block: 66px 86px; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.7rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 330px; }
  .version-plate { right: 4%; bottom: 15px; }
  .screens-section { width: calc(100% - 16px); padding: 34px 18px; }
  .screens-heading { gap: 20px; padding-inline: 7px; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .rack-preview { width: calc(100% - 16px); padding: 24px 16px; }
  .rack-topline { align-items: flex-start; flex-direction: column; }
  .meter-grid { grid-template-columns: 1fr; }
  .meter-card:nth-child(n + 2) { display: none; }
  .visual-note { text-align: left; }
  .feature-section,
  .modes-section,
  .install-section { padding-block: 100px; }
  .split-layout,
  .integration-grid,
  .menubar-grid { padding-block: 100px; }
  .mode-strip { grid-template-columns: 1fr 1fr; }
  .mode-strip span:last-child { grid-column: 1 / -1; }
  .theme-grid { grid-template-columns: 1fr 1fr; }
  .theme-chip:last-child { grid-column: 1 / -1; }
  .requirements { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; padding: 30px; }
  .final-cta img { width: 76px; }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 28px; }
  .footer nav { flex-wrap: wrap; }
  .policy-main { padding-block: 72px 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
