:root {
  --header-height: 70px;
  --panel-height: calc(100svh - var(--header-height));
  --page: #ffffff;
  --ink: #111214;
  --muted: #5d646c;
  --soft: #f5f6f7;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #f7f8f9;
  --surface-muted: #f7f9fb;
  --wash: linear-gradient(180deg, rgba(245, 246, 247, 0.92) 0, rgba(255, 255, 255, 0) 540px);
  --section-wash: linear-gradient(180deg, #ffffff, #f7f8f9);
  --header-bg: rgba(255, 255, 255, 0.86);
  --line: #dfe3e6;
  --line-strong: #c7cdd3;
  --heading-soft: #2c3035;
  --body-copy: #343a40;
  --section-copy: #363c42;
  --ui-copy: #30363c;
  --button-primary-bg: #111214;
  --button-primary-ink: #ffffff;
  --button-secondary-bg: #ffffff;
  --command-bg: rgba(255, 255, 255, 0.9);
  --code-ink: #191b1f;
  --copy-bg: #ffffff;
  --image-bg: #eef1f3;
  --effects-bg: #0d4446;
  --icon-ink: #111214;
  --link: #0b63ce;
  --claude: #d96b37;
  --green: #25c05a;
  --yellow: #f6bd25;
  --red: #f05245;
  --shadow: 0 24px 80px rgba(17, 18, 20, 0.12);
  --shadow-soft: 0 12px 34px rgba(17, 18, 20, 0.08);
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: clamp(24px, 3vw, 36px);
  --font-display: clamp(56px, 8vw, 112px);
  --font-display-tight: clamp(56px, 7.4vw, 98px);
  --font-display-mobile: clamp(44px, 13vw, 58px);
  --font-section: clamp(36px, 5vw, 64px);
  --font-section-compact: clamp(34px, 4.3vw, 52px);
  --font-panel-title: clamp(20px, 1.8vw, 24px);
  --font-mobile-subtitle: 22px;
  --font-mono: 14px;
  --header-control-font: 14px;
  --header-control-weight: 650;
  --header-control-height: 40px;
  --header-switch-font: 13px;
  --header-switch-height: 36px;
  --content-max: 1440px;
  --content-medium: 1180px;
  color-scheme: light;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  --page: #0e1013;
  --ink: #f3f6f8;
  --muted: #a4adb7;
  --soft: #171b20;
  --surface: #15191d;
  --surface-strong: #1a1f24;
  --surface-soft: #111418;
  --surface-muted: #171c21;
  --wash: linear-gradient(180deg, rgba(28, 33, 38, 0.92) 0, rgba(14, 16, 19, 0) 540px);
  --section-wash: linear-gradient(180deg, #0e1013, #111418);
  --header-bg: rgba(14, 16, 19, 0.86);
  --line: #2c333a;
  --line-strong: #3d4750;
  --heading-soft: #e7ecf0;
  --body-copy: #d9dee3;
  --section-copy: #d2d8de;
  --ui-copy: #c8d0d8;
  --button-primary-bg: #f3f6f8;
  --button-primary-ink: #101214;
  --button-secondary-bg: #15191d;
  --command-bg: rgba(21, 25, 29, 0.92);
  --code-ink: #f3f6f8;
  --copy-bg: #101418;
  --image-bg: #171d23;
  --effects-bg: #0b3538;
  --icon-ink: #f3f6f8;
  --link: #7eb2ff;
  --claude: #f08a58;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: none;
}

body {
  margin: 0;
  background: var(--wash), var(--page);
  color: var(--ink);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-md);
  font-weight: 750;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(17, 18, 20, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--header-control-font);
  font-weight: var(--header-control-weight);
  color: var(--muted);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-control-height);
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.nav a.nav-cta {
  margin-left: 4px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: var(--header-control-font);
  font-weight: var(--header-control-weight);
}

.nav a.nav-cta:hover {
  border-color: var(--line-strong);
}

.site-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(38px, 1fr));
  gap: 3px;
  height: var(--header-switch-height);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.language-toggle button,
