:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --paper-soft: #fbfcff;
  --ink: #07142f;
  --muted: #63708a;
  --line: #dde3ed;
  --line-soft: #edf0f5;
  --accent: #ffae00;
  --accent-deep: #f59b00;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --green: #3fb440;
  --shadow: 0 18px 45px rgba(34, 49, 83, 0.11), 0 3px 10px rgba(34, 49, 83, 0.06);
  --soft-shadow: 0 14px 36px rgba(34, 49, 83, 0.08);
  --radius: 8px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: linear-gradient(180deg, #fffefa 0%, #ffffff 46%, #fbfcff 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 54px;
}

.hero::before {
  position: absolute;
  top: -258px;
  right: -64px;
  width: 570px;
  height: 570px;
  border-radius: 52% 48% 50% 50%;
  background:
    radial-gradient(circle at 42% 40%, rgba(255, 216, 105, 0.28), rgba(255, 190, 38, 0.16) 48%, transparent 72%),
    radial-gradient(circle at 78% 68%, rgba(255, 174, 0, 0.14), transparent 58%),
    rgba(255, 190, 38, 0.1);
  content: "";
  pointer-events: none;
  transform-origin: 54% 46%;
  animation: ambient-field-drift 19s ease-in-out -5s infinite alternate;
  will-change: transform, border-radius, opacity;
}

.ambient-shape {
  position: absolute;
  top: -28px;
  right: -254px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 211, 92, 0.24), rgba(255, 191, 37, 0.15) 45%, transparent 70%),
    radial-gradient(circle at 72% 64%, rgba(255, 174, 0, 0.14), transparent 58%),
    rgba(255, 191, 37, 0.12);
  opacity: 0.92;
  pointer-events: none;
  transform-origin: 48% 44%;
  animation: ambient-drift 14s ease-in-out -2.8s infinite alternate;
  will-change: transform, border-radius, opacity;
}

.ambient-shape::before,
.ambient-shape::after {
  position: absolute;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.ambient-shape::before {
  inset: 10% -8% -9% 12%;
  background: radial-gradient(ellipse at 62% 44%, rgba(255, 203, 76, 0.22), transparent 66%);
  animation: ambient-inner-drift 18s ease-in-out -7s infinite alternate;
}

.ambient-shape::after {
  inset: -18% 12% 34% -12%;
  background: radial-gradient(ellipse at 42% 52%, rgba(255, 220, 125, 0.2), transparent 70%);
  animation: ambient-glow-drift 20s ease-in-out -11s infinite alternate;
}

@keyframes ambient-field-drift {
  0% {
    border-radius: 52% 48% 50% 50%;
    opacity: 0.86;
    transform: translate3d(0, 0, 0) scale(1);
  }

  27% {
    border-radius: 45% 55% 58% 42%;
    opacity: 0.98;
    transform: translate3d(-26px, 28px, 0) scale(1.06);
  }

  61% {
    border-radius: 58% 42% 47% 53%;
    opacity: 0.9;
    transform: translate3d(18px, 44px, 0) scale(1.025);
  }

  100% {
    border-radius: 47% 53% 44% 56%;
    opacity: 1;
    transform: translate3d(-38px, 14px, 0) scale(1.075);
  }
}

@keyframes ambient-drift {
  0% {
    border-radius: 50% 48% 52% 50%;
    opacity: 0.86;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    border-radius: 42% 58% 54% 46%;
    opacity: 1;
    transform: translate3d(-30px, 22px, 0) scale(1.08);
  }

  100% {
    border-radius: 57% 43% 44% 56%;
    opacity: 0.9;
    transform: translate3d(22px, 34px, 0) scale(1.035);
  }
}

@keyframes ambient-inner-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-34px, 24px, 0) scale(1.16);
  }
}

@keyframes ambient-glow-drift {
  0% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(26px, -18px, 0) scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .ambient-shape,
  .ambient-shape::before,
  .ambient-shape::after {
    animation: none;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(410px, 0.95fr) minmax(390px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 4vw, 70px);
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(245, 155, 0, 0.22);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: #07142f;
  font-size: clamp(3.4rem, 7vw, 4.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 520px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.btn:focus-visible,
.copy-button:focus-visible,
.demo-icon-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

.btn:active,
.copy-button:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #2f75f5, var(--blue));
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.24);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2f72ee, var(--blue-deep));
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: #cbd3df;
  box-shadow: 0 8px 16px rgba(34, 49, 83, 0.04);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: #aeb8c8;
  box-shadow: 0 13px 24px rgba(34, 49, 83, 0.08);
}

.svg-icon {
  display: block;
  width: 1.45em;
  height: 1.45em;
  flex: 0 0 auto;
}

.line-icon,
.copy-icon,
.close-icon,
.chevron-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chrome-icon {
  width: 1.65em;
  height: 1.65em;
}

.demo-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cfd6e2;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-demo {
  align-self: start;
  margin-top: 6px;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.demo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 18px;
  font-weight: 800;
}

