:root {
  --crab-surface: #ffffff;
  --crab-surface-muted: #f6f8fb;
  --crab-editor-bg: #f8fafd;
  --crab-border: #d9dee7;
  --crab-control-border: #d8dee8;
  --crab-text: #24292f;
  --crab-text-muted: #687385;
  --crab-blue: #0f5bf6;
  --crab-blue-soft: #e9f1ff;
  --crab-ink: #202124;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--crab-editor-bg);
  color: var(--crab-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

#landing-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff 0, var(--crab-editor-bg) 42%, #eef4ff 100%);
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--crab-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--crab-ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--crab-text-muted);
  font-size: 13px;
  font-weight: 650;
}

.top-actions a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--crab-text-muted);
  text-decoration: none;
}

.top-actions a:hover {
  background: var(--crab-surface-muted);
  color: var(--crab-text);
}

.landing-main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.workbench-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.16fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 138px);
  margin-bottom: 54px;
}

.workbench-hero > *,
.hero-copy,
.editor-preview {
  min-width: 0;
}

.tiny-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  padding: 0 10px;
  border: 1px solid #c7d7ff;
  border-radius: 999px;
  background: var(--crab-blue-soft);
  color: #164aa5;
  font-size: 12px;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--crab-ink);
  font-size: clamp(52px, 6.4vw, 88px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 650px;
  margin: 26px 0 0;
  color: #4c5565;
  font-size: 21px;
  line-height: 1.55;
}

.hero-trust {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--crab-text-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.open-editor-button,
.secondary-link,
.verify-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.open-editor-button {
  border: 1px solid #0d4ee4;
  background: var(--crab-blue);
  color: #ffffff;
  padding: 0 18px;
  box-shadow: 0 10px 24px rgba(15, 91, 246, 0.2);
}

.open-editor-button:hover {
  background: #0a4edc;
}

.secondary-link {
  border: 1px solid var(--crab-control-border);
  background: var(--crab-surface);
  color: var(--crab-text);
  padding: 0 14px;
}

.secondary-link:hover {
  border-color: #bcc8d9;
  background: var(--crab-surface-muted);
}

.editor-preview {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border: 1px solid var(--crab-border);
  border-radius: 8px;
  background: var(--crab-surface);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.hero-render-preview {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(248, 250, 253, 0.72)),
    #f8fafd;
}

.hero-render-image {
  width: 100%;
  min-height: 600px;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.preview-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--crab-border);
  background: var(--crab-surface);
}

.preview-brand-mark {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--crab-ink);
  font-size: 15px;
  font-weight: 700;
}

.preview-brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.preview-brand-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--crab-text-muted);
  font-size: 13px;
  font-weight: 650;
}

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

.preview-actions span {
  width: 32px;
  height: 32px;
  border: 1px solid var(--crab-control-border);
  border-radius: 6px;
  background: var(--crab-surface-muted);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  border-bottom: 1px solid #eef2f7;
  background: #ffffff;
  overflow: hidden;
  padding: 0 12px;
}

.preview-toolbar span {
  width: 34px;
  height: 28px;
  border: 1px solid var(--crab-control-border);
  border-radius: 6px;
  background: #f8fafc;
}

.preview-toolbar .wide {
  width: 78px;
}

.preview-workspace {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 176px;
  min-height: 482px;
  background: var(--crab-editor-bg);
}

.preview-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-right: 1px solid var(--crab-border);
  background: #ffffff;
}

.preview-rail span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--crab-control-border);
  border-radius: 8px;
  background: var(--crab-surface-muted);
}

.preview-page {
  width: min(74%, 420px);
  min-height: 386px;
  margin: 40px auto;
  padding: 52px 44px;
  border: 1px solid #e3e7ef;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.page-line {
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: #d9e0eb;
}

.page-line.title {
  width: 58%;
  height: 18px;
  margin-top: 0;
  background: #202124;
}

.page-line.short {
  width: 48%;
}

.page-line.medium {
  width: 74%;
}

.page-highlight {
  width: 82%;
  height: 24px;
  margin-top: 24px;
  border-radius: 4px;
  background: #fff1a8;
}