.theme-toggle {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.language-toggle button {
  min-height: 0;
  padding: 0 8px;
  font: inherit;
  font-size: var(--header-switch-font);
  font-weight: var(--header-control-weight);
  line-height: 1;
}

.language-toggle button.is-active {
  background: var(--ink);
  color: var(--page);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: var(--header-switch-height);
  height: var(--header-switch-height);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.theme-toggle:hover,
.language-toggle button:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.language-toggle button.is-active:hover,
.language-toggle button.is-active:focus-visible {
  background: var(--ink);
  color: var(--page);
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .moon-icon {
  transform: translateX(0.5px);
}

.theme-toggle .sun-icon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .sun-icon {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(520px, 650px);
  gap: clamp(36px, 4vw, 64px);
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: var(--panel-height);
  padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  max-width: 760px;
}

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

h1 {
  font-size: var(--font-display);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: var(--font-xl);
  line-height: 1.12;
  color: var(--heading-soft);
  letter-spacing: 0;
}

.hero-body {
  max-width: 610px;
  margin-top: 26px;
  color: var(--body-copy);
  font-size: var(--font-lg);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 8px;
  font-size: var(--font-md);
  font-weight: 720;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-ink);
  box-shadow: 0 12px 24px rgba(17, 18, 20, 0.2);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--button-secondary-bg);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #9ea6ae;
  box-shadow: var(--shadow-soft);
}

.command-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 30px;
  align-items: center;
  gap: 10px;
  width: min(100%, 600px);
  margin-top: 24px;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--command-bg);
  box-shadow: 0 6px 18px rgba(17, 18, 20, 0.04);
}

.command-card span {
  color: var(--muted);
  font-size: var(--font-sm);
  font-weight: 680;
}

.command-card code {
  color: var(--code-ink);
  font: var(--font-mono) / 1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-x: auto;
  overflow-y: hidden;
  overflow-wrap: normal;
  scrollbar-width: none;
  white-space: nowrap;
}

.command-card code::-webkit-scrollbar {
  display: none;
}

.hero-command-card {
  grid-template-columns: minmax(0, 1fr) 30px;
}

.command-card.compact {
  grid-template-columns: minmax(0, 1fr) 28px;
  width: 100%;
  margin-top: 14px;
  padding: 5px 6px 5px 10px;
}

.command-card.compact code {
  font-size: 13px;
  line-height: 1.35;
}

.command-card.compact .copy-button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.copy-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--copy-bg);
  color: var(--heading-soft);
  cursor: pointer;
}

.copy-button svg {
  grid-area: 1 / 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-icon {
  opacity: 0;
}

.copy-button.is-copied {
  border-color: rgba(37, 192, 90, 0.45);
  color: #168640;
}

.copy-button.is-copied .copy-icon {
  opacity: 0;
}

.copy-button.is-copied .check-icon {
  opacity: 1;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--font-sm);
}

.state-dot {
  display: inline-block;
  border-radius: 50%;
}

.red {
  background: var(--red);
}

.yellow {
  background: var(--yellow);
}

.green {
  background: var(--green);
}

.hero-integrations {
  display: grid;
  grid-template-rows: auto repeat(4, minmax(0, 1fr));
  justify-self: end;
  width: min(100%, 650px);
  min-height: clamp(500px, 62vh, 590px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 18px 46px rgba(17, 18, 20, 0.1);
}

.hero-integrations .strip-intro,
.hero-integrations .integration-item {
  padding: 22px 24px;
}

.hero-integrations .strip-intro {
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.hero-integrations .integration-item {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 0;
  border-top: 1px solid var(--line);
}

.hero-integrations .strip-intro + .integration-item {
  border-top: 0;
}

.hero-integrations .strip-intro h2 {
  font-size: var(--font-panel-title);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-integrations .strip-intro p,
.hero-integrations .integration-item > div > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--font-sm);
  line-height: 1.35;
}

.hero-integrations .integration-item strong {
  font-size: var(--font-md);
}

.integration-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-top: 0;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  color: var(--muted);
  background: var(--surface-muted);
}