.demo-title img,
.mini-popup img,
.footer-brand img {
  border-radius: 6px;
}

.demo-icon-button,
.copy-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  color: #5f6a80;
  cursor: pointer;
}

.demo-icon-button {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.demo-icon-button:hover {
  background: #f4f6fa;
  color: var(--ink);
}

.demo-note {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: #344158;
  font-size: 16px;
}

.demo-list {
  display: grid;
}

.package-row {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
}

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

.package-row h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
}

.command-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
}

.command-line code {
  overflow: auto hidden;
  padding: 12px 14px;
  background: #f7f8fa;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  color: #17213a;
  font: 14px/1.2 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.copy-button {
  width: 42px;
  height: 42px;
  border-color: #d8dee8;
  border-radius: 7px;
  background: #fff;
}

.copy-button:hover,
.copy-button.is-copied {
  border-color: var(--blue);
  color: var(--blue);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding: 18px 0 42px;
}

.feature-card {
  overflow: hidden;
  min-height: 470px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(34, 49, 83, 0.035);
}

.browser-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  margin-bottom: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #dfe4ec;
  border-radius: 9px;
}

.browser-top,
.google-row,
.github-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid #e3e7ef;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eef1f5;
}

.address,
.search-pill {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 39px;
  padding: 0 16px;
  border: 1px solid #dbe1eb;
  border-radius: 10px;
  background: #fff;
  color: #283449;
  font-size: 15px;
}

.address,
.command-line code,
.mini-package code,
.github-row .address {
  direction: ltr;
  text-align: left;
}

.browser-top .address {
  flex: 1;
  max-width: 300px;
  margin-left: 10px;
}

.tiny-search {
  color: #66718a;
}

.toolbar-icon {
  margin-left: 4px;
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(245, 155, 0, 0.24);
}

.extension-badge {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.extension-badge .toolbar-icon,
.extension-badge img {
  margin-left: 4px;
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(245, 155, 0, 0.24);
}

.badge-count {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.28);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.browser-body {
  position: relative;
  min-height: 164px;
  padding: 26px 22px;
}

.browser-body > span {
  display: block;
  width: 108px;
  height: 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #eef1f5;
}

.badge-body {
  min-height: 164px;
}

.badge-callout {
  position: absolute;
  right: 28px;
  bottom: 35px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(310px, calc(100% - 56px));
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 9px;
  box-shadow: var(--soft-shadow);
  color: #344158;
}

.badge-callout-icon {
  width: 46px;
  height: 46px;
}

.badge-callout-icon img {
  width: 40px;
  height: 40px;
}

.badge-callout strong,
.badge-callout span {
  display: block;
}

.badge-callout strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.badge-callout div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.finding-toast {
  position: absolute;
  right: 28px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  padding: 23px 24px;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 9px;
  box-shadow: var(--soft-shadow);
  color: #344158;
}

.finding-toast strong {
  flex: 1;
  font-weight: 600;
}

.check-icon {
  width: 1.4em;
  height: 1.4em;
  color: var(--green);
}

.chevron-icon {
  width: 1.15em;
  height: 1.15em;
}

.feature-copy {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.feature-icon,
.privacy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 174, 0, 0.5);
  border-radius: 10px;
  background: rgba(255, 174, 0, 0.06);
  color: var(--accent);
}

.feature-icon .svg-icon,
.privacy-icon .svg-icon {
  width: 35px;
  height: 35px;
}

.feature-copy h2,
.privacy-copy h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

.feature-copy p,
.privacy-copy p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.ghost-sidebar {
  position: absolute;
  inset: 28px auto 28px 26px;
  width: 132px;
}

.ghost-sidebar span {
  display: block;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #eef1f5;
}

.mini-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  width: min(340px, calc(100% - 68px));
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  color: #17213a;
}

.mini-popup header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid #e7ebf1;
  font-size: 14px;
}

.mini-popup header span {
  margin-left: auto;
  color: #5f6a80;
}

.mini-package {
  padding: 12px 16px 0;
  font-size: 14px;
}

.mini-package div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 10px;
  margin-top: 8px;
}

.mini-package code {
  overflow: hidden;
  padding: 10px 11px;
  background: #f7f8fa;
  border: 1px solid #e3e7ef;
  border-radius: 4px;
  font: 13px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-package button,
.github-package-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce2eb;
  border-radius: 5px;
  background: #fff;
  color: #5f6a80;
}

.mini-popup a {
  display: inline-block;
  padding: 14px 16px 17px;
  color: var(--blue);
  font-size: 14px;
}

