:root {
  color-scheme: light;
  --ink: #201713;
  --muted: #6d5f53;
  --paper: #f5e8c8;
  --panel: #fff8e8;
  --line: #2a211c;
  --teal: #007f88;
  --teal-dark: #005d65;
  --red: #cf3f2f;
  --gold: #f0bb29;
  --blue: #225aa7;
  --magenta: #c23c7b;
  --green: #2f8455;
  --shadow: 8px 8px 0 rgba(32, 23, 19, 0.18);
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --serif: "New York", "Hoefler Text", Georgia, serif;
  --brand: "Futura Condensed ExtraBold", "Avenir Next Condensed", "DIN Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
  --sans: "Avenir Next Condensed", "DIN Condensed", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--serif);
  background:
    repeating-linear-gradient(0deg, rgba(32, 23, 19, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(0, 127, 136, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(240, 187, 41, 0.34), transparent 36%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 10px;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    90deg,
    var(--gold) 0 14%,
    var(--teal) 14% 28%,
    var(--magenta) 28% 42%,
    var(--green) 42% 56%,
    var(--blue) 56% 70%,
    var(--red) 70% 84%,
    var(--ink) 84% 100%
  );
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: calc(42px + var(--safe-area-top)) 0 calc(36px + var(--safe-area-bottom));
}

.hero {
  position: relative;
  display: block;
  padding: 28px 0 34px;
  text-align: left;
}

.hero > div {
  margin-left: 0;
}

.settings-toggle {
  position: absolute;
  top: 30px;
  right: 0;
}

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

h1 {
  position: relative;
  left: -4px;
  margin-bottom: 28px;
  font-family: var(--brand);
  font-size: 6.1rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 var(--gold),
    6px 6px 0 rgba(0, 127, 136, 0.34);
  text-transform: uppercase;
}

.brand-home-button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-shadow: inherit;
  text-transform: inherit;
}

.brand-home-button:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 4px;
}

h2 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.lede {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--ink);
  font: 1.28rem/1.35 var(--sans);
}

.workspace {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.add-panel,
.list-panel,
.settings-panel {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 248, 232, 0.94);
  box-shadow: var(--shadow);
}

.add-panel::before,
.list-panel::before,
.settings-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 7px;
  margin: 0;
  content: "";
  background: linear-gradient(
    90deg,
    var(--teal) 0 22%,
    var(--gold) 22% 42%,
    var(--red) 42% 58%,
    var(--blue) 58% 78%,
    var(--magenta) 78% 100%
  );
}

.add-panel {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 22px;
  padding: 20px;
}

.add-panel.is-disabled {
  opacity: 0.66;
}

.list-panel {
  min-height: 448px;
  padding: 20px;
}

.settings-panel {
  container-type: inline-size;
  display: grid;
  gap: 20px;
  padding: 20px;
}

.panel-header {
  display: flex;
  gap: 14px;
  min-height: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.panel-header > div {
  display: grid;
  min-height: 40px;
  align-content: start;
}

.panel-header h2 {
  padding-top: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
}

.panel-header p {
  min-height: 20px;
  margin: 6px 0 0;
  color: var(--muted);
  font: 0.92rem/1.4 var(--sans);
}

.panel-header p:empty {
  min-height: 0;
  margin-top: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--ink);
  font: 650 0.72rem/1 var(--sans);
  text-transform: uppercase;
}

.settings-section {
  display: grid;
  gap: 10px;
}

.settings-section-heading {
  display: grid;
  gap: 4px;
}

.settings-section h3 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.settings-section-heading p {
  margin: 0;
  color: var(--muted);
  font: 0.86rem/1.32 var(--sans);
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.account-box {
  display: grid;
  gap: 8px;
  max-width: 440px;
}

.account-field {
  max-width: 420px;
}

.sync-field {
  max-width: 420px;
}

.settings-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font: 0.9rem/1.35 var(--sans);
}

.settings-status:empty {
  min-height: 0;
}

.settings-status.is-warning {
  color: var(--ink);
}

input:not([type="checkbox"]) {
  width: 100%;
  height: 46px;
  border: 2px solid var(--line);
  border-radius: 3px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdf6;
  font: 0.98rem/1.1 var(--sans);
  outline: none;
}

input:not([type="checkbox"])::placeholder {
  color: rgba(32, 23, 19, 0.48);
}