.integration-badge.tested {
  border-color: rgba(37, 192, 90, 0.34);
  color: #168640;
  background: rgba(37, 192, 90, 0.1);
}

:root[data-theme="dark"] .integration-badge.tested {
  color: #68d991;
  background: rgba(37, 192, 90, 0.14);
}

.icon-box {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.brand-icon {
  background: #ffffff;
}

.brand-icon img {
  width: 24px;
  height: 24px;
}

.script-icon::before {
  content: ">_";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--icon-ink);
  font: 700 var(--font-lg) / 1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.cli-icon::before {
  content: "";
  position: absolute;
  inset: 12px 9px;
  border-left: 3px solid var(--icon-ink);
  border-bottom: 3px solid var(--icon-ink);
  transform: rotate(-45deg);
}

.section {
  display: grid;
  align-content: center;
  height: auto;
  min-height: var(--panel-height);
  padding: clamp(36px, 5vw, 56px) clamp(20px, 5vw, 72px);
}

.section-copy {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.section-copy.narrow {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-copy h2,
.privacy-copy h2 {
  font-size: var(--font-section);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy p,
.privacy-copy p {
  margin-top: 18px;
  color: var(--section-copy);
  font-size: var(--font-lg);
  line-height: 1.58;
}

.showcase-section {
  grid-template-columns: minmax(340px, 520px) minmax(0, 820px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  justify-content: center;
  background: var(--section-wash);
}

.showcase-section .section-copy {
  max-width: 520px;
  margin-bottom: 0;
}

.showcase-section .section-copy h2 {
  font-size: var(--font-section-compact);
}

.showcase-section .section-copy p {
  margin-top: 14px;
  font-size: var(--font-lg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 820px;
}

.media-card,
.install-panel,
.settings-card,
.compare-grid figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.media-card {
  overflow: hidden;
  margin: 0;
}

.large-media {
  max-height: 650px;
}

.effects-media {
  max-height: none;
}

.media-card img {
  width: 100%;
  height: clamp(320px, 48vh, 520px);
  object-fit: cover;
  object-position: center top;
  background: var(--image-bg);
}

.effects-media img {
  height: auto;
  max-height: min(760px, calc(var(--panel-height) - 112px));
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: var(--effects-bg);
}

.install-panel p {
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--font-sm);
  line-height: 1.55;
}

.install-section {
  background: var(--page);
}

.install-section .section-copy,
.compare-section .section-copy {
  width: min(100%, var(--content-medium));
  max-width: var(--content-medium);
  justify-self: center;
  text-align: center;
}

.install-section .section-copy h2,
.install-section .section-copy p,
.compare-section .section-copy h2,
.compare-section .section-copy p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.install-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--content-medium));
  justify-self: center;
}

.install-panel {
  padding: clamp(22px, 3vw, 32px);
}

.install-panel h3 {
  font-size: var(--font-xl);
  line-height: 1.2;
}

.install-panel ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ui-copy);
  font-size: var(--font-md);
  line-height: 1.75;
}

.install-panel code {
  font: var(--font-mono) / 1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--link);
  font-weight: 720;
}

.signal-section {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: clamp(28px, 4vw, 44px);
  align-content: center;
  align-items: start;
  justify-content: center;
  justify-items: center;
  background: var(--surface-soft);
}

.signal-section .section-copy {
  width: min(100%, 820px);
  max-width: 820px;
  margin-bottom: 0;
  text-align: center;
}

.signal-section .section-copy h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(40px, 5vw, 58px);
}

