:root {
  color-scheme: light;
  --page: #ffffff;
  --page-soft: #f7f8fb;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #101828;
  --muted: #667085;
  --label: #344054;
  --border: #e4e7ec;
  --border-strong: #d0d5dd;
  --border-soft: #eef2f7;
  --accent: #a84a2f;
  --accent-hover: #823521;
  --accent-soft: #fff1eb;
  --blue: #2563eb;
  --green: #24936f;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --soft-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
  --header-bg: rgba(255, 255, 255, 0.88);
  --checker: #e4e7ec;
  --composer-workspace: #f8fafc;
  --composer-preview: #f2f4f7;
  --composer-control: #ffffff;
  --composer-control-hover: #f9fafb;
  --composer-segment: #f8fafc;
  --composer-toolbar: rgba(255, 255, 255, 0.94);
  --composer-footer-shadow: rgba(255, 255, 255, 0.94);
  --max-page: 1360px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #0c0d10;
  --page-soft: #111318;
  --surface: #111318;
  --surface-raised: #171a20;
  --text: #f4f1ee;
  --muted: #a9a09a;
  --label: #e3ddd8;
  --border: #303238;
  --border-strong: #3c3f47;
  --border-soft: #23272e;
  --accent: #d46b45;
  --accent-hover: #e47a52;
  --accent-soft: rgba(212, 107, 69, 0.14);
  --blue: #5b8cff;
  --green: #4fc49a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(12, 13, 16, 0.86);
  --checker: #20242b;
  --composer-workspace: #0c0d10;
  --composer-preview: #111318;
  --composer-control: #171a20;
  --composer-control-hover: #1d2128;
  --composer-segment: #0f1116;
  --composer-toolbar: rgba(23, 26, 32, 0.96);
  --composer-footer-shadow: rgba(17, 19, 24, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg,
img {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 76px;
  padding: 14px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--border-soft);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-actions,
.chrome-cta,
.button,
.theme-toggle,
.proof-row,
.domshot-composer-brand,
.domshot-composer-header-actions,
.domshot-composer-icon-button,
.domshot-composer-download,
.footer-brand {
  display: flex;
  align-items: center;
}

.brand,
.footer-brand {
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(18px, 2.8vw, 36px);
  color: var(--label);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.site-header nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-header nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-actions {
  gap: 12px;
}

.theme-toggle {
  position: relative;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--label);
}

.theme-toggle svg {
  position: absolute;
  width: 19px;
  height: 19px;
}

.theme-toggle circle,
.theme-toggle path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.moon-icon {
  opacity: 0;
}

:root[data-theme="dark"] .sun-icon {
  opacity: 0;
}

:root[data-theme="dark"] .moon-icon {
  opacity: 1;
}

.chrome-cta,
.button.primary {
  gap: 10px;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(168, 74, 47, 0.22);
  text-decoration: none;
}

.chrome-cta:hover,
.button.primary:hover,
.domshot-composer-primary-action:hover,
.domshot-composer-download:hover {
  background: var(--accent-hover);
}

.chrome-cta {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 780;
}

.chrome-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.chrome-mark path {
  fill: currentColor;
}

main {
  overflow: hidden;
}

.section-shell {
  width: min(var(--max-page), calc(100% - clamp(40px, 8vw, 128px)));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) 0 clamp(66px, 9vw, 112px);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.96;
}

.lede {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  line-height: 1.48;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  min-height: 52px;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 780;
}

.button.secondary {
  gap: 11px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--label);
  text-decoration: none;
}

.button.secondary svg {
  width: 18px;
  height: 18px;
}

.button.secondary path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proof-row {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 7px 10px;
}

.hero-preview {
  display: grid;
  justify-self: end;
  width: min(840px, 100%);
  margin: 0;
}