.google-logo {
  flex: 0 0 auto;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.google-logo b {
  font-weight: 600;
}

.google-logo b:nth-child(1),
.google-logo b:nth-child(4) {
  color: #4285f4;
}

.google-logo b:nth-child(2),
.google-logo b:nth-child(6) {
  color: #ea4335;
}

.google-logo b:nth-child(3) {
  color: #fbbc05;
}

.google-logo b:nth-child(5) {
  color: #34a853;
}

.google-row .search-pill {
  flex: 1;
  justify-content: flex-end;
  margin-left: 24px;
}

.finding-toast.compact {
  right: 46px;
  left: 86px;
  min-width: 0;
  bottom: 40px;
}

.github-row .icon-wrap {
  color: #111827;
}

.github-row .address {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.github-package-card {
  position: absolute;
  right: 26px;
  bottom: 44px;
  left: 52px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 9px;
  box-shadow: var(--soft-shadow);
  color: #344158;
}

.github-package-card div {
  min-width: 0;
}

.github-package-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.github-package-card strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.github-package-card button {
  width: 48px;
  height: 48px;
  border-left: 1px solid #e4e8f0;
}

.privacy-band {
  display: grid;
  grid-template-columns: 330px 1px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-top: 8px;
  padding: 34px 92px;
  border: 1px solid rgba(255, 174, 0, 0.55);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 174, 0, 0.06), rgba(255, 255, 255, 0.8));
}

.privacy-actions {
  justify-content: center;
}

.privacy-actions .btn {
  width: 100%;
  min-height: 62px;
}

.privacy-divider {
  width: 1px;
  height: 132px;
  background: rgba(255, 174, 0, 0.32);
}

.privacy-copy {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.privacy-icon {
  width: 80px;
  height: 80px;
  border-color: rgba(255, 174, 0, 0.36);
  color: var(--accent);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 2fr);
  gap: 64px;
  margin-top: 40px;
  padding: 30px 0 56px;
  border-top: 1px solid #dfe4ec;
}

.footer-brand > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 29px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 16px;
}

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

.footer-links h2 {
  margin: 0 0 17px;
  font-size: 14px;
}

.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--blue);
}

.copyright {
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: #7b8598;
  font-size: 14px;
  white-space: nowrap;
}

.language-switcher {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 4px 9px 4px 12px;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(34, 49, 83, 0.05);
  color: #6b7280;
  font-size: 13px;
}

.language-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #63708a;
  font-weight: 700;
  white-space: nowrap;
}

.language-label .svg-icon {
  width: 17px;
  height: 17px;
  color: var(--accent-deep);
}

.language-select {
  appearance: none;
  min-width: 128px;
  min-height: 30px;
  padding: 0 30px 0 12px;
  border: 0;
  border-radius: 999px;
  background: #fff7df;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 30px;
  background-image:
    linear-gradient(45deg, transparent 50%, #63708a 50%),
    linear-gradient(135deg, #63708a 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 13px,
    calc(100% - 10px) 13px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.language-select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: calc(100vw - 48px);
  padding: 12px 16px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero-grid,
  .features,
  .privacy-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }

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

  .privacy-band {
    gap: 28px;
    padding: 28px;
  }

  .privacy-divider {
    width: 100%;
    height: 1px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .copyright,
  .language-switcher {
    position: static;
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .hero {
    padding: 44px 0 36px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.55rem);
  }

  .hero-copy > p {
    margin: 14px 0 24px;
  }

  .hero-actions,
  .privacy-actions {
    gap: 12px;
  }

  .btn,
  .privacy-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero-demo .demo-header {
    min-height: 54px;
  }

  .hero-demo .demo-note {
    padding-block: 14px;
  }

  .hero-demo .package-row {
    padding-block: 14px;
  }

  .hero-demo .package-row:nth-child(2) {
    display: none;
  }

  .demo-header,
  .demo-note,
  .package-row {
    padding-inline: 16px;
  }

  .command-line {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .copy-button {
    width: 44px;
    height: 44px;
  }

  .features {
    gap: 22px;
  }

  .feature-card {
    padding: 18px;
  }

  .feature-copy,
  .privacy-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .browser-card {
    min-height: 210px;
  }

  .browser-top,
  .google-row,
  .github-row {
    padding-inline: 14px;
  }

  .browser-dot,
  .tiny-search {
    display: none;
  }

  .browser-top .address {
    margin-left: 0;
  }

  .finding-toast,
  .finding-toast.compact,
  .badge-callout,
  .github-package-card {
    right: 14px;
    left: 14px;
    bottom: 26px;
    min-width: 0;
    padding: 18px;
  }

  .badge-callout {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .github-package-card {
    grid-template-columns: 24px minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .github-package-card button {
    width: 44px;
    height: 44px;
  }

  .ghost-sidebar {
    display: none;
  }

  .mini-popup {
    inset: 16px 14px auto;
    width: auto;
  }

  .google-logo {
    font-size: 24px;
  }

  .google-row .search-pill {
    margin-left: 8px;
  }

  .privacy-icon {
    width: 68px;
    height: 68px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer {
    gap: 28px;
  }

  .language-switcher {
    width: fit-content;
    max-width: 100%;
  }

  .language-label span {
    display: none;
  }

  .copyright {
    white-space: normal;
  }
}
