:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-soft: #13161c;
  --surface: rgba(24, 28, 36, 0.84);
  --surface-solid: #181c24;
  --surface-raised: #202632;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f8fb;
  --muted: #a6b0be;
  --subtle: #707987;
  --accent: #6ee08f;
  --accent-strong: #90f2ad;
  --accent-ink: #06140b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --max-width: 1180px;
  --radius: 22px;
  --radius-small: 14px;
  --header-height: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 21, 0.94), var(--bg) 34rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(110, 224, 143, 0.08), transparent 26rem),
    linear-gradient(240deg, rgba(160, 180, 210, 0.08), transparent 30rem);
  opacity: 0.74;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.78;
  transform: translate3d(0, var(--ambient-parallax-y, 0), 0);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(15, 17, 21, 0.88);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 2.05rem;
  height: 2.05rem;
  border: 1px solid rgba(110, 224, 143, 0.52);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(110, 224, 143, 0.2), rgba(255, 255, 255, 0.04)),
    var(--surface-solid);
  box-shadow: inset 0 0 0 0.45rem rgba(15, 17, 21, 0.82), 0 0 28px rgba(110, 224, 143, 0.18);
}

.brand-mark::after {
  position: absolute;
  right: -0.28rem;
  bottom: 0.04rem;
  width: 0.66rem;
  height: 0.16rem;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.2rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.55rem 0.86rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--accent-strong);
  color: var(--accent-ink);
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 0.12rem;
  margin: 0.18rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.3rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.3rem) rotate(-45deg);
}

.mobile-download {
  display: none;
}

.nav-download-icon {
  width: 0.98rem;
  height: 0.98rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.24rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  min-height: 2.15rem;
  padding: 0.32rem 0.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  outline: none;
}