.hero-preview-image {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-preview-dark {
  display: none;
}

:root[data-theme="dark"] .hero-preview-light {
  display: none;
}

:root[data-theme="dark"] .hero-preview-dark {
  display: block;
}

.composer-showcase {
  min-width: 0;
}

.domshot-composer-panel {
  width: min(100%, 820px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.domshot-composer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.domshot-composer-brand {
  gap: 11px;
  min-width: 0;
}

.domshot-composer-brand > span:last-child {
  display: grid;
  min-width: 0;
}

.domshot-composer-brand strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 760;
}

.domshot-composer-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.domshot-composer-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
}

.domshot-composer-mark img {
  width: 100%;
  height: 100%;
}

.domshot-composer-header-actions {
  gap: 10px;
  flex: 0 0 auto;
}

.domshot-composer-icon-button,
.domshot-composer-download {
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 720;
}

.domshot-composer-icon-button {
  border: 1px solid var(--border-strong);
  background: var(--composer-control);
  color: var(--label);
  padding: 0 12px;
}

.domshot-composer-primary-action,
.domshot-composer-download {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.domshot-composer-icon-button svg,
.domshot-composer-download svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.domshot-composer-icon-button path,
.domshot-composer-icon-button circle,
.domshot-composer-download path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.domshot-composer-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  min-height: 0;
}

.domshot-composer-workspace {
  display: grid;
  min-width: 0;
  padding: 14px;
  background: var(--composer-workspace);
}

.domshot-composer-preview {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--composer-preview);
  background-image:
    linear-gradient(45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(-45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--checker) 75%),
    linear-gradient(-45deg, transparent 75%, var(--checker) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  padding: 18px;
}

.domshot-preview-viewport {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  border-radius: 6px;
}

.domshot-preview-surface {
  display: grid;
  place-items: center;
  max-width: none;
  max-height: none;
}

.landing-preview-surface {
  width: min(100%, 430px);
  min-height: 270px;
  border-radius: 32px;
  background: linear-gradient(135deg, #a84a2f, #f59e0b 52%, #ff8a5b);
  padding: 44px;
  box-shadow: 0 22px 40px rgba(16, 24, 40, 0.2);
}

.captured-element {
  display: grid;
  min-height: 180px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #101828;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.16);
}

.capture-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid #b7f1d6;
  border-radius: 999px;
  background: #ecfdf3;
  color: #16744f;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 760;
}

.captured-element h2 {
  margin-bottom: 8px;
  color: #101828;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.captured-element p {
  max-width: 320px;
  margin-bottom: 22px;
  color: #667085;
  font-size: 0.94rem;
}

.captured-element-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  align-self: end;
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
  color: #667085;
  font-size: 0.75rem;
  font-weight: 720;
}

.captured-element-footer strong {
  color: #101828;
}

.domshot-preview-toolbar {
  display: grid;
  grid-template-columns: 32px minmax(118px, 1fr) 32px 74px;
  gap: 8px;
  align-items: center;
  justify-self: center;
  width: min(360px, 100%);
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--composer-toolbar);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.domshot-preview-zoom-button,
.domshot-preview-fit-button {
  height: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  background: var(--composer-control);
  color: var(--label);
  font-size: 0.8rem;
  font-weight: 760;
}

.domshot-preview-fit-button {
  min-width: 74px;
  padding: 0 12px;
}

.domshot-preview-fit-button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.domshot-preview-zoom-range,
.domshot-inline-control input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.domshot-composer-inspector {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  border-left: 1px solid var(--border);
  background: var(--surface);
  padding: 15px;
}

.domshot-composer-group {
  display: grid;
  align-content: start;
  gap: 9px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-soft);
}

.domshot-composer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.domshot-preset-grid,
.domshot-shadow-row {
  display: grid;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--composer-segment);
  padding: 3px;
}

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

.domshot-shadow-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.domshot-preset-card,
.domshot-shadow-chip {
  min-width: 0;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--label);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1;
  text-align: center;
}

.domshot-shadow-chip {
  padding: 0;
}

.domshot-shadow-chip span {
  display: inline-flex;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: center;
}

.domshot-preset-card.is-active,
.domshot-shadow-chip.is-active span {
  background: var(--composer-control);
  color: var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.domshot-swatch-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.domshot-swatch {
  position: relative;
  display: block;
}

.domshot-swatch > span {
  display: block;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--composer-control);
}