input:not([type="checkbox"]):focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34, 90, 167, 0.16);
}

input:not([type="checkbox"]):disabled,
select:disabled {
  cursor: not-allowed;
  color: rgba(32, 23, 19, 0.45);
  background: #eadcbb;
  box-shadow: none;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  padding-right: 44px;
}

.input-clear-button {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: 700 1rem/1 var(--sans);
  transform: translateY(-50%);
}

.input-clear-button:hover {
  color: var(--red);
}

.service-settings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.service-setting {
  display: grid;
  grid-template-columns: 18px 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  border: 2px solid var(--line);
  border-radius: 3px;
  padding: 0 10px;
  color: var(--ink);
  background: #fffdf6;
  box-shadow: 2px 2px 0 rgba(32, 23, 19, 0.75);
  font: 600 0.78rem/1 var(--sans);
  text-transform: uppercase;
}

.service-setting input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-radius: 2px;
  background: #fffdf6;
}

.service-setting input:checked {
  background:
    linear-gradient(135deg, transparent 0 42%, #fff 42% 58%, transparent 58% 100%),
    var(--blue);
}

.service-setting input:disabled {
  opacity: 0.55;
}

.service-setting-swatch {
  --service-color: var(--teal);
  width: 16px;
  height: 16px;
  border: 2px solid var(--line);
  background: var(--service-color);
}

.rating-settings {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.rating-setting {
  grid-template-columns: 18px 18px minmax(0, 1fr);
}

.rating-setting-spacer {
  width: 16px;
  height: 16px;
}

@container (min-width: 348px) {
  .rating-settings {
    max-width: calc((100% - 8px) / 2);
  }
}

@container (min-width: 526px) {
  .rating-settings {
    max-width: calc((100% - 16px) / 3);
  }
}

@container (min-width: 704px) {
  .rating-settings {
    max-width: calc((100% - 24px) / 4);
  }
}

@container (min-width: 882px) {
  .rating-settings {
    max-width: calc((100% - 32px) / 5);
  }
}

@container (min-width: 1060px) {
  .rating-settings {
    max-width: calc((100% - 40px) / 6);
  }
}

.service-color-amc {
  --service-color: #7c4cc2;
}

.service-color-apple-tv {
  --service-color: #201713;
}

.service-color-bbc-iplayer {
  --service-color: #b84f7d;
}

.service-color-bfi-player {
  --service-color: #6e6253;
}

.service-color-britbox {
  --service-color: #335fa8;
}

.service-color-channel-4 {
  --service-color: #437c78;
}

.service-color-criterion-channel {
  --service-color: #7a5774;
}

.service-color-crunchyroll {
  --service-color: #d46f2c;
}

.service-color-discovery {
  --service-color: #267fbf;
}

.service-color-disney {
  --service-color: #007f88;
}

.service-color-hbo-max {
  --service-color: #5a3fa8;
}

.service-color-hulu {
  --service-color: #2f8455;
}

.service-color-itvx {
  --service-color: #2f8d63;
}

.service-color-kino-film {
  --service-color: #a87828;
}

.service-color-klassiki {
  --service-color: #925166;
}

.service-color-metrograph {
  --service-color: #57705a;
}

.service-color-mubi {
  --service-color: #1f1f1f;
}

.service-color-my5 {
  --service-color: #76589f;
}

.service-color-netflix {
  --service-color: #cf3f2f;
}

.service-color-now {
  --service-color: #6c8238;
}

.service-color-paramount {
  --service-color: #9a6a2f;
}

.service-color-pbs {
  --service-color: #2b6670;
}

.service-color-peacock {
  --service-color: #f0bb29;
}

.service-color-pluto-tv {
  --service-color: #b9632e;
}

.service-color-prime-video {
  --service-color: #1d7fc1;
}

.service-color-showtime {
  --service-color: #8f2e3f;
}

.service-color-sky-go {
  --service-color: #445f8f;
}

.service-color-starz {
  --service-color: #3d2e7c;
}

.service-color-tubi {
  --service-color: #d84f8b;
}

.service-color-youtube-tv {
  --service-color: #aa4f47;
}

.ghost-button,
.icon-button {
  border: 0;
  border-radius: 3px;
  min-height: 40px;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.ghost-button:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--line);
}

.ghost-button {
  border: 2px solid var(--line);
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf6;
  box-shadow: 2px 2px 0 rgba(32, 23, 19, 0.82);
  font: 600 0.78rem/1 var(--sans);
  text-transform: uppercase;
  white-space: nowrap;
}

.ghost-button:disabled {
  cursor: not-allowed;
  color: rgba(32, 23, 19, 0.38);
  background: #eadcbb;
  box-shadow: none;
  transform: none;
}

.primary-button {
  color: #fffdf6;
  background: var(--teal-dark);
}

.danger-button {
  color: #fffdf6;
  background: var(--red);
}

.privacy-shell {
  max-width: 980px;
}

.privacy-hero h1 {
  font-size: 5.2rem;
}

.privacy-panel {
  gap: 22px;
  padding: 24px;
}

.privacy-section {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.privacy-section h2 {
  font-size: 1.08rem;
}

.privacy-section p,
.privacy-section li {
  color: var(--muted);
  font: 1rem/1.46 var(--sans);
}

.privacy-section a {
  color: var(--teal-dark);
  font-weight: 700;
}

.privacy-section p {
  margin-bottom: 0;
}

.privacy-section ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
}

.tmdb-attribution {
  gap: 12px;
}

.tmdb-logo {
  display: block;
  width: 154px;
  max-width: 100%;
  height: auto;
}

.match-panel {
  display: grid;
  gap: 10px;
}

.match-panel p {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font: 0.9rem/1.35 var(--sans);
}

.suggestions {
  display: grid;
  gap: 8px;
}

.suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  border: 2px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fffdf6;
  text-align: left;
}