.flag {
  width: 1.15rem;
  height: 0.78rem;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.flag-da {
  background:
    linear-gradient(90deg, transparent 30%, #ffffff 30% 43%, transparent 43%),
    linear-gradient(0deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    #c8102e;
}

.flag-en {
  background:
    linear-gradient(32deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
    linear-gradient(-32deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
    linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 36%, #ffffff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
    #012169;
}

.section-shell {
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

main {
  padding-top: var(--header-height);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(48rem, calc(100svh - var(--header-height)));
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}

.hero-copy,
.hero-visual,
.screen-composition {
  will-change: transform;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 1.25rem;
  font-size: 5.35rem;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions-rich {
  gap: 1rem;
  margin-top: 0.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.82rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-rich {
  min-width: 11.8rem;
  min-height: 4rem;
  gap: 0.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 2rem;
}

.button-rich .button-icon,
.button-rich .github-icon {
  width: 1.28rem;
  height: 1.28rem;
}

.button-copy {
  display: grid;
  gap: 0.04rem;
  line-height: 1.1;
  text-align: left;
}

.button-title {
  font-size: 1.08rem;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.button-subtitle {
  opacity: 0.72;
  font-size: 0.76rem;
  font-weight: 650;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.085);
}

.button-github {
  gap: 0.6rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(98, 111, 128, 0.72);
  color: #f5f7fb;
}

.button-github:hover,
.button-github:focus-visible {
  background: rgba(116, 130, 150, 0.82);
}

.github-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-icon {
  width: 1.08rem;
  height: 1.08rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 31rem;
  margin: 2.4rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats dt {
  color: var(--subtle);
  font-size: 0.73rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.25;
}

.screen-composition {
  position: relative;
  min-height: clamp(28rem, 45vw, 36rem);
  overflow: hidden;
  perspective: 1200px;
}

.app-window {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: rgba(24, 28, 36, 0.92);
  box-shadow: var(--shadow);
}

.app-window figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--subtle);
  font-size: 0.75rem;
  font-weight: 720;
}

.app-window figcaption span:first-child {
  color: var(--text);
}

.app-window-large {
  inset: 1rem 0 auto auto;
  width: min(92%, 40rem);
  transform: translate3d(var(--hero-large-x, 0), var(--hero-large-y, 0), 0) rotateX(2deg) rotateY(-8deg);
}

.app-window-small {
  left: 0;
  bottom: 1.2rem;
  width: min(44%, 16rem);
  transform: translate3d(var(--hero-small-x, 0), var(--hero-small-y, 0), 0) rotateX(1deg) rotateY(10deg);
}

.theme-window {
  left: 0.5rem;
  bottom: 0.9rem;
  width: min(42%, 18rem);
}

.theme-window .zoom-frame img {
  aspect-ratio: 0.82;
  object-fit: contain;
}

.intro-band,
.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2rem;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
}

.intro-band p,
.impact-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

#features,
.use-section,
.setup-section,
.impact-section,
.download-section {
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.intro-band h2 {
  max-width: 12ch;
  font-size: 3.35rem;
}

.feature-showcases {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.feature-showcase:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.88fr) minmax(0, 1.12fr);
}

.feature-showcase:nth-child(even) .feature-shot {
  order: 2;
}

.feature-copy {
  max-width: 35rem;
}

.feature-showcase:nth-child(even) .feature-copy {
  justify-self: end;
}

.feature-copy h3 {
  margin-bottom: 0.8rem;
  color: #a9c1ff;
  font-size: 2rem;
  line-height: 1.08;
}

.feature-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.requirements-card,
.impact-point {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.zoom-frame {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  isolation: isolate;
  background: #0c0e12;
}

.zoom-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform 240ms ease;
  will-change: transform;
}

.zoom-frame.is-zooming img {
  transform: scale(2);
}

.feature-shot {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.app-window .zoom-frame {
  line-height: 0;
}

.feature-shot img {
  height: auto;
  object-fit: contain;
}

.feature-copy p,
.shortcut-row p,
.setup-steps p,
.requirements-card li,
.impact-point span,
.site-footer span {
  color: var(--muted);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(110, 224, 143, 0.28);
  border-radius: 14px;
  background: rgba(110, 224, 143, 0.09);
}

.feature-icon::before {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  content: "";
}

.zoom-icon::before {
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem rgba(110, 224, 143, 0.1);
}

.tray-icon::before {
  border: 2px solid var(--accent);
  border-radius: 0.28rem;
  box-shadow: inset 0 -0.32rem 0 rgba(110, 224, 143, 0.42);
}

.invert-icon::before {
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent) 50%, transparent 50%);
  border: 2px solid var(--accent);
}

.cursor-icon::before {
  width: 0;
  height: 0;
  border-top: 1.15rem solid var(--accent);
  border-right: 0.7rem solid transparent;
}

.monitor-icon::before {
  border: 2px solid var(--accent);
  border-radius: 0.24rem;
  box-shadow: 0.34rem 0.34rem 0 rgba(110, 224, 143, 0.32);
}

.startup-icon::before {
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-bottom: 1.15rem solid var(--accent);
}

.shortcut-grid {
  display: grid;
  gap: 0.8rem;
}

.shortcut-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, auto);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.038);
}

.shortcut-row h3,
.shortcut-row p {
  margin-bottom: 0;
}

.shortcut-combo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 720;
}

.mouse-token {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.4rem;
  padding: 0.4rem 0.72rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 760;
}

.mouse-token::before {
  content: "🖱️";
}

.shortcut-note {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

kbd {
  min-width: 2.4rem;
  padding: 0.4rem 0.58rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  text-align: center;
  box-shadow: inset 0 -0.18rem 0 rgba(0, 0, 0, 0.24);
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 1rem;
  align-items: start;
}

.setup-steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.038);
}

.setup-steps li > span {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(110, 224, 143, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
}

.setup-steps h3,
.setup-steps p {
  margin-bottom: 0;
}

.requirements-card {
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.requirements-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.requirements-card li {
  position: relative;
  padding-left: 1.1rem;
}

.requirements-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.impact-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 0.9fr);
  min-width: 0;
}

.impact-copy p {
  max-width: 45rem;
  margin-bottom: 0;
}

.impact-copy h2 {
  max-width: 12ch;
  font-size: 3.15rem;
}