.domshot-swatch.is-active > span {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.domshot-swatch-transparent > span {
  background-color: var(--composer-control);
  background-image:
    linear-gradient(45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(-45deg, var(--checker) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--checker) 75%),
    linear-gradient(-45deg, transparent 75%, var(--checker) 75%);
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  background-size: 12px 12px;
}

.domshot-swatch-aurora > span {
  background: radial-gradient(circle at 15% 10%, rgba(255,255,255,.34), transparent 28%), linear-gradient(135deg, #a84a2f, #d97745 52%, #1f1410);
}

.domshot-swatch-ocean > span {
  background: repeating-linear-gradient(125deg, rgba(255,255,255,.22) 0 1px, transparent 1px 7px), linear-gradient(135deg, #1144d8, #33a6ff);
}

.domshot-swatch-sunset > span {
  background: linear-gradient(135deg, #a84a2f, #f59e0b 52%, #ff8a5b);
}

.domshot-swatch-graphite > span {
  background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px), radial-gradient(circle at 78% 24%, rgba(212,107,69,.82), transparent 32%), #090d1e;
  background-size: 10px 10px, 10px 10px, auto, auto;
}

.domshot-swatch-paper > span {
  background: repeating-linear-gradient(140deg, rgba(148,163,184,.16) 0 1px, transparent 1px 8px), linear-gradient(135deg, #ffffff, #edf1f6);
}

.domshot-swatch-onyx > span {
  background: repeating-linear-gradient(140deg, rgba(255,255,255,.08) 0 1px, transparent 1px 8px), linear-gradient(135deg, #0b0f19, #1f2937);
}

.domshot-subcontrol {
  display: grid;
  gap: 7px;
}

.domshot-subcontrol-title {
  color: var(--label);
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.2;
}

.domshot-inline-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  gap: 10px;
  align-items: center;
}

.domshot-unit-field {
  position: relative;
  display: block;
  min-width: 0;
}

.domshot-unit-field > span {
  position: absolute;
  right: 10px;
  top: 50%;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  pointer-events: none;
  transform: translateY(-50%);
}

.domshot-unit-field.is-auto > span {
  display: none;
}

.domshot-inline-control input[type="number"],
.domshot-inline-control input[type="text"],
.domshot-canvas-field input,
.domshot-canvas-field select {
  width: 100%;
  height: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--composer-control);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 650;
  outline: none;
}

.domshot-inline-control input[type="number"],
.domshot-canvas-field input {
  padding: 0 30px 0 8px;
}

.domshot-inline-control input[type="text"] {
  padding: 0 8px;
}

.domshot-canvas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.domshot-canvas-field {
  display: grid;
  gap: 6px;
}

.domshot-canvas-field span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 680;
}

.domshot-canvas-field select {
  appearance: none;
  padding: 0 30px 0 10px;
}

.domshot-canvas-actions {
  display: flex;
  align-items: center;
}

.domshot-canvas-reset {
  height: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  background: var(--composer-control);
  color: var(--label);
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 720;
}

.domshot-composer-footer {
  display: grid;
  position: sticky;
  bottom: 0;
  gap: 10px;
  align-self: end;
  background: var(--surface);
  box-shadow: 0 -12px 18px var(--composer-footer-shadow);
}

.domshot-export-info {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--composer-control);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.domshot-export-info-item {
  display: grid;
  gap: 3px;
  padding: 8px 9px;
}

.domshot-export-info-item:not(:last-child) {
  border-right: 1px solid var(--border-soft);
}

.domshot-export-info-item strong {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 760;
}

.domshot-export-info-item span {
  color: var(--muted);
  font-size: 0.68rem;
}

.domshot-composer-download {
  width: 100%;
  min-height: 42px;
  border: 0;
  padding: 0 20px;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 14px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.privacy-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 1.04;
}

.section-heading p,
.privacy-section p,
.policy-document p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.intro-section,
.workflow-section,
.privacy-section,
.use-case-section {
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid var(--border-soft);
}

.benefit-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid article,
.use-case-grid article {
  min-height: 180px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
  padding: 24px;
}

.benefit-grid h3,
.use-case-grid h3,
.step-list h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.2;
  font-weight: 790;
  letter-spacing: 0;
}

.benefit-grid p,
.use-case-grid p,
.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.workflow-section {
  width: 100%;
  max-width: none;
  background: var(--page-soft);
}

.workflow-section > * {
  width: min(var(--max-page), calc(100% - clamp(40px, 8vw, 128px)));
  margin-left: auto;
  margin-right: auto;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.step-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.step-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--accent);
  font-weight: 820;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.privacy-section p {
  max-width: 660px;
  margin-top: 18px;
}

.privacy-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-section li {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
  padding: 16px 18px;
  color: var(--label);
  font-weight: 720;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 34px;
  width: min(var(--max-page), calc(100% - clamp(40px, 8vw, 128px)));
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 34px 0 48px;
}

.footer-brand {
  width: fit-content;
  font-size: 1.05rem;
}

.footer-brand img {
  border-radius: 7px;
}

.site-footer p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: var(--label);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

.policy-page {
  width: min(900px, calc(100% - clamp(40px, 8vw, 128px)));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.policy-document h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: 0;
}

.policy-document section {
  margin-top: 40px;
}

.policy-document h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.policy-document .lede,
.eyebrow {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .domshot-composer-panel {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: auto;
    padding: 14px 20px;
  }

  .chrome-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .section-shell,
  .workflow-section > *,
  .site-footer,
  .policy-page {
    width: calc(100% - 40px);
  }

  .hero {
    padding-top: 48px;
  }

  .domshot-composer-body,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .domshot-composer-preview {
    min-height: 500px;
  }

  .domshot-composer-inspector {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .benefit-grid,
  .use-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 66px;
    padding: 12px 20px;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .site-header .chrome-cta {
    display: none;
  }

  .brand {
    min-width: 0;
    font-size: 1.35rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .theme-toggle {
    flex: 0 0 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
    line-height: 1;
  }

  .actions,
  .button,
  .chrome-cta {
    width: 100%;
  }

  .button,
  .chrome-cta {
    justify-content: center;
  }

  .proof-row span {
    flex: 1 1 auto;
    text-align: center;
  }

  .domshot-composer-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .domshot-composer-header-actions {
    width: 100%;
  }

  .domshot-composer-icon-button {
    flex: 1 1 0;
  }

  .domshot-composer-preview {
    min-height: 390px;
    padding: 12px;
  }

  .landing-preview-surface {
    min-height: 230px;
    padding: 22px;
    border-radius: 20px;
  }

  .captured-element {
    min-height: 170px;
    padding: 22px;
  }

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

  .domshot-preview-toolbar {
    grid-template-columns: 30px minmax(72px, 1fr) 30px 58px;
  }

  .domshot-canvas-grid,
  .benefit-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}