.suggestion-title {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.suggestion-title span {
  min-width: 0;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-title .suggestion-aka {
  color: var(--muted);
  font: 600 0.66rem/1 var(--sans);
  text-transform: uppercase;
}

.suggestion small {
  color: var(--teal-dark);
  font: 600 0.72rem/1.2 var(--sans);
  text-align: right;
  text-transform: uppercase;
}

.suggestion:hover {
  border-color: var(--blue);
  background: #f7fbf8;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 12px;
  align-items: end;
  margin-top: 18px;
  max-width: 692px;
}

.watchlist-manager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.watchlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.watchlist-select-label {
  position: relative;
  display: block;
  width: min(100%, 260px);
}

.watchlist-select-label::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.watchlist-select-label select {
  min-height: 40px;
  font-size: 0.9rem;
}

.compact-button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.watchlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.filter-select-label {
  position: relative;
  display: block;
}

.filter-select-label::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 40px;
  border: 2px solid var(--line);
  border-radius: 3px;
  padding: 0 42px 0 12px;
  color: var(--ink);
  background: #fffdf6;
  box-shadow: 2px 2px 0 rgba(32, 23, 19, 0.75);
  font: 600 0.78rem/1 var(--sans);
  text-transform: uppercase;
}

.watchlist:empty {
  margin-top: 0;
}

.empty-state {
  display: grid;
  min-height: 180px;
  gap: 14px;
  place-items: center;
  align-content: center;
  border: 2px dashed rgba(42, 33, 28, 0.6);
  border-radius: 4px;
  margin: 16px 0 0;
  color: var(--muted);
  background: rgba(255, 253, 246, 0.56);
  font: 0.95rem/1.4 var(--sans);
  text-align: center;
}

.empty-state.is-actionable {
  background: rgba(255, 253, 246, 0.74);
}

.empty-state[hidden] {
  display: none;
}

.show-card {
  position: relative;
  min-height: 52px;
  border: 2px solid var(--line);
  border-left: 9px solid var(--service-color, var(--teal));
  border-radius: 4px;
  background: #fffdf6;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    background 140ms ease;
}

.show-drag-zone {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 60%;
  cursor: grab;
  touch-action: none;
}

.show-info {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
}

.drag-handle {
  display: grid;
  width: 42px;
  height: 40px;
  place-items: center;
  cursor: grab;
  opacity: 0.56;
}

.drag-handle::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--line);
  box-shadow:
    0 -7px 0 var(--line),
    0 7px 0 var(--line);
}

.show-card:active,
.show-card.is-dragging {
  cursor: grabbing;
}

.show-card.is-dragging {
  opacity: 0.48;
}