.impact-points {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.impact-point {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 1rem;
}

.impact-point strong {
  color: var(--text);
}

.impact-copy,
.impact-copy h2,
.impact-copy p,
.impact-point,
.impact-point strong,
.impact-point span {
  overflow-wrap: anywhere;
}

.download-section {
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(110, 224, 143, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.download-panel h2 {
  max-width: 13ch;
  margin-bottom: 0.75rem;
  font-size: 3.45rem;
}

.download-panel p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
  min-width: min(100%, 31rem);
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.download-meta span {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.site-footer div {
  display: grid;
  gap: 0.1rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 720;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
  outline: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .feature-showcase .feature-shot {
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.js .feature-showcase:nth-child(even) .feature-shot {
  transform: translateX(72px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-copy.reveal.is-visible {
  transform: translate3d(0, var(--hero-copy-y, 0), 0);
}

.js .hero-visual.reveal.is-visible {
  transform: translate3d(0, var(--hero-visual-y, 0), 0);
}

.js .feature-showcase.is-visible .feature-shot {
  opacity: 1;
  transform: translate3d(0, var(--feature-parallax-y, 0), 0);
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .impact-section,
  .download-panel,
  .setup-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .screen-composition {
    min-height: 35rem;
  }

  .download-buttons {
    justify-content: flex-start;
    min-width: 0;
  }

  .requirements-card {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(15, 17, 21, 0.96), var(--bg) 30rem),
      var(--bg);
  }

  .nav {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-download {
    display: none;
  }

  .language-switch {
    position: static;
    margin-left: 1rem;
    padding: 0.18rem;
    transform: none;
  }

  .language-option {
    min-height: 2rem;
    padding: 0.32rem;
    font-size: 0.7rem;
  }

  .language-option span:last-child {
    display: none;
  }

  .nav-links {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .intro-band h2,
  .impact-copy h2,
  .download-panel h2 {
    max-width: 100%;
    font-size: 2.45rem;
  }

  .impact-section {
    gap: 1rem;
  }

  .impact-copy p,
  .impact-point span {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero {
    padding-top: 2.2rem;
    gap: 2.5rem;
  }

  .hero-lede {
    max-width: 31ch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .screen-composition {
    min-height: 24rem;
    border-radius: 22px;
  }

  .app-window-large {
    inset: 0 0 auto 0;
    width: 100%;
    transform: translate3d(0, var(--hero-large-y, 0), 0);
  }

  .app-window-small {
    left: 0.8rem;
    bottom: 0.8rem;
    width: 58%;
    transform: translate3d(0, var(--hero-small-y, 0), 0);
  }

  .theme-window {
    width: 45%;
  }

  .feature-showcase,
  .feature-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-showcase:nth-child(even) .feature-shot {
    order: 0;
  }

  .feature-showcase:nth-child(even) .feature-copy {
    justify-self: start;
  }

  .js .feature-showcase .feature-shot,
  .js .feature-showcase:nth-child(even) .feature-shot {
    transform: translateY(24px);
  }

  .js .feature-showcase.is-visible .feature-shot {
    transform: translate3d(0, var(--feature-parallax-y, 0), 0);
  }

  .feature-copy h3 {
    font-size: 1.8rem;
  }

  .shortcut-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .shortcut-combo {
    justify-content: flex-start;
  }

  .shortcut-row kbd,
  .shortcut-row > span,
  .shortcut-combo {
    justify-self: start;
  }

  .setup-steps li {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-shell,
  .nav,
  .site-footer {
    width: calc(100% - 1.1rem);
    max-width: var(--max-width);
  }

  .intro-band,
  .impact-section,
  .download-panel {
    padding: 1rem;
    border-radius: 18px;
  }

  .impact-section {
    width: calc(100% - 0.8rem);
  }

  .impact-copy h2 {
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .impact-point {
    padding: 0.9rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions,
  .download-buttons {
    width: 100%;
  }

  .hero-actions-rich {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-rich {
    justify-content: center;
    min-width: 0;
  }

  .screen-composition {
    min-height: 24rem;
  }

  .app-window figcaption {
    font-size: 0.68rem;
  }

  .app-window-small {
    width: 50%;
  }

}

@media (hover: none), (pointer: coarse) {
  .zoom-frame {
    cursor: default;
  }

  .zoom-frame img {
    transform: none !important;
  }
}

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

  .ambient-canvas {
    opacity: 0.42;
  }

  .zoom-frame {
    cursor: default;
  }

  .zoom-frame img {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .feature-showcase .feature-shot {
    opacity: 1;
    transform: none !important;
  }
}