.signal-table {
  display: grid;
  overflow: hidden;
  justify-self: center;
  width: min(100%, 720px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.signal-title-line {
  display: block;
}

.signal-title-line:first-child {
  white-space: nowrap;
}

.signal-row {
  display: grid;
  grid-template-columns: 18px 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.state-dot {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 5px rgba(17, 18, 20, 0.04);
}

.signal-row strong {
  font-size: var(--font-md);
}

.signal-row span:last-child {
  color: var(--muted);
  font-size: var(--font-sm);
  line-height: 1.5;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(300px, 580px) minmax(320px, 560px);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  justify-content: center;
}

.privacy-copy {
  max-width: 720px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ui-copy);
  font-size: var(--font-md);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.settings-card {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.settings-card img {
  width: 100%;
  max-height: min(68vh, 560px);
  object-fit: cover;
  object-position: center top;
}

.compare-section {
  background: var(--surface-soft);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 820px);
  justify-self: center;
}

.compare-grid figure {
  overflow: hidden;
  margin: 0;
}

.compare-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: var(--image-bg);
}

.site-footer {
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--font-sm);
  text-align: center;
}

.site-footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer-separator {
  color: var(--muted);
}

.site-footer a {
  color: var(--ui-copy);
  font-weight: 650;
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, 940px) minmax(420px, 520px);
    gap: clamp(28px, 3vw, 44px);
    padding-right: clamp(36px, 4vw, 56px);
    padding-left: clamp(36px, 4vw, 56px);
  }

  .hero-copy,
  h1 {
    max-width: 940px;
  }

  h1 {
    font-size: clamp(84px, 5.65vw, 96px);
    white-space: nowrap;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(0, 500px) minmax(500px, 550px);
    gap: 36px;
    padding-right: clamp(40px, 4vw, 56px);
    padding-left: clamp(40px, 4vw, 56px);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(56px, 6.95vw, 92px);
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: var(--font-xl);
  }

  .hero-body {
    margin-top: 20px;
    font-size: var(--font-lg);
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .command-card {
    margin-top: 18px;
  }

  .hero-note {
    display: none;
  }

  .hero-integrations .strip-intro,
  .hero-integrations .integration-item {
    padding: 20px 22px;
  }

  .hero-integrations .integration-item {
    min-height: 0;
  }

  .showcase-section {
    grid-template-columns: minmax(300px, 430px) minmax(0, 650px);
  }

  .effects-media img {
    max-height: min(620px, calc(var(--panel-height) - 72px));
  }
}

@media (max-width: 1120px) {
  .hero {
    align-items: start;
    grid-template-columns: 1fr;
    height: auto;
    min-height: var(--panel-height);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-integrations {
    justify-self: start;
    width: min(100%, 720px);
  }

  .showcase-section,
  .showcase-grid,
  .privacy-section,
  .signal-section {
    grid-template-columns: 1fr;
  }

  .section {
    height: auto;
    min-height: var(--panel-height);
  }

  .showcase-section .section-copy {
    margin-bottom: clamp(34px, 5vw, 54px);
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 0;
    scroll-snap-type: none;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    gap: 10px;
    font-size: 17px;
    line-height: 1.15;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-bottom: 2px;
    font-size: 14px;
    font-weight: 650;
  }

  .site-controls {
    width: 100%;
    justify-content: space-between;
  }

  .language-toggle {
    grid-template-columns: repeat(2, minmax(48px, 1fr));
    min-width: 112px;
  }

  .language-toggle button {
    min-height: 0;
    font-size: var(--header-switch-font);
  }

  .nav a.nav-cta {
    display: none;
  }

  .hero {
    gap: 22px;
    height: auto;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 18px;
    scroll-snap-align: none;
  }

  .section {
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
  }

  h1 {
    font-size: var(--font-display-mobile);
    line-height: 0.96;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: var(--font-mobile-subtitle);
  }

  .hero-body,
  .showcase-section .section-copy p,
  .section-copy p,
  .privacy-copy p {
    font-size: var(--font-md);
  }

  .hero-body {
    margin-top: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .button {
    min-height: 48px;
  }

  .hero-note {
    display: none;
  }

  .command-card {
    grid-template-columns: minmax(0, 1fr) 30px;
    margin-top: 18px;
  }

  .command-card span {
    grid-column: 1 / -1;
  }

  .install-layout,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-integrations .strip-intro,
  .hero-integrations .integration-item {
    padding: 20px;
  }

  .hero-integrations {
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-integrations .integration-item {
    min-height: 86px;
  }

  .media-card img {
    height: 420px;
  }

  .effects-media img {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .signal-row {
    grid-template-columns: 18px minmax(70px, 90px) minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .site-footer {
    justify-content: center;
  }
}

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