.preview-panel {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 14px;
  border-left: 1px solid var(--crab-border);
  background: #ffffff;
  color: var(--crab-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-panel strong {
  margin-bottom: 4px;
  color: var(--crab-text);
  font-size: 13px;
}

.preview-panel span {
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid var(--crab-control-border);
  border-radius: 6px;
  background: var(--crab-surface-muted);
}

.drop-hint {
  position: absolute;
  right: 18px;
  bottom: 92px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid #c7d7ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--crab-text-muted);
  font-size: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.drop-hint strong {
  color: var(--crab-text);
  font-size: 13px;
}

.privacy-visual {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #d8e5ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.privacy-node {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--crab-control-border);
  border-radius: 7px;
  background: var(--crab-surface-muted);
  color: var(--crab-text);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.privacy-node img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.privacy-node.browser {
  border-color: #bcd0ff;
  background: var(--crab-blue-soft);
  color: #164aa5;
}

.privacy-node.muted {
  color: #657085;
}

.privacy-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--crab-blue);
  box-shadow: 0 0 0 4px rgba(15, 91, 246, 0.12);
}

.privacy-dot.cloud {
  background: #9aa5b5;
  box-shadow: 0 0 0 4px rgba(104, 115, 133, 0.12);
}

.privacy-path {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--crab-blue), #9ab8ff);
}

.privacy-path.blocked {
  position: relative;
  background: repeating-linear-gradient(90deg, #c5cedb 0 7px, transparent 7px 12px);
}

.privacy-path.blocked::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #e13b2f;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
}

.privacy-path.blocked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #e13b2f;
  transform: translate(-50%, -50%) rotate(-38deg);
}

.local-proof,
.verify-section {
  border: 1px solid var(--crab-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
}

.local-proof {
  padding: 24px;
  margin-bottom: 42px;
}

.local-proof h2,
.tools-section h2,
.verify-section h2,
.honest-note h2 {
  margin: 0;
  color: var(--crab-ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.proof-item {
  min-height: 154px;
  padding: 18px;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
  background: #ffffff;
}

.proof-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--crab-blue-soft);
  color: var(--crab-blue);
  font-size: 12px;
  font-weight: 900;
}

.proof-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--crab-text);
  font-size: 15px;
}