.show-card.is-drop-target {
  transform: translateY(2px);
  background: rgba(240, 187, 41, 0.18);
}

.watchlist.is-sort-locked .show-card,
.watchlist.is-sort-locked .show-drag-zone,
.watchlist.is-sort-locked .drag-handle {
  cursor: default;
}

.watchlist.is-sort-locked .show-drag-zone {
  pointer-events: none;
}

.watchlist.is-sort-locked .drag-handle {
  opacity: 0.28;
}

.show-info h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.service-chip {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  border: 1px solid rgba(42, 33, 28, 0.5);
  border-radius: 3px;
  padding: 0 6px;
  color: var(--ink);
  background: rgba(240, 187, 41, 0.16);
  font: 600 0.58rem/1 var(--sans);
  text-transform: uppercase;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.show-rating {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  align-items: center;
  min-height: 18px;
  color: var(--ink);
  font: 700 0.72rem/1 var(--sans);
}

.rating-logo {
  display: inline-flex;
  min-height: 14px;
  align-items: center;
  border-radius: 2px;
  padding: 0 3px;
  color: var(--ink);
  background: var(--gold);
  font: 800 0.48rem/1 var(--sans);
  letter-spacing: 0;
}


.icon-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 30px;
  min-height: 30px;
  place-items: center;
  align-self: center;
  border: 2px solid var(--line);
  color: #fff;
  background: var(--ink);
  font: 1.2rem/1 var(--sans);
}

.icon-button:hover {
  color: #fff;
  background: var(--red);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(32, 23, 19, 0.34);
}

.watchlist-modal {
  position: relative;
  display: grid;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  gap: 18px;
  overflow: auto;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  background: rgba(255, 248, 232, 0.98);
  box-shadow: var(--shadow);
}

.watchlist-modal::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--teal) 0 22%,
    var(--gold) 22% 42%,
    var(--red) 42% 58%,
    var(--blue) 58% 78%,
    var(--magenta) 78% 100%
  );
}

.sync-conflict-modal {
  gap: 20px;
}

.sync-conflict-modal .panel-header p {
  max-width: 480px;
}

.sync-conflict-summary {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font: 0.95rem/1.35 var(--sans);
}

.sync-conflict-summary p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.sync-conflict-summary strong {
  color: var(--ink);
  font-weight: 700;
}

.sync-conflict-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 820px) {
  .app-shell {
    width: min(100% - 22px, 640px);
    padding-top: calc(18px + var(--safe-area-top));
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    align-items: start;
    padding: 20px 0 24px;
  }

  .hero > div {
    min-width: 0;
  }

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

  .add-panel {
    gap: 16px;
    padding: 18px;
  }

  .list-panel {
    padding: 18px;
  }

  .add-panel > .panel-header,
  .list-panel > .panel-header,
  .list-panel > .panel-header > div {
    min-height: 32px;
  }

  .filter-controls {
    margin-top: 16px;
  }

  .watchlist-select-label {
    width: min(100%, 300px);
  }

  .settings-toggle {
    position: static;
    justify-self: end;
    margin-top: 2px;
  }

  .search-input-wrap input {
    padding-right: 52px;
  }

  .input-clear-button {
    right: 1px;
    width: 44px;
    height: 44px;
    font-size: 0.98rem;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 3.45rem;
  }

  .privacy-hero h1 {
    font-size: 3.3rem;
  }

  .privacy-hero .settings-toggle {
    margin-top: 4px;
  }

  .lede {
    font-size: 1.08rem;
  }

  .add-panel {
    position: static;
  }
}

@media (max-width: 460px) {
  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .settings-panel > .panel-header {
    align-items: center;
    flex-direction: row;
  }

  .watchlist-modal > .panel-header {
    align-items: center;
    flex-direction: row;
  }

  .filter-controls {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .watchlist-manager {
    display: grid;
    width: 100%;
    gap: 9px;
  }

  .watchlist-select-label {
    width: 100%;
  }

  .watchlist-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .compact-button {
    min-width: 0;
    padding: 0 6px;
  }

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

  .hero {
    column-gap: 8px;
    padding: 16px 0 22px;
  }

  .settings-toggle {
    min-height: 36px;
    margin-top: 0;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.65rem;
  }

  .privacy-hero h1 {
    font-size: 2.85rem;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.28;
  }
}