.proof-item p {
  margin: 0;
  color: var(--crab-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.tools-section {
  margin-bottom: 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--crab-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tool-list a {
  display: block;
  min-height: 134px;
  padding: 16px;
  border: 1px solid var(--crab-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--crab-text);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.tool-list a:hover {
  border-color: #bcc8d9;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.tool-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--crab-text);
  font-size: 14px;
}

.tool-list span {
  display: block;
  color: var(--crab-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.verify-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-bottom: 42px;
  background: #eef5ff;
}

.verify-section p {
  max-width: 760px;
  margin: 10px 0 0;
  color: #38547c;
  font-size: 14px;
  line-height: 1.6;
}

.verify-section a {
  border: 1px solid #0d4ee4;
  background: var(--crab-blue);
  color: white;
  padding: 0 14px;
  white-space: nowrap;
}

.honest-note {
  max-width: 830px;
  margin-bottom: 30px;
  color: var(--crab-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.honest-note p {
  margin: 14px 0 0;
}

.landing-footer-band {
  padding: 30px 20px;
  border-top: 1px solid var(--crab-border);
  background: #ffffff;
  color: var(--crab-text-muted);
  text-align: center;
  font-size: 14px;
}

.landing-footer-band a {
  color: var(--crab-text);
  font-weight: 750;
  text-decoration: none;
}

#editor-shell {
  min-height: 100vh;
  background: var(--crab-editor-bg);
}

#preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.crab-editor-empty-state {
  width: min(520px, calc(100vw - 44px));
  margin: 96px auto 0;
  padding: 34px;
  border: 1px solid var(--crab-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--crab-text);
  text-align: center;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.crab-editor-empty-state img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.crab-editor-empty-state h1 {
  margin: 16px 0 0;
  color: var(--crab-ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: 0;
}

.crab-editor-empty-state p {
  margin: 10px auto 0;
  max-width: 360px;
  color: var(--crab-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.crab-editor-empty-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid #0d4ee4;
  border-radius: 7px;
  background: var(--crab-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 91, 246, 0.2);
}

.crab-editor-empty-open:hover {
  background: #0a4edc;
}

.crab-editor-empty-open input {
  display: none;
}

body > header {
  width: 100%;
  margin: 0;
  padding: 0;
}

body > main:not(#editor-shell) {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

body > header nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  margin: 0;
  padding: 0 22px;
  border-bottom: 1px solid var(--crab-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--crab-ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.logo::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: url("/logo-notext.png") center / contain no-repeat;
}

.logo-icon {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--crab-text-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf2fa;
  color: var(--crab-text);
}

body > header .hero {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 46px;
}

body > header .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 220px;
  height: 220px;
  background: url("/logo-notext.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid #c7d7ff;
  border-radius: 999px;
  background: var(--crab-blue-soft);
  color: #164aa5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 860px;
  margin: 0;
  color: var(--crab-ink);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin: 46px 0 12px;
  color: var(--crab-ink);
  font-size: 25px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
}

h3 {
  margin: 22px 0 8px;
  color: var(--crab-text);
  font-size: 17px;
}

p {
  color: var(--crab-text-muted);
  line-height: 1.65;
}

body > main:not(#editor-shell) p a {
  color: var(--crab-blue);
  font-weight: 750;
  text-decoration: none;
}

body > main:not(#editor-shell) p a:hover {
  text-decoration: underline;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4c5565;
  font-size: 20px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #0d4ee4;
  border-radius: 7px;
  background: var(--crab-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 91, 246, 0.16);
}

.button:hover {
  background: #0a4edc;
}

.button.secondary {
  border-color: var(--crab-control-border);
  background: #ffffff;
  color: var(--crab-text);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: #bcc8d9;
  background: var(--crab-surface-muted);
}

body > main:not(#editor-shell) {
  padding: 0 0 68px;
}

body > main:not(#editor-shell) section {
  margin-top: 42px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.card {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--crab-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.card-link:hover {
  border-color: #bcc8d9;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.card h3 {
  margin-top: 0;
  font-size: 15px;
}

.card p {
  margin: 0;
  font-size: 14px;
}

ol,
ul {
  color: var(--crab-text-muted);
  padding-left: 22px;
}

li {
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.55;
}

.note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #d8e5ff;
  border-radius: 8px;
  background: #eef5ff;
  color: #38547c;
}

.note p {
  margin: 0;
  color: #38547c;
}

.ext-link {
  color: var(--crab-blue);
  font-weight: 750;
  text-decoration: none;
}

.ext-link:hover {
  text-decoration: underline;
}

body > footer {
  width: 100%;
  margin: 0;
  padding: 30px 20px;
  border-top: 1px solid var(--crab-border);
  background: #ffffff;
  color: var(--crab-text-muted);
  font-size: 14px;
  text-align: center;
}

body > footer p {
  width: min(1040px, 100%);
  margin: 0 auto;
}

body > footer a {
  color: var(--crab-text);
  font-weight: 750;
  text-decoration: none;
}

body > footer a:hover {
  color: var(--crab-blue);
}

@media (max-width: 1040px) {
  .workbench-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tool-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  body > main:not(#editor-shell),
  body > header .hero {
    width: min(100% - 28px, 1040px);
  }

  body > header nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  body > header .hero {
    padding: 38px 0 30px;
  }

  body > header .hero::after {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .lead {
    font-size: 17px;
  }

  .landing-topbar {
    padding: 0 14px;
  }

  .top-actions {
    display: none;
  }

  .landing-main {
    width: 100%;
    padding: 38px 14px 58px;
  }

  .hero-copy {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .open-editor-button,
  .secondary-link {
    width: 100%;
  }

  .editor-preview {
    min-height: 430px;
  }

  .hero-render-image {
    min-height: 430px;
    object-position: 42% 50%;
  }

  .preview-topbar {
    grid-template-columns: minmax(0, 1fr);
  }

  .preview-menu,
  .preview-actions {
    display: none;
  }

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

  .preview-panel {
    display: none;
  }

  .preview-page {
    width: min(82%, 260px);
    min-height: 280px;
    padding: 34px 28px;
  }

  .drop-hint {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .privacy-visual {
    display: none;
  }

  .proof-grid,
  .tool-list,
  .verify-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 8px;
  }

  .verify-section a {
    width: fit-content;
  }
}

/* Mobile editor block */
#mobile-editor-block {
  display: none;
}

@media (max-width: 768px) {
  #mobile-editor-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 100svh;
    padding: 32px 24px;
    text-align: center;
    font-family: system-ui, sans-serif;
    color: #24292f;
    background: #f8fafd;
    box-sizing: border-box;
  }

  #mobile-editor-block img {
    width: 56px;
    height: 56px;
  }

  #mobile-editor-block h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
  }

  #mobile-editor-block p {
    margin: 0;
    font-size: 15px;
    color: #687385;
    max-width: 320px;
    line-height: 1.6;
  }

  #mobile-editor-block a {
    margin-top: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    background: #0f5bf6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  #editor-shell,
  .crab-editor-shell {
    display: none !important;
  }
}
