:root {
  --color-ink: #18272d;
  --color-ink-hover: #101d22;
  --color-paper: #f4f1e9;
  --color-surface: #ffffff;
  --color-surface-subtle: #ebe9e1;
  --color-forest: #3f6b58;
  --color-forest-hover: #315746;
  --color-forest-soft: #e4ece7;
  --color-text: #182125;
  --color-text-muted: #536066;
  --color-border: #d8d8d0;
  --color-border-strong: #a7adaa;
  --color-success: #35634f;
  --color-success-soft: #e4ede8;
  --color-warning: #805e2b;
  --color-warning-soft: #f5ecd9;
  --color-danger: #984941;
  --color-danger-soft: #f5e6e3;
  --color-info: #3b606c;
  --color-info-soft: #e5edef;
  --color-focus: #704800;
  --color-overlay: rgba(16, 29, 34, 0.64);
  --color-header-muted: #bcc7ca;
  --color-header-border: rgba(255, 255, 255, 0.3);
  --color-header-divider: rgba(255, 255, 255, 0.2);
  --color-paper-overlay: rgba(244, 241, 233, 0.9);
  --shadow-overlay: 0 16px 42px rgba(24, 39, 45, 0.22);
  --shadow-control: 0 4px 16px rgba(24, 39, 45, 0.18);
  --shadow-footer: 0 -6px 18px rgba(24, 39, 45, 0.05);
  --radius-small: 4px;
  --radius-medium: 6px;
  --radius-large: 8px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --header-height: 58px;
  --panel-width: 408px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  min-height: 100%;
  margin: 0;
}

html {
  background: var(--color-paper);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
.primary,
.secondary {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  padding: 0 var(--space-4);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

button,
label,
summary,
select,
input[type="checkbox"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-surface);
}

.primary:hover:not(:disabled) {
  background: var(--color-forest-hover);
}

.secondary {
  background: var(--color-surface);
  border-color: var(--color-border-strong);
  color: var(--color-ink);
}

.secondary:hover:not(:disabled) {
  background: var(--color-surface-subtle);
  border-color: var(--color-ink);
}

input[type="search"],
input[type="text"],
input[type="password"],
input[type="url"],
input[type="number"],
input:not([type]),
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-surface);
  padding: var(--space-2) var(--space-3);
  line-height: 1.35;
}

textarea {
  min-height: 84px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.9;
}

input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--color-forest);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--color-surface);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px var(--color-focus);
}

a {
  color: var(--color-forest-hover);
}

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

h1,
h2,
h3,
h4 {
  color: var(--color-ink);
  line-height: 1.2;
}

h1 {
  font-size: clamp(23px, 2vw, 28px);
  letter-spacing: -0.025em;
}

h2 {
  font-size: 20px;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 16px;
}

[hidden] {
  display: none !important;
}

.eyebrow,
.section-kicker,
.field-label {
  margin-bottom: var(--space-1);
  color: var(--color-forest-hover);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.technical-value,
.technical-hint,
.map-reference,
.layer-table-row td:nth-child(4),
.layer-table-row td:nth-child(5) {
  font-family: var(--font-mono);
  font-size: 12px;
}

.muted,
.description,
.helper-text,
.admin-help,
.admin-note,
.review-meta {
  color: var(--color-text-muted);
}

.control-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Shared product header */
.topbar {
  z-index: 1200;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: var(--space-4);
  background: var(--color-ink);
  border-bottom: 1px solid var(--color-ink-hover);
  color: var(--color-surface);
  padding: 0 var(--space-4);
}

.brand-lockup {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-surface);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-header-muted);
  border-radius: var(--radius-small);
  color: var(--color-paper);
}

.brand-mark img {
  display: block;
  width: 25px;
  height: 25px;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong,
.brand-copy h1 {
  margin: 0;
  color: var(--color-surface);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--color-header-muted);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-1);
}

.topbar-divider {
  width: 1px;
  height: 28px;
  margin: 0 var(--space-2);
  background: var(--color-header-muted);
  opacity: 0.35;
}

.topbar-tool {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  background: transparent;
  border-color: transparent;
  color: var(--color-surface);
  padding: 0 var(--space-3);
}

.topbar-tool:hover:not(:disabled),
.topbar-tool.is-active,
.topbar-tool[aria-expanded="true"] {
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.status-label,
.environment-label {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid var(--color-header-border);
  border-radius: var(--radius-small);
  color: var(--color-header-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 0 var(--space-2);
  text-transform: uppercase;
}

.dev-nav {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-header-border);
  border-radius: var(--radius-small);
  overflow: hidden;
}

.dev-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--color-header-muted);
  font-size: 12px;
  font-weight: 650;
  padding: 0 var(--space-3);
  text-decoration: none;
}

.dev-nav a + a {
  border-left: 1px solid var(--color-header-divider);
}

.dev-nav a:hover,
.dev-nav a.active {
  background: var(--color-paper);
  color: var(--color-ink);
}

/* Public landing page */
.account-page { --workspace-white: #fff; --workspace-warm-soft: #f6f3ec; --workspace-olive-950: #1f281e; --workspace-olive-800: #384633; --workspace-olive-700: #536247; --workspace-olive-300: #b8c0aa; --workspace-olive-150: #e1e5da; --workspace-text-muted: #525a51; --workspace-border: #d7dbd2; display: flex; min-height: 100vh; min-height: 100dvh; flex-direction: column; background: #f4f3ed; color: #273126; }
.account-page .account-header { flex: 0 0 auto; border-bottom: 1px solid var(--workspace-border); background: var(--workspace-white); padding: 0 clamp(24px, 5vw, 72px); }
.account-header__inner { display: grid; width: min(100%, 1320px); min-height: 64px; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 24px; margin: 0 auto; }
.account-brand { display: inline-flex; width: fit-content; align-items: center; text-decoration: none; }
.account-brand img { display: block; width: 108px; height: auto; }
.account-nav { display: flex; align-items: center; gap: 4px; }
.account-nav .account-nav-link, .account-logout { min-height: 38px; border: 0; border-radius: 6px; color: var(--workspace-text-muted); font-size: 12px; font-weight: 600; padding: 0 12px; transition: background-color 140ms ease, color 140ms ease; }
.account-nav .account-nav-link:hover, .account-nav .account-nav-link:focus-visible, .account-logout:hover, .account-logout:focus-visible { background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.account-nav .account-nav-link[aria-current="page"] { background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.account-page :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible { outline: 2px solid var(--workspace-white); outline-offset: 1px; box-shadow: 0 0 0 4px var(--workspace-olive-700); }
.account-logout { justify-self: end; background: transparent; cursor: pointer; }
.account-header a, .account-map-link { color: #334632; font-weight: 650; }
.account-page .account-main { width: min(1160px, calc(100% - 48px)); flex: 1 0 auto; margin: 0 auto; padding: clamp(38px, 5vw, 56px) 0 64px; border: 0; border-radius: 0; background: transparent; }
.customer-app-page:has(.exports-panel) .account-main { width: min(1080px, calc(100% - 48px)); }
.account-auth-panel label.terms-acceptance { display: flex; align-items: flex-start; gap: 9px; color: #4d5e4a; font-size: .88rem; line-height: 1.45; }
.terms-acceptance input { flex: 0 0 auto; }
.legal-page { display: flex; min-height: 100vh; flex-direction: column; background: #f4f3ed; color: #273126; }
.legal-page__header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(24px, 6vw, 80px); border-bottom: 1px solid #d7d9d0; background: #fff; }
.legal-page__brand { color: #243124; font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; text-decoration: none; }
.legal-page__brand small { margin-left: 6px; color: #61705f; font-size: .67rem; font-weight: 650; letter-spacing: .01em; }
.legal-page__header nav { display: flex; gap: 18px; }
.legal-page__header nav a { color: #4d5e4a; font-weight: 700; text-decoration: none; }
.legal-page__main { width: min(800px, calc(100% - 48px)); flex: 1; margin: 0 auto; padding: clamp(40px, 7vw, 76px) 0; }
.legal-page__main h1 { margin-bottom: 8px; font-size: clamp(2rem, 5vw, 3rem); }
.legal-page__updated { margin-bottom: 34px; color: #61705f; font-size: .9rem; }
.legal-page__content { padding: clamp(24px, 5vw, 48px); border: 1px solid #d7d9d0; border-radius: 10px; background: #fff; box-shadow: 0 8px 20px rgb(35 47 32 / 4%); }
.legal-page__content h2 { margin-top: 38px; font-size: 1.22rem; }
.legal-page__content h2:first-child { margin-top: 0; }
.legal-page__content h3 { margin: 28px 0 8px; }
.legal-page__content p, .legal-page__content li { max-width: 70ch; }
.legal-page__content ul { display: grid; gap: 8px; padding-left: 22px; }
.legal-page__content address { font-style: normal; line-height: 1.65; }
.site-footer { border-top: 1px solid #d7d9d0; background: #fff; color: #61705f; }
.site-footer--dark { border-top-color: rgb(255 255 255 / 16%); background: #1f281e; color: #cfd6c7; }
.site-footer__inner { display: flex; width: min(calc(100% - clamp(48px, 9vw, 144px)), 1280px); align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; padding: 22px 0; font-size: .82rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.account-page-intro { max-width: 720px; margin-bottom: 26px; }
.account-page-intro h1 { margin: 7px 0 8px; font-size: clamp(2.35rem, 4vw, 3.15rem); line-height: 1.04; letter-spacing: -.045em; }
.account-page-intro > p:last-child { max-width: 62ch; margin: 0; color: #5d6a5b; font-size: 1rem; }
.account-status:empty { display: none; }
.account-status { margin: 0 0 20px; padding: 18px; border-left: 3px solid #687b5e; background: #eef0e9; font-weight: 650; }
.account-map-link { display: inline-block; margin-top: 20px; }
.account-auth-panel, .account-overview-card, .account-onboarding-card, .account-company-card, .account-unavailable-card { border: 1px solid #d7d9d0; border-radius: 12px; background: #fff; box-shadow: 0 12px 28px rgb(35 47 32 / 5%); }
.account-auth-panel { width: min(100%, 620px); padding: clamp(28px, 5vw, 48px); }
.account-auth-panel h2, .account-onboarding-card h2, .account-company-card h2, .account-overview-card h2, .account-unavailable-card h2 { margin: 6px 0 8px; }
.account-auth-panel > p:not(.eyebrow), .account-onboarding-card > p:not(.eyebrow), .account-unavailable-card p { color: #61705f; }
.account-auth-panel form, .account-onboarding-card form { display: grid; gap: 12px; margin: 24px 0; }
.account-auth-panel label, .account-onboarding-card label { display: grid; gap: 6px; }
.account-auth-panel input, .account-onboarding-card input { width: 100%; box-sizing: border-box; padding: 10px; }
.password-field { display: flex; position: relative; align-items: center; }
.account-auth-panel .password-field input { padding-right: 44px; }
.password-toggle { position: absolute; right: 3px; min-width: 36px; min-height: 34px; border: 0; background: transparent; color: #4d5e4a; padding: 0; }
.password-toggle:hover { background: #eef0e9; }
.password-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.account-auth-panel label.terms-acceptance { display: flex; align-items: flex-start; gap: 9px; }
.account-auth-panel .terms-acceptance input { width: 17px; flex: 0 0 auto; margin-top: 3px; }
.terms-information, .auth-validation { margin: 0; color: #61705f; font-size: .86rem; }
.auth-validation:not(:empty) { color: #8a3630; font-weight: 650; }
.auth-notice { min-height: 1.25em; margin: 0; color: #456344; font-size: .86rem; font-weight: 650; }
.auth-forgot { margin: -5px 0 0; font-size: .86rem; }
.account-auth-panel .text-button { border: 0; background: transparent; color: #334632; padding: 0; text-decoration: underline; }
.auth-action-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 11px; margin-top: 4px; }
.auth-action-row > span { color: #61705f; font-size: .9rem; }
.auth-action-row .text-button { min-height: 42px; }
@media (max-width: 360px) { .auth-action-row { gap: 7px; } }
.onboarding-welcome { position: absolute; z-index: 900; top: 74px; left: 50%; width: min(520px, calc(100% - 32px)); transform: translateX(-50%); border: 1px solid rgb(209 224 203 / 75%); border-radius: 10px; background: rgb(43 62 40 / 91%); box-shadow: 0 14px 36px rgb(20 34 22 / 27%); backdrop-filter: blur(10px); color: #f6f7f1; padding: 16px 40px 16px 18px; }
.onboarding-welcome h2 { margin: 0 0 8px; color: #fff; font-size: 1rem; }
.onboarding-welcome p { margin: 7px 0 0; font-size: .88rem; line-height: 1.45; }
.onboarding-welcome button { position: absolute; top: 8px; right: 8px; min-width: 30px; min-height: 30px; border: 0; background: transparent; color: #fff; font-size: 20px; padding: 0; }
.legal-information { margin-top: 46px; padding-top: 20px; border-top: 1px solid #e1e3dc; color: #61705f; font-size: .86rem; }
.account-auth-panel button, .account-onboarding-card button { width: fit-content; padding: 10px 14px; }
.customer-app-page .account-layout[data-customer-shell="unauthenticated"] .account-page-intro { display: none; }
.customer-app-page .account-layout[data-customer-shell="unauthenticated"] .account-main { display: flex; width: min(100% - 48px, 640px); min-height: calc(100vh - 186px); min-height: calc(100dvh - 186px); box-sizing: border-box; align-items: center; flex-direction: column; justify-content: center; padding: 36px 0 64px; }
.customer-app-page .account-layout[data-customer-shell="unauthenticated"] .account-status { width: min(100%, 520px); box-sizing: border-box; margin-bottom: 12px; }
.customer-app-page .account-layout[data-customer-shell="unauthenticated"] .account-auth-panel { width: min(100%, 520px); box-sizing: border-box; padding: 30px; border-color: #daddd3; border-radius: 14px; background: #fffefa; box-shadow: 0 10px 26px rgb(35 47 32 / 6%); }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel h2 { margin: 5px 0 6px; font-size: 1.65rem; letter-spacing: -.025em; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel .eyebrow { margin-bottom: 5px; font-size: .68rem; letter-spacing: .1em; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-support { margin: 0; color: #61705f; font-size: .93rem; line-height: 1.5; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel form { gap: 15px; margin: 22px 0 0; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel label { gap: 7px; color: #334632; font-size: .9rem; font-weight: 700; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel input:not([type="checkbox"]) { min-height: 44px; border-color: #c4cbc0; border-radius: 8px; background: #fff; padding: 10px 12px; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel input:focus-visible { outline: 2px solid #718568; outline-offset: 1px; box-shadow: 0 0 0 4px rgb(113 133 104 / 16%); }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel .password-field input { padding-right: 46px; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel label.terms-acceptance { gap: 8px; color: #4d5e4a; font-size: .84rem; font-weight: 500; line-height: 1.42; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .account-auth-panel .terms-acceptance input { margin-top: 2px; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .terms-information { font-size: .8rem; line-height: 1.45; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-action-row { gap: 10px; margin-top: 2px; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-action-row button { min-height: 42px; padding: 10px 16px; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-secondary-action { color: #385135; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-switch { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid #e4e6de; color: #61705f; font-size: .86rem; }
.customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-switch .text-button { color: #334632; font-weight: 700; }
@media (max-width: 400px) { .customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-action-row { display: grid; grid-template-columns: 1fr; gap: 9px; } .customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-action-row > span { text-align: center; } .customer-app-page:has(#account-signed-out:not([hidden]) #account-generic-auth:not([hidden])) .auth-action-row button { width: 100%; justify-content: center; } }
.account-page button:disabled { cursor: wait; opacity: .65; }
.account-dashboard, .account-company-area { display: grid; gap: 22px; }
.account-overview-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(24px, 4vw, 36px); background: linear-gradient(135deg, #fff 0%, #f0f4ed 100%); }
.account-overview-card #account-email { margin: 0; color: #4d5e4a; font-weight: 700; }
.account-overview-card #account-verification { margin: 5px 0 0; color: #61705f; }
.account-onboarding-card, .account-company-card, .account-unavailable-card { padding: clamp(24px, 4vw, 36px); }
.account-section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.account-section-heading h2 { font-size: 1.45rem; }
.account-section-heading a { color: #334632; font-weight: 700; }
.account-overview-card { padding: 0 0 18px; border: 0; border-bottom: 1px solid #d7d9d0; border-radius: 0; box-shadow: none; background: transparent; }
.account-overview-card h2 { font-size: 1.25rem; }
.account-company-card { padding: 20px 0 0; border: 0; border-top: 1px solid #d7d9d0; border-radius: 0; box-shadow: none; background: transparent; }
.account-section-heading { margin-bottom: 12px; }
.account-dashboard, .account-company-area { gap: 18px; }
.organization-message { margin: 0; padding: 14px; border-left: 3px solid #687b5e; background: #eef0e9; }
.organization-message p { margin: 0; }
.organization-list { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.organization-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px; border: 1px solid #d7d9d0; border-radius: 6px; }
.organization-role { color: #4d5e4a; font-size: .9rem; font-weight: 650; white-space: nowrap; }
.account-invitation-notice, .account-invitation-card, .organization-users-card { border-top: 1px solid #d7d9d0; padding-top: 18px; }
.account-invitation-notice { color: #4d5e4a; font-weight: 650; }
.account-invitation-card { display: grid; width: min(100%, 640px); gap: 10px; }
.account-invitation-card h2, .organization-users-card h3, .organization-users-card h4 { margin: 0; }
.account-invitation-card > p:not(.eyebrow), .organization-users-empty, .organization-member-email, .organization-member-meta { color: #61705f; }
.account-page #organization-users { display: grid; gap: 20px; }
.organization-users-card { display: grid; min-width: 0; gap: 14px; }
.organization-users-card--loading { color: #61705f; }
.organization-users-card.is-error, .organization-users-message.is-error { color: #8a3630; }
.organization-users-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.organization-users-message { min-height: 1.4em; margin: 0; color: #35634f; }
.organization-seat-count { margin: 0; color: #334632; font-weight: 750; }
.organization-seat-limit, .organization-confirmation { padding: 13px 15px; border-left: 3px solid #a86f23; background: #fff5e5; color: #4d391b; }
.organization-seat-limit { margin: 0; }
.organization-invite-form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .45fr) auto; align-items: end; gap: 10px; }
.organization-invite-form label { display: grid; min-width: 0; gap: 6px; color: #4d5e4a; font-size: .9rem; font-weight: 650; }
.organization-invite-form input, .organization-invite-form select { width: 100%; min-width: 0; box-sizing: border-box; padding: 10px; }
.organization-member-list { display: grid; margin: 0; padding: 0; border-top: 1px solid #e1e3dc; list-style: none; }
.organization-member-row, .organization-invitation-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid #e1e3dc; }
.organization-member-main { display: grid; min-width: 0; gap: 4px; }
.organization-member-main strong, .organization-member-email { overflow-wrap: anywhere; }
.organization-member-meta, .organization-member-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 12px; font-size: .86rem; }
.organization-user-role, .organization-user-status { display: inline-flex; width: fit-content; border-radius: 999px; padding: 4px 8px; background: #eef0e9; color: #334632; font-weight: 700; }
.organization-user-status--suspended { background: #f5ecd9; color: #805e2b; }
.organization-member-actions { justify-content: flex-end; }
.organization-member-actions button, .organization-invitation-row > button, .organization-confirmation button { width: fit-content; }
.organization-confirmation { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 10px; }
.organization-confirmation p { width: 100%; margin: 0; }
.account-page #organization-billing { display: grid; gap: 22px; }
.billing-card { display: grid; min-width: 0; gap: 18px; padding: clamp(22px, 3vw, 30px); border: 1px solid #d7d9d0; border-radius: 10px; background: #fff; box-shadow: 0 8px 20px rgb(35 47 32 / 4%); }
.billing-card > header, .billing-profile, .billing-cancellation { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.billing-card h3, .billing-card h4 { margin-bottom: 5px; }
.billing-card p { margin-bottom: 0; }
.billing-status { display: inline-flex; width: fit-content; align-items: center; border-radius: 999px; background: #eef0e9; color: #334632; padding: 5px 9px; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.billing-status--past_due, .billing-status--pending_issue { background: #f5ecd9; color: #805e2b; }
.billing-status--paid, .billing-status--active { background: #e4ede8; color: #35634f; }
.billing-status--void, .billing-status--cancelled, .billing-status--expired { background: #f0eeee; color: #5f5a5a; }
.billing-overview { padding-top: 2px; }
.billing-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.billing-summary > div, .billing-invoice-summary { padding: 12px; border: 1px solid #e1e3dc; border-radius: 6px; background: #fafaf7; }
.billing-summary span, .billing-summary small, .billing-invoice-summary dt, .billing-invoice-summary dd + small { display: block; color: #61705f; font-size: .8rem; }
.billing-summary strong { display: block; margin-top: 3px; }
.billing-summary progress { display: block; width: 100%; height: 8px; margin: 8px 0 4px; accent-color: #3f6b58; }
.billing-warning { padding: 16px; border-left: 4px solid #a86f23; background: #fff5e5; color: #4d391b; }
.billing-warning p { margin-top: 7px; }
.billing-invoice-summary { min-width: 0; padding: 10px; border-color: #e6e7e1; background: #fcfcfa; }
.billing-invoice-summary h4 { margin: 0 0 10px; }
.billing-invoice-summary dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.billing-invoice-summary dt, .billing-invoice-summary dd { margin: 0; }
.billing-plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.billing-plan { display: grid; gap: 8px; padding: 16px; border: 1px solid #d7d9d0; border-radius: 6px; }
.billing-plan--recommended { border-color: #557151; box-shadow: inset 0 3px #557151; }
.billing-plan__price { font-size: 1.18rem; font-weight: 750; }
.billing-plan__price small { font-size: .82rem; font-weight: 500; }
.billing-trial-journey { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; border: 1px solid #b8cbb3; border-radius: 6px; background: #f3f7f1; }
.billing-trial-journey h4 { margin: 0 0 5px; }
.billing-product-action { margin: 0; }
.billing-offer--trial { border-top: 1px solid #e1e3dc; padding-top: 18px; }
.billing-offer--trial summary { width: fit-content; font-weight: 700; }
.billing-offer--trial > div { display: grid; gap: 12px; padding-top: 16px; }
.billing-section { padding: 16px; border: 1px solid #e1e3dc; border-radius: 8px; background: #fafaf7; }
.billing-profile { border-top: 0; padding-top: 0; }
.billing-profile[data-billing-profile-panel] { display: block; }
.billing-profile--activation { margin-top: 4px; }
.billing-profile form { display: grid; flex: 1; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.billing-profile fieldset { display: grid; min-width: 0; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; border: 0; border-top: 1px solid #e2e7df; padding: 16px 0 0; }
.billing-profile fieldset:first-child { border-top: 0; padding-top: 0; }
.billing-profile legend { margin-bottom: 10px; color: #647461; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.billing-profile label { display: grid; min-width: 0; gap: 6px; font-size: .9rem; }
.billing-profile .billing-field-label { color: #344433; font-weight: 720; }
.billing-profile .billing-field-label em { color: #71806e; font-style: normal; font-weight: 500; }
.billing-profile input { width: 100%; min-width: 0; min-height: 40px; box-sizing: border-box; }
.billing-profile input[readonly] { background: #f0f3ed; color: #536151; }
.billing-profile .billing-same-email { display: flex; grid-column: 1 / -1; align-items: center; gap: 8px; width: fit-content; color: #536451; font-weight: 600; }
.billing-profile .billing-same-email input { width: auto; min-height: 0; }
.billing-profile form > button, .billing-profile form > .billing-actions, .billing-profile .billing-form-status { grid-column: 1 / -1; width: fit-content; }
.billing-profile .billing-form-status { width: auto; }
.billing-section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.billing-profile-read { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; margin: 18px 0 0; }
.billing-profile-read div { min-width: 0; }
.billing-profile-read dt { color: #61705f; font-size: .78rem; }
.billing-profile-read dd { margin: 3px 0 0; overflow-wrap: anywhere; font-weight: 650; }
.billing-profile-editor { width: 100%; margin-top: 18px; }
.billing-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.billing-activation, .billing-cancellation { border-color: #c6d3c3; background: #f3f7f1; }
.billing-cancel-confirmation { flex: 1; padding: 16px; border: 1px solid #d7b7b7; border-radius: 6px; background: #fff8f8; }
.billing-message, .billing-form-status { min-height: 1.4em; color: #35634f; }
.billing-invoice-table table { min-width: 1320px; }
.admin-billing-shortcut { display: flex; flex: 0 0 auto; align-items: center; margin: 0; border-bottom: 1px solid var(--color-border-strong); }
.admin-billing-shortcut a { display: inline-flex; min-height: 44px; align-items: center; color: var(--color-text-muted); font-size: 12px; font-weight: 680; padding: 0 var(--space-3); text-decoration: none; }
.admin-billing-shortcut a:hover, .admin-billing-shortcut a:focus-visible { color: var(--color-ink); text-decoration: underline; text-underline-offset: 3px; }
.billing-invoice-table td { vertical-align: top; }
.billing-invoice-table small { display: block; margin-top: 4px; color: var(--color-text-muted); }
.customer-app-page { --customer-page: #f8f9f7; --customer-surface: #fffefa; --customer-surface-subtle: #f3f6f1; --customer-border: #dfe5dc; --customer-text: #1d2c21; --customer-muted: #61705f; }
.exports-panel { min-width: 0; }
.export-empty-state, .export-state-card { min-width: 0; border: 1px solid var(--customer-border); border-radius: 12px; background: var(--customer-surface); box-shadow: 0 8px 24px rgb(35 47 32 / 4%); padding: clamp(20px, 3vw, 30px); }
.exports-panel-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--customer-border); }
.exports-panel h2, .export-empty-state h2, .export-state-card h2 { margin: 0 0 6px; font-size: 1.35rem; }
.export-company-name { margin: 0; color: #61705f; font-weight: 700; }
.export-organization-picker { display: grid; min-width: min(100%, 260px); gap: 6px; color: #61705f; font-size: .85rem; font-weight: 700; }
.export-organization-picker select { min-width: 0; padding: 9px 10px; background: #fff; }
.customer-export-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.customer-export-row { display: grid; align-items: center; gap: 24px; grid-template-columns: minmax(0, 1fr) auto; border: 1px solid var(--customer-border); border-radius: 9px; background: var(--customer-surface); padding: 18px 20px; transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease; }
.customer-export-row:hover { border-color: #b8c0aa; box-shadow: 0 5px 15px rgb(35 47 32 / 6%); }
.customer-export-row--secondary { background: #fcfcf9; }
.customer-export-row--secondary .export-order-heading h4 { color: #596258; font-weight: 650; }
.customer-export-row--unavailable { border-color: #e3e5df; background: #f5f6f3; }
.customer-export-row--unavailable:hover { border-color: #d8ddd5; box-shadow: none; }
.customer-export-row--unavailable .export-order-heading h4, .customer-export-row--unavailable .export-order-status, .customer-export-row--unavailable .export-order-meta, .customer-export-row--unavailable .export-order-unavailable { color: #697168; }
.customer-export-row--unavailable .customer-export-failure { color: #73534d; }
.export-order-main { display: grid; min-width: 0; gap: 10px; }
.export-order-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px 14px; }
.export-order-heading h4 { margin: 0; overflow-wrap: anywhere; color: #1f2f24; font-size: 1rem; line-height: 1.3; }
.export-order-status { display: block; margin-top: 3px; color: #596758; font-size: .8rem; font-weight: 700; }
.export-download-state { flex: 0 0 auto; color: #6a7368; font-size: .78rem; font-weight: 650; }
.export-order-meta { display: flex; flex-wrap: wrap; gap: 4px 0; color: #687267; font-size: .86rem; }
.export-order-meta span + span::before { margin: 0 8px; content: '·'; }
.customer-export-progress { display: grid; max-width: 560px; gap: 6px; margin-top: 2px; }
.customer-export-progress p { margin: 0; color: #3e4d40; font-size: .86rem; }
.customer-export-progress-track { height: 6px; overflow: hidden; border-radius: 999px; background: #e5e8e2; }
.customer-export-progress-track span { display: block; height: 100%; border-radius: inherit; background: #244c35; }
.customer-export-progress .customer-export-background-note { color: #6b7469; font-size: .82rem; }
.customer-export-summary, .customer-export-warning { max-width: 68ch; margin: 0; color: #536052; font-size: .88rem; line-height: 1.45; }
.customer-export-warning { color: #775929; font-weight: 650; }
.customer-export-failure { max-width: 58ch; margin: 0; color: #8a3630; font-size: .9rem; font-weight: 650; line-height: 1.45; }
.export-order-action { align-self: center; }
.export-download-progress { max-width: 19rem; margin: 7px 0 0; color: #536052; font-size: .82rem; font-weight: 650; line-height: 1.4; }
.export-order-unavailable { color: #805e2b; font-size: .88rem; }
.customer-export-group + .customer-export-group { margin-top: 28px; }
.customer-export-group > h3 { margin: 0 0 10px; color: #566057; font-size: .78rem; letter-spacing: .085em; text-transform: uppercase; }
.export-order-controls { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; }
.export-order-details { color: #61705f; font-size: .88rem; }
.export-order-details[open] { flex: 1 0 100%; }
.export-order-details summary { width: fit-content; cursor: pointer; color: #35516c; font-weight: 700; }
.export-order-receipt { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 11px; padding-top: 11px; border-top: 1px solid #e1e3dc; }
.export-order-receipt h3 { margin: 0 0 7px; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.export-order-receipt ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.export-order-receipt li, .export-order-receipt dl > div { display: grid; gap: 2px; }
.export-order-receipt li span, .export-order-receipt dt { color: #61705f; }
.export-order-receipt dl { display: grid; gap: 6px; margin: 0; }
.export-order-receipt dd { margin: 0; color: #334632; }
.export-cancel-action { border: 0; background: transparent; color: #78615c; cursor: pointer; font: inherit; font-size: .84rem; font-weight: 650; padding: 0; text-decoration: underline; text-decoration-color: #c6bbb8; text-underline-offset: 3px; }
.export-cancel-action:hover, .export-cancel-action:focus-visible { color: #7d2f2a; text-decoration-color: currentColor; }
.export-cancel-dialog { width: min(420px, calc(100% - 32px)); border: 1px solid #d7dbd2; border-radius: 8px; background: #fff; box-shadow: 0 18px 48px rgb(23 34 25 / 22%); color: #263329; padding: 22px; }
.export-cancel-dialog::backdrop { background: rgb(20 29 22 / 38%); }
.export-cancel-dialog h3 { margin: 0 0 8px; font-size: 1.12rem; }
.export-cancel-dialog p { margin: 0; color: #606b60; line-height: 1.5; }
.export-cancel-dialog-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.export-empty-state { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.export-empty-state p, .export-state-card p { color: #61705f; }
.export-state-card { width: min(100%, 620px); padding-bottom: 8px; }
.exports-message { min-height: 1.4em; margin: 16px 0 0; color: #35634f; }
.admin-invoice-action { display: grid; min-width: 220px; gap: 7px; margin: 0 0 8px; }
.admin-invoice-action label { display: grid; gap: 4px; font-size: 12px; }
.admin-invoice-action p { margin: 0; color: var(--color-text-muted); font-size: 11px; }
@media (max-width: 720px) { .account-page .account-header { padding: 0 18px; } .account-header__inner { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 9px 0 10px; } .account-nav { grid-column: 1 / -1; grid-row: 2; justify-content: stretch; width: 100%; } .account-nav a { flex: 1; justify-content: center; text-align: center; } }
@media (max-width: 720px) { .legal-page__header, .site-footer__inner { align-items: flex-start; flex-direction: column; gap: 12px; } .legal-page__header nav { gap: 14px; } }
@media (max-width: 640px) { .account-page .account-main { width: min(100% - 28px, 640px); padding: 30px 0 48px; } .account-auth-panel, .account-onboarding-card, .account-unavailable-card { padding: 24px 20px; } .customer-export-row, .organization-invitation-row { align-items: flex-start; flex-direction: column; gap: 10px; } .billing-cancellation, .billing-trial-journey, .billing-section-heading, .export-empty-state, .exports-panel-header { flex-direction: column; } .billing-plans, .billing-invoice-summary dl, .billing-profile form, .billing-profile-read, .organization-invite-form, .export-order-receipt { grid-template-columns: 1fr; } .billing-status { white-space: normal; } .billing-profile form > button, .billing-profile form > .billing-actions, .billing-profile .billing-form-status { grid-column: auto; } .export-organization-picker, .organization-invite-form button, .organization-member-actions { width: 100%; } .export-order-action, .export-order-action .primary, .export-order-action .secondary { width: 100%; } }
@media (max-width: 640px) { .customer-export-row { grid-template-columns: 1fr; padding: 18px 16px; } .export-order-action { width: 100%; } .export-order-action .primary, .export-order-action .secondary { width: 100%; } .export-cancel-dialog-actions { align-items: stretch; flex-direction: column-reverse; } .export-cancel-dialog-actions button { width: 100%; } }
@media (max-width: 640px) { .export-order-heading { align-items: flex-start; flex-direction: column; } .export-order-heading h4 { width: 100%; } .export-order-status, .export-download-state { align-self: flex-start; } }

/* Signed-in account workspace. */
.account-dashboard, .account-company-area { display: grid; gap: 18px; }
.account-overview-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 18px; }
.account-summary-card, .account-company-card, .organization-overview-card, .organization-users-card, .billing-card { min-width: 0; border: 1px solid #d7dbd2; border-radius: 10px; background: #fffefa; box-shadow: 0 2px 10px rgb(31 40 30 / 3.5%); }
.account-summary-card { display: grid; min-height: 180px; gap: 18px; align-content: space-between; padding: 22px 24px; }
.account-card-heading h2, .account-section-heading h2, .organization-users-heading h3, .billing-card-heading h3 { margin: 3px 0 0; color: #1f281e; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.account-card-heading > p:last-child, .account-section-heading > p:last-child, .organization-users-description, .billing-card-heading > div > p:last-child { margin: 6px 0 0; color: #626d60; font-size: .86rem; line-height: 1.45; }
.account-card-kicker { margin: 0; color: #5a6d50; font-size: .69rem; font-weight: 760; letter-spacing: .105em; text-transform: uppercase; }
.account-identity { background: linear-gradient(145deg, #fffefa 0%, #f3f6ef 100%); }
.account-identity-details { display: grid; min-width: 0; gap: 4px; padding-top: 15px; border-top: 1px solid #dfe3da; }
.account-field-label { color: #657162; font-size: .75rem; }
.account-identity #account-email { margin: 0; overflow-wrap: anywhere; color: #1f281e; font-size: .98rem; font-weight: 720; }
.account-verification { display: inline-flex; width: fit-content; align-items: center; gap: 7px; margin: 5px 0 0; color: #3f624f; font-size: .78rem; font-weight: 680; }
.account-verification::before { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #557765; content: ""; }
.account-notification-card { align-content: start; }
.account-setting-row { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding: 15px 0 3px; border-top: 1px solid #dfe3da; }
.account-setting-copy { display: grid; min-width: 0; gap: 3px; }
.account-setting-copy strong { color: #293427; font-size: .9rem; }
.account-setting-copy span { color: #626d60; font-size: .82rem; }
.account-switch { position: relative; display: inline-flex; width: 42px; height: 24px; flex: 0 0 42px; }
.account-switch-input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); margin: -1px; opacity: 0; }
.account-switch-control { display: block; width: 100%; height: 100%; box-sizing: border-box; border: 1px solid #aeb8a9; border-radius: 999px; background: #e4e7df; cursor: pointer; transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease; }
.account-switch-control::after { display: block; width: 16px; height: 16px; margin: 3px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgb(31 40 30 / 22%); content: ""; transition: transform 140ms ease; }
.account-switch-input:checked + .account-switch-control { border-color: #536f5e; background: #536f5e; }
.account-switch-input:checked + .account-switch-control::after { transform: translateX(18px); }
.account-switch-input:focus-visible + .account-switch-control { outline: 2px solid #fff; outline-offset: 1px; box-shadow: 0 0 0 4px #536247; }
.account-switch-input:disabled + .account-switch-control { cursor: wait; opacity: .62; }
.account-notification-card[data-notification-state="error"] .account-switch-input:disabled + .account-switch-control { cursor: not-allowed; }
.account-setting-feedback { display: flex; min-height: 0; align-items: center; justify-content: space-between; gap: 12px; }
.account-setting-status { margin: 0; color: #667164; font-size: .79rem; line-height: 1.4; }
.account-setting-status[hidden] { display: none; }
.account-notification-card[data-notification-state="success"] .account-setting-status { color: #35634f; font-weight: 650; }
.account-notification-card[data-notification-state="error"] .account-setting-feedback { min-height: 0; border-radius: 6px; background: #f5ecd9; color: #6d5227; padding: 9px 10px; }
.account-notification-card[data-notification-state="error"] .account-setting-status { color: inherit; }
.account-inline-action { min-height: 28px; border: 0; background: transparent; color: #4d5f45; padding: 0 3px; font-size: .78rem; font-weight: 720; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.account-inline-action:hover { color: #1f281e; }
.organization-overview-card { overflow: hidden; }
.organization-overview-heading { padding: 20px 24px; border-bottom: 1px solid #dfe3da; background: #fff; }
.organization-overview-heading h2 { margin: 0; color: #1f281e; font-size: 1.35rem; letter-spacing: -.025em; }
.organization-overview-heading p { margin: 6px 0 0; color: #626d60; font-size: .86rem; line-height: 1.45; }
.organization-overview-grid { display: grid; grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr); align-items: start; }
.organization-company-panel { min-width: 0; padding: 22px 24px; border-right: 1px solid #dfe3da; background: #fbfaf5; }
.organization-overview-grid:has(.organization-users-panel[hidden]) { grid-template-columns: 1fr; }
.organization-overview-grid:has(.organization-users-panel[hidden]) .organization-company-panel { border-right: 0; }
.organization-company-panel .account-section-heading h3 { margin: 0; color: #1f281e; font-size: 1.08rem; letter-spacing: -.018em; }
.organization-company-panel .account-section-heading > p:last-child { margin: 5px 0 0; color: #657162; font-size: .82rem; line-height: 1.45; }
.account-section-heading { display: block; margin: 0; }
.organization-list { gap: 0; margin: 0; border-top: 1px solid #dfe3da; }
.organization-list li { min-height: 52px; padding: 13px 2px; border: 0; border-bottom: 1px solid #dfe3da; border-radius: 0; }
.organization-list li strong { min-width: 0; overflow-wrap: anywhere; color: #263125; }
.organization-role { display: inline-flex; width: fit-content; border-radius: 999px; background: #edf0e8; color: #4f6248; padding: 4px 8px; font-size: .75rem; font-weight: 720; white-space: nowrap; }
.organization-message { margin: 0; border: 1px solid #d9ded4; border-radius: 7px; background: #eef1ea; color: #40513d; padding: 12px 14px; }
.organization-message p { margin: 0; }
.account-invitation-card { width: 100%; border: 1px solid #cad5c5; border-radius: 9px; background: #f4f7f1; padding: 20px 22px; }
.account-invitation-notice { border: 0; color: #4d5e4a; font-weight: 650; padding: 0; }
.account-billing-area { padding: 0; border: 0; }
.account-page #organization-billing { display: block; }
#organization-billing-content { display: grid; gap: 18px; }
.account-invoices-area { margin-top: 18px; }
.billing-invoices-card { overflow: hidden; border: 1px solid #e0e5df; border-radius: 13px; background: #fff; }
.billing-invoices-card .billing-card-heading { padding: 24px 26px; }
.customer-invoice-table table { min-width: 820px; }
.table-wrap.customer-invoice-table { border: 1px solid #d8e2d5; border-radius: 10px; background: #fffefa; }
.customer-invoice-table th { position: static; border-bottom-color: #d8e2d5; background: #edf4e9; color: #31523a; font-size: .69rem; letter-spacing: .07em; }
.customer-invoice-table td { border-bottom-color: #e0e8de; padding: 14px var(--space-3); color: #2b3b2d; }
.customer-invoice-table tbody tr:not(.layer-editor-table-row):hover > td { background: #f3f8f1; }
.billing-card { gap: 0; overflow: hidden; padding: 0; }
.billing-card + .billing-card { padding-top: 0; }
.billing-card--unavailable { display: block; padding: 22px 24px; }
.billing-card--unavailable h3 { margin: 0 0 6px; }
.billing-card--unavailable p { margin: 0; color: #626d60; }
.billing-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 22px; border-bottom: 1px solid #dfe3da; background: #fff; }
.billing-card > .billing-card-context { justify-content: space-between; }
.billing-layout { display: grid; grid-template-columns: minmax(0, 1fr); align-items: stretch; }
.billing-subscription, .billing-details { display: block; min-width: 0; padding: 22px; }
.billing-details { border-top: 1px solid #dfe3da; border-left: 0; background: #fbfaf5; }
.billing-section-intro { padding-bottom: 13px; border-bottom: 1px solid #dfe3da; }
.billing-section-intro h4 { margin: 0 0 4px; color: #1f281e; font-size: 1.08rem; letter-spacing: -.018em; }
.billing-section-intro p { margin: 0; color: #657162; font-size: .82rem; line-height: 1.45; }
.billing-section-content { display: grid; min-width: 0; gap: 16px; padding-top: 16px; }
.billing-overview { padding: 0; }
.billing-summary { overflow: hidden; gap: 1px; border: 1px solid #dde1d8; border-radius: 8px; background: #dde1d8; }
.billing-summary > div { min-width: 0; border: 0; border-radius: 0; background: #fffefa; padding: 12px 13px; }
.billing-summary span, .billing-summary small, .billing-invoice-summary dt, .billing-invoice-summary dd + small { color: #657162; font-size: .75rem; }
.billing-summary strong { overflow-wrap: anywhere; color: #253024; font-size: .86rem; line-height: 1.4; }
.billing-summary progress { height: 6px; }
.billing-status { flex: 0 0 auto; border: 1px solid transparent; padding: 5px 9px; font-size: .75rem; }
.billing-status--active, .billing-status--paid { border-color: #cddbd1; background: #e7efe9; color: #35634f; }
.billing-status--past_due, .billing-status--pending_issue { border-color: #e4d5b7; background: #f5ecd9; color: #805e2b; }
.billing-status--cancelled, .billing-status--expired, .billing-status--void { border-color: #ddd9d9; background: #f0eeee; color: #5f5a5a; }
.billing-trial-journey { display: grid; gap: 12px; border: 1px solid #d8e2d4; border-radius: 8px; background: #f3f7f1; padding: 14px; }
.billing-trial-journey .primary { width: fit-content; }
.billing-profile.billing-section, .billing-invoice-summary { border: 0; border-radius: 0; background: transparent; padding: 0; }
.billing-profile.billing-section { display: grid; gap: 14px; }
.billing-profile.billing-section > div:first-child { padding-bottom: 13px; border-bottom: 1px solid #dfe3da; }
.billing-section-heading h4, .billing-invoice-summary h4 { color: #273126; font-size: .9rem; }
.billing-section-heading p { color: #657162; font-size: .8rem; }
.billing-profile-read { gap: 13px 20px; margin-top: 0; }
.billing-profile-read dt { color: #697566; font-size: .73rem; }
.billing-profile-read dd { color: #263125; font-size: .84rem; }
.billing-profile--pending { color: #657162; }
.billing-invoice-summary { border-top: 1px solid #dfe3da; padding-top: 15px; }
.billing-invoice-summary dl { gap: 10px 16px; }
.billing-invoice-summary dd { color: #273126; font-size: .84rem; }
.billing-offer--trial { padding-top: 13px; }
.billing-offer--trial summary, .billing-management > summary { width: fit-content; cursor: pointer; color: #3d563b; font-size: .84rem; font-weight: 720; }
.billing-offer--trial > div, .billing-management > div { padding-top: 14px; }
.billing-management { border-top: 1px solid #dfe3da; padding-top: 14px; }
.billing-activation, .billing-cancellation { border: 0; border-top: 1px solid #dfe3da; border-radius: 0; background: transparent; padding: 16px 0 0; }
.billing-warning { margin: 18px 22px 0; border: 1px solid #e3d0ad; border-left: 4px solid #a86f23; border-radius: 7px; }
.billing-message { min-height: 0; margin: 0; }
.billing-message:not(:empty) { margin: 0 22px 20px; border-radius: 6px; background: #e7efe9; padding: 10px 12px; }
.billing-plans { gap: 10px; }
.billing-plan { align-content: start; border-color: #d8ddd3; background: #fffefa; padding: 13px; }
.billing-plan--recommended { border-color: #71866c; box-shadow: inset 0 3px #71866c; }
.billing-plan .primary { width: 100%; margin-top: auto; }
.organization-users-panel { display: grid; min-width: 0; gap: 18px; padding: 22px 24px; }
.organization-users-panel .organization-users-card { display: grid; grid-template-columns: 1fr; gap: 14px; border: 0; border-radius: 0; background: transparent; box-shadow: none; padding: 0; }
.organization-users-card { display: grid; grid-template-columns: minmax(190px, .48fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 60px); align-items: start; padding: 22px 24px; }
.organization-users-card--loading { display: block; color: #626d60; }
.organization-users-heading { display: block; }
.organization-users-company { margin: 5px 0 0; color: #41513e; font-size: .84rem; font-weight: 690; }
.organization-users-description { margin-top: 8px; }
.organization-users-body { display: grid; min-width: 0; gap: 13px; }
.organization-users-message { min-height: 0; margin: 0; color: #35634f; }
.organization-users-message:empty { display: none; }
.organization-users-card.is-error, .organization-users-message.is-error { color: #8a3630; }
.organization-seat-count { display: inline-flex; width: fit-content; margin: 0; border-radius: 999px; background: #edf0e8; color: #3f533c; padding: 5px 9px; font-size: .78rem; font-weight: 730; }
.organization-members-heading, .organization-invitations-heading { margin: 7px 0 -2px; color: #273126; font-size: .9rem; }
.organization-member-list { border-top: 1px solid #d9ded5; }
.organization-member-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 13px 2px; transition: background-color 120ms ease; }
.organization-member-row:hover { background: #f8f6ef; }
.organization-member-meta { gap: 5px 7px; }
.organization-user-role, .organization-user-status { border-radius: 999px; background: #edf0e8; color: #4c6046; padding: 3px 7px; font-size: .73rem; font-weight: 690; }
.organization-user-status--suspended { background: #f5ecd9; color: #805e2b; }
.organization-member-menu { position: relative; }
.organization-member-menu > summary { width: fit-content; min-height: 32px; cursor: pointer; color: #3c553a; font-size: .8rem; font-weight: 720; padding: 6px 2px; }
.organization-member-menu[open] { min-width: 220px; border: 1px solid #cfd6cb; border-radius: 7px; background: #fff; box-shadow: 0 8px 20px rgb(35 47 32 / 8%); padding: 10px; }
.organization-member-menu[open] > summary { margin-bottom: 8px; }
.organization-member-actions { display: grid; justify-content: stretch; gap: 6px; }
.organization-member-actions button { width: 100%; min-height: 34px; text-align: left; }
.organization-invite-disclosure { border-top: 1px solid #d9ded5; padding-top: 14px; }
.organization-invite-disclosure > summary { width: fit-content; min-height: 34px; cursor: pointer; color: #3c553a; font-size: .84rem; font-weight: 720; padding: 6px 2px; }
.organization-invite-disclosure[open] > summary { margin-bottom: 13px; }
.organization-invite-disclosure .organization-invite-form { border: 0; padding: 0; }
.organization-users-empty { margin: 4px 0 0; font-size: .84rem; }
.organization-seat-limit, .organization-confirmation { border: 1px solid #e3d0ad; border-left: 4px solid #a86f23; border-radius: 7px; }
.customer-app-page > .site-footer { flex: 0 0 auto; }
.customer-app-page .site-footer__inner { width: min(1160px, calc(100% - 48px)); }

/* Customer account – shared premium shell */
.customer-app-page { background: var(--customer-page); }
.account-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); width: 100%; min-height: calc(100vh - 100px); margin: 0 auto; }
.account-layout[data-customer-shell="unauthenticated"] { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); }
.account-auth-header { display: flex; min-height: 86px; box-sizing: border-box; align-items: center; padding: 24px clamp(24px, 5vw, 72px); }
.account-auth-header[hidden] { display: none; }
.account-auth-header .account-brand img { width: 140px; }
.account-sidebar.account-header { position: sticky; top: 0; align-self: start; width: 100%; min-height: 100vh; box-sizing: border-box; border-right: 1px solid #dde3dc; border-bottom: 0; background: #fff; padding: 0; }
.account-sidebar .account-header__inner { display: flex; width: 100%; min-height: 100vh; box-sizing: border-box; align-items: stretch; flex-direction: column; padding: 32px 16px 22px; }
.account-sidebar .account-brand { display: block; padding: 6px 14px 34px; }
.account-sidebar .account-brand img { width: 140px; }
.account-sidebar .account-nav { display: grid; gap: 5px; }
.account-sidebar .account-nav-link { display: flex; min-height: 46px; align-items: center; gap: 12px; border: 0; border-radius: 11px; color: #4d5e50; font-size: .875rem; font-weight: 660; padding: 0 13px; text-decoration: none; transition: background-color 140ms ease, color 140ms ease; }
.account-sidebar .account-nav-link:hover { background: #f1f6f0; color: #213b29; }
.account-sidebar .account-nav-link[aria-current="page"] { background: #e7f1e5; color: #245438; font-weight: 760; }
.account-nav-link__icon { display: grid; width: 20px; height: 20px; flex: 0 0 20px; place-items: center; color: currentColor; line-height: 1; }
.account-nav-link__icon svg { display: block; width: 20px; height: 20px; }
.account-nav-link__label { min-width: 0; }
.account-nav-label { margin: 24px 13px 7px; color: #849184; font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.account-support-card { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 12px; width: 100%; min-width: 0; box-sizing: border-box; margin-top: auto; border: 1px solid #d9e5d7; border-radius: 12px; background: #f4f8f3; padding: 16px; color: #3c513f; }
.account-support-card__icon { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 8px; background: #e1efdf; color: #326142; }
.account-support-card__icon svg { display: block; width: 16px; height: 16px; }
.account-support-card strong { display: block; color: #2e4834; font-size: .84rem; }
.account-support-card p { max-width: none; margin: 5px 0 13px; color: #647364; font-size: .76rem; line-height: 1.5; overflow-wrap: normal; }
.account-support-card .account-support-action { display: flex; width: 100%; min-height: 34px; box-sizing: border-box; align-items: center; justify-content: center; border-color: #b9cfb9; background: #fff; color: #315e40; font-size: .75rem; font-weight: 740; padding-inline: 10px; text-decoration: none; }
.account-sidebar .account-logout { margin: 16px 13px 0; border: 0; color: #718071; text-align: left; }
.account-page .account-main { width: min(1200px, calc(100% - 96px)); margin: 0 auto; padding: 54px 0 72px; }
.account-page .account-page-intro { max-width: 720px; margin-bottom: 30px; }
.account-page .account-page-intro h1 { color: #1d2c21; font-size: clamp(2rem, 3vw, 2.75rem); letter-spacing: -.045em; }
.account-page .account-page-intro > p:last-child { max-width: 640px; color: #61705e; font-size: 1rem; line-height: 1.58; }
.integrations-page { display: grid; gap: 24px; }
.integration-tabs { display: flex; width: min(100%, 1040px); gap: 30px; overflow-x: auto; border-bottom: 1px solid #dce3da; scrollbar-width: none; }
.integration-tabs::-webkit-scrollbar { display: none; }
.integration-tabs button { position: relative; min-height: 45px; flex: 0 0 auto; border: 0; border-radius: 0; background: transparent; color: #6b7868; font: inherit; font-size: .82rem; font-weight: 720; padding: 0 1px 2px; }
.integration-tabs button:hover { color: #31553a; }
.integration-tabs button[aria-selected="true"] { background: transparent; box-shadow: none; color: #285237; }
.integration-tabs button[aria-selected="true"]::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: #477252; content: ''; }
.integration-tabs button:focus-visible { outline: 2px solid #5d8966; outline-offset: -3px; }
.integration-tab-panel { min-width: 0; }
.integration-product { display: block; padding: 32px; }
.integration-product__main { min-width: 0; }
.integration-product .eyebrow, .integration-guide .eyebrow { margin: 0 0 7px; }
.integration-product h2, .integration-guide h2 { margin: 0; color: #203124; font-size: 1.28rem; letter-spacing: -.025em; }
.integration-product__main > p:not(.eyebrow):not(.integration-inline-note) { max-width: 64ch; margin: 10px 0 0; color: #5d6c5c; font-size: .9rem; line-height: 1.55; }
.integration-release-summary { display: flex; flex-wrap: wrap; gap: 10px 0; margin: 22px 0; }
.integration-release-summary > div { min-width: 140px; border-left: 1px solid #dfe5dc; padding: 0 17px; }
.integration-release-summary > div:first-child { border-left: 0; padding-left: 0; }
.integration-release-summary dt, .integration-admin__metadata dt { color: #71806e; font-size: .71rem; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }
.integration-release-summary dd, .integration-admin__metadata dd { margin: 4px 0 0; color: #263728; font-size: .87rem; font-weight: 700; }
.integration-download-action { display: inline-flex; min-height: 42px; align-items: center; text-decoration: none; }
.integration-info-note { align-self: stretch; border: 1px solid #d8e5d5; border-radius: 11px; background: #f3f8f1; padding: 19px; }
.integration-info-note strong { color: #31553a; font-size: .84rem; }
.integration-info-note p { margin: 7px 0 0; color: #596b58; font-size: .82rem; line-height: 1.55; }
.integration-inline-note { max-width: 680px; margin: 23px 0 0; border-left: 2px solid #9bb59b; background: #f6f9f4; color: #5a6958; font-size: .8rem; line-height: 1.5; padding: 10px 13px; }
.integration-inline-note strong { color: #31553a; }
.integration-guide, .integration-live-flow { margin-top: 30px; border-top: 1px solid #e0e5df; padding-top: 24px; }
.integration-guide__heading { padding: 0 0 16px; }
.integration-guide__heading h3 { margin: 0; color: #263728; font-size: 1.04rem; letter-spacing: -.018em; }
.integration-installation-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.integration-installation-steps--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.integration-installation-steps li { display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 10px; min-width: 0; border-left: 1px solid #e0e5df; padding: 4px 18px 2px; }
.integration-installation-steps li:first-child { border-left: 0; padding-left: 0; }
.integration-installation-steps li > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #e6f0e4; color: #356241; font-size: .74rem; font-weight: 780; }
.integration-installation-steps li > div { min-width: 0; }
.integration-installation-steps strong { color: #2c3d2e; font-size: .82rem; line-height: 1.35; overflow-wrap: anywhere; }
.integration-installation-steps p { margin: 5px 0 0; color: #667563; font-size: .76rem; line-height: 1.45; overflow-wrap: anywhere; }
.integration-admin, .integration-detail { margin-top: 27px; border-top: 1px solid #e0e5df; padding: 0; }
.integration-admin > summary, .integration-detail > summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; color: #30432f; font-size: .86rem; font-weight: 720; padding: 18px 0 0; }
.integration-admin > summary::-webkit-details-marker { display: none; }
.integration-detail > summary::-webkit-details-marker { display: none; }
.integration-admin > summary::after, .integration-detail > summary::after { width: 8px; height: 8px; flex: 0 0 8px; border-right: 1.5px solid #587057; border-bottom: 1.5px solid #587057; content: ''; transform: rotate(45deg) translateY(-3px); transition: transform 140ms ease; }
.integration-admin[open] > summary::after, .integration-detail[open] > summary::after { transform: rotate(225deg) translate(-2px, -1px); }
.integration-admin__summary-copy { display: grid; gap: 4px; min-width: 0; }
.integration-admin__summary-copy strong { color: #30432f; font-size: .88rem; }
.integration-admin__summary-copy small { color: #6a7867; font-size: .78rem; line-height: 1.45; }
.integration-admin__content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 28px; align-items: start; padding: 20px 0 0; }
.integration-admin__copy > p:last-child { max-width: 60ch; margin: 9px 0 0; color: #61705f; font-size: .84rem; line-height: 1.5; }
.integration-admin__metadata { display: grid; gap: 12px; margin: 0; }
.integration-admin__metadata > div { min-width: 0; border-bottom: 1px solid #e0e5df; padding-bottom: 11px; }
.integration-admin__metadata > div:last-child { border-bottom: 0; padding-bottom: 0; }
.integration-admin__metadata dd { overflow-wrap: anywhere; }
.integration-admin__metadata code { color: #334834; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .74rem; font-weight: 600; }
.integration-admin__metadata a { color: #315d3b; font-weight: 730; text-underline-offset: 3px; }
.integration-section { padding: 32px; }
.integration-section__heading { max-width: 720px; }
.integration-section__heading .eyebrow, .integration-live-guide .eyebrow { margin: 0 0 7px; }
.integration-section__heading h2 { margin: 0; color: #203124; font-size: 1.28rem; letter-spacing: -.025em; }
.integration-section__heading > p:last-child { margin: 10px 0 0; color: #5d6c5c; font-size: .9rem; line-height: 1.55; }
.integration-section > .integration-release-summary { margin: 23px 0; }
.integration-connection { margin-top: 27px; border-top: 1px solid #e0e5df; border-bottom: 1px solid #e0e5df; padding: 20px 0; }
.integration-connection h3 { margin: 0 0 13px; color: #263728; font-size: .84rem; letter-spacing: -.01em; }
.integration-connection__row { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 24px; }
.integration-connection__copy { display: grid; min-width: 0; gap: 4px; }
.integration-connection__copy strong { color: #2c3d2e; font-size: .88rem; overflow-wrap: anywhere; }
.integration-connection__copy small { color: #667563; font-size: .78rem; line-height: 1.45; overflow-wrap: anywhere; }
.integration-connection__row .compact-button { flex: 0 0 auto; white-space: nowrap; }
.integration-connection .account-setting-status { margin: 10px 0 0; }
.integration-detail > div { max-width: 750px; padding-top: 14px; }
.integration-detail p { margin: 0; color: #5e6d5c; font-size: .82rem; line-height: 1.55; }
.integration-detail p + p { margin-top: 9px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.account-view { width: min(100%, 1040px); }
.account-view-heading { margin-bottom: 22px; padding-bottom: 17px; border-bottom: 1px solid #dfe5dc; }
.account-view-heading h2 { margin: 0; color: #1d2c21; font-size: 1.4rem; letter-spacing: -.025em; }
.account-view-heading p { margin: 6px 0 0; color: #647260; font-size: .88rem; line-height: 1.5; }
.account-workspace { width: min(100%, 1040px); border: 1px solid var(--customer-border); border-radius: 13px; background: var(--customer-surface); overflow: hidden; }
.account-workspace-section { display: grid; gap: 17px; padding: 24px 26px; }
.account-workspace-section + .account-workspace-section { border-top: 1px solid #e0e5df; }
.account-view > .account-workspace-section { width: min(100%, 1040px); box-sizing: border-box; border: 1px solid var(--customer-border); border-radius: 13px; background: var(--customer-surface); }
.account-workspace-section .account-summary-copy { margin: 0; max-width: 62ch; }
.account-workspace-section .account-card-heading { align-items: baseline; }
.account-workspace-section.account-identity { background: linear-gradient(135deg, #fffefa 0%, #f4f8f1 100%); }
.account-workspace .account-identity-details { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 34px; padding: 0; border: 0; }
.account-workspace .account-identity-details > div { min-width: 0; }
.account-workspace .account-password-summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px 14px; }
.account-workspace .account-password-summary > span { color: #657162; font-size: .78rem; }
.account-workspace .account-password-summary > strong { color: #1f281e; letter-spacing: .08em; }
.account-workspace .account-password-summary .account-security-message { grid-column: 1 / -1; }
.account-workspace .account-identity-details dt { color: #657162; font-size: .72rem; font-weight: 730; letter-spacing: .03em; text-transform: uppercase; }
.account-workspace .account-identity-details dd { margin: 5px 0 0; overflow-wrap: anywhere; color: #1f281e; font-size: .94rem; font-weight: 700; }
.account-workspace .account-verification { margin-top: 6px; }
.account-security-message { min-height: 0; margin: 8px 0 0; color: #526650; font-size: .78rem; line-height: 1.45; }
.billing-subscription-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.billing-subscription-status { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.billing-summary .billing-summary-primary { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.billing-summary .billing-summary-primary > strong { font-size: 1rem; }
.billing-summary .billing-summary-price { display: grid; gap: 4px; }
.billing-summary .billing-summary-price > strong { font-size: 1.02rem; }
.billing-summary .billing-summary-price > span { color: #657162; font-size: .8rem; }
.account-page .account-overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.account-page .account-summary-card { min-height: 154px; padding: 20px; }
.account-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.account-card-heading h3 { margin: 0; color: #203124; font-size: 1rem; letter-spacing: -.015em; }
.account-summary-action { color: #41613e; font-size: .78rem; font-weight: 730; text-decoration: none; }
.account-summary-action:hover, .account-summary-action:focus-visible { color: #1f4b2e; text-decoration: underline; text-underline-offset: 3px; }
.account-summary-copy { margin: auto 0 0; color: #5e6c5c; font-size: .84rem; line-height: 1.5; overflow-wrap: anywhere; }
.account-view .organization-overview-card { display: grid; gap: 0; }
.billing-profile input { width: 100%; min-width: 0; box-sizing: border-box; min-height: 40px; }
.account-welcome-card { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; border: 1px solid #e0e5df; border-radius: 13px; background: #fff; box-shadow: none; padding: 25px 28px; }
.account-welcome-card h2 { margin: 4px 0 7px; color: #203124; font-size: 1.27rem; letter-spacing: -.025em; }
.account-welcome-card p:last-child { max-width: 540px; margin: 0; color: #5c6d5b; font-size: .88rem; line-height: 1.5; }
.account-welcome-card .secondary { white-space: nowrap; }
.account-quick-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 18px 0; }
.account-quick-actions a { display: grid; gap: 5px; min-height: 116px; border: 1px solid #e0e5df; border-radius: 13px; background: #fff; box-shadow: none; color: #273b2c; padding: 17px; text-decoration: none; }
.account-quick-actions a:hover { border-color: #b9cbb8; background: #fbfdfb; box-shadow: 0 4px 14px rgb(35 57 39 / 4%); transform: translateY(-1px); }
.account-quick-actions span { color: #487254; font-size: 1rem; }.account-quick-actions strong { font-size: .86rem; }.account-quick-actions small { color: #687766; font-size: .75rem; line-height: 1.45; }
.account-page .account-summary-card, .account-page .organization-overview-card, .account-page .billing-card { border: 1px solid #e0e5df; border-radius: 13px; background: #fff; box-shadow: none; }
.account-page .account-summary-card { padding: 22px; }.account-page .organization-overview-card { overflow: hidden; }
.account-page .organization-overview-heading, .account-page .billing-card-heading { background: #fff; padding: 24px 26px; }
.account-page .organization-company-panel, .account-page .billing-details { background: #fbfcfa; }
.account-page .billing-card + .billing-card { margin-top: 18px; }
.account-disabled-notice { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 13px; max-width: 610px; border: 1px solid #dce7dc; border-radius: 13px; background: #f7faf6; padding: 21px; }
.account-disabled-notice__icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #e2efe1; color: #356441; font-size: .82rem; font-weight: 800; }
.account-disabled-notice h2 { margin: 1px 0 6px; color: #2a3d2d; font-size: 1rem; letter-spacing: -.015em; }
.account-disabled-notice p { margin: 0; color: #61705f; font-size: .86rem; line-height: 1.5; }
.account-disabled-notice .account-map-link { display: inline-flex; min-height: 36px; align-items: center; margin-top: 15px; text-decoration: none; }
.account-page .billing-trial-journey { grid-template-columns: 1fr auto; align-items: center; border-radius: 12px; background: #f0f6ee; padding: 19px; }
.account-page .billing-trial-journey h4 { margin: 10px 0 5px; color: #213b29; font-size: 1.05rem; }.account-page .billing-trial-journey p { margin: 0; color: #5b6b59; font-size: .82rem; line-height: 1.5; }
.account-page .billing-status--trialing { border-color: #c4d8c3; background: #e4f0e2; color: #356340; }
.account-page .billing-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 10px; }.account-page .billing-summary > div { padding: 14px; }
.account-page .billing-offer { display: grid; gap: 18px; border-top: 1px solid #e2e6de; padding-top: 21px; }.account-page .billing-offer h4 { margin: 3px 0 5px; color: #26372a; font-size: 1rem; }.account-page .billing-offer > div > p:last-of-type { color: #667463; font-size: .82rem; }
.account-page .billing-plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }.account-page .billing-plan { display: flex; min-height: 250px; flex-direction: column; border-radius: 12px; background: #fff; padding: 18px; }.account-page .billing-plan__eyebrow { margin: 0; color: #758670; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.account-page .billing-plan h4 { margin-top: 9px; }.account-page .billing-plan__price { margin: 5px 0 10px; color: #1f3827; font-size: 1.33rem; font-weight: 780; }.account-page .billing-plan__price small { color: #71806e; font-size: .7rem; font-weight: 600; }.account-page .billing-plan > p:not(.billing-plan__price):not(.billing-plan__eyebrow) { color: #647160; font-size: .78rem; line-height: 1.45; }.account-page .billing-plan__included { margin-top: auto; }.account-page .billing-plan .primary { margin-top: 12px; }
.billing-notice-card { display: flex; gap: 11px; align-items: flex-start; border: 1px solid #dce8d7; border-radius: 11px; background: #f3f8f1; padding: 14px; }.billing-notice-card > span { color: #3f754e; font-weight: 800; }.billing-notice-card strong { color: #32513a; font-size: .8rem; }.billing-notice-card p { margin: 4px 0 0; color: #5f6d5c; font-size: .77rem; line-height: 1.45; }
.billing-stepper { display: flex; gap: 0; margin: 0; border-bottom: 1px solid #e1e6de; list-style: none; padding: 20px 24px; }.billing-stepper li { display: flex; min-width: 0; flex: 1; align-items: center; gap: 8px; color: #80907c; font-size: .76rem; }.billing-stepper li:not(:last-child)::after { height: 1px; flex: 1; margin: 0 10px; background: #dce3d9; content: ''; }.billing-stepper span { display: grid; width: 23px; height: 23px; flex: 0 0 23px; place-items: center; border: 1px solid #ccd6c9; border-radius: 50%; background: #fff; font-weight: 750; }.billing-stepper .is-current { color: #285539; }.billing-stepper .is-current span, .billing-stepper .is-complete span { border-color: #4f8059; background: #4f8059; color: #fff; }
.account-page .billing-activation { width: min(100%, 820px); margin: 28px auto 4px; border: 1px solid #d9e5d7; border-radius: 16px; background: #fffefa; box-shadow: 0 16px 36px rgb(35 57 39 / 8%); padding: 0; overflow: hidden; }.account-page .billing-activation::before { display: block; background: #f2f7f0; color: #496446; content: 'STARTA ABONNEMANG'; font-size: .68rem; font-weight: 800; letter-spacing: .12em; padding: 14px 25px; }.account-page .billing-activation .billing-onboarding { background: #fffefa; }.account-page .billing-activation .billing-confirmation-bar { background: #f7faf5; }
.account-page .billing-invoices-section { display: grid; gap: 16px; border-top: 1px solid #e0e6de; padding: 26px; }.account-page .billing-invoices-section .billing-section-intro { padding: 0; }.account-page .billing-invoices-section h4 { margin: 0 0 5px; color: #26372a; font-size: 1rem; }.account-page .billing-invoices-section p { margin: 0; color: #657362; font-size: .82rem; }
.billing-onboarding { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr); gap: 24px; padding: 25px; }.billing-onboarding h4 { margin: 5px 0 8px; color: #223325; font-size: 1.15rem; }.billing-onboarding > div > p:not(.eyebrow) { max-width: 630px; margin: 0 0 20px; color: #647260; font-size: .84rem; line-height: 1.5; }.billing-onboarding-form { gap: 16px; }.billing-onboarding-form label { color: #344433; font-size: .8rem; font-weight: 720; }.billing-onboarding-form label > span { color: #849080; font-weight: 500; }.billing-onboarding-form small { display: block; margin-top: 5px; color: #71806e; font-size: .71rem; font-weight: 500; }.billing-plan-summary { align-self: start; border: 1px solid #dce6d8; border-radius: 13px; background: #f3f8f1; padding: 18px; }.billing-plan-summary p { margin: 0 0 8px; color: #71806e; font-size: .7rem; font-weight: 750; text-transform: uppercase; }.billing-plan-summary strong { display: block; color: #284230; font-size: 1rem; }.billing-plan-summary b { display: block; margin: 5px 0 14px; color: #45694c; font-size: .8rem; }.billing-plan-summary ul { display: grid; gap: 8px; margin: 0; border-top: 1px solid #dbe6d8; padding: 13px 0 0 17px; color: #596b57; font-size: .75rem; line-height: 1.4; }.billing-confirmation-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid #e1e6de; background: #fbfcf9; padding: 17px 25px; }.billing-confirmation-bar > div { display: flex; align-items: center; gap: 13px; }.billing-confirmation-bar small { color: #71806e; font-size: .72rem; }
.billing-confirmation { display: grid; gap: 8px; padding: 25px; }.billing-confirmation h4 { margin: 4px 0 0; }.billing-confirmation > p:not(.eyebrow) { color: #647260; font-size: .84rem; }.billing-confirmation-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; margin: 14px 0; border-top: 1px solid #dfe5dc; }.billing-confirmation-summary div { display: grid; grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr); gap: 12px; border-bottom: 1px solid #e5e9e2; padding: 11px 0; }.billing-confirmation-summary dt { color: #6a7767; font-size: .75rem; }.billing-confirmation-summary dd { margin: 0; overflow-wrap: anywhere; color: #263728; font-size: .82rem; font-weight: 700; }.billing-final-terms { border: 1px solid #d9e4d5; border-radius: 9px; background: #f3f8f1; padding: 13px; line-height: 1.5; }.billing-final-terms a { color: #315d3b; font-weight: 700; }

@media (max-width: 900px) {
  .account-layout { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); align-content: start; }.account-sidebar.account-header { position: static; min-height: auto; border-right: 0; border-bottom: 1px solid #e1e2da; }.account-sidebar .account-header__inner { min-height: 0; padding: 15px 24px; }.account-sidebar .account-brand { padding: 4px 0 14px; }.account-sidebar .account-nav { display: flex; flex-wrap: wrap; }.account-sidebar .account-nav-label, .account-sidebar .account-support-card { display: none; }.account-sidebar .account-nav-link { min-height: 36px; padding: 0 8px; }.account-sidebar .account-logout { margin: 8px 0 0; }
  .organization-overview-grid { grid-template-columns: 1fr; }
  .organization-company-panel { border-right: 0; border-bottom: 1px solid #dfe3da; }
}

@media (max-width: 760px) {
  .account-page .account-main { width: min(100% - 32px, 1100px); padding-top: 34px; }.account-quick-actions { grid-template-columns: 1fr; }.account-welcome-card { align-items: flex-start; flex-direction: column; }
  .account-overview-grid, .account-page .account-overview-grid { grid-template-columns: 1fr; }
  .account-workspace .account-identity-details { grid-template-columns: 1fr; gap: 16px; }
  .account-summary-card { min-height: 0; }
  .account-company-card, .organization-users-card { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .organization-overview-heading, .organization-company-panel, .organization-users-panel { padding: 20px; }
  .organization-users-panel .organization-users-card { padding: 0; }
  .organization-member-row { display: flex; align-items: flex-start; flex-direction: column; }
  .organization-member-menu, .organization-member-menu[open] { width: 100%; box-sizing: border-box; }
  .organization-member-actions { width: 100%; }
  .integration-admin__content { grid-template-columns: 1fr; gap: 20px; }
  .integration-installation-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .integration-installation-steps li:nth-child(odd) { border-left: 0; }
  .integration-installation-steps li:nth-child(n + 3) { margin-top: 18px; padding-top: 18px; border-top: 1px solid #e0e5df; }
  .integration-installation-steps--three { grid-template-columns: 1fr; }
  .integration-installation-steps--three li { margin-top: 0; border-top: 1px solid #e0e5df; border-left: 0; padding: 15px 0; }
  .integration-installation-steps--three li:first-child { border-top: 0; padding-top: 4px; }
}

@media (max-width: 640px) {
  .account-sidebar .account-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px; }
  .account-sidebar .account-nav-link { justify-content: flex-start; text-align: left; }
  .account-sidebar .account-nav-link span:last-child { font-size: .76rem; }.account-page .billing-trial-journey, .billing-onboarding { grid-template-columns: 1fr; }.account-page .billing-plans, .billing-profile fieldset, .billing-confirmation-summary { grid-template-columns: 1fr; }.billing-stepper { overflow-x: auto; padding: 16px; }.billing-stepper li { min-width: 118px; }.billing-stepper li:not(:last-child)::after { margin: 0 5px; }.billing-onboarding, .billing-confirmation { padding: 18px; }.billing-confirmation-bar, .billing-confirmation-bar > div { align-items: stretch; flex-direction: column; }.billing-confirmation-bar .primary, .billing-confirmation-bar .secondary { width: 100%; }
  .account-page-intro { margin-bottom: 22px; }
  .account-summary-card { padding: 20px; }
  .billing-card-heading, .billing-subscription, .billing-details { padding: 18px; }
  .integration-product { padding: 20px; }
  .integration-tabs { gap: 20px; }
  .integration-tabs button { min-width: 0; font-size: .75rem; }
  .integration-section { padding: 20px; }
  .integration-connection__row { align-items: flex-start; flex-direction: column; gap: 13px; }
  .integration-connection__row .compact-button { width: 100%; }
  .integration-admin__content { padding-top: 18px; }
  .integration-installation-steps { grid-template-columns: 1fr; }
  .integration-installation-steps li, .integration-installation-steps li:nth-child(n + 3) { margin-top: 0; border-top: 1px solid #e0e5df; border-left: 0; padding: 15px 0; }
  .integration-installation-steps li:first-child { border-top: 0; padding-top: 4px; }
  .billing-card-heading { flex-direction: column; gap: 10px; }
  .billing-summary { grid-template-columns: 1fr; }
  .billing-warning { margin: 16px 18px 0; }
  .billing-message:not(:empty) { margin: 0 18px 18px; }
  .customer-app-page .site-footer__inner { width: min(100% - 28px, 1160px); }
}

.landing-page {
  --surface-white: #ffffff;
  --surface-warm: #eee9df;
  --surface-warm-soft: #f6f3ec;
  --surface-olive: #2d382b;
  --olive-950: #1f281e;
  --olive-900: #293427;
  --olive-800: #384633;
  --olive-700: #536247;
  --olive-500: #78856a;
  --olive-300: #b8c0aa;
  --olive-150: #e1e5da;
  --text-primary: #1f241f;
  --text-secondary: #525a51;
  --text-on-dark: #f5f3ec;
  --border-subtle: #d7dbd2;
  --border-warm: #d9d2c6;
  --radius-small: 8px;
  --radius-medium: 14px;
  --section-space: clamp(112px, 9.5vw, 152px);
  --public-header-height: 74px;
  --shadow-preview: 0 36px 90px rgba(31, 40, 30, 0.14), 0 5px 18px rgba(31, 40, 30, 0.06);
  min-height: 100vh;
  background: var(--surface-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.landing-container {
  width: min(calc(100% - clamp(48px, 9vw, 144px)), 1280px);
  margin-inline: auto;
}

.contact-page {
  --surface-white: #ffffff;
  --olive-700: #536247;
  --text-primary: #252a28;
  --text-secondary: #5b625f;
  --border-subtle: #d8ddda;
  min-height: 100vh;
  background: var(--surface-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.contact-hero {
  background: #f7f8f8;
  border-bottom: 1px solid var(--border-subtle);
  padding: clamp(52px, 6vw, 80px) 0 clamp(48px, 5vw, 68px);
}

.contact-hero__content { max-width: 760px; }
.contact-hero .landing-kicker { margin-bottom: 14px; }

.contact-hero h1,
.contact-direct h2,
.contact-support h2 {
  margin: 0;
  color: var(--text-primary);
  font-weight: 570;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.contact-hero h1 { font-size: clamp(36px, 4vw, 52px); }

.contact-hero__content > p:last-child {
  max-width: 590px;
  margin: 17px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.contact-direct { padding-block: clamp(66px, 7vw, 100px); }

.contact-direct__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  gap: clamp(48px, 9vw, 144px);
  align-items: start;
}

.contact-direct__copy { max-width: 610px; }
.contact-direct__copy .landing-kicker,
.contact-direct__person .landing-kicker,
.contact-support .landing-kicker { margin: 0 0 16px; }
.contact-direct h2,
.contact-support h2 { font-size: clamp(27px, 2.8vw, 38px); }
.contact-direct__copy > p,
.contact-direct__person > p,
.contact-support p:not(.landing-kicker) {
  margin: 17px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.68;
}

.contact-direct__copy > p + p { margin-top: 12px; }

.contact-direct__person {
  min-width: 0;
  padding-left: clamp(30px, 4vw, 56px);
  border-left: 1px solid var(--border-subtle);
}

.contact-direct__person h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 570;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.contact-direct__person .landing-text-link,
.contact-support .landing-text-link { margin-top: 18px; font-size: 15px; }

.contact-support {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #f7f8f8;
  padding-block: clamp(48px, 5vw, 68px);
}

.contact-support__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
}

.contact-support__layout > div { max-width: 610px; }
.contact-support .landing-text-link { align-self: end; white-space: nowrap; }

.contact-legal-information { background: var(--surface-white); padding: 28px 0 58px; }
.contact-legal-information > .landing-container > div { max-width: 580px; color: var(--text-secondary); font-size: 12px; line-height: 1.65; }
.contact-legal-information h2 { margin: 0 0 9px; color: var(--olive-700); font-size: 10px; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
.contact-legal-information address { font-style: normal; }

@media (max-width: 760px) {
  .contact-hero { padding-block: 42px 48px; }
  .contact-direct { padding-block: 50px 58px; }
  .contact-direct__layout,
  .contact-support__layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-direct__person { padding: 30px 0 0; border-top: 1px solid var(--border-subtle); border-left: 0; }
  .contact-support .landing-text-link { align-self: start; white-space: normal; }
  .contact-legal-information { padding: 30px 0 46px; }
}

.landing-section-shell {
  position: relative;
}

.landing-section-tag {
  display: flex;
  position: absolute;
  z-index: 5;
  top: 2px;
  left: -40px;
  align-items: center;
  gap: 12px;
  color: #7c8777;
  font-size: 9.5px;
  font-weight: 710;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.landing-section-tag > span:first-child {
  color: #7c8777;
  font-family: var(--font-mono);
}

.landing-coordinate-note,
.landing-map-reference {
  display: flex;
  position: absolute;
  z-index: 4;
  gap: 16px;
  color: rgba(41, 52, 39, 0.54);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.landing-coordinate-note--section,
.landing-map-reference {
  top: 3px;
  right: 0;
}

.landing-map-reference > span + span::before {
  margin-right: 16px;
  color: var(--olive-300);
  content: "/";
}

.landing-map-reference--light {
  color: rgba(225, 229, 218, 0.62);
}

.landing-map-reference--light > span + span::before {
  color: rgba(225, 229, 218, 0.26);
}

.landing-nav {
  position: relative;
  z-index: 30;
  min-height: 74px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-white);
}

.public-site-header {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: none;
}

.landing-nav__inner {
  display: grid;
  width: min(calc(100% - 64px), 1280px);
  min-height: 74px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
}

.landing-wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: var(--olive-950);
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.landing-wordmark__logo {
  display: block;
  width: 118px;
  height: auto;
}

.landing-brand-symbol {
  display: block;
  width: 24px;
  height: 24px;
}

.landing-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
}

.landing-nav__links a {
  position: relative;
  color: #515950;
  font-size: 13px;
  font-weight: 590;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: color 150ms ease;
}

.landing-nav__links a:hover {
  color: var(--olive-900);
}

.landing-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--olive-700);
  content: "";
  opacity: 0;
  transform: none;
  transition: opacity 150ms ease;
}

.landing-nav__links a:hover::after,
.landing-nav__links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.public-site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.public-site-header :is(.landing-button, .landing-nav__cta, .public-menu-toggle) { border-radius: 3px; box-shadow: none; transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease; }
.public-site-header :is(.landing-button, .landing-nav__cta):hover,
.public-site-header :is(.landing-button, .landing-nav__cta):hover svg { transform: none; }
.public-site-header__map-link { color: var(--olive-900); font-size: 13px; font-weight: 650; text-decoration: none; }
.public-site-header__map-link:hover { color: var(--olive-700); }
.public-site-header__trial { min-height: 36px; border-color: #cbd2c5; background: #fff; color: #495547; font-size: 11px; font-weight: 620; padding-inline: 12px; white-space: nowrap; }
.public-site-header__trial:hover { border-color: #adb9a6; background: #f3f5f5; color: var(--olive-900); transform: none; }

.public-menu-toggle,
.public-mobile-nav {
  display: none;
}

.public-menu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  background: var(--surface-white);
  color: var(--olive-950);
  padding: 0;
}

.public-menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.landing-nav__cta,
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.landing-nav__cta {
  min-height: 42px;
  justify-self: end;
  border-color: var(--border-subtle);
  border-radius: 3px;
  background: #fff;
  color: var(--olive-900);
  font-size: 12.5px;
  padding-inline: 18px;
}

.landing-nav__cta svg,
.landing-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

.landing-nav__cta:hover {
  border-color: var(--border-subtle);
  background: #f3f5f5;
  color: var(--olive-900);
  transform: none;
}

.landing-button--primary:hover {
  border-color: var(--olive-800);
  background: var(--olive-800);
  transform: translateY(-1px);
}

.landing-nav__cta:hover svg,
.landing-button:hover svg {
  transform: translateX(2px);
}

.landing-hero {
  isolation: isolate;
  position: relative;
  min-height: 690px;
  overflow-x: clip;
  overflow-y: visible;
  background: transparent;
  padding: clamp(92px, 7.5vw, 118px) 0 214px;
}

#landing-hero-grid path {
  fill: none;
  stroke: rgba(83, 98, 71, 0.2);
  stroke-width: 0.75;
}

.landing-hero__content {
  position: relative;
  z-index: 3;
}

.landing-hero__copy {
  max-width: 1030px;
}

.landing-eyebrow,
.landing-kicker {
  margin: 0;
  color: var(--olive-700);
  font-size: 10.5px;
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.landing-eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive-700);
}

.landing-hero h1 {
  max-width: 1010px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(66px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.97;
}

.landing-hero h1 > span {
  display: block;
}

.landing-hero h1 > span:last-child {
  color: var(--olive-800);
}

.landing-hero__body {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.25vw, 18px);
  line-height: 1.62;
}

.landing-hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.landing-button {
  min-height: 52px;
  font-size: 13.5px;
  padding-inline: 23px;
}

.public-site-header__trial { min-height: 44px; }

.landing-button--primary {
  border-color: var(--olive-950);
  background: var(--olive-950);
  color: var(--surface-white);
  box-shadow: 0 8px 24px rgba(31, 40, 30, 0.12);
}

.landing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(83, 98, 71, 0.35);
  color: var(--olive-900);
  font-size: 13px;
  font-weight: 650;
  padding: 8px 0 6px;
  text-decoration: none;
  transition: border-color 150ms ease, color 150ms ease;
}

.landing-text-link:hover {
  border-color: var(--olive-800);
  color: var(--olive-700);
}

.landing-text-link > span {
  font-size: 15px;
}

.landing-coordinate-note--vertical {
  display: flex;
  position: absolute;
  right: 0;
  bottom: -116px;
  gap: 22px;
  color: rgba(41, 52, 39, 0.56);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.landing-showcase {
  position: relative;
  background: transparent;
  padding: 0 0 clamp(112px, 9vw, 146px);
}

.landing-showcase__inner {
  position: relative;
  z-index: 4;
  max-width: 1140px;
  margin-top: -142px;
}

.landing-showcase .landing-section-tag {
  top: 18px;
}

.landing-product-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c6ccc1;
  border-radius: var(--radius-medium);
  background: var(--surface-white);
  box-shadow: var(--shadow-preview);
  pointer-events: none;
  user-select: none;
}

.landing-product-preview__image {
  display: block;
  width: 100%;
  height: auto;
}

.landing-product-preview__browserbar {
  display: grid;
  min-height: 38px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e1e3dd;
  background: #f4f4f0;
  color: #777e75;
  font-size: 8.5px;
  letter-spacing: 0.04em;
  padding-inline: 16px;
}

.landing-product-preview__browserdots {
  display: flex;
  gap: 5px;
}

.landing-product-preview__browserdots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8beb4;
}

.landing-product-preview__browserdots i:nth-child(2) {
  background: #c7cbc3;
}

.landing-product-preview__browserdots i:nth-child(3) {
  background: #d5d8d1;
}

.landing-product-preview__browserlabel {
  justify-self: center;
}

.landing-product-preview__chrome {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-inline: 20px;
}

.landing-product-preview__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--olive-950);
  font-size: 12px;
  font-weight: 670;
  letter-spacing: -0.01em;
}

.landing-product-preview__mark {
  display: block;
  width: 21px;
  height: 21px;
}

.landing-product-preview__divider {
  width: 1px;
  height: 20px;
  margin-inline: 4px;
  background: var(--border-subtle);
}

.landing-product-preview__project {
  color: var(--text-secondary);
  font-weight: 540;
}

.landing-product-preview__workspace {
  display: grid;
  min-height: 420px;
  grid-template-columns: 254px minmax(0, 1fr);
}

.landing-preview-sidebar {
  display: flex;
  position: relative;
  z-index: 2;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--border-subtle);
  background: #fafaf7;
}

.landing-preview-sidebar__heading {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-subtle);
  padding: 21px 20px 19px;
}

.landing-preview-sidebar__eyebrow {
  margin-bottom: 7px;
  color: var(--olive-700);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.landing-preview-sidebar__heading strong {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.landing-preview-sidebar__heading > span:last-child {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 11px;
}

.landing-preview-sidebar__section {
  padding: 17px 10px;
}

.landing-preview-sidebar__section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  padding-inline: 10px;
  text-transform: uppercase;
}

.landing-preview-sidebar__section-title > span:last-child {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-150);
  color: var(--olive-800);
  font-size: 9px;
}

.landing-preview-layer {
  display: grid;
  min-height: 50px;
  grid-template-columns: 30px 1fr 17px;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 6px 8px;
}

.landing-preview-layer + .landing-preview-layer {
  margin-top: 4px;
}

.landing-preview-layer.is-active {
  border-color: #d9ded4;
  background: var(--surface-white);
}

.landing-preview-layer__swatch {
  width: 30px;
  height: 30px;
  border: 1px solid #d5dad1;
  border-radius: 5px;
  background-color: #edf0e9;
}

.landing-preview-layer__swatch.is-photo {
  background-image: repeating-linear-gradient(135deg, #aab59e 0 5px, #dce2d5 5px 10px);
}

.landing-preview-layer__swatch.is-reserve {
  background-image: repeating-linear-gradient(45deg, #dfe5d9 0 4px, #7f8c70 4px 5px);
}

.landing-preview-layer__swatch.is-property {
  background:
    linear-gradient(90deg, transparent 47%, #8c9980 47% 52%, transparent 52%),
    linear-gradient(transparent 47%, #8c9980 47% 52%, transparent 52%),
    #e9ece5;
}

.landing-preview-layer > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.landing-preview-layer strong {
  overflow: hidden;
  color: var(--text-primary);
  font-size: 11.5px;
  font-weight: 640;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-preview-layer small {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 9.5px;
}

.landing-preview-layer__check {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 4px;
  background: var(--olive-800);
  color: var(--surface-white);
}

.landing-preview-layer__check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.landing-preview-sidebar__summary {
  display: flex;
  margin: auto 14px 14px;
  flex-direction: column;
  border: 1px solid #d0d6cb;
  border-radius: 8px;
  background: var(--olive-150);
  padding: 14px 15px;
}

.landing-preview-sidebar__summary > span {
  color: var(--olive-700);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-preview-sidebar__summary strong {
  margin-top: 5px;
  color: var(--olive-950);
  font-size: 12px;
  font-weight: 660;
}

.landing-preview-sidebar__summary small {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 9.5px;
}

.landing-preview-map {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e2e6dc;
}

.landing-coordinate-note--map {
  top: 18px;
  left: 18px;
  width: max-content;
  border: 1px solid rgba(41, 52, 39, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(41, 52, 39, 0.68);
  font-size: 7.5px;
  padding: 6px 8px;
}

.landing-preview-map__drawing {
  width: 100%;
  height: 100%;
}

.landing-preview-map__north {
  display: flex;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 48px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(41, 52, 39, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--olive-950);
  font-size: 9px;
  font-weight: 750;
  box-shadow: 0 5px 16px rgba(31, 40, 30, 0.08);
}

.landing-preview-map__north i {
  width: 0;
  height: 0;
  margin-top: 5px;
  border-right: 5px solid transparent;
  border-bottom: 13px solid var(--olive-800);
  border-left: 5px solid transparent;
}

.landing-preview-map__scale {
  display: flex;
  position: absolute;
  right: 18px;
  bottom: 17px;
  align-items: flex-end;
  gap: 8px;
  color: var(--olive-950);
  font-size: 9px;
  font-weight: 630;
}

.landing-preview-map__scale > span {
  width: 68px;
  height: 6px;
  border-right: 1px solid var(--olive-950);
  border-bottom: 2px solid var(--olive-950);
  border-left: 1px solid var(--olive-950);
}

.landing-preview-export-card {
  display: grid;
  position: absolute;
  right: 18px;
  bottom: 48px;
  width: 244px;
  min-height: 68px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(41, 52, 39, 0.16);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(31, 40, 30, 0.12);
  padding: 11px 13px;
}

.landing-preview-export-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: var(--olive-150);
  color: var(--olive-800);
}

.landing-preview-export-card__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.landing-preview-export-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.landing-preview-export-card small {
  color: var(--olive-700);
  font-size: 9px;
  font-weight: 650;
}

.landing-preview-export-card strong {
  margin-top: 3px;
  color: var(--text-primary);
  font-size: 11.5px;
  font-weight: 660;
}

.landing-preview-export-card__format {
  border: 1px solid var(--olive-300);
  border-radius: 999px;
  color: var(--olive-700);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  padding: 5px 7px;
}

.landing-section {
  scroll-margin-top: calc(var(--public-header-height) + 24px);
  padding-block: var(--section-space);
}

.landing-final-cta {
  scroll-margin-top: calc(var(--public-header-height) + 24px);
}

.landing-workflow,
.landing-sources {
  background: var(--surface-white);
}

.landing-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 390px);
  align-items: end;
  justify-content: space-between;
  gap: 64px;
}

.landing-section-heading h2,
.landing-profiles h2,
.landing-sources h2,
.landing-faq h2,
.landing-final-cta h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(44px, 4.3vw, 62px);
  font-weight: 530;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.landing-profiles h2,
.landing-final-cta h2 {
  margin-top: 19px;
}

.landing-section-heading > p {
  margin: 0 0 4px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.landing-workflow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 70px 0 0;
  list-style: none;
  padding: 0;
}

.landing-workflow__action {
  margin-top: 28px;
}

.landing-workflow__step {
  display: grid;
  position: relative;
  min-height: 390px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid #dfe2da;
  border-radius: var(--radius-medium);
  background: #f8f8f4;
  padding: 24px 23px 28px;
}

.landing-workflow__step:nth-child(2) {
  background: #f2f4ef;
}

.landing-workflow__step:nth-child(3) {
  background: #f6f2e9;
}

.landing-workflow__step:nth-child(4) {
  background: #edf1eb;
}

.landing-workflow__number {
  position: relative;
  z-index: 2;
  color: var(--olive-700);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.landing-workflow__visual {
  display: block;
  width: calc(100% + 46px);
  height: 166px;
  align-self: center;
  margin-inline: -23px;
  color: var(--olive-800);
}

.landing-workflow__visual svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.landing-workflow__visual .is-grid {
  stroke: var(--olive-500);
  stroke-opacity: 0.14;
}

.landing-workflow__visual .is-road {
  stroke: #b4a68f;
  stroke-width: 7;
}

.landing-workflow__visual .is-water {
  stroke: #8eaaa5;
  stroke-width: 13;
  stroke-opacity: 0.42;
}

.landing-workflow__visual .is-area {
  fill: rgba(83, 98, 71, 0.24);
  stroke: var(--olive-800);
  stroke-width: 2.2;
}

.landing-workflow__visual--area circle {
  fill: var(--surface-white);
  stroke: var(--olive-800);
}

.landing-workflow__visual .is-layer {
  fill: rgba(255, 255, 255, 0.72);
  stroke-width: 1.5;
}

.landing-workflow__visual .is-layer--back {
  fill: rgba(184, 192, 170, 0.26);
  stroke: var(--olive-500);
}

.landing-workflow__visual .is-layer--middle {
  fill: rgba(225, 229, 218, 0.88);
}

.landing-workflow__visual .is-layer--front {
  fill: var(--surface-white);
  stroke: var(--olive-800);
}

.landing-workflow__visual .is-route {
  stroke: var(--olive-500);
  stroke-dasharray: 3 6;
}

.landing-workflow__visual .is-file {
  fill: rgba(255, 255, 255, 0.78);
  stroke: var(--olive-700);
  stroke-width: 1.5;
}

.landing-workflow__visual .is-file--two {
  fill: #f8f5ee;
  stroke: var(--olive-900);
}

.landing-workflow__visual .is-file-fold,
.landing-workflow__visual .is-zip,
.landing-workflow__visual .is-arrow {
  stroke: var(--olive-800);
  stroke-width: 1.5;
}

.landing-workflow__visual .is-screen {
  fill: rgba(255, 255, 255, 0.7);
  stroke: var(--olive-800);
  stroke-width: 1.5;
}

.landing-workflow__visual .is-screen-line,
.landing-workflow__visual .is-screen-list,
.landing-workflow__visual .is-stand {
  stroke: var(--olive-500);
}

.landing-workflow__visual .is-screen-map {
  fill: rgba(83, 98, 71, 0.22);
  stroke: var(--olive-800);
}

.landing-workflow h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 19px;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.landing-workflow__steps p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.62;
}

.landing-data-catalog {
  position: relative;
  overflow: hidden;
  background: var(--surface-olive);
  color: var(--text-on-dark);
}

.landing-data-catalog .landing-container {
  position: relative;
  z-index: 2;
}

.landing-data-catalog .landing-section-tag,
.landing-data-catalog .landing-section-tag > span:first-child { color: #c8d0c1; }

.landing-section-heading--light h2 {
  color: var(--text-on-dark);
}

.landing-section-heading--light > p {
  color: #c7cec1;
}

.landing-data-catalog__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 72px;
}

.landing-data-group {
  display: grid;
  position: relative;
  min-height: 282px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto auto;
  grid-column: span 6;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-medium);
  background: #344132;
  padding: 26px 28px 29px;
}

.landing-data-group::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 37, 27, 0.04) 4%, rgba(28, 37, 27, 0.14) 46%, rgba(25, 33, 24, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.landing-data-group--1,
.landing-data-group--4,
.landing-data-group--5 {
  grid-column: span 7;
}

.landing-data-group--2,
.landing-data-group--3,
.landing-data-group--6 {
  grid-column: span 5;
}

.landing-data-group--2,
.landing-data-group--5 {
  background: #394636;
}

.landing-data-group--3,
.landing-data-group--6 {
  background: #303c2f;
}

.landing-data-group__geometry {
  position: relative;
  z-index: 3;
  color: #aebaa3;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-data-group__preview {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.landing-data-group__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.landing-data-visual__grid {
  fill: none;
  stroke: rgba(225, 229, 218, 0.09);
  stroke-width: 1;
}

.landing-data-visual__water {
  fill: rgba(111, 155, 154, 0.42);
}

.landing-data-visual__area {
  stroke-width: 1.5;
}

.landing-data-visual__area--nature {
  fill: rgba(150, 177, 128, 0.32);
  stroke: #b8c9a7;
}

.landing-data-group__preview--nature pattern line {
  stroke: rgba(202, 218, 190, 0.52);
  stroke-width: 2;
}

.landing-data-visual__hatched {
  fill: url(#landing-nature-hatch);
  stroke: rgba(197, 213, 183, 0.72);
  stroke-width: 1.2;
}

.landing-data-visual__boundary {
  fill: none;
  stroke: rgba(226, 234, 219, 0.66);
  stroke-dasharray: 5 5;
  stroke-width: 1;
}

.landing-data-visual__points circle {
  fill: #e3eadb;
  stroke: #536247;
  stroke-width: 1.2;
}

.landing-data-group__preview--heritage {
  background: linear-gradient(150deg, rgba(110, 94, 68, 0.28), transparent 64%);
}

.landing-data-visual__context-line {
  fill: none;
  stroke: rgba(222, 211, 188, 0.32);
  stroke-dasharray: 6 6;
  stroke-width: 1.3;
}

.landing-data-visual__area--heritage {
  fill: rgba(163, 130, 88, 0.2);
  stroke: rgba(223, 204, 170, 0.68);
}

.landing-data-visual__heritage-points circle:first-child {
  fill: rgba(48, 59, 45, 0.9);
  stroke: #d9c6a2;
  stroke-width: 1.4;
}

.landing-data-visual__heritage-points circle:last-child {
  fill: #e4d1aa;
}

.landing-data-visual__buffer {
  fill: none;
  stroke: rgba(228, 211, 179, 0.22);
  stroke-width: 1;
}

.landing-data-group__preview--property {
  background: linear-gradient(145deg, rgba(197, 190, 167, 0.08), transparent 66%);
}

.landing-data-visual__parcel {
  fill: none;
  stroke: rgba(225, 229, 218, 0.52);
  stroke-width: 1.25;
}

.landing-data-visual__selected-parcel {
  fill: rgba(184, 192, 170, 0.24);
  stroke: #d9dfd0;
  stroke-width: 1.7;
}

.landing-data-visual__survey-points circle {
  fill: #f2efe7;
  stroke: #536247;
  stroke-width: 1;
}

.landing-data-visual__parcel-label {
  fill: rgba(231, 235, 225, 0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.landing-data-visual__road-casing,
.landing-data-visual__road,
.landing-data-visual__utility,
.landing-data-visual__stations path {
  fill: none;
}

.landing-data-visual__road-casing {
  stroke: rgba(25, 33, 24, 0.8);
  stroke-width: 10;
}

.landing-data-visual__road {
  stroke: rgba(224, 218, 201, 0.78);
  stroke-width: 5;
}

.landing-data-visual__utility {
  stroke: #b7c7ad;
  stroke-dasharray: 7 5;
  stroke-width: 1.5;
}

.landing-data-visual__utility-nodes rect {
  fill: #3b4938;
  stroke: #c6d1bd;
  stroke-width: 1.2;
}

.landing-data-visual__stations circle {
  fill: rgba(43, 55, 41, 0.95);
  stroke: #dce4d5;
  stroke-width: 1.3;
}

.landing-data-visual__stations path {
  stroke: #dce4d5;
  stroke-width: 1.4;
}

.landing-data-visual__raster-cell--field {
  fill: #7b8064;
}

.landing-data-visual__raster-cell--forest {
  fill: #52644e;
}

.landing-data-visual__raster-cell--water {
  fill: #66807c;
}

.landing-data-visual__raster-cell--meadow {
  fill: #8b8d70;
}

.landing-data-visual__raster-cell--forest-dark {
  fill: #465945;
}

.landing-data-visual__raster-cell--field-light {
  fill: #999174;
}

.landing-data-visual__raster-grid {
  fill: none;
  stroke: rgba(241, 238, 226, 0.16);
  stroke-width: 1;
}

.landing-data-visual__orthophoto-road-casing,
.landing-data-visual__orthophoto-road {
  fill: none;
}

.landing-data-visual__orthophoto-road-casing {
  stroke: rgba(39, 47, 36, 0.7);
  stroke-width: 9;
}

.landing-data-visual__orthophoto-road {
  stroke: rgba(235, 226, 205, 0.78);
  stroke-width: 4.5;
}

.landing-data-visual__buildings rect {
  fill: #d7cbb4;
  stroke: rgba(45, 55, 42, 0.8);
  stroke-width: 1;
}

.landing-data-visual__geology {
  fill: rgba(143, 117, 92, 0.22);
  stroke: rgba(201, 181, 153, 0.5);
  stroke-dasharray: 8 5;
  stroke-width: 1;
}

.landing-data-visual__contour,
.landing-data-visual__contour-index,
.landing-data-visual__stream,
.landing-data-visual__shore {
  fill: none;
}

.landing-data-visual__contour {
  stroke: rgba(218, 211, 190, 0.46);
  stroke-width: 1;
}

.landing-data-visual__contour-index {
  stroke: rgba(226, 220, 201, 0.72);
  stroke-width: 1.8;
}

.landing-data-visual__stream {
  stroke: #86aaa7;
  stroke-width: 4;
}

.landing-data-visual__shore {
  stroke: rgba(184, 211, 207, 0.45);
  stroke-width: 1.2;
}

.landing-data-group h3 {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  margin: 0;
  align-self: end;
  color: var(--text-on-dark);
  font-size: 22px;
  font-weight: 570;
  letter-spacing: -0.025em;
}

.landing-data-group p {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  margin: 12px 0 0;
  max-width: 480px;
  color: #c5cdbf;
  font-size: 12.5px;
  line-height: 1.55;
}

.landing-profiles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(184, 192, 170, 0.28), transparent 27%),
    var(--surface-warm);
}

.landing-profiles::before {
  position: absolute;
  top: 12%;
  right: -8%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(83, 98, 71, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(83, 98, 71, 0.035), 0 0 0 76px rgba(83, 98, 71, 0.025);
  pointer-events: none;
}

.landing-profiles__layout {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(72px, 9vw, 132px);
}

.landing-status-chip {
  display: inline-flex;
  margin-top: 0;
  border: 1px solid var(--olive-300);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--olive-800);
  font-size: 9.5px;
  font-weight: 720;
  letter-spacing: 0.11em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.landing-profiles h2 {
  max-width: 570px;
}

.landing-profiles__copy > p {
  max-width: 570px;
  margin: 29px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.68;
}

.landing-profiles__copy ul {
  display: grid;
  gap: 14px;
  margin: 31px 0 0;
  list-style: none;
  padding: 0;
}

.landing-profiles__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text-primary);
  font-size: 13.5px;
  font-weight: 570;
}

.landing-profiles__copy li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--olive-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.landing-integrations {
  background: var(--surface-warm-soft);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.landing-integrations__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(56px, 9vw, 132px);
}

.landing-integrations__copy h2 {
  max-width: 590px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(40px, 4.25vw, 60px);
  font-weight: 540;
  letter-spacing: -.054em;
  line-height: 1.03;
}

.landing-integrations__copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.68;
}

.landing-integrations__copy .landing-text-link { margin-top: 31px; }

.landing-integrations__tools {
  display: grid;
  border-top: 1px solid var(--border-warm);
}

.landing-integrations__tool {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-warm);
  color: var(--text-primary);
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -.035em;
  padding: 17px 0;
}

.landing-integrations__tool img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  object-fit: contain;
}

.landing-profile-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-medium);
  background: var(--surface-white);
  box-shadow: 0 24px 64px rgba(31, 40, 30, 0.11);
}

.landing-profile-stage {
  position: relative;
  padding: 20px 18px 18px 0;
}

.landing-profile-stage__sheet {
  position: absolute;
  inset: 0 0 0 24px;
  border: 1px solid rgba(83, 98, 71, 0.15);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(2.5deg);
}

.landing-profile-preview__top,
.landing-profile-preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-profile-preview__top {
  min-height: 47px;
  border-bottom: 1px solid var(--border-subtle);
  background: #f7f7f3;
  color: var(--text-secondary);
  font-size: 9px;
  font-weight: 670;
  letter-spacing: 0.08em;
  padding-inline: 20px;
  text-transform: uppercase;
}

.landing-profile-preview__top > span:first-child {
  color: var(--olive-700);
}

.landing-profile-preview__top > span:last-child {
  border: 1px solid var(--olive-300);
  border-radius: 999px;
  color: var(--olive-800);
  padding: 5px 8px;
}

.landing-profile-preview__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 29px 24px;
}

.landing-profile-preview__heading > div {
  display: flex;
  flex-direction: column;
}

.landing-profile-preview__heading small {
  color: var(--text-secondary);
  font-size: 9.5px;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-profile-preview__heading strong {
  margin-top: 7px;
  color: var(--text-primary);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.landing-profile-preview__heading > span {
  border-radius: 999px;
  background: var(--olive-150);
  color: var(--olive-800);
  font-size: 10px;
  font-weight: 680;
  padding: 7px 11px;
}

.landing-profile-preview__rows {
  padding: 0 18px 20px;
}

.landing-profile-preview__rows > div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--border-subtle);
  padding-inline: 10px;
}

.landing-profile-preview__rows > div > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
}

.landing-profile-preview__rows > div > span:first-child.is-nature {
  background: #e3e8dd;
  color: #536247;
}

.landing-profile-preview__rows > div > span:first-child.is-heritage {
  background: #ece7dd;
  color: #766c59;
}

.landing-profile-preview__rows > div > span:first-child.is-terrain {
  background: #dfe8e4;
  color: #4f6f68;
}

.landing-profile-preview__rows svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.landing-profile-preview__rows > div > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.landing-profile-preview__rows strong {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 650;
}

.landing-profile-preview__rows small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-profile-preview__rows em {
  color: var(--olive-700);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
}

.landing-profile-preview__footer {
  min-height: 58px;
  border-top: 1px solid var(--border-subtle);
  background: #fafaf7;
  color: var(--text-secondary);
  font-size: 10px;
  padding-inline: 28px;
}

.landing-profile-preview__footer > span:last-child {
  color: var(--olive-800);
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-sources__intro {
  max-width: 760px;
}

.landing-sources {
  padding-block: clamp(86px, 6.5vw, 104px);
}

.landing-sources__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.65;
}

.landing-provider-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 0;
  list-style: none;
  padding: 0;
}

.landing-provider {
  display: grid;
  min-width: 0;
  min-height: 96px;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-medium);
  background: var(--surface-white);
  padding: 16px 14px;
}

.landing-provider__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 160px);
  max-height: 58px;
  object-fit: contain;
}

.landing-sources__note {
  max-width: 860px;
  margin: 14px 0 0;
  color: #6a7168;
  font-size: 10.5px;
  line-height: 1.55;
}

.landing-editorial-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 52px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 27px;
}

.landing-editorial-bridge__title {
  max-width: 680px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 570;
  letter-spacing: -0.022em;
  line-height: 1.42;
}

.landing-editorial-bridge__link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--olive-800);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  transition: color 150ms ease;
}

.landing-editorial-bridge__link:hover {
  color: var(--olive-700);
}

.landing-editorial-bridge__link > span {
  font-size: 15px;
}

.landing-editorial-bridge--dark {
  border-color: rgba(225, 229, 218, 0.25);
}

.landing-editorial-bridge--dark .landing-editorial-bridge__title,
.landing-editorial-bridge--dark .landing-editorial-bridge__link {
  color: var(--text-on-dark);
}

.landing-editorial-bridge--dark .landing-editorial-bridge__link:hover {
  color: #cbd7c2;
}

.landing-faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(184, 192, 170, 0.24), transparent 26%),
    linear-gradient(145deg, var(--surface-warm) 0%, #f5f1e9 100%);
}

.landing-faq::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(83, 98, 71, 0.08);
  border-radius: 44% 56% 54% 46% / 48% 41% 59% 52%;
  content: "";
  box-shadow: 0 0 0 40px rgba(83, 98, 71, 0.025), 0 0 0 80px rgba(83, 98, 71, 0.018);
  pointer-events: none;
}

.landing-faq__layout {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: clamp(72px, 10vw, 148px);
}

.landing-faq__intro {
  position: sticky;
  top: 42px;
}

.landing-faq__intro > p:last-child {
  max-width: 420px;
  margin: 27px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.landing-faq__list {
  overflow: hidden;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(31, 40, 30, 0.055);
}

.landing-faq__content {
  grid-column: 2;
  min-width: 0;
}

.landing-faq__item {
  padding-inline: 25px;
}

.landing-faq__item + .landing-faq__item {
  border-top: 1px solid #d4d3ca;
}

.landing-faq__item summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 630;
  letter-spacing: -0.015em;
  list-style: none;
}

.landing-faq__item summary::-webkit-details-marker {
  display: none;
}

.landing-faq__item summary > [aria-hidden="true"] {
  display: grid;
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--olive-300);
  border-radius: 50%;
}

.landing-faq__item summary > [aria-hidden="true"]::before,
.landing-faq__item summary > [aria-hidden="true"]::after {
  position: absolute;
  width: 9px;
  height: 1px;
  background: var(--olive-800);
  content: "";
  transition: transform 150ms ease;
}

.landing-faq__item summary > [aria-hidden="true"]::after {
  transform: rotate(90deg);
}

.landing-faq__item[open] summary > [aria-hidden="true"]::after {
  transform: rotate(0);
}

.landing-faq__item p {
  max-width: 680px;
  margin: -7px 0 28px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.67;
  padding-right: 48px;
}

/* Public help page */
.help-page {
  --help-border: #d8ddda;
  background: #fff;
}

.help-page__hero {
  padding: clamp(54px, 6vw, 82px) 0 clamp(52px, 6vw, 76px);
  border-bottom: 1px solid var(--help-border);
  background: #f7f8f8;
}

.help-page__hero h1,
.help-page__support h2 {
  max-width: 720px;
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 570;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.help-page__hero .landing-kicker { margin-bottom: 15px; }

.help-page__hero > .landing-container > p:last-child {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.help-page__content {
  padding-top: clamp(56px, 7vw, 94px);
  padding-bottom: clamp(56px, 7vw, 94px);
}

.help-page__group {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(48px, 8vw, 116px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--help-border);
}

.help-page__group:first-child {
  padding-top: 0;
  border-top: 0;
}

.help-page__group-intro h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 570;
  letter-spacing: -.03em;
  line-height: 1.16;
}

.help-page__group-intro > p {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.help-page__links {
  display: grid;
  gap: 10px;
}

.help-page__links .landing-text-link {
  width: fit-content;
}

.help-page__questions {
  border: 1px solid var(--help-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 6px 30px;
}

.help-page__questions .landing-faq__item { padding-inline: 0; }
.help-page__questions .landing-faq__item + .landing-faq__item { border-color: var(--help-border); }
.help-page__questions .landing-faq__item summary { font-size: 16px; font-weight: 630; letter-spacing: 0; }
.help-page__questions .landing-faq__item summary > [aria-hidden="true"] { border: 0; border-radius: 0; }
.help-page__questions .landing-faq__item p { padding-bottom: 22px; }

.help-page__support {
  padding: clamp(56px, 7vw, 90px) 0;
  border-top: 1px solid var(--help-border);
  background: #f7f8f8;
}

.help-page__support h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.help-page__support p {
  margin: 19px 0 20px;
  color: var(--text-secondary);
  font-size: 16px;
}

.landing-faq__more-link {
  width: fit-content;
  margin: 24px 0 0 auto;
}

@media (max-width: 840px) {
  .help-page__group {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .landing-faq__content {
    grid-column: auto;
  }

  .help-page__group-intro > p {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .help-page__hero {
    padding: 48px 0 58px;
  }

  .help-page__hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .help-page__content {
    padding-top: 58px;
  }

  .help-page__group {
    gap: 28px;
    padding: 52px 0;
  }

  .help-page__questions .landing-faq__item {
    padding-inline: 0;
  }

  .help-page__questions { padding-inline: 20px; }

  .landing-faq__more-link {
    margin-right: auto;
  }
}

.landing-pricing {
  background: var(--surface-warm-soft);
  padding: clamp(88px, 9vw, 132px) 0;
}

.landing-pricing__layout { display: grid; gap: 42px; }
.landing-pricing__intro { display: grid; max-width: 720px; gap: 14px; }
.landing-pricing__intro h2 { margin: 0; color: var(--text-primary); font-size: clamp(35px, 4vw, 56px); letter-spacing: -0.045em; }
.landing-pricing__intro p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.landing-pricing__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.landing-pricing__card { display: flex; min-height: 390px; flex-direction: column; padding: 27px; border: 1px solid #d8d6cd; background: var(--surface-white); }
.landing-pricing__card--accent { border-color: var(--olive-900); background: var(--olive-900); color: #d9dfd2; }
.landing-pricing__label { margin: 0 0 24px; color: var(--olive-700); font-size: 11px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.landing-pricing__card--accent .landing-pricing__label { color: #bdc9b2; }
.landing-pricing__card h3 { margin: 0; color: var(--text-primary); font-size: 25px; letter-spacing: -.03em; }
.landing-pricing__card--accent h3 { color: var(--surface-white); }
.landing-pricing__price small { color: inherit; font-size: 14px; font-weight: 500; }
.landing-pricing__card > p:not(.landing-pricing__label):not(.landing-pricing__price) { margin: 8px 0 0; color: var(--text-secondary); }
.landing-pricing__card--accent > p:not(.landing-pricing__label):not(.landing-pricing__price) { color: #c6cec0; }
.landing-pricing__card ul { display: grid; gap: 10px; margin: 26px 0 auto; padding: 0; list-style: none; }
.landing-pricing__card li { display: flex; gap: 8px; color: var(--text-secondary); font-size: 14px; }
.landing-pricing__card li::before { color: var(--olive-700); content: '—'; }
.landing-pricing__card--accent li { color: #d9dfd2; }
.landing-pricing__card--accent li::before { color: #bdc9b2; }
.landing-button--outline { margin-top: 28px; border-color: var(--olive-800); background: transparent; color: var(--olive-950); }
.landing-button--outline:hover { background: var(--olive-800); color: var(--surface-white); transform: translateY(-1px); }
.landing-pricing__card .landing-button--light { margin-top: 28px; }
.landing-pricing__note { margin: -13px 0 0; color: var(--text-secondary); font-size: 13px; }

.landing-final-cta {
  position: relative;
  overflow: hidden;
  background: var(--olive-950);
  color: var(--text-on-dark);
  padding: clamp(112px, 9vw, 146px) 0 0;
}

.landing-final-cta__content {
  position: relative;
  z-index: 1;
}

.landing-final-cta .landing-kicker {
  color: #aebb9f;
}

.landing-final-cta h2 {
  max-width: 880px;
  color: var(--text-on-dark);
  font-size: clamp(52px, 5.5vw, 78px);
}

.landing-final-cta__content > p:not(.landing-kicker) {
  max-width: 620px;
  margin: 29px 0 0;
  color: #c6cec0;
  font-size: 16px;
  line-height: 1.65;
}

.landing-button--light {
  margin-top: 35px;
  border-color: var(--surface-white);
  background: var(--surface-white);
  color: var(--olive-950);
}

.landing-button--light:hover {
  border-color: var(--olive-150);
  background: var(--olive-150);
  transform: translateY(-1px);
}

.landing-final-cta__footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(88px, 8vw, 124px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: #9fab98;
  font-size: 10.5px;
}

.landing-wordmark--light {
  color: var(--surface-white);
}

.landing-wordmark--light .landing-brand-symbol {
  color: #c7d0bf;
}

.landing-page [data-public-copy-multiline="true"] {
  white-space: pre-line;
}

[data-public-copy-loading="true"] [data-public-copy-key] {
  visibility: hidden;
}

.landing-page[data-public-copy-editing="true"] [data-public-copy-key] {
  border-radius: 4px;
  cursor: text;
  outline: 1px dashed transparent;
  outline-offset: 3px;
  transition: background-color 140ms ease, box-shadow 140ms ease, outline-color 140ms ease;
}

.landing-page[data-public-copy-editing="true"] [data-public-copy-key]:hover,
.landing-page[data-public-copy-editing="true"] [data-public-copy-key]:focus-visible,
.landing-page[data-public-copy-editing="true"] [data-public-copy-active] {
  background: #edf1e8;
  box-shadow: 0 0 0 4px rgba(120, 133, 106, 0.18);
  outline-color: var(--olive-700);
}

.landing-page[data-public-copy-editing="true"]
  :is(.landing-data-catalog, .landing-final-cta, .about-page__audience)
  [data-public-copy-key]:is(:hover, :focus-visible, [data-public-copy-active]) {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.09);
  outline-color: #dbe2d4;
}

.public-copy-editor {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2000;
  display: grid;
  width: min(430px, calc(100vw - 36px));
  box-sizing: border-box;
  gap: 12px;
  border: 1px solid var(--olive-300);
  border-radius: 12px;
  background: #fffefa;
  box-shadow: 0 18px 55px rgba(31, 40, 30, 0.22);
  color: var(--text-primary);
  padding: 14px;
}

.public-copy-editor button {
  min-height: 42px;
  border: 1px solid var(--olive-300);
  border-radius: 8px;
  background: var(--surface-white);
  color: var(--olive-950);
  cursor: pointer;
  font: 650 13px/1.2 var(--font-sans);
  padding: 10px 13px;
}

.public-copy-editor button:hover:not(:disabled) {
  border-color: var(--olive-700);
  background: var(--surface-warm-soft);
}

.public-copy-editor button:focus-visible {
  outline: 2px solid var(--olive-700);
  outline-offset: 2px;
}

.public-copy-editor button:disabled {
  cursor: not-allowed;
}

.public-copy-editor button.public-copy-editor__toggle,
.public-copy-editor__buttons [data-public-copy-save] {
  border-color: var(--olive-950);
  background: var(--olive-950);
  color: var(--surface-white);
}

.public-copy-editor__actions {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.public-copy-editor__actions[hidden],
.public-copy-editor__buttons [hidden] {
  display: none;
}

.public-copy-editor__field {
  overflow: hidden;
  color: var(--text-secondary);
  font: 600 12px/1.35 var(--font-mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-copy-editor__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.public-copy-editor__status {
  min-height: 18px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.45;
}

.public-copy-editor__status[data-state="error"] {
  color: #8c2f25;
}

.public-copy-editor__status[data-state="saved"] {
  color: #315d38;
}

.landing-page :where(a, summary):focus-visible {
  outline: 2px solid var(--olive-700);
  outline-offset: 4px;
  box-shadow: none;
}

.landing-final-cta :where(a, summary):focus-visible,
.landing-data-catalog :where(a, summary):focus-visible {
  outline-color: var(--surface-white);
}

@media (max-width: 1100px) {
  .landing-container {
    width: min(calc(100% - 80px), 1280px);
  }

  .landing-nav__links {
    gap: 22px;
  }

  .landing-section-tag {
    left: -30px;
  }

  .landing-hero h1 {
    font-size: clamp(62px, 7vw, 78px);
  }

  .landing-showcase__inner {
    max-width: calc(100% - 80px);
  }

  .landing-product-preview__workspace {
    min-height: 400px;
    grid-template-columns: 238px minmax(0, 1fr);
  }

  .landing-section-heading--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 48px;
  }

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

  .landing-workflow__step {
    min-height: 360px;
  }

  .landing-data-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-data-group,
  .landing-data-group--1,
  .landing-data-group--2,
  .landing-data-group--3,
  .landing-data-group--4,
  .landing-data-group--5,
  .landing-data-group--6 {
    grid-column: auto;
  }

  .landing-profiles__layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    gap: 64px;
  }

  .landing-provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-faq__layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(460px, 1.25fr);
    gap: 72px;
  }
}

@media (max-width: 1100px) {
  .landing-nav__inner {
    grid-template-columns: 1fr auto;
  }

  .landing-nav__links {
    display: none;
  }

  .public-menu-toggle {
    display: inline-flex;
  }

  .public-mobile-nav:not([hidden]) {
    position: absolute;
    z-index: 21;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
    background: #fff;
    box-shadow: none;
    padding: 12px 32px 18px;
  }

  .public-mobile-nav a {
    border-bottom: 1px solid var(--border-subtle);
    color: var(--olive-900);
    font-size: 15px;
    font-weight: 650;
    padding: 14px 0;
    text-decoration: none;
  }

  .public-mobile-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 840px) {
  .landing-container {
    width: min(calc(100% - 48px), 1280px);
  }

  .landing-section-shell > .landing-section-tag {
    position: static;
    align-items: center;
    flex-direction: row;
    margin-bottom: 25px;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .landing-profiles__layout > .landing-section-tag,
  .landing-faq__layout > .landing-section-tag {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .landing-profiles__layout,
  .landing-faq__layout {
    padding-top: 38px;
  }

  .landing-showcase .landing-section-tag {
    display: none;
  }

  .landing-coordinate-note--section,
  .landing-map-reference {
    display: none;
  }

  .landing-hero {
    min-height: 650px;
    padding-top: 82px;
  }

  .landing-hero h1 {
    font-size: clamp(56px, 9.6vw, 72px);
  }

  .landing-product-preview__workspace {
    min-height: 390px;
    grid-template-columns: 224px minmax(0, 1fr);
  }

  .landing-preview-sidebar__heading {
    padding-inline: 20px;
  }

  .landing-preview-sidebar__section {
    padding-inline: 10px;
  }

  .landing-preview-layer {
    grid-template-columns: 30px 1fr 18px;
    gap: 8px;
    padding-inline: 7px;
  }

  .landing-preview-layer__swatch {
    width: 30px;
    height: 30px;
  }

  .landing-preview-export-card {
    right: 16px;
    bottom: 48px;
    width: 246px;
  }

  .landing-section-heading--split,
  .landing-profiles__layout,
  .landing-faq__layout,
  .landing-integrations__layout {
    grid-template-columns: 1fr;
  }

  .landing-section-heading--split {
    gap: 28px;
  }

  .landing-section-heading > p {
    max-width: 620px;
  }

  .landing-profiles__layout {
    gap: 64px;
  }

  .landing-integrations__layout { align-items: start; }
  .landing-integrations__tools { max-width: 620px; }

  .landing-profile-stage {
    width: min(100%, 650px);
  }

  .landing-editorial-bridge {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 42px;
  }

  .landing-faq__layout {
    gap: 60px;
  }

  .landing-faq__intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .landing-page { --public-header-height: 66px; }

  .landing-container,
  .landing-nav__inner {
    width: min(calc(100% - 40px), 1280px);
  }

  .landing-nav,
  .landing-nav__inner {
    min-height: 66px;
  }

  .landing-wordmark { gap: 8px; font-size: 14px; }
  .landing-wordmark__logo { width: 104px; }
  .landing-brand-symbol { width: 21px; height: 21px; }

  .landing-nav__cta {
    min-height: 38px;
    gap: 0;
    font-size: 11.5px;
    padding-inline: 13px;
  }

  .public-site-header__trial { min-height: 38px; padding-inline: 9px; font-size: 9.5px; }

  .public-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .public-mobile-nav:not([hidden]) {
    padding-inline: 20px;
  }

  .landing-nav__cta svg {
    display: none;
  }

  .landing-hero {
    min-height: 0;
    padding: 68px 0 154px;
  }

  .landing-eyebrow {
    max-width: 280px;
    align-items: flex-start;
    font-size: 9.5px;
    line-height: 1.5;
  }

  .landing-eyebrow > span {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .landing-hero h1 {
    font-size: clamp(43px, 12.4vw, 54px);
    letter-spacing: -0.052em;
    line-height: 1;
  }

  .landing-hero__body {
    margin-top: 30px;
    font-size: 16px;
  }

  .landing-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .landing-hero__actions .landing-button {
    width: 100%;
  }

  .landing-text-link {
    align-self: flex-start;
  }

  .landing-coordinate-note--vertical {
    display: none;
  }

  .landing-showcase {
    padding-bottom: 88px;
  }

  .landing-showcase__inner {
    max-width: none;
    margin-top: -94px;
  }

  .landing-product-preview {
    margin: 0;
    border-radius: 10px;
  }

  .landing-product-preview__browserbar {
    min-height: 34px;
    grid-template-columns: auto 1fr;
    padding-inline: 12px;
  }

  .landing-product-preview__browserlabel {
    justify-self: end;
  }

  .landing-product-preview__chrome {
    min-height: 50px;
    padding-inline: 14px;
  }

  .landing-product-preview__project,
  .landing-product-preview__divider {
    display: none;
  }

  .landing-product-preview__workspace {
    display: block;
    min-height: 0;
  }

  .landing-preview-sidebar {
    display: none;
  }

  .landing-preview-map {
    min-height: 310px;
  }

  .landing-preview-map__drawing {
    position: absolute;
    inset: 0;
  }

  .landing-preview-export-card {
    right: 12px;
    bottom: 42px;
    width: min(250px, calc(100% - 24px));
  }

  .landing-preview-map__north {
    top: 12px;
    right: 12px;
  }

  .landing-preview-map__scale {
    right: 12px;
    bottom: 14px;
  }

  .landing-section {
    padding-block: 88px;
  }

  .landing-section-heading h2,
  .landing-profiles h2,
  .landing-sources h2,
  .landing-faq h2 {
    font-size: clamp(38px, 10.8vw, 48px);
  }

  .landing-workflow__steps {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .landing-workflow__step {
    min-height: 348px;
    padding: 22px 18px 26px;
  }

  .landing-workflow__visual {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .landing-data-catalog__grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .landing-data-group {
    grid-column: auto;
    min-height: 238px;
    padding: 24px 22px 27px;
  }

  .landing-profiles__layout {
    gap: 48px;
  }

  .landing-integrations__copy h2 { font-size: clamp(38px, 10.8vw, 48px); }
  .landing-integrations__copy > p { margin-top: 22px; font-size: 15px; }
  .landing-integrations__tool { padding-block: 15px; }

  .landing-profile-stage {
    padding: 10px 8px 9px 0;
  }

  .landing-profiles__copy li {
    align-items: flex-start;
  }

  .landing-profile-preview__heading {
    padding-inline: 20px;
  }

  .landing-profile-preview__heading strong {
    max-width: 210px;
    font-size: 16px;
  }

  .landing-profile-preview__rows {
    padding-inline: 11px;
  }

  .landing-profile-preview__rows > div {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding-inline: 6px;
  }

  .landing-profile-preview__footer {
    gap: 18px;
    padding-inline: 18px;
  }

  .landing-profile-preview__footer > span:first-child {
    display: none;
  }

  .landing-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .landing-provider {
    min-height: 88px;
    padding-inline: 12px;
  }

  .landing-provider__logo {
    max-width: min(100%, 145px);
    max-height: 54px;
  }

  .landing-faq__layout {
    gap: 44px;
  }

  .landing-faq__item summary {
    min-height: 72px;
    font-size: 14.5px;
  }

  .landing-faq__item p {
    padding-right: 18px;
  }

  .landing-final-cta {
    padding-top: 88px;
  }

  .landing-final-cta h2 {
    font-size: clamp(43px, 12vw, 56px);
  }

  .landing-final-cta__footer {
    min-height: 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin-top: 88px;
  }
}

@media (max-width: 400px) {
  .landing-nav__inner { width: calc(100% - 32px); }
  .landing-wordmark__logo { width: 94px; }
}

@media (max-width: 480px) {
  .landing-nav__inner { width: calc(100% - 32px); }
  .public-site-header__actions { gap: 6px; }
  .public-site-header__trial { max-width: 98px; min-height: 44px; padding-inline: 6px; white-space: normal; text-align: center; line-height: 1.3; }
  .landing-nav__cta { padding-inline: 8px; }
  .public-menu-toggle { width: 34px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {

  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

/* Homepage-only styling: scoped to the public landing page. */
.landing-home {
  --surface-warm: #f3f5f5;
  --surface-warm-soft: #f7f8f8;
  --text-primary: #252b2e;
  --text-secondary: #535d62;
  --border-subtle: #d9dfe1;
  --border-warm: #d9dfe1;
  --radius-small: 3px;
  --radius-medium: 3px;
  --shadow-preview: none;
  --section-space: clamp(72px, 7vw, 108px);
}

.landing-home .landing-container,
.landing-home .landing-container { width: min(calc(100% - 64px), 1280px); }

.landing-home .landing-hero {
  position: relative;
  min-height: 0;
  border-bottom: 1px solid var(--border-subtle);
  background: #f4f6f5;
  padding-block: clamp(16px, 1.75vw, 24px);
}
.landing-home .landing-hero__content { display: grid; grid-template-columns: minmax(0, .4fr) minmax(0, .6fr); align-items: center; gap: clamp(24px, 2.5vw, 40px); }
.landing-home .landing-hero__copy { max-width: 550px; }
.landing-home .landing-hero h1 { max-width: 500px; font-size: clamp(46px, 4vw, 58px); font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
.landing-home .landing-hero__title-primary,
.landing-home .landing-hero__title-secondary { display: inline; }
.landing-home .landing-hero__title-secondary { color: var(--olive-800); white-space: nowrap; }
.landing-home .landing-hero__body { max-width: 48ch; margin-top: 26px; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.65; }
.landing-home .landing-hero__actions { flex-wrap: wrap; gap: 14px 24px; margin-top: 30px; }
.landing-home .landing-button { min-height: 44px; }
.landing-home .landing-hero__symbol { width: min(108%, 842px); margin-left: -18px; }
.landing-home .landing-hero__symbol svg { display: block; width: 100%; height: auto; overflow: visible; }
.landing-home .landing-hero__symbol-image { filter: saturate(.84) contrast(.96) brightness(1.01); }
.landing-home .landing-hero__symbol-image--nature { filter: saturate(.82) contrast(.9) brightness(1.12); }
.landing-home .landing-hero__symbol-image--terrain { filter: saturate(.78) contrast(1.02) brightness(1.02); }

.landing-home .landing-section { border-top: 1px solid var(--border-subtle); padding-block: var(--section-space); }
.landing-home .landing-section-shell { padding-top: 0; }
.landing-home .landing-section-tag { position: static; display: flex; grid-column: 1 / -1; flex-direction: row; gap: 12px; margin: 0 0 24px; color: var(--text-secondary); font-size: 11px; letter-spacing: .06em; line-height: 1.5; transform: none; writing-mode: horizontal-tb; }
.landing-home .landing-section-tag > span:first-child { color: var(--olive-700); }
.landing-home .landing-map-reference { display: none; }
.landing-home :is(.landing-section-heading, .landing-profiles, .landing-sources, .landing-faq, .landing-pricing__intro, .landing-integrations__copy, .landing-final-cta) h2 { max-width: 720px; margin: 0; color: var(--text-primary); font-size: clamp(26px, 2.5vw, 34px); font-weight: 600; letter-spacing: -.02em; line-height: 1.25; }
.landing-home .landing-section-heading--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: 48px; }
.landing-home .landing-section-heading > p { color: var(--text-secondary); }

.landing-home .landing-sources--marquee { background: #fff; padding-block: clamp(50px, 6vw, 72px) 36px; }
.landing-home .landing-sources--marquee .landing-sources__intro { max-width: 820px; }
.landing-home .landing-sources--marquee h2 { max-width: 740px; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -.018em; }
.landing-home .landing-sources--marquee .landing-sources__lead { max-width: 600px; margin-top: 12px; font-size: 14px; }
.landing-home .landing-sources__marquee { width: 100%; margin-top: 30px; overflow: hidden; background: #fff; mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.landing-home .landing-sources--marquee .landing-provider-grid { display: flex; width: max-content; gap: 0; margin: 0; border: 0; animation: landing-logo-marquee 55s linear infinite; }
.landing-home .landing-sources--marquee .landing-provider { display: grid; width: clamp(170px, 16vw, 236px); min-height: 90px; place-items: center; border: 0; background: transparent; padding: 20px 28px; }
.landing-home .landing-sources--marquee .landing-provider__logo { width: min(100%, 154px); height: 42px; max-width: none; max-height: none; object-fit: contain; }
.landing-home .landing-sources--marquee .landing-sources__note { max-width: 780px; margin: 18px 0 0; color: var(--text-secondary); font-size: 11px; line-height: 1.55; }
.landing-home .landing-sources__marquee:hover .landing-provider-grid { animation-play-state: paused; }
@keyframes landing-logo-marquee { to { transform: translateX(-50%); } }

.landing-home .landing-data-catalog { background: #f6f8f7; color: var(--text-primary); }
.landing-home .landing-data-catalog .landing-section-heading { grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); }
.landing-home .landing-data-catalog__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.landing-home .landing-data-group { position: relative; display: flex; min-height: 300px; flex-direction: column; justify-content: flex-end; grid-column: span 3; overflow: hidden; border: 1px solid #d2dad8; border-radius: 0; background: #e9eeeb; padding: 20px; }
.landing-home .landing-data-group:nth-child(1),
.landing-home .landing-data-group:nth-child(4) { grid-column: span 6; min-height: 300px; }
.landing-home .landing-data-group:nth-child(2),
.landing-home .landing-data-group:nth-child(3),
.landing-home .landing-data-group:nth-child(5),
.landing-home .landing-data-group:nth-child(6) { grid-column: span 3; min-height: 300px; }
.landing-home .landing-data-group__preview { position: absolute; inset: 0; display: block; min-height: 0; border: 0; }
.landing-home .landing-data-group__preview::after { position: absolute; inset: 42% 0 0; background: linear-gradient(180deg, transparent, rgb(20 29 28 / 78%)); content: ''; }
.landing-home .landing-data-group__preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease, filter 400ms ease; }
.landing-home .landing-data-group:hover .landing-data-group__preview img { filter: contrast(1.03); transform: scale(1.012); }
.landing-home .landing-data-group__geometry,
.landing-home .landing-data-group h3,
.landing-home .landing-data-group p { position: relative; z-index: 2; grid-column: auto; color: #fff; }
.landing-home .landing-data-group__geometry { font-size: 10px; letter-spacing: .08em; }
.landing-home .landing-data-group h3 { margin-top: auto; font-size: clamp(18px, 1.45vw, 22px); font-weight: 560; line-height: 1.18; }
.landing-home .landing-data-group p { margin-top: 7px; font-size: 13px; line-height: 1.5; }
.landing-home .landing-editorial-bridge { margin-top: 32px; padding-top: 22px; }
.landing-home .landing-editorial-bridge__title { font-size: 16px; font-weight: 400; letter-spacing: 0; }

.landing-home .landing-integrations { background: #fff; }
.landing-home .landing-integrations__layout { grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr); align-items: start; gap: 0 64px; }
.landing-home .landing-integrations__copy > p { margin-top: 20px; }
.landing-home .landing-integrations__tools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.landing-home .landing-integrations__tool { display: flex; min-height: 242px; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px; border: 0; background: transparent; padding: 26px 22px 24px; }
.landing-home .landing-integrations__tool + .landing-integrations__tool { border-left: 1px solid var(--border-subtle); }
.landing-home .landing-integrations__tool img { width: 46px; height: 46px; flex: 0 0 46px; }
.landing-home .landing-integrations__tool h3 { margin: 0; color: var(--text-primary); font-size: 18px; letter-spacing: -.01em; }
.landing-home .landing-integrations__tool p { min-height: 64px; margin: 9px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.landing-home .landing-integrations__tool a { display: inline-block; margin-top: 14px; color: var(--olive-800); font-size: 13px; font-weight: 650; text-decoration: none; }
.landing-home .landing-integrations__tool a:hover { text-decoration: underline; text-underline-offset: 4px; }

.landing-home .landing-workflow { background: #f6f8f7; }
.landing-home .landing-workflow__presentation { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr); gap: clamp(32px, 5vw, 72px); margin-top: 42px; }
.landing-home .landing-workflow__presentation .landing-product-preview { align-self: start; border-color: #cbd3d5; border-radius: 3px; box-shadow: none; }
.landing-home .landing-product-preview__browserbar { display: flex; min-height: 32px; background: #f1f3f3; color: var(--text-secondary); font-size: 11px; }
.landing-home .landing-product-preview__chrome { min-height: 40px; padding-inline: 16px; }
.landing-home .landing-workflow__steps { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; }
.landing-home .landing-workflow__step { min-height: 0; grid-template-columns: 42px minmax(0, 1fr); grid-template-rows: auto; gap: 16px; border: 0; border-top: 1px solid var(--border-subtle); border-radius: 0; background: transparent; padding: 22px 0; }
.landing-home .landing-workflow__step:first-child { padding-top: 0; border-top: 0; }
.landing-home .landing-workflow__number { padding-top: 2px; color: var(--olive-700); font-family: var(--font-mono); font-size: 11px; }
.landing-home .landing-workflow h3 { margin: 0; font-size: 18px; letter-spacing: -.01em; }
.landing-home .landing-workflow__steps p { margin: 7px 0 0; font-size: 14px; line-height: 1.65; }
.landing-home .landing-workflow__action { margin-top: 4px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }

.landing-home .landing-profiles { background: #fff; }
.landing-home .landing-profiles__layout { grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr); align-items: start; gap: 0 64px; }
.landing-home .landing-profiles__copy > p { margin-top: 20px; }
.landing-home .landing-profiles__features { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--border-subtle); }
.landing-home .landing-profiles__features section { padding: 18px 0; }
.landing-home .landing-profiles__features section + section { border-top: 1px solid var(--border-subtle); }
.landing-home .landing-profiles__features h3 { margin: 0; color: var(--text-primary); font-size: 16px; }
.landing-home .landing-profiles__features p { margin: 6px 0 0; color: var(--text-secondary); font-size: 14px; line-height: 1.58; }
.landing-home .landing-profile-stage { padding: 0; }
.landing-home .landing-profile-preview { border-color: #ccd5d2; border-radius: 3px; box-shadow: none; }
.landing-home :is(.landing-profile-preview__top, .landing-profile-preview__footer) { background: #f1f3f3; font-size: 11px; }
.landing-home .landing-profile-preview__heading { padding-block: 24px; }
.landing-home .landing-profile-preview__top > span:last-child,
.landing-home .landing-profile-preview__heading > span { border-radius: 3px; }
.landing-home .landing-profile-preview__rows small { white-space: normal; }

.landing-home .landing-pricing { background: #fff; }
.landing-home .landing-pricing__layout { gap: 0; }
.landing-home .landing-pricing__intro { max-width: 820px; gap: 20px; }
.landing-home .landing-pricing__grid { gap: 0; margin-top: 42px; border-block: 1px solid var(--border-subtle); }
.landing-home .landing-pricing__card { min-height: 0; border: 0; border-radius: 0; background: #fff; color: var(--text-primary); padding: 30px 28px; }
.landing-home .landing-pricing__card + .landing-pricing__card { border-left: 1px solid var(--border-subtle); }
.landing-home .landing-pricing__card:first-child { padding-left: 0; }
.landing-home .landing-pricing__card h3 { color: var(--text-primary); font-size: 25px; letter-spacing: -.015em; }
.landing-home .landing-pricing__card--accent { background: #f7f8f8; }
.landing-home .landing-pricing__card--accent .landing-pricing__label,
.landing-home .landing-pricing__card--accent li::before { color: var(--olive-700); }
.landing-home .landing-pricing__card--accent > p:not(.landing-pricing__label):not(.landing-pricing__price),
.landing-home .landing-pricing__card--accent li { color: var(--text-secondary); }
.landing-home .landing-pricing__action { margin-top: 24px; }

.landing-home .landing-faq { background: #f6f8f7; padding-bottom: clamp(104px, 10vw, 156px); }
.landing-home .landing-faq::before,
.landing-home .landing-faq::after,
.landing-home .landing-profiles::before { content: none; }
.landing-home .landing-faq__layout { grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); align-items: start; gap: 0 64px; }
.landing-home .landing-faq__intro { position: static; }
.landing-home .landing-faq__content { grid-column: auto; }
.landing-home .landing-faq__list { border: 1px solid var(--border-subtle); border-radius: 0; background: #fff; box-shadow: none; padding: 6px 30px; }
.landing-home .landing-faq__item { padding-inline: 0; }
.landing-home .landing-faq__item + .landing-faq__item { border-color: var(--border-subtle); }
.landing-home .landing-faq__item summary { min-height: 82px; font-size: 16px; letter-spacing: 0; }
.landing-home .landing-faq__item summary > [aria-hidden="true"] { border: 0; border-radius: 0; }
.landing-home .landing-faq__item p { max-width: 620px; padding-bottom: 22px; }
.landing-home .landing-faq__more-link { margin-top: 24px; }

.landing-home .landing-final-cta { border-top: 0; background: var(--olive-950); color: var(--text-on-dark); padding: clamp(84px, 8vw, 124px) 0 0; }
.landing-home .landing-final-cta .landing-kicker { margin-bottom: 16px; color: #aebca5; }
.landing-home .landing-final-cta h2 { color: #fff; }
.landing-home .landing-final-cta__content > p:not(.landing-kicker) { margin-top: 20px; color: #d3dacf; }
.landing-home .landing-final-cta .landing-button--light { margin-top: 24px; border-color: #fff; background: #fff; color: var(--olive-950); }
.landing-home .landing-final-cta .landing-button--light:hover { background: #dde6d9; }
.landing-home .landing-final-cta__footer { min-height: 72px; margin-top: 48px; border-color: rgb(255 255 255 / 18%); color: #c4cec0; font-size: 12px; }
.landing-home .landing-wordmark--light { color: #fff; }
.landing-home .site-footer { border-color: var(--border-subtle); color: var(--text-secondary); }
.landing-home :where(a, summary):focus-visible { outline-color: var(--olive-700); }
.landing-home[data-public-copy-editing="true"] [data-public-copy-key]:is(:hover, :focus-visible, [data-public-copy-active]) { background: #edf2ea; color: var(--text-primary); }
.landing-home.has-scroll-reveals [data-landing-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 620ms ease, transform 620ms ease; }
.landing-home.has-scroll-reveals [data-landing-reveal].is-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .landing-home .landing-hero__content { gap: clamp(28px, 3vw, 40px); }
  .landing-home .landing-hero__symbol { width: min(106%, 710px); margin-left: -12px; }
  .landing-home .landing-data-group:nth-child(n) { grid-column: span 6; min-height: 280px; }
  .landing-home .landing-integrations__layout { grid-template-columns: minmax(0, .7fr) minmax(480px, 1.3fr); }
}

@media (max-width: 820px) {
  .landing-home .landing-data-catalog .landing-section-heading,
  .landing-home .landing-section-heading--split,
  .landing-home .landing-integrations__layout,
  .landing-home .landing-workflow__presentation,
  .landing-home .landing-profiles__layout,
  .landing-home .landing-faq__layout { grid-template-columns: 1fr; gap: 28px; }
  .landing-home .landing-integrations__tools { max-width: 720px; }
  .landing-home .landing-workflow__presentation { margin-top: 30px; }
}

@media (max-width: 760px) {
  .landing-home .landing-container { width: calc(100% - 40px); }
  .landing-home .landing-section-tag { margin-bottom: 20px; }
  .landing-home :is(.landing-profiles__layout, .landing-integrations__layout, .landing-faq__layout) > .landing-section-tag { margin: 0; }
  .landing-home .landing-pricing__grid { grid-template-columns: 1fr; }
  .landing-home .landing-pricing__card { padding: 24px 0; }
  .landing-home .landing-pricing__card + .landing-pricing__card { border-top: 1px solid var(--border-subtle); border-left: 0; }
  .landing-home .landing-pricing__card--accent { padding-inline: 20px; }
  .landing-home .landing-hero__content { grid-template-columns: 1fr; gap: 32px; }
  .landing-home .landing-hero__symbol { width: min(100%, 600px); margin-inline: auto; }
}

@media (max-width: 620px) {
  .landing-home .landing-hero { min-height: 0; padding-block: 42px 48px; }
  .landing-home .landing-hero h1 { font-size: clamp(37px, 10vw, 48px); }
  .landing-home .landing-hero__title-secondary { white-space: normal; }
  .landing-home .landing-hero__symbol { width: 100%; margin-top: 2px; }
  .landing-home .landing-data-catalog__grid { grid-template-columns: 1fr; gap: 14px; }
  .landing-home .landing-data-group:nth-child(n) { grid-column: auto; min-height: 250px; }
  .landing-home .landing-integrations__tools { grid-template-columns: 1fr; }
  .landing-home .landing-integrations__tool { min-height: 0; flex-direction: row; gap: 18px; padding: 20px 0; }
  .landing-home .landing-integrations__tool + .landing-integrations__tool { border-top: 1px solid var(--border-subtle); border-left: 0; }
  .landing-home .landing-integrations__tool p { min-height: 0; }
  .landing-home .landing-workflow__step { grid-template-columns: 34px minmax(0, 1fr); }
  .landing-home .landing-faq { padding-bottom: 96px; }
  .landing-home .landing-faq__list { padding-inline: 20px; }
  .landing-home .landing-faq__item summary { min-height: 76px; }
}

@media (max-width: 480px) {
  .landing-home .landing-container { width: calc(100% - 32px); }
  .landing-home .landing-workflow__steps { grid-template-columns: 1fr; }
  .landing-home .landing-workflow__step { grid-template-columns: 32px minmax(0, 1fr); gap: 14px; }
  .landing-home .landing-final-cta__footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; padding-block: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-home .landing-sources--marquee .landing-provider-grid,
  .landing-home .landing-data-group__preview img { animation: none; transition: none; transform: none; }
  .landing-home.has-scroll-reveals [data-landing-reveal] { opacity: 1; transform: none; transition: none; }
}
/* End homepage-only styling. */

.trial-ended-modal { display: grid; place-items: center; background: rgb(24 35 27 / 55%); padding: 22px; }
.trial-ended-dialog { width: min(510px, 100%); border: 1px solid #dce6d9; border-radius: 20px; background: #fffefa; box-shadow: 0 24px 80px rgb(14 28 17 / 28%); padding: 34px; }
.trial-ended-dialog h2 { margin: 5px 0 9px; color: #1f3325; font-size: 1.7rem; letter-spacing: -.035em; }.trial-ended-dialog > p:not(.eyebrow) { margin: 0; color: #5e6e5c; line-height: 1.55; }
.trial-ended-statuses { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }.trial-ended-statuses > div { border: 1px solid #dfe7dc; border-radius: 11px; background: #f4f8f2; padding: 13px; }.trial-ended-statuses span { display: block; color: #71806e; font-size: .72rem; }.trial-ended-statuses strong { display: block; margin-top: 4px; color: #31523a; font-size: .9rem; }
.trial-ended-actions { display: flex; gap: 10px; }.trial-ended-actions > * { flex: 1; text-align: center; text-decoration: none; }.trial-ended-prices { display: inline-block; margin-top: 17px; color: #3f6a49; font-size: .8rem; font-weight: 730; }
@media (max-width: 520px) { .trial-ended-dialog { padding: 25px 21px; }.trial-ended-statuses, .trial-ended-actions { grid-template-columns: 1fr; flex-direction: column; }.trial-ended-actions > * { width: 100%; } }

/* Public geodata presentation */
.geodata-page { overflow-x: clip; background: var(--surface-white); color: var(--text-primary); }

/* Public data catalog shares the existing public shell, typography and olive palette. */
.geodata-catalog-link { margin-top: 26px; }
.catalog-main { max-width: 1140px; padding-bottom: 64px; }
.catalog-breadcrumbs { padding-top: 30px; font-size: 13px; color: var(--text-secondary); }
.catalog-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px 10px; margin: 0; padding: 0; list-style: none; }
.catalog-breadcrumbs li { display: inline; overflow-wrap: anywhere; }
.catalog-breadcrumbs li + li::before { content: '/'; margin-right: 10px; color: var(--olive-500); }
.catalog-page a:not(.landing-button) { color: var(--olive-800); text-underline-offset: 4px; }
.catalog-page a:hover { text-decoration-thickness: 2px; }
.catalog-hero { padding: 54px 0 48px; max-width: 900px; }
.catalog-hero .landing-kicker { margin: 0 0 18px; }
.catalog-hero h1 { margin: 0; font-size: clamp(34px, 4.7vw, 60px); line-height: 1.07; font-weight: 560; letter-spacing: -.045em; overflow-wrap: break-word; }
.catalog-subtitle { margin: 18px 0 0; font-size: 21px; line-height: 1.5; color: var(--text-secondary); }
.catalog-intro { max-width: 780px; margin: 24px 0 0; font-size: 17px; line-height: 1.8; }
.catalog-hero .landing-button { margin-top: 27px; }
.catalog-list-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 16px; }
.catalog-page h2 { margin: 0 0 20px; font-size: 25px; font-weight: 580; line-height: 1.25; letter-spacing: -.025em; }
.catalog-list-heading h2 { margin: 0; }
.catalog-list-heading > span { color: var(--text-secondary); font-size: 13px; white-space: nowrap; }
.catalog-controls { margin: 0 0 38px; }
.catalog-controls label { display: block; margin-bottom: 9px; color: var(--text-primary); font-size: 14px; font-weight: 620; }
.catalog-controls input { width: 100%; min-height: 46px; border: 1px solid var(--border-subtle); border-radius: 3px; background: var(--surface-white); color: var(--text-primary); font: inherit; padding: 10px 13px; }
.catalog-controls input::placeholder { color: var(--text-secondary); opacity: 1; }
.catalog-controls input:focus-visible { outline: 3px solid rgba(105, 124, 91, .28); outline-offset: 2px; border-color: var(--olive-700); }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.catalog-filter, .catalog-clear { border: 1px solid var(--border-subtle); border-radius: 3px; background: var(--surface-white); color: var(--olive-900); font: inherit; font-size: 13px; font-weight: 590; line-height: 1.35; padding: 8px 11px; }
.catalog-filter:hover, .catalog-clear:hover { border-color: var(--olive-500); background: var(--surface-warm-soft); }
.catalog-filter.is-active { border-color: var(--olive-700); background: var(--olive-800); color: #fff; }
.catalog-filter:focus-visible, .catalog-clear:focus-visible { outline: 3px solid rgba(105, 124, 91, .28); outline-offset: 2px; }
.catalog-category-group + .catalog-category-group { margin-top: 38px; }
.catalog-category-group > h3 { margin: 0 0 10px; color: var(--text-secondary); font-size: 14px; font-weight: 650; letter-spacing: .03em; line-height: 1.4; }
.catalog-empty { padding: 30px 0; border-top: 1px solid var(--border-subtle); color: var(--text-secondary); }
.catalog-empty p { margin: 0 0 14px; font-size: 16px; }
.catalog-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border-subtle); }
.catalog-list li { border-bottom: 1px solid var(--border-subtle); }
.catalog-list a { display: grid; grid-template-columns: minmax(0, 1fr) 180px 18px; gap: 24px; align-items: center; padding: 24px 12px; text-decoration: none; transition: background .15s; }
.catalog-list a:hover { background: var(--surface-warm-soft); }
.catalog-list h3 { margin: 0 0 7px; color: var(--text-primary); font-size: 20px; font-weight: 580; line-height: 1.3; }
.catalog-list p { margin: 0; color: var(--text-secondary); line-height: 1.6; font-size: 14px; }
.catalog-list-provider { font-size: 13px; color: var(--text-secondary); }
.catalog-detail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; border-top: 1px solid var(--border-subtle); padding-top: 44px; }
.catalog-detail p, .catalog-guide p, .catalog-download p, .catalog-download li { font-size: 16px; line-height: 1.8; }
.catalog-detail-copy p { margin: 0 0 20px; }
.catalog-detail-copy section + section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--border-subtle); }
.catalog-facts { min-width: 0; }
.catalog-facts table { border-collapse: collapse; width: 100%; text-align: left; font-size: 14px; line-height: 1.6; }
.catalog-facts th, .catalog-facts td { border-bottom: 1px solid var(--border-subtle); padding: 13px 0; vertical-align: top; overflow-wrap: anywhere; }
.catalog-facts th { position: static; z-index: auto; width: 34%; padding-right: 18px; background: transparent; color: var(--text-primary); font-size: 14px; font-weight: 560; letter-spacing: normal; text-transform: none; white-space: normal; }
.catalog-facts tbody tr:hover > td { background: transparent; }
.catalog-facts td { color: var(--text-secondary); }
.catalog-facts small { display: block; margin-top: 8px; font-size: 12px; }
.catalog-sources { margin-top: 22px; color: var(--text-secondary); }
.catalog-sources p, .catalog-sources li { font-size: 12px; line-height: 1.65; }
.catalog-sources p { margin: 10px 0; }
.catalog-sources ul { padding-left: 16px; margin: 0; }
.catalog-sources li + li { margin-top: 6px; }
.catalog-quality { max-width: 780px; }
.catalog-download { margin-top: 42px; padding: clamp(24px, 4vw, 44px); background: var(--surface-warm-soft); border-top: 2px solid var(--olive-300); }
.catalog-download h2 { max-width: 780px; font-size: 29px; }
.catalog-download ol { padding-left: 23px; max-width: 780px; }
.catalog-download li { padding-left: 4px; margin-bottom: 10px; }
.catalog-download .landing-button { margin-top: 8px; }
.catalog-back { margin: 34px 0 0; font-size: 15px; }
.catalog-guide { max-width: 780px; border-top: 1px solid var(--border-subtle); padding-top: 38px; }
.catalog-guide section + section { margin-top: 38px; }
.catalog-guide-links { display: flex; flex-wrap: wrap; gap: 14px 28px; }
@media (max-width: 760px) {
  .catalog-hero { padding: 36px 0; }
  .catalog-subtitle { font-size: 18px; }
  .catalog-detail { grid-template-columns: minmax(0, 1fr); gap: 30px; padding-top: 30px; }
  .catalog-list a { grid-template-columns: minmax(0, 1fr) 16px; gap: 10px; padding: 21px 0; }
  .catalog-list-provider { grid-column: 1; }
  .catalog-list a > span:last-child { grid-column: 2; grid-row: 1 / 3; }
  .catalog-list h3 { font-size: 18px; }
  .catalog-facts th { width: 36%; padding-right: 12px; }
  .catalog-download h2 { font-size: 24px; }
  .catalog-controls { margin-bottom: 30px; }
  .catalog-category-group + .catalog-category-group { margin-top: 30px; }
}

.geodata-page__hero { position: relative; overflow: hidden; isolation: isolate; background: #eef0e9; }
.geodata-page__hero::after { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: clamp(92px, 8vw, 122px); background: linear-gradient(180deg, transparent, rgb(247 248 244 / 66%) 56%, var(--surface-white) 100%); content: ''; pointer-events: none; }
.geodata-page__hero-inner { min-height: clamp(520px, 40vw, 590px); }
.geodata-page__hero-copy { position: relative; z-index: 2; width: min(650px, 54%); padding: clamp(72px, 6.5vw, 96px) 0 clamp(92px, 8vw, 118px); }
.geodata-page__hero h1 { max-width: 680px; margin: 0 0 17px; font-size: clamp(46px, 6.1vw, 76px); line-height: .98; letter-spacing: -.06em; }
.geodata-page__lead { max-width: 650px; margin: 0; color: var(--text-primary); font-size: 19px; line-height: 1.55; }

.geodata-page__hero-image { position: absolute; z-index: 0; inset: 0 0 0 30vw; overflow: hidden; margin: 0; background: transparent; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 14%) 9%, rgb(0 0 0 / 62%) 23%, #000 36%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 14%) 9%, rgb(0 0 0 / 62%) 23%, #000 36%, #000 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.geodata-page__hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }

.geodata-page__themes { padding: 84px 0 68px; }
.geodata-page__section-heading { display: grid; grid-template-columns: minmax(0, 640px); gap: 28px; align-items: start; margin-left: 163px; }
.geodata-page__section-heading > p, .geodata-theme header > p { margin: 8px 0 0; color: var(--olive-700); font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.geodata-page__section-heading h2 { margin: 0; font-size: clamp(34px, 4.1vw, 54px); font-weight: 560; line-height: 1.04; letter-spacing: -.045em; }
.geodata-page__section-heading div > p { display: none; }
.geodata-page__theme-list { margin-top: 83px; }

.geodata-theme { position: relative; display: grid; grid-template-columns: 135px minmax(0, 1fr) minmax(280px, .77fr); gap: clamp(48px, 6vw, 88px); min-height: 405px; padding: 48px 0 54px; border-top: 1px solid #d9ddd3; }
.geodata-theme:last-child { border-bottom: 1px solid #d9ddd3; }
.geodata-theme__marker { color: #7c8777; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.geodata-theme__content { position: relative; z-index: 2; }
.geodata-theme header > p { display: none; }
.geodata-theme h2 { max-width: 500px; margin: 0; font-size: clamp(30px, 3.5vw, 47px); font-weight: 560; line-height: 1.02; letter-spacing: -.05em; }
.geodata-theme__description { max-width: 485px; margin: 19px 0 34px; color: var(--text-secondary); font-size: 16px; line-height: 1.62; }
.geodata-theme__examples { margin-top: 42px; }
.geodata-theme__examples > p { margin: 0 0 10px; color: #71806a; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.geodata-theme__examples ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; max-width: 570px; margin: 0; padding: 0; list-style: none; }
.geodata-theme__examples li { padding: 8px 0; border-top: 1px solid rgba(114, 128, 106, .24); color: #344132; font-size: 13px; line-height: 1.35; }
.geodata-theme__sources { max-width: 530px; margin: 24px 0 0; color: #687262; font-size: 11px; line-height: 1.55; }
.geodata-theme__sources span { margin-right: 10px; color: #86907f; font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.geodata-theme__art { position: relative; z-index: 1; width: 100%; align-self: center; margin: 0; overflow: hidden; background: transparent; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 34%) 7%, rgb(0 0 0 / 76%) 14%, #000 22%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 34%) 7%, rgb(0 0 0 / 76%) 14%, #000 22%, #000 100%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.geodata-theme__art img { display: block; width: 100%; height: auto; object-fit: cover; object-position: center; }
.geodata-theme--reverse { grid-template-columns: 135px minmax(280px, .77fr) minmax(0, 1fr); }
.geodata-theme--reverse .geodata-theme__content { grid-column: 3; }
.geodata-theme--reverse .geodata-theme__art { grid-column: 2; grid-row: 1; margin: 0; -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgb(0 0 0 / 76%) 86%, rgb(0 0 0 / 34%) 93%, transparent 100%); mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgb(0 0 0 / 76%) 86%, rgb(0 0 0 / 34%) 93%, transparent 100%); }

.geodata-page__cta { position: relative; overflow: hidden; margin-top: 48px; padding: 77px 0 83px; background: #e8ece1; }
.geodata-page__cta::before { position: absolute; right: -7vw; bottom: -52px; width: 49vw; height: 220px; border: 1px solid rgba(79, 98, 73, .22); border-radius: 50% 0 0; box-shadow: -85px -47px 0 -1px #e8ece1, -86px -48px 0 rgba(79, 98, 73, .16); content: ''; transform: rotate(-9deg); }
.geodata-page__cta-inner { position: relative; z-index: 1; max-width: 710px; }
.geodata-page__cta h2 { max-width: 650px; margin: 0; font-size: clamp(34px, 4.1vw, 54px); font-weight: 560; line-height: 1.04; letter-spacing: -.045em; }
.geodata-page__cta-copy { max-width: 585px; margin: 20px 0 30px; color: var(--text-secondary); font-size: 16px; line-height: 1.6; }
.geodata-page__suggestion { max-width: 585px; margin: -8px 0 12px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.geodata-page__suggestion-link { margin: 0 0 28px; font-size: 14px; }

@media (min-width: 701px) and (max-width: 900px) {
  .geodata-page__section-heading { margin-left: 84px; }
  .geodata-theme { grid-template-columns: 64px minmax(0, 1fr) minmax(280px, .86fr); gap: 32px; }
  .geodata-theme--reverse { grid-template-columns: 64px minmax(280px, .86fr) minmax(0, 1fr); }
  .geodata-theme__art { width: 100%; margin-left: 0; }
  .geodata-theme--reverse .geodata-theme__art { margin: 0; }
}

@media (max-width: 820px) {
  .geodata-page__hero-inner { min-height: 0; }
  .geodata-page__hero-copy { width: min(680px, 100%); padding: 62px 0 30px; }
  .geodata-page__hero-image { position: relative; inset: auto; width: 100vw; height: auto; margin: -18px 0 0 calc(50% - 50vw); -webkit-mask-image: linear-gradient(180deg, rgb(0 0 0 / 14%) 0%, rgb(0 0 0 / 58%) 7%, #000 16%, #000 100%); mask-image: linear-gradient(180deg, rgb(0 0 0 / 14%) 0%, rgb(0 0 0 / 58%) 7%, #000 16%, #000 100%); }
  .geodata-page__hero-image img { height: auto; object-fit: contain; }
  .geodata-page__hero::after { height: 82px; }
}

@media (max-width: 700px) {
  .geodata-page__themes { padding: 65px 0 35px; }
  .geodata-page__section-heading { display: block; margin-left: 0; }
  .geodata-page__theme-list { margin-top: 51px; }
  .geodata-theme, .geodata-theme--reverse { display: block; min-height: 0; padding: 37px 0 42px; }
  .geodata-theme__marker { display: none; }
  .geodata-theme header > p { display: block; margin: 0 0 15px; }
  .geodata-theme h2 { font-size: 34px; }
  .geodata-theme__description { margin: 15px 0 28px; font-size: 15px; }
  .geodata-theme__examples { margin-top: 34px; }
  .geodata-theme__examples ul { grid-template-columns: 1fr; }
  .geodata-theme__art, .geodata-theme--reverse .geodata-theme__art { width: 100vw; margin: 31px 0 0 calc(50% - 50vw); -webkit-mask-image: linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 62%) 6%, #000 14%, #000 100%); mask-image: linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 62%) 6%, #000 14%, #000 100%); }
}

@media (max-width: 620px) {
  .geodata-page__hero-copy { padding: 54px 0 24px; }
  .geodata-page__hero h1 { font-size: 47px; }
  .geodata-page__lead { font-size: 17px; }
  .geodata-page__hero-image { margin-top: -10px; }
  .geodata-page__hero::after { height: 64px; }
  .geodata-page__cta { margin-top: 20px; padding: 61px 0 64px; }
  .geodata-page__cta .landing-button { width: 100%; }
}

/* Public about page */
.about-page { background: var(--surface-white); color: var(--text-primary); }
.about-page__hero { border-bottom: 1px solid var(--border-subtle); background: #f7f8f8; padding: clamp(38px, 4.5vw, 60px) 0 clamp(30px, 4vw, 48px); }
.about-page__hero-inner { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: clamp(28px, 5vw, 76px); align-items: center; }
.about-page__hero-copy { max-width: 610px; }
.about-page__hero .landing-kicker { margin-bottom: 12px; }
.about-page__hero h1 { max-width: 620px; margin: 0; color: var(--text-primary); font-size: clamp(36px, 4vw, 52px); font-weight: 570; letter-spacing: -.035em; line-height: 1.08; }
.about-page__hero-copy > p:last-child { max-width: 570px; margin: 18px 0 0; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.about-page__symbol { width: min(100%, 620px); justify-self: end; }
.about-page__symbol svg { display: block; width: 100%; height: auto; overflow: visible; }
.about-page__symbol-image { filter: saturate(.84) contrast(.96) brightness(1.01); }
.about-page__symbol-image--nature { filter: saturate(.82) contrast(.9) brightness(1.12); }
.about-page__symbol-image--terrain { filter: saturate(.78) contrast(1.02) brightness(1.02); }
.about-page__why, .about-page__audience, .about-page__sources { padding-block: clamp(52px, 6vw, 76px); }
.about-page__why { border-top: 1px solid var(--border-subtle); }
.about-page__reading-block { max-width: 860px; }
.about-page__reading-block h2 { max-width: 480px; margin: 0; color: var(--text-primary); font-size: clamp(28px, 3vw, 38px); font-weight: 570; letter-spacing: -.03em; line-height: 1.16; }
.about-page__copy { max-width: 590px; }
.about-page__reading-block .about-page__copy { max-width: 710px; margin-top: 24px; }
.about-page__copy p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.68; }
.about-page__copy p + p { margin-top: 19px; }
.about-page__audience { border-top: 1px solid var(--border-subtle); background: #fff; }
.about-page__sources { padding-block: clamp(38px, 4vw, 54px); border-top: 1px solid var(--border-subtle); background: #fff; }
.about-page__closing { background: var(--olive-950); color: var(--text-on-dark); padding-block: clamp(56px, 7vw, 90px); }
.about-page__closing-inner { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.about-page__closing .landing-kicker { margin-bottom: 15px; color: #aebca5; }
.about-page__closing h2 { max-width: 520px; margin: 0; color: #fff; font-size: clamp(28px, 3vw, 38px); font-weight: 570; letter-spacing: -.03em; line-height: 1.16; }
.about-page__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.about-page__closing .landing-button--light { min-height: 42px; padding: 10px 16px; border-radius: 3px; }
.about-page__closing .landing-text-link { border-color: rgba(225, 232, 216, .38); color: #f0f3ed; }
.about-page__closing .landing-text-link:hover { color: #cbd7c2; }

/* Public GIS integrations page */
.integrations-public-page { background: #fff; color: var(--text-primary); }
.integrations-public-page__hero { border-bottom: 1px solid var(--border-subtle); background: #f7f8f8; padding-block: clamp(54px, 6vw, 82px); }
.integrations-public-page__hero-inner { max-width: 790px; }
.integrations-public-page__eyebrow { margin: 0 0 15px; color: var(--olive-700); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.integrations-public-page__hero h1 { max-width: 720px; margin: 0; color: var(--text-primary); font-size: clamp(36px, 4vw, 52px); font-weight: 570; letter-spacing: -.035em; line-height: 1.08; }
.integrations-public-page__hero h1 + p { max-width: 690px; margin: 22px 0 0; color: var(--text-secondary); font-size: 17px; line-height: 1.65; }
.integrations-public-page__integrations-inner { padding-block: clamp(56px, 7vw, 94px); }
.integrations-public-page__integration { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 116px); padding-block: clamp(40px, 5vw, 64px); border-top: 1px solid var(--border-subtle); }
.integrations-public-page__integration:first-child { padding-top: 0; border-top: 0; }
.integrations-public-page__product-header { display: flex; align-items: center; gap: 16px; }
.integrations-public-page__product-header img { width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.integrations-public-page__product-header .integrations-public-page__eyebrow { margin-bottom: 5px; }
.integrations-public-page__product h2, .integrations-public-page__guide h3 { margin: 0; color: var(--text-primary); font-size: clamp(25px, 2.5vw, 34px); font-weight: 570; letter-spacing: -.03em; line-height: 1.16; }
.integrations-public-page__description { max-width: 510px; margin: 28px 0 0; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.integrations-public-page__requirement { display: flex; gap: 11px; margin: 18px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.45; }
.integrations-public-page__requirement span { color: var(--text-primary); font-weight: 700; }
.integrations-public-page__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px; }
.integrations-public-page__actions .landing-button { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.integrations-public-page__guide { padding-left: clamp(28px, 4vw, 54px); border-left: 1px solid var(--border-subtle); }
.integrations-public-page__guide h3 { max-width: 420px; }
.integrations-public-page__guide ol { margin: 25px 0 0; padding: 0; list-style: none; }
.integrations-public-page__guide li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 12px; padding-block: 14px; border-top: 1px solid var(--border-subtle); }
.integrations-public-page__guide li:last-child { border-bottom: 1px solid var(--border-subtle); }
.integrations-public-page__guide li > span { padding-top: 2px; color: var(--olive-700); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.integrations-public-page__guide strong { display: block; color: var(--text-primary); font-size: 14px; font-weight: 650; }
.integrations-public-page__guide li p { margin: 3px 0 0; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.integrations-public-page__included { background: #2d382b; color: var(--text-on-dark); padding-block: clamp(56px, 7vw, 90px); }
.integrations-public-page__included-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(42px, 8vw, 116px); align-items: start; }
.integrations-public-page__included .integrations-public-page__eyebrow { color: #c8d4c2; }
.integrations-public-page__included h2 { max-width: 440px; margin: 0; color: var(--text-on-dark); font-size: clamp(28px, 3vw, 38px); font-weight: 570; letter-spacing: -.03em; line-height: 1.16; }
.integrations-public-page__included-inner > div > p:last-of-type { max-width: 470px; margin: 0; color: #d6ded1; font-size: 16px; line-height: 1.65; }
.integrations-public-page__included-actions { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px; }
.integrations-public-page__included .landing-text-link { border-color: rgba(225, 232, 216, .38); color: #f0f3ed; }
.integrations-public-page__included .landing-text-link:hover { color: #cbd7c2; }

@media (max-width: 760px) {
  .about-page__hero { padding-block: 38px 34px; }
  .about-page__hero-inner { grid-template-columns: 1fr; gap: 26px; }
  .about-page__symbol { width: min(100%, 500px); justify-self: start; }
  .about-page__hero h1 { font-size: clamp(34px, 10vw, 46px); }
  .about-page__hero-copy > p:last-child { margin-top: 19px; font-size: 16px; }
  .about-page__why, .about-page__audience { padding-block: 54px; }
  .about-page__copy p { font-size: 15px; line-height: 1.67; }
  .about-page__sources { padding-block: 38px; }
  .about-page__closing-inner { align-items: flex-start; flex-direction: column; gap: 29px; }
  .integrations-public-page__hero { padding-block: 48px 58px; }
  .integrations-public-page__hero-inner { width: min(calc(100% - 48px), 790px); }
  .integrations-public-page__hero h1 { font-size: clamp(34px, 10vw, 46px); }
  .integrations-public-page__hero h1 + p { margin-top: 19px; font-size: 16px; }
  .integrations-public-page__integration { grid-template-columns: 1fr; gap: 31px; }
  .integrations-public-page__guide { padding: 31px 0 0; border-top: 1px solid var(--border-subtle); border-left: 0; }
  .integrations-public-page__included-inner { grid-template-columns: 1fr; gap: 27px; }
}
/* Public map workspace */
.workspace-shell {
  --workspace-white: #fff;
  --workspace-warm: #eee9df;
  --workspace-warm-soft: #f6f3ec;
  --workspace-neutral-soft: #f8f9f7;
  --workspace-olive-950: #1f281e;
  --workspace-olive-900: #293427;
  --workspace-olive-800: #384633;
  --workspace-olive-700: #536247;
  --workspace-olive-500: #78856a;
  --workspace-olive-300: #b8c0aa;
  --workspace-olive-150: #e1e5da;
  --workspace-text: #1f241f;
  --workspace-text-muted: #525a51;
  --workspace-border: #d7dbd2;
  --workspace-border-warm: #d7dbd2;
  --workspace-panel-width: 400px;
  --workspace-panel-shadow: 0 10px 28px rgba(31, 40, 30, .12), 0 2px 8px rgba(31, 40, 30, .05);
  --workspace-control-shadow: 0 4px 16px rgba(31, 40, 30, .1);
  --color-ink: var(--workspace-olive-950);
  --color-ink-hover: var(--workspace-olive-900);
  --color-paper: var(--workspace-white);
  --color-surface: var(--workspace-warm-soft);
  --color-surface-subtle: var(--workspace-warm);
  --color-forest: var(--workspace-olive-900);
  --color-forest-hover: var(--workspace-olive-800);
  --color-forest-soft: var(--workspace-olive-150);
  --color-text: var(--workspace-text);
  --color-text-muted: var(--workspace-text-muted);
  --color-border: var(--workspace-border);
  --color-border-strong: var(--workspace-olive-300);
  --color-focus: var(--workspace-olive-700);
  --color-overlay: rgba(31, 40, 30, .56);
  --color-paper-overlay: rgba(255, 255, 255, .92);
  --panel-width: var(--workspace-panel-width);
  --radius-small: 6px;
  --radius-medium: 9px;
  --radius-large: 12px;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  flex-direction: column;
  overflow: hidden;
  background: var(--workspace-white);
  color: var(--workspace-text);
}

.workspace-shell :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--workspace-white);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px var(--workspace-olive-700);
}

.workspace-shell .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.workspace-shell .primary,
.workspace-shell .secondary { border-radius: 7px; }
.workspace-shell .primary { background: var(--workspace-olive-950); color: var(--workspace-white); }
.workspace-shell .primary:hover:not(:disabled) { background: var(--workspace-olive-800); }
.workspace-shell .secondary { border-color: var(--workspace-olive-300); background: var(--workspace-white); color: var(--workspace-olive-950); }
.workspace-shell .secondary:hover:not(:disabled) { border-color: var(--workspace-olive-700); background: var(--workspace-warm-soft); }

.workspace-topbar {
  position: relative;
  z-index: 1200;
  display: grid;
  min-height: 64px;
  flex: 0 0 64px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--workspace-border);
  background: var(--workspace-white);
  padding: 0 22px;
}

.workspace-wordmark {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: var(--workspace-olive-950);
  text-decoration: none;
}

.workspace-brand-symbol { display: inline-grid; width: 25px; height: 25px; place-items: center; }
.workspace-brand-symbol img { display: block; width: 25px; height: 25px; }
.workspace-brand-copy { display: grid; gap: 2px; line-height: 1.05; }
.workspace-brand-copy h1 { margin: 0; color: var(--workspace-olive-950); font-size: 15.5px; font-weight: 650; letter-spacing: -.02em; }
.workspace-brand-copy small { color: var(--workspace-text-muted); font-size: 9px; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }

.workspace-shell .survey-point { position: relative; display: inline-block; width: 13px; height: 13px; flex: 0 0 13px; border: 1px solid var(--workspace-olive-500); border-radius: 50%; }
.workspace-shell .survey-point::before,
.workspace-shell .survey-point::after { position: absolute; background: var(--workspace-olive-500); content: ""; }
.workspace-shell .survey-point::before { width: 17px; height: 1px; top: 5px; left: -3px; }
.workspace-shell .survey-point::after { width: 1px; height: 17px; top: -3px; left: 5px; }

.workspace-topbar-actions { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 7px; }
.workspace-home-link { display: inline-flex; min-height: 38px; align-items: center; border-radius: 6px; color: var(--workspace-text-muted); font-size: 12px; font-weight: 600; padding: 0 12px; text-decoration: none; }
.workspace-home-link:hover { background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.workspace-exports-trigger { border: 0; background: transparent; cursor: pointer; }
.workspace-topbar-separator { width: 1px; height: 20px; background: var(--workspace-border); }
.workspace-help { position: relative; }
.workspace-help-toggle { display: inline-grid; width: 30px; min-width: 30px; min-height: 30px; place-items: center; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--workspace-text-muted); font-family: var(--font-serif); font-size: 15px; font-weight: 700; line-height: 1; padding: 0; }
.workspace-help-toggle:hover,
.workspace-help-toggle:focus-visible,
.workspace-help-toggle[aria-expanded="true"] { border-color: var(--workspace-border); background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.workspace-help-popover { position: absolute; z-index: 1300; width: min(360px, calc(100vw - 24px)); top: calc(100% + 10px); right: 0; border: 1px solid var(--workspace-border-warm); border-radius: 8px; background: var(--workspace-white); box-shadow: var(--workspace-control-shadow); color: var(--workspace-text); padding: 14px 15px; }
.workspace-help-popover[hidden] { display: none !important; }
.workspace-help-popover > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--workspace-border); padding-bottom: 10px; }
.workspace-help-popover h2 { margin: 0; color: var(--workspace-olive-950); font-size: 12px; font-weight: 700; }
.workspace-help-popover .panel-close { width: 30px; min-width: 30px; min-height: 30px; }
.workspace-help-popover ol { display: grid; gap: 9px; margin: 12px 0 0; padding-left: 20px; color: var(--workspace-text-muted); font-size: 11px; line-height: 1.5; }
.workspace-account-link { gap: 7px; }
.workspace-account-link .control-icon { width: 16px; height: 16px; }

.workspace-map-layout { position: relative; display: block; min-height: 0; flex: 1; isolation: isolate; overflow: hidden; }
.workspace-map,
.workspace-shell #map { position: absolute; width: 100%; height: 100%; inset: 0; min-width: 0; min-height: 0; overflow: hidden; background: var(--workspace-warm-soft); }

.workspace-panel {
  position: absolute;
  z-index: 1100;
  width: min(var(--workspace-panel-width), calc(100% - 40px));
  max-width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--workspace-border-warm);
  border-radius: var(--radius-large);
  background: var(--workspace-white);
  box-shadow: var(--workspace-panel-shadow);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 120ms ease, transform 160ms ease, visibility 0s linear 0s;
}

.workspace-shell.is-drawing-aoi .workspace-panel { pointer-events: none; }
.workspace-panel .panel-heading { display: flex; min-height: 66px; flex: 0 0 66px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--workspace-border); background: linear-gradient(180deg, #fff 0%, #fdfdfb 100%); padding: 11px 18px; }
.workspace-panel .panel-heading .eyebrow { margin: 0 0 3px; color: var(--workspace-olive-700); font-size: 8.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.workspace-panel .panel-heading h2 { margin: 0; color: var(--workspace-olive-950); font-size: 18px; font-weight: 670; letter-spacing: -.015em; }
.workspace-panel-toggle { display: inline-grid; width: 32px; min-width: 32px; min-height: 32px; place-items: center; border: 1px solid transparent; border-radius: 5px; background: transparent; color: var(--workspace-text-muted); padding: 0; }
.workspace-panel-toggle .control-icon { width: 16px; height: 16px; transition: transform 140ms ease; }
.workspace-panel-toggle:hover:not(:disabled),
.workspace-panel-toggle:focus-visible { border-color: var(--workspace-border); background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.workspace-panel-toggle[aria-expanded="false"] .control-icon { transform: rotate(180deg); }
.workspace-panel.is-collapsed { width: 122px; height: 48px; min-height: 48px; top: 20px; border-radius: 7px; box-shadow: var(--workspace-control-shadow); transition: width 160ms ease, height 160ms ease; }
.workspace-panel.is-collapsed .panel-heading { min-height: 46px; flex-basis: 46px; justify-content: space-between; border-bottom: 0; padding: 6px 7px 6px 10px; }
.workspace-panel.is-collapsed .panel-heading .eyebrow { display: none; }
.workspace-panel.is-collapsed .panel-heading h2 { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.workspace-panel.is-collapsed .panel-body,
.workspace-panel.is-collapsed .panel-footer,
.workspace-panel.is-collapsed .layer-info-popover { display: none; }
.workspace-shell .panel-close { display: inline-grid; width: 36px; min-width: 36px; min-height: 36px; place-items: center; border-color: transparent; background: transparent; color: var(--workspace-text-muted); padding: 0; }
.workspace-shell .panel-close:hover:not(:disabled) { border-color: var(--workspace-border); background: var(--workspace-warm-soft); color: var(--workspace-olive-950); }
.workspace-shell .panel-close .control-icon { width: 17px; height: 17px; }

.workspace-panel .panel-body { display: flex; min-height: 0; flex: 1; overflow: hidden; }
.workspace-panel .panel-section { padding: 16px 18px 0; }
.workspace-panel .layer-selector { display: flex; min-width: 0; min-height: 0; flex: 1; flex-direction: column; overflow: hidden; }
.workspace-panel .profile-control { flex: 0 0 auto; border-bottom: 1px solid var(--workspace-border); margin: 0 -18px 14px; background: var(--workspace-white); padding: 0 18px 14px; }
.workspace-panel .profile-control > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; color: var(--workspace-text-muted); font-size: 10px; }
.workspace-panel .profile-control strong { overflow: hidden; color: var(--workspace-olive-950); font-size: 10px; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.workspace-panel .profile-control__actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; margin-top: 6px; }
.workspace-panel .profile-control select { min-width: 0; }
.workspace-shell .profile-status { margin: 7px 0 0; color: var(--workspace-olive-800); font-size: 10px; line-height: 1.35; }
.workspace-shell .profile-manager-content { padding: 18px 24px; }
.workspace-shell .profile-manager-list { display: grid; gap: 8px; margin-top: 18px; }
.workspace-shell .profile-manager-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--workspace-border); border-radius: 7px; padding: 10px; }
.workspace-shell .profile-manager-item strong, .workspace-shell .profile-manager-item small { display: block; }
.workspace-shell .profile-manager-item small { margin-top: 3px; color: var(--workspace-text-muted); font-size: 10px; }
.workspace-shell .profile-manager-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.workspace-shell .profile-review-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.workspace-shell .profile-review-name { color: var(--workspace-text-muted); font-size: 11px; font-weight: 700; }
.workspace-panel .layer-search-row { display: grid; flex: 0 0 auto; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; margin-bottom: 14px; }
.workspace-panel .layer-search { position: relative; display: grid; min-width: 0; margin: 0; }
.workspace-panel .layer-search::before { position: absolute; z-index: 1; width: 10px; height: 10px; top: 50%; left: 13px; border: 1px solid var(--workspace-text-muted); border-radius: 50%; content: ""; pointer-events: none; transform: translateY(-60%); }
.workspace-panel .layer-search::after { position: absolute; z-index: 1; width: 6px; height: 1px; top: 50%; left: 23px; background: var(--workspace-text-muted); content: ""; pointer-events: none; transform: translateY(5px) rotate(45deg); transform-origin: left center; }
.workspace-panel .layer-search input { min-height: 42px; border-color: var(--workspace-border-warm); border-radius: 7px; background: var(--workspace-white); padding-left: 38px; font-size: 11.5px; }
.workspace-panel .layer-search input:focus { border-color: var(--workspace-olive-700); }
.workspace-panel .search-clear { display: inline-grid; width: 42px; min-width: 42px; min-height: 42px; place-items: center; border-color: var(--workspace-border-warm); border-radius: 7px; background: var(--workspace-white); color: var(--workspace-text-muted); padding: 0; }
.workspace-panel .search-clear:hover:not(:disabled) { border-color: var(--workspace-olive-500); color: var(--workspace-olive-950); }
.workspace-panel .search-clear .control-icon { width: 15px; height: 15px; }
.workspace-panel .search-clear[hidden] { display: none !important; }
.workspace-panel .public-layer-list { min-height: 0; flex: 1; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; padding-bottom: 12px; scrollbar-color: var(--workspace-olive-300) transparent; }
.workspace-panel .workspace-loading { display: flex; min-height: 72px; align-items: center; justify-content: center; gap: 9px; margin: 0; border-top: 1px solid var(--workspace-border); border-bottom: 1px solid var(--workspace-border); color: var(--workspace-text-muted); font-size: 11px; }
.workspace-panel .workspace-loading > span,
.workspace-shell .message.is-working::before { width: 11px; height: 11px; border: 2px solid var(--workspace-olive-300); border-top-color: var(--workspace-olive-800); border-radius: 50%; content: ""; animation: working-spin 800ms linear infinite; }

.workspace-panel .hierarchy-tree,
.workspace-panel .hierarchy-tree ul { margin: 0; list-style: none; padding: 0; }
.workspace-panel .hierarchy-tree { min-width: 0; border-top: 1px solid var(--workspace-olive-300); }
.workspace-panel .hierarchy-tree ul[hidden],
.workspace-panel .hierarchy-tree [hidden] { display: none !important; }
.workspace-panel .tree-category + .tree-category { border-top: 1px solid var(--workspace-olive-300); }
.workspace-panel .tree-category-list { min-width: 0; }
.workspace-panel .tree-group-heading { display: grid; min-width: 0; grid-template-columns: 30px 20px minmax(0, 1fr); align-items: center; column-gap: 6px; border-bottom: 1px solid var(--workspace-border); }
.workspace-panel .tree-category-heading { min-height: 44px; background: var(--workspace-white); padding: 2px 10px 2px 4px; }
.workspace-panel .tree-subcategory-heading { min-height: 38px; background: var(--workspace-white); padding: 1px 10px 1px 4px; }
.workspace-panel .tree-group-heading > strong { min-width: 0; overflow-wrap: anywhere; color: var(--workspace-olive-950); font-size: 11.5px; line-height: 1.25; }
.workspace-panel .tree-category-heading > strong { font-weight: 700; }
.workspace-panel .tree-subcategory-heading > strong { font-size: 10.5px; font-weight: 620; }
.workspace-panel .tree-subcategory-list,
.workspace-panel .tree-layer-list { border-left: 1px solid var(--workspace-border); margin-left: 14px !important; }
.workspace-panel .tree-subcategory + .tree-subcategory { border-top: 1px solid var(--workspace-border); }
.workspace-panel .tree-disclosure { display: inline-grid; width: 30px; min-width: 30px; min-height: 35px; place-items: center; border: 0; border-radius: 4px; background: transparent; color: var(--workspace-text-muted); padding: 0; }
.workspace-panel .tree-disclosure:hover:not(:disabled) { background: var(--workspace-olive-150); color: var(--workspace-olive-950); }
.workspace-panel .tree-disclosure .control-icon { width: 14px; height: 14px; transition: transform 140ms ease; }
.workspace-panel .tree-disclosure[aria-expanded="true"] .control-icon { transform: rotate(90deg); }
.workspace-panel input.tree-group-checkbox,
.workspace-panel .layer-row-main input[type="checkbox"] { accent-color: var(--workspace-olive-800); }
.workspace-panel input.tree-group-checkbox { width: 17px; height: 17px; min-height: 17px; margin: 0; border-radius: 2px; padding: 0; }

.workspace-panel .layer-option,
.workspace-panel .layer-row { position: relative; display: block; min-width: 0; border-bottom: 1px solid var(--workspace-border); background: transparent; padding: 0; transition: background-color 130ms ease; }
.workspace-panel .layer-option:hover,
.workspace-panel .layer-row:hover { background: var(--workspace-warm-soft); }
.workspace-panel .layer-row.is-selected,
.workspace-panel .layer-option.is-selected,
.workspace-panel .layer-row:has(input[type="checkbox"]:checked) { background: var(--workspace-olive-150); box-shadow: inset 3px 0 0 var(--workspace-olive-700); }
.workspace-panel .layer-row-main { display: grid; min-width: 0; min-height: 43px; grid-template-columns: 17px minmax(0, 1fr) auto 30px; align-items: start; gap: 8px; padding: 6px 8px 6px 12px; }
.workspace-panel .layer-row-main input[type="checkbox"] { margin-top: 7px; }
.workspace-panel .layer-copy { display: grid; min-width: 0; align-self: center; gap: 1px; }
.workspace-panel .layer-copy strong { color: var(--workspace-olive-950); font-size: 11.5px; font-weight: 620; line-height: 1.3; }
.workspace-panel .layer-copy small { overflow-wrap: anywhere; color: var(--workspace-text-muted); font-size: 9.5px; }
.workspace-panel .layer-info-button { display: inline-grid; width: 30px; min-width: 30px; min-height: 30px; align-self: center; place-items: center; border-color: transparent; border-radius: 5px; background: transparent; color: var(--workspace-text-muted); padding: 0; }
.workspace-panel .layer-info-button:hover:not(:disabled),
.workspace-panel .layer-info-button[aria-expanded="true"] { border-color: var(--workspace-border); background: var(--workspace-white); color: var(--workspace-olive-800); }
.workspace-panel .layer-info-button .control-icon { width: 15px; height: 15px; }
.workspace-panel .layer-settings { min-width: 0; margin: 0 8px 8px 39px; overflow: hidden; border: 1px solid var(--workspace-border); border-radius: 6px; background: var(--workspace-white); }
.workspace-panel .layer-settings > summary { min-height: 34px; color: var(--workspace-olive-950); font-size: 10.5px; font-weight: 650; padding: 8px 11px; }
.workspace-panel .layer-settings[open] > summary { border-bottom: 1px solid var(--workspace-border); background: var(--workspace-warm-soft); }
.workspace-panel .layer-controls { margin: 0; padding: 11px; }
.workspace-panel .format-picker,
.workspace-panel .format-static { display: grid; gap: 4px; color: var(--workspace-text-muted); font-size: 10.5px; font-weight: 650; }
.workspace-panel .format-picker select { min-height: 36px; border-color: var(--workspace-border-warm); background: var(--workspace-white); font-size: 11px; }
.workspace-panel .format-picker span,
.workspace-panel .format-static { font-weight: 450; }
.workspace-panel .ortofoto-detail { margin-top: 11px; border-top: 1px solid var(--workspace-border); padding-top: 11px; }

.workspace-panel .layer-info-popover { position: absolute; z-index: 30; max-height: calc(100% - 84px); top: 72px; right: 12px; left: 12px; overflow-x: hidden; overflow-y: auto; border: 1px solid var(--workspace-olive-300); border-radius: 9px; background: var(--workspace-white); box-shadow: var(--workspace-panel-shadow); padding: 16px; overflow-wrap: anywhere; }
.workspace-panel .layer-info-popover[hidden] { display: none !important; }
.workspace-panel .layer-info-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--workspace-border); margin-bottom: 12px; padding-bottom: 12px; }
.workspace-panel .layer-info-popover h3,
.workspace-panel .layer-info-popover p { margin-top: 0; }
.workspace-panel .layer-info-popover dl { margin: 0; }
.workspace-panel .layer-info-popover dl > div { display: grid; grid-template-columns: minmax(104px, .8fr) minmax(0, 1.2fr); gap: 12px; border-top: 1px solid var(--workspace-border); padding: 7px 0; }
.workspace-panel .layer-info-popover dt { color: var(--workspace-text-muted); font-size: 10.5px; }
.workspace-panel .layer-info-popover dd { min-width: 0; margin: 0; color: var(--workspace-olive-950); font-size: 10.5px; text-align: right; }
.workspace-panel .layer-info-content > p { color: var(--workspace-text-muted); font-size: 11px; line-height: 1.5; }
.workspace-panel .layer-info-description { margin-bottom: 16px; }
.workspace-panel .layer-info-content a { overflow-wrap: anywhere; font-weight: 650; }
.workspace-panel .layer-info-content .secondary { display: inline-flex; min-height: 34px; align-items: center; margin-top: 12px; padding-block: 8px; }

.workspace-panel .panel-footer,
.workspace-panel .export-cta { position: relative; z-index: 4; display: grid; flex: 0 0 auto; min-width: 0; gap: 9px; overflow: visible; border-top: 1px solid var(--workspace-olive-300); background: var(--workspace-white); box-shadow: 0 -5px 16px rgba(31, 40, 30, .04); padding: 13px 18px 16px; }
.workspace-panel .selected-count-footer { color: var(--workspace-olive-700); font-family: var(--font-mono); font-size: 10px; font-weight: 650; }
.workspace-panel .export-action-help { position: relative; min-width: 0; }
.workspace-panel .panel-primary-action { width: 100%; min-height: 44px; margin: 0; border-radius: 7px; font-size: 12px; font-weight: 700; }
.workspace-panel .export-disabled-reason { position: absolute; z-index: 8; width: max-content; max-width: min(280px, calc(100vw - 48px)); right: 0; bottom: calc(100% + 8px); border: 1px solid var(--workspace-olive-300); border-radius: 6px; background: var(--workspace-olive-950); box-shadow: var(--workspace-control-shadow); color: var(--workspace-white); font-size: 10.5px; line-height: 1.4; opacity: 0; padding: 8px 10px; pointer-events: none; transform: translateY(4px); transition: opacity 120ms ease, transform 120ms ease; }
.workspace-panel .export-disabled-reason[hidden] { display: none !important; }
.workspace-panel .export-action-help:hover .export-disabled-reason,
.workspace-panel .export-action-help:focus-visible .export-disabled-reason,
.workspace-panel .export-action-help:focus-within .export-disabled-reason { opacity: 1; transform: translateY(0); }

.workspace-shell .message { margin: 10px 0 0; border-left: 3px solid var(--color-info); background: var(--color-info-soft); color: var(--workspace-text); font-size: 10.5px; line-height: 1.45; padding: 8px 10px; }
.workspace-shell .message:empty,
.workspace-shell .warning-message:empty { display: none; }
.workspace-shell .message.is-working { border-left-color: var(--workspace-olive-700); background: var(--workspace-olive-150); }
.workspace-shell .message.is-working::before { display: inline-block; margin-right: 8px; vertical-align: -1px; }
.workspace-shell .message.is-error,
.workspace-shell .error-message { border-left-color: var(--color-danger); background: var(--color-danger-soft); }
.workspace-shell .success-message { border-left-color: var(--color-success); background: var(--color-success-soft); }
.workspace-shell .warning-message { border-left-color: var(--color-warning); background: var(--color-warning-soft); }
.workspace-shell .empty-state { margin: 12px 0; border-top: 1px solid var(--workspace-border); border-bottom: 1px solid var(--workspace-border); color: var(--workspace-text-muted); font-size: 10.5px; line-height: 1.5; padding: 16px 8px; text-align: center; }

.workspace-map-reference { position: absolute; z-index: 800; bottom: 14px; left: calc(var(--workspace-panel-width) + 40px); display: flex; gap: 18px; border: 1px solid var(--workspace-border-warm); border-radius: 6px; background: var(--color-paper-overlay); box-shadow: var(--workspace-control-shadow); color: var(--workspace-text-muted); font-family: var(--font-mono); font-size: 8.5px; padding: 6px 9px; pointer-events: none; transition: left 160ms ease; }
.workspace-map-reference > span + span::before { margin-right: 18px; color: var(--workspace-olive-300); content: "/"; }
.workspace-shell.panel-collapsed .workspace-map-reference { left: 20px; }

.workspace-map-controls { position: absolute; z-index: 800; width: 170px; top: 20px; right: 20px; overflow: hidden; border: 1px solid var(--workspace-border-warm); border-radius: var(--radius-medium); background: var(--workspace-white); box-shadow: var(--workspace-control-shadow); }
.workspace-map-controls.is-collapsed { width: 164px; }
.workspace-map-controls .map-aoi-tools__header { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 8px; border-bottom: 1px solid var(--workspace-border); background: var(--workspace-white); padding: 7px 10px 7px 12px; }
.workspace-map-controls .map-aoi-tools__header > div { display: grid; min-width: 0; align-content: center; gap: 2px; }
.workspace-map-controls .map-aoi-tools__header span { color: var(--workspace-olive-950); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.workspace-map-controls .map-aoi-tools__header small { overflow: hidden; color: var(--workspace-olive-700); font-family: var(--font-mono); font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.workspace-map-controls.is-collapsed .map-aoi-tools__header { min-height: 42px; border-bottom: 0; }
.workspace-map-controls.is-collapsed .map-aoi-tools__header small,
.workspace-map-controls.is-collapsed .map-aoi-tools__status,
.workspace-map-controls.is-collapsed .map-aoi-tools__buttons { display: none; }
.workspace-map-controls .map-aoi-tools__status { display: grid; min-width: 0; gap: 2px; border-bottom: 1px solid var(--workspace-border); background: var(--workspace-neutral-soft); padding: 10px 12px; }
.workspace-map-controls .map-aoi-tools__status strong { overflow-wrap: anywhere; color: var(--workspace-olive-950); font-size: 10.5px; font-weight: 650; line-height: 1.35; }
.workspace-map-controls .map-aoi-tools__status small { color: var(--workspace-text-muted); font-size: 9.5px; line-height: 1.35; }
.workspace-map-controls .map-aoi-tools__status small[hidden] { display: none !important; }
.workspace-map-controls .map-aoi-tools__buttons { display: grid; }
.workspace-map-controls .map-tool-button { display: grid; min-width: 0; min-height: 43px; grid-template-columns: 18px minmax(0, 1fr); align-items: center; gap: 9px; border: 0; border-radius: 0; background: var(--workspace-white); color: var(--workspace-olive-950); font-size: 10.5px; font-weight: 620; padding: 7px 12px; text-align: left; }
.workspace-map-controls .map-tool-button + .map-tool-button { border-top: 1px solid var(--workspace-border); }
.workspace-map-controls .map-tool-button .control-icon { width: 17px; height: 17px; }
.workspace-map-controls .map-tool-button:hover:not(:disabled) { background: var(--workspace-warm-soft); color: var(--workspace-olive-800); }
.workspace-map-controls .map-tool-button.is-active { background: var(--workspace-olive-900); color: var(--workspace-white); }
.workspace-map-controls .map-tool-button.danger:hover:not(:disabled) { background: var(--color-danger-soft); color: var(--color-danger); }

.workspace-shell .leaflet-draw { display: none !important; }
.workspace-shell .leaflet-control-zoom { border: 1px solid var(--workspace-border-warm) !important; border-radius: 7px !important; box-shadow: var(--workspace-control-shadow) !important; overflow: hidden; }
.workspace-shell .leaflet-control-zoom a { width: 36px !important; height: 36px !important; border-color: var(--workspace-border) !important; background: var(--workspace-white) !important; color: var(--workspace-olive-950) !important; line-height: 34px !important; }
.workspace-shell .leaflet-control-zoom a:hover { background: var(--workspace-warm-soft) !important; }
.workspace-shell .geonod-basemap-control { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; border: 0; background: transparent; box-shadow: none; }
.workspace-shell .geonod-basemap-control__toggle { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--workspace-border-warm); border-radius: 7px; background: var(--workspace-white); box-shadow: var(--workspace-control-shadow); color: var(--workspace-olive-950); cursor: pointer; }
.workspace-shell .geonod-basemap-control__toggle:hover { background: var(--workspace-warm-soft); color: var(--workspace-olive-800); }
.workspace-shell .geonod-basemap-control__toggle:focus-visible,
.workspace-shell .geonod-basemap-control__option:focus-visible { outline: 2px solid var(--workspace-olive-700); outline-offset: 2px; }
.workspace-shell .geonod-basemap-control__toggle svg { width: 18px; height: 18px; }
.workspace-shell .geonod-basemap-control__panel { width: 148px; overflow: hidden; border: 1px solid var(--workspace-border-warm); border-radius: 8px; background: var(--workspace-white); box-shadow: var(--workspace-control-shadow); }
.workspace-shell .geonod-basemap-control__panel[hidden] { display: none; }
.workspace-shell .geonod-basemap-control__heading { margin: 0; border-bottom: 1px solid var(--workspace-border); color: var(--workspace-olive-700); font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 10px 12px 8px; text-transform: uppercase; }
.workspace-shell .geonod-basemap-control__options { display: grid; padding: 4px; }
.workspace-shell .geonod-basemap-control__option { min-height: 32px; border: 0; border-radius: 5px; background: transparent; color: var(--workspace-olive-950); cursor: pointer; font-family: var(--font-sans); font-size: 10.5px; font-weight: 620; padding: 6px 8px; text-align: left; }
.workspace-shell .geonod-basemap-control__option:hover { background: var(--workspace-warm-soft); }
.workspace-shell .geonod-basemap-control__option.is-selected { background: var(--workspace-olive-900); color: var(--workspace-white); }
.workspace-shell .geonod-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.workspace-shell .leaflet-control-attribution { background: var(--color-paper-overlay) !important; color: var(--workspace-text-muted) !important; font-size: 9px !important; }
.workspace-shell .leaflet-draw-tooltip { border: 1px solid var(--workspace-olive-300); border-radius: 5px; background: var(--workspace-white); box-shadow: 0 3px 10px rgba(31, 40, 30, .12); color: var(--workspace-text-muted); font-family: var(--font-sans); font-size: 10px; font-weight: 450; line-height: 1.35; padding: 5px 8px; }
.workspace-shell .leaflet-draw-tooltip::before { border-right-color: var(--workspace-white); }
.workspace-shell .leaflet-draw-tooltip-subtext { color: var(--workspace-olive-950); font-size: 11px; font-weight: 650; }
.workspace-shell .leaflet-error-draw-tooltip { border-color: var(--color-danger); background: var(--color-danger-soft); color: var(--color-danger); }
.workspace-shell .leaflet-error-draw-tooltip::before { border-right-color: var(--color-danger-soft); }
.workspace-shell .leaflet-editing-icon,
.workspace-shell .leaflet-div-icon { width: 14px !important; height: 14px !important; margin: -7px 0 0 -7px !important; border: 2px solid var(--workspace-olive-950) !important; border-radius: 50% !important; background: var(--workspace-white) !important; box-shadow: 0 1px 3px rgba(31, 40, 30, .22); }
.workspace-shell .leaflet-touch-icon { width: 24px !important; height: 24px !important; margin: -12px 0 0 -12px !important; }

.workspace-shell .workspace-modal { position: fixed; z-index: 3000; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--color-overlay); padding: 18px; }
.workspace-shell .workspace-dialog { width: min(700px, 100%); max-height: min(90vh, 820px); max-height: min(90dvh, 820px); overflow: auto; border: 1px solid var(--workspace-olive-300); border-radius: 12px; background: var(--workspace-white); box-shadow: 0 20px 52px rgba(31, 40, 30, .24); }
.workspace-shell .customer-exports-dialog { width: min(860px, 100%); }
.workspace-shell .customer-exports-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.workspace-shell .customer-exports-heading .panel-close { margin: -4px -6px 0 0; }
.workspace-shell .customer-exports-content { min-height: 148px; padding: 20px 24px 24px; }
.workspace-shell .customer-exports-content .exports-panel,
.workspace-shell .customer-exports-content .export-empty-state,
.workspace-shell .customer-exports-content .export-state-card { border-top: 0; padding-top: 0; }
.workspace-shell .dialog-heading { border-bottom: 1px solid var(--workspace-border); padding: 22px 24px 18px; }
.workspace-shell .dialog-heading .eyebrow { color: var(--workspace-olive-700); font-size: 9px; }
.workspace-shell .dialog-heading h2 { margin-bottom: 7px; color: var(--workspace-olive-950); font-size: 23px; font-weight: 650; letter-spacing: -.02em; }
.workspace-shell .dialog-heading p:last-child { margin-bottom: 0; color: var(--workspace-text-muted); font-size: 12px; }
.workspace-shell .export-review-content { padding: 0 24px; }
.workspace-shell .export-review-section { padding: 20px 0; }
.workspace-shell .export-review-section + .export-review-section { border-top: 1px solid var(--workspace-border); }
.workspace-shell .export-review-section h3 { margin-bottom: 10px; color: var(--workspace-olive-800); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.workspace-shell .export-review-product { display: grid; gap: 2px; grid-template-columns: minmax(0, 1fr) auto; border-top: 1px solid var(--workspace-border); padding: 11px 0; }
.workspace-shell .export-review-product:last-child { border-bottom: 1px solid var(--workspace-border); }
.workspace-shell .export-review-product strong { color: var(--workspace-olive-950); font-size: 12px; }
.workspace-shell .export-review-product p,
.workspace-shell .export-review-product small { margin: 0; color: var(--workspace-text-muted); font-size: 10.5px; }
.workspace-shell .export-review-product p { grid-column: 2; grid-row: 1; font-family: var(--font-mono); }
.workspace-shell .export-review-product small { grid-column: 1 / -1; }
.workspace-shell .bulk-vector-format { display: grid; gap: 9px; }
.workspace-shell .bulk-vector-format > * { margin: 0; }
.workspace-shell .bulk-format-count { color: var(--workspace-text-muted); font-size: 12px; }
.workspace-shell .bulk-vector-format .format-picker { display: grid; gap: 5px; max-width: 330px; color: var(--workspace-olive-950); font-size: 11px; font-weight: 650; }
.workspace-shell .bulk-vector-format select,
.workspace-shell .vector-overrides select { min-height: 38px; border: 1px solid var(--workspace-border-warm); border-radius: 6px; background: var(--workspace-white); color: var(--workspace-olive-950); padding: 0 9px; }
.workspace-shell .bulk-format-status { border-left: 3px solid var(--workspace-olive-600); background: var(--workspace-warm-soft); color: var(--workspace-olive-950); font-size: 11px; padding: 9px 10px; }
.workspace-shell .vector-overrides { display: grid; gap: 8px; border-top: 1px solid var(--workspace-border); margin-top: 4px; padding-top: 13px; }
.workspace-shell .vector-overrides h4 { margin: 0; color: var(--workspace-olive-950); font-size: 12px; }
.workspace-shell .vector-overrides label { display: grid; gap: 4px; color: var(--workspace-olive-950); font-size: 11px; font-weight: 650; }
.workspace-shell .export-review-list,
.workspace-shell .delivery-confirmation dl { margin: 0; }
.workspace-shell .export-review-list > div,
.workspace-shell .delivery-confirmation dl > div { display: grid; gap: 16px; grid-template-columns: minmax(150px, .7fr) minmax(0, 1.3fr); border-top: 1px solid var(--workspace-border); padding: 8px 0; }
.workspace-shell .export-review-list > div:last-child,
.workspace-shell .delivery-confirmation dl > div:last-child { border-bottom: 1px solid var(--workspace-border); }
.workspace-shell .export-review-list dt,
.workspace-shell .delivery-confirmation dt { color: var(--workspace-text-muted); font-size: 11px; }
.workspace-shell .export-review-list dd,
.workspace-shell .delivery-confirmation dd { margin: 0; color: var(--workspace-olive-950); font-size: 11px; text-align: right; }
.workspace-shell .export-review-list dd span { display: block; margin-top: 3px; color: var(--workspace-text-muted); font-size: 9.5px; }
.workspace-shell .export-review-actions { position: sticky; bottom: 0; display: flex; align-items: center; justify-content: flex-end; gap: 8px; border-top: 1px solid var(--workspace-olive-300); background: var(--workspace-white); padding: 14px 24px; }
.workspace-shell .export-review-actions button { min-height: 40px; }
.workspace-shell .export-review-dialog > .export-review-message { margin: 18px 24px; }
.workspace-shell .export-review-dialog > .export-review-message[hidden] { display: none !important; }

.workspace-shell .import-dialog { position: relative; width: min(520px, 100%); padding: 24px; }
.workspace-shell .import-dialog .panel-close { position: absolute; top: 14px; right: 14px; }
.workspace-shell .import-dialog h2 { margin-bottom: 7px; color: var(--workspace-olive-950); font-size: 22px; font-weight: 650; }
.workspace-shell .import-dialog .description { max-width: 430px; margin-bottom: 20px; color: var(--workspace-text-muted); font-size: 12px; }
.workspace-shell .import-format-heading { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.workspace-shell .import-format-heading .description { margin: 0; }
.workspace-shell .import-info-button { display: inline-grid; width: 30px; min-width: 30px; min-height: 30px; place-items: center; border: 1px solid transparent; border-radius: 5px; background: transparent; color: var(--workspace-text-muted); padding: 0; }
.workspace-shell .import-info-button:hover,
.workspace-shell .import-info-button:focus-visible,
.workspace-shell .import-info-button[aria-expanded="true"] { border-color: var(--workspace-border); background: var(--workspace-white); color: var(--workspace-olive-800); }
.workspace-shell .import-info-button .control-icon { width: 16px; height: 16px; }
.workspace-shell .import-format-popover { margin: -4px 0 16px; border: 1px solid var(--workspace-olive-300); border-radius: 7px; background: var(--workspace-warm-soft); color: var(--workspace-text); font-size: 11px; line-height: 1.55; padding: 12px; }
.workspace-shell .import-format-popover[hidden] { display: none !important; }
.workspace-shell .file-input { display: grid; gap: 8px; color: var(--workspace-text); font-size: 11px; font-weight: 650; }
.workspace-shell .file-input input[type="file"] { width: 100%; border: 1px dashed var(--workspace-olive-300); border-radius: 7px; background: var(--workspace-warm-soft); color: var(--workspace-text-muted); padding: 16px; }
.workspace-shell .file-input input::file-selector-button { min-height: 34px; margin-right: 12px; border: 1px solid var(--workspace-olive-300); border-radius: 6px; background: var(--workspace-white); color: var(--workspace-olive-950); font-weight: 650; padding: 0 12px; }
.workspace-shell .technical-hint { margin: 8px 0 0; color: var(--workspace-text-muted); font-size: 10px; }

.workspace-shell .export-review-message.is-complete { border: 0; background: transparent; padding: 0; }
.workspace-shell .delivery-confirmation__heading { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.workspace-shell .delivery-confirmation__heading p,
.workspace-shell .delivery-confirmation__heading h3 { margin: 0; }
.workspace-shell .delivery-confirmation__heading p { color: var(--workspace-olive-700); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.workspace-shell .delivery-confirmation__heading h3 { color: var(--workspace-olive-950); font-size: 15px; }
.workspace-shell .delivery-confirmation dl > div { grid-template-columns: 1fr 1.3fr; font-size: 10px; }
.workspace-shell .delivery-confirmation > p { margin: 14px 0 4px; font-weight: 650; }
.workspace-shell .delivery-confirmation ul { margin: 0 0 14px; padding-left: 18px; }
.workspace-shell .delivery-result-summary { color: var(--workspace-olive-800); font-weight: 650; margin: 10px 0 14px; }
.workspace-shell .delivery-result-section { border-top: 1px solid var(--workspace-border); margin-top: 12px; padding-top: 10px; }
.workspace-shell .delivery-result-section h4 { color: var(--workspace-olive-900); font-size: 11px; margin: 0 0 6px; }
.workspace-shell .delivery-result-section ul { list-style: none; margin: 0; padding: 0; }
.workspace-shell .delivery-result-section li { color: var(--workspace-olive-900); font-size: 11px; margin: 0 0 8px; }
.workspace-shell .delivery-result-section li span { color: var(--workspace-text-muted); display: block; line-height: 1.45; margin-top: 2px; }
.workspace-shell .delivery-result-failed h4 { color: #8b3a2d; }
.workspace-shell .delivery-result-skipped h4 { color: var(--workspace-text-muted); }
.workspace-shell .delivery-confirmation .actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.workspace-shell .delivery-confirmation .actions > * { min-height: 38px; font-size: 10.5px; }

@media (max-width: 1100px) {
  .workspace-shell { --workspace-panel-width: 390px; }
}

@media (max-width: 900px) {
  .workspace-shell { --workspace-panel-width: 380px; min-height: 520px; }
  .workspace-topbar { min-height: 58px; flex-basis: 58px; padding-inline: 14px; }
  .workspace-panel { max-width: calc(100% - 24px); height: calc(100% - 24px); max-height: calc(100% - 24px); top: 12px; left: 12px; }
  .workspace-map-controls { top: 12px; right: 12px; }
  .workspace-panel.is-collapsed { top: 12px; left: 12px; }
  .workspace-map-reference { left: calc(var(--workspace-panel-width) + 24px); }
  .workspace-shell.panel-collapsed .workspace-map-reference { left: 12px; }
}

@media (max-width: 680px) {
  .workspace-shell { min-height: 500px; }
  .workspace-topbar { min-height: 54px; flex-basis: 54px; gap: 8px; padding-inline: 10px; }
  .workspace-brand-symbol,
  .workspace-brand-symbol img { width: 22px; height: 22px; }
  .workspace-brand-copy h1 { font-size: 14px; }
  .workspace-brand-copy small { display: none; }
  .workspace-topbar-actions { gap: 1px; }
  .workspace-home-link { min-height: 34px; padding-inline: 6px; font-size: 10px; }
  .workspace-topbar-separator { height: 16px; margin-inline: 2px; }
  .workspace-panel { width: 100%; max-width: none; height: 100%; max-height: 100%; top: 0; left: 0; border: 0; border-radius: 0; }
  .workspace-panel .panel-heading { min-height: 56px; flex-basis: 56px; }
  .workspace-panel .panel-section { padding: 14px; }
  .workspace-panel .profile-control { margin-right: -14px; margin-left: -14px; padding-right: 14px; padding-left: 14px; }
  .workspace-panel .panel-footer,
  .workspace-panel .export-cta { padding-inline: 14px; }
  .workspace-map-reference { display: none; }
  .workspace-map-controls { width: 150px; top: 12px; right: 12px; }
  .workspace-panel.is-collapsed { width: 122px; height: 48px; min-height: 48px; top: 12px; left: 12px; }
  .workspace-map-controls.is-collapsed { width: 150px; }
  .workspace-help-popover { position: fixed; width: min(360px, calc(100vw - 20px)); top: 62px; right: 10px; }
  .workspace-shell .workspace-modal { align-items: flex-end; padding: 0; }
  .workspace-shell .workspace-dialog { width: 100%; max-height: 94vh; max-height: 94dvh; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 12px 12px 0 0; }
  .workspace-shell .dialog-heading,
  .workspace-shell .export-review-content,
  .workspace-shell .import-dialog,
  .workspace-shell .profile-manager-content,
  .workspace-shell .customer-exports-content { padding-inline: 16px; }
  .workspace-shell .profile-manager-item { align-items: flex-start; flex-direction: column; }
  .workspace-shell .profile-manager-actions { justify-content: flex-start; }
  .workspace-shell .profile-review-actions { display: contents; }
  .workspace-shell .profile-review-name { grid-column: 1 / -1; }
  .workspace-shell .export-review-dialog > .export-review-message { margin-inline: 16px; }
  .workspace-shell .export-review-actions { display: grid; grid-template-columns: 1fr 1fr; padding: 12px 16px max(12px, env(safe-area-inset-bottom)); }
  .workspace-shell .export-review-list > div,
  .workspace-shell .delivery-confirmation dl > div { gap: 3px; grid-template-columns: 1fr; }
  .workspace-shell .export-review-list dd,
  .workspace-shell .delivery-confirmation dd { text-align: left; }
  .workspace-shell .export-review-product { grid-template-columns: 1fr; }
  .workspace-shell .export-review-product p,
  .workspace-shell .export-review-product small { grid-column: 1; grid-row: auto; }
}

@media (max-width: 440px) {
  .workspace-wordmark { gap: 8px; }
  .workspace-shell .leaflet-control-attribution { max-width: calc(100vw - 70px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .workspace-shell *,
  .workspace-shell *::before,
  .workspace-shell *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Administration */
.admin-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-paper);
}

.admin-topbar {
  position: sticky;
  top: 0;
}

.admin-topbar .topbar-context {
  display: flex;
  flex: 1;
  justify-content: flex-start;
}

.admin-layout {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: var(--space-5) var(--space-6) var(--space-8);
}

.admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  border-bottom: 1px solid var(--color-border-strong);
  padding: var(--space-2) 0 var(--space-5);
}

.admin-page-head h1 {
  margin-bottom: var(--space-2);
}

.admin-page-head .admin-note {
  max-width: 740px;
  margin-bottom: 0;
}

.admin-auth {
  width: min(420px, 100%);
}

.admin-auth > label,
.admin-table-filter {
  display: grid;
  gap: var(--space-1);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 680;
}

.admin-auth > div {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: minmax(180px, 1fr) auto;
}

.unresolved-banner {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  border-left: 3px solid var(--color-success);
  background: var(--color-success-soft);
  color: var(--color-success);
  padding: var(--space-2) var(--space-4);
}

.unresolved-banner.has-alerts {
  border-left-color: var(--color-warning);
  background: var(--color-warning-soft);
  color: var(--color-warning);
}

.unresolved-banner strong {
  font-family: var(--font-mono);
  font-size: 18px;
}

.unresolved-banner span {
  color: var(--color-text);
  font-weight: 620;
}

.admin-navigation {
  position: sticky;
  z-index: 1100;
  top: var(--header-height);
  display: flex;
  margin: 0 0 var(--space-4);
  background: var(--color-paper);
}

@media (max-width: 640px) {
  .admin-navigation {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-billing-shortcut {
    justify-content: flex-end;
  }
}

.admin-tabs {
  display: flex;
  min-width: 0;
  flex: 1;
  overflow-x: auto;
  border-bottom: 1px solid var(--color-border-strong);
  scrollbar-width: thin;
}

.admin-tabs a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 680;
  padding: 0 var(--space-3);
  text-decoration: none;
}

.admin-tabs a:hover,
.admin-tabs a:focus-visible,
.admin-tabs a.active {
  border-bottom-color: var(--color-forest);
  color: var(--color-ink);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  background: var(--color-surface);
}

.metric-card {
  min-width: 0;
  padding: var(--space-3) var(--space-4);
}

.metric-card + .metric-card {
  border-left: 1px solid var(--color-border);
}

.metric-card span,
.metric-card strong {
  display: block;
}

.metric-card span {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-card strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: 15px;
}

.metric-card small {
  display: block;
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 10px;
}

.admin-card {
  scroll-margin-top: calc(var(--header-height) + 52px);
  border-top: 1px solid var(--color-border-strong);
  padding: var(--space-6) 0;
}

.admin-intro {
  border-top: 0;
  padding-bottom: var(--space-5);
}

.admin-overview {
  border-top: 0;
  padding-top: var(--space-5);
}

.overview-actions {
  margin-top: var(--space-6);
}

.overview-actions .section-heading {
  margin-bottom: var(--space-3);
}

.overview-actions h3 {
  margin: 0 0 var(--space-1);
  font-size: 16px;
}

.overview-action-list {
  border-top: 1px solid var(--color-border-strong);
}

.overview-action-row {
  display: grid;
  grid-template-columns: minmax(100px, .7fr) minmax(220px, 2fr) minmax(220px, 1.25fr) auto;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.overview-action-row p {
  margin: 3px 0 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

.overview-action-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
}

.overview-action-row dt {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.overview-action-row dd {
  margin: 3px 0 0;
  font-size: 11px;
}

.overview-empty-state {
  margin: 0;
  border-bottom: 1px solid var(--color-border);
}

.advanced-health {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
}

.runtime-backup {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border-strong);
}

.runtime-backup .section-heading { margin-bottom: 0; }

.runtime-backup-mode {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: 0;
  padding: var(--space-3);
  border: 1px solid var(--color-border);
}

.runtime-backup-mode legend { padding: 0 var(--space-1); font-weight: 700; }

.runtime-backup-mode label { display: flex; align-items: center; gap: var(--space-2); }

.runtime-backup-preview { overflow-x: auto; }

.runtime-backup-preview h4 { margin: 0 0 var(--space-2); }

.runtime-health-row {
  display: grid;
  gap: var(--space-1);
  min-width: 0;
  padding: var(--space-3) var(--space-4);
}

.runtime-health-row + .runtime-health-row {
  border-left: 1px solid var(--color-border);
}

.runtime-health-row > span {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.technical-details,
.admin-settings {
  margin-top: var(--space-4);
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border);
}

.technical-details summary,
.admin-settings summary {
  cursor: pointer;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  padding: var(--space-3) 0;
}

.technical-details[open] summary,
.admin-settings[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.technical-details .system-status,
.admin-settings .admin-auth {
  padding: var(--space-4) 0;
}

.admin-card > h2,
.section-heading h2 {
  margin-bottom: var(--space-2);
  font-size: 21px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.admin-table-filter {
  width: min(330px, 100%);
}

.admin-help {
  margin-bottom: var(--space-3);
  font-size: 12px;
}

.admin-actions button {
  min-height: 36px;
}

.compact-button {
  min-height: 32px;
  padding: 0 var(--space-3);
  font-size: 12px;
}

.layer-register-tools {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
}

.layer-register-tools .admin-table-filter {
  min-width: 280px;
}

.layer-onboarding {
  scroll-margin-top: calc(var(--header-height) + 54px);
  margin: 0 0 var(--space-6);
  border: 1px solid var(--color-border-strong);
  border-top: 3px solid var(--color-forest);
  border-radius: var(--radius-medium);
  background: var(--color-surface);
}

.layer-onboarding[hidden] {
  display: none !important;
}

.onboarding-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  border-bottom: 1px solid var(--color-border-strong);
  padding: var(--space-5);
}

.onboarding-heading h2 {
  margin-bottom: var(--space-1);
  font-size: 22px;
}

.onboarding-heading p:last-child {
  max-width: 780px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--color-border-strong);
  list-style: none;
  padding: 0;
}

.onboarding-steps li + li {
  border-left: 1px solid var(--color-border);
}

.onboarding-steps button {
  display: grid;
  width: 100%;
  min-height: 66px;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  gap: 0 var(--space-2);
  border: 0;
  border-radius: 0;
  background: var(--color-surface);
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  text-align: left;
}

.onboarding-steps button > span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
}

.onboarding-steps button strong {
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 11px;
}

.onboarding-steps button small {
  overflow-wrap: anywhere;
  font-size: 9px;
  font-weight: 500;
}

.onboarding-steps li.is-current button {
  background: var(--color-forest-soft);
  box-shadow: inset 0 -3px 0 var(--color-forest);
  color: var(--color-forest-hover);
}

.onboarding-steps li.is-current button > span,
.onboarding-steps li.is-complete button > span {
  border-color: var(--color-forest);
  background: var(--color-forest);
  color: var(--color-surface);
}

.onboarding-step-panel {
  padding: var(--space-5);
}

.onboarding-step-panel > .message:first-child,
.layer-onboarding > .message {
  margin-inline: var(--space-5);
}

.onboarding-step-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.onboarding-step-heading h3 {
  margin: 0;
  font-size: 19px;
}

.onboarding-step-heading h3:focus {
  outline: none;
}

.onboarding-primary-field,
.onboarding-step-panel > label,
.source-create-grid > label,
.candidate-editor label,
.format-configuration > label {
  display: grid;
  gap: var(--space-1);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 680;
}

.onboarding-primary-field {
  max-width: 980px;
  margin: var(--space-5) 0 var(--space-3);
}

.onboarding-primary-field input {
  min-height: 46px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.source-analysis-progress { display: flex; align-items: flex-start; gap: var(--space-3); width: min(100%, 560px); margin-top: var(--space-4); border: 1px solid var(--color-border-strong); border-left: 3px solid var(--color-forest); border-radius: var(--radius-small); background: var(--color-forest-soft); padding: var(--space-3); }
.source-analysis-progress > div { display: grid; min-width: 0; flex: 1; gap: 3px; }
.source-analysis-progress strong { color: var(--color-ink); font-size: 13px; }
.source-analysis-progress small { color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
.source-analysis-progress progress { width: 100%; height: 7px; margin-top: 4px; accent-color: var(--color-forest); }
.source-analysis-spinner { width: 16px; height: 16px; flex: 0 0 auto; border: 2px solid var(--color-border-strong); border-top-color: var(--color-forest); border-radius: 50%; animation: source-analysis-spin .8s linear infinite; }
@keyframes source-analysis-spin { to { transform: rotate(360deg); } }

.analysis-support {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-left: 3px solid var(--color-info);
  background: var(--color-info-soft);
  font-size: 11px;
  font-weight: 720;
  padding: 0 var(--space-3);
  white-space: nowrap;
}

.analysis-support.success-message {
  border-left-color: var(--color-success);
}

.analysis-support.warning-message {
  border-left-color: var(--color-warning);
}

.analysis-support.error-message {
  border-left-color: var(--color-danger);
}

.analysis-facts {
  margin-top: var(--space-4);
  border-left: 3px solid var(--color-info);
  background: var(--color-surface-subtle);
  padding: var(--space-4);
}

.analysis-facts h4,
.analysis-notes h4 {
  margin-bottom: var(--space-3);
}

.analysis-notes {
  margin-top: var(--space-3);
  border-left: 3px solid var(--color-info);
  background: var(--color-info-soft);
  padding: var(--space-3);
}

.analysis-notes ul,
.layer-onboarding .diagnostic-warning ul,
.layer-onboarding .diagnostic-error ul,
.layer-onboarding > .message ul {
  margin: var(--space-2) 0 0;
  padding-left: 18px;
}

.suggestion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-4);
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  background: var(--color-paper);
  padding: var(--space-3) var(--space-4);
}

.suggestion-strip p {
  margin: 2px 0 0;
  color: var(--color-text-muted);
  font-size: 11px;
}

.candidate-selection {
  margin-top: var(--space-5);
}

.candidate-list {
  display: grid;
  gap: var(--space-2);
}

.candidate-option {
  display: grid;
  min-width: 0;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-surface);
  padding: var(--space-3);
}

.candidate-option:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-subtle);
}

.candidate-option.is-selected {
  border-color: var(--color-forest);
  background: var(--color-forest-soft);
  box-shadow: inset 3px 0 0 var(--color-forest);
}

.candidate-option > span {
  display: grid;
  min-width: 0;
}

.candidate-option strong,
.candidate-option small {
  overflow-wrap: anywhere;
}

.candidate-option small {
  color: var(--color-text-muted);
  font-size: 10px;
}

.source-mode-picker {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.source-mode-picker label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 650;
}

.source-create-grid {
  margin-top: var(--space-3);
}

.field-provenance {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 560;
  letter-spacing: 0.025em;
}

.field-provenance.is-detected {
  color: var(--color-info);
}

.field-provenance.is-suggested {
  color: var(--color-warning);
}

.field-provenance.is-manual {
  color: var(--color-forest-hover);
}

.onboarding-nav-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-5);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-4);
}

.candidate-editors,
.review-candidates {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.candidate-editor,
.review-candidate {
  min-width: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-paper);
  padding: var(--space-4);
}

.candidate-editor > header,
.review-candidate > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-strong);
  padding-bottom: var(--space-3);
}

.candidate-editor > header > div,
.review-candidate > header > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-3);
}

.candidate-editor > header > div > span,
.review-candidate > header > div > span,
.onboarding-count {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.candidate-editor > header > div > div,
.review-candidate > header > div > div {
  display: grid;
  min-width: 0;
}

.candidate-editor header small,
.review-candidate header small {
  overflow-wrap: anywhere;
  color: var(--color-text-muted);
  font-size: 10px;
}

.candidate-wide-field {
  margin-top: var(--space-3);
}

.taxonomy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: var(--space-3) 0;
}

.taxonomy-field,
.new-taxonomy-value {
  display: grid;
  gap: var(--space-2);
}

.new-taxonomy-value {
  border-left: 3px solid var(--color-warning);
  background: var(--color-warning-soft);
  padding: var(--space-2) var(--space-3);
}

.inline-validation {
  display: block;
  margin: 0;
  border-left: 0;
  background: transparent;
  color: var(--color-warning);
  font-size: 10px;
  padding: 0;
}

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

.connector-not-supported {
  grid-column: 1 / -1;
  margin: 0;
}

.format-configuration {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  align-items: end;
  gap: var(--space-4);
  margin: var(--space-4) 0 0;
  border: 0;
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) 0 0;
}

.format-configuration legend {
  color: var(--color-forest-hover);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 var(--space-3);
  border-top: 1px solid var(--color-border);
}

.review-summary > div {
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
}

.review-summary dt,
.preview-layer-info dt {
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-summary dd,
.preview-layer-info dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-family: var(--font-mono);
  font-size: 10px;
}

.review-actions,
.publication-actions {
  margin-top: var(--space-3);
}

.placement-preview {
  max-width: 620px;
  margin-top: var(--space-4);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-surface);
  padding: var(--space-3);
}

.placement-preview > .eyebrow {
  margin-bottom: var(--space-2);
}

.placement-preview .hierarchy-tree,
.placement-preview .hierarchy-tree ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.placement-preview .hierarchy-tree {
  min-width: 0;
  border-top: 1px solid var(--color-border-strong);
}

.placement-preview .tree-category + .tree-category {
  border-top: 1px solid var(--color-border-strong);
}

.placement-preview .tree-category-list {
  min-width: 0;
}

.placement-preview .tree-group-heading {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px 20px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 5px;
  border-bottom: 1px solid var(--color-border);
}

.placement-preview .tree-category-heading {
  min-height: 40px;
  background: var(--color-surface-subtle);
  padding: 2px var(--space-2) 2px var(--space-1);
}

.placement-preview .tree-subcategory-heading {
  min-height: 36px;
  background: color-mix(in srgb, var(--color-paper) 84%, var(--color-surface));
  padding: 1px var(--space-2) 1px var(--space-1);
}

.placement-preview .tree-group-heading > strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 12px;
  line-height: 1.25;
}

.placement-preview .tree-subcategory-heading > strong {
  font-size: 11px;
  font-weight: 680;
}

.placement-preview .tree-group-heading > span {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  white-space: nowrap;
}

.placement-preview .tree-subcategory-list,
.placement-preview .tree-layer-list {
  border-left: 1px solid var(--color-border);
  margin-left: 14px !important;
}

.placement-preview .tree-subcategory + .tree-subcategory {
  border-top: 1px solid var(--color-border);
}

.placement-preview .tree-disclosure {
  display: inline-grid;
  width: 30px;
  min-width: 30px;
  min-height: 36px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--color-text-muted);
  padding: 0;
}

.placement-preview .tree-disclosure svg,
.placement-preview .tree-disclosure .control-icon {
  width: 15px;
  height: 15px;
  transition: transform 140ms ease;
}

.placement-preview input.tree-group-checkbox {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  border-radius: 2px;
  padding: 0;
  accent-color: var(--color-forest);
}

.placement-preview .layer-row {
  display: block;
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  padding: 0;
}

.placement-preview .layer-row.is-selected,
.placement-preview .layer-row:has(input[type="checkbox"]:checked) {
  background: var(--color-forest-soft);
  box-shadow: inset 3px 0 0 var(--color-forest);
}

.placement-preview .layer-row-main {
  display: grid;
  min-width: 0;
  min-height: 42px;
  grid-template-columns: 17px minmax(0, 1fr) 30px;
  align-items: start;
  gap: var(--space-2);
  padding: 6px var(--space-2) 6px var(--space-3);
}

.placement-preview .layer-row-main input[type="checkbox"] {
  margin-top: 6px;
}

.placement-preview .layer-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.placement-preview .layer-copy strong {
  color: var(--color-ink);
  font-size: 13px;
  line-height: 1.3;
}

.placement-preview .layer-copy small {
  overflow-wrap: anywhere;
  color: var(--color-text-muted);
  font-size: 11px;
}

.placement-preview .layer-info-button {
  display: inline-grid;
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  place-items: center;
  border-color: transparent;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 14px;
  font-weight: 750;
  padding: 0;
}

.placement-preview .layer-info-button:hover:not(:disabled),
.placement-preview .layer-info-button[aria-expanded="true"] {
  border-color: var(--color-border);
  background: var(--color-surface);
  color: var(--color-forest-hover);
}

.placement-preview .layer-info-button .control-icon {
  width: 16px;
  height: 16px;
}

.placement-preview .tree-disclosure {
  pointer-events: none;
}

.placement-preview .tree-disclosure.is-expanded .control-icon,
.placement-preview .tree-disclosure.is-expanded svg {
  transform: rotate(90deg);
}

.placement-preview input:disabled {
  opacity: 0.8;
}

.preview-layer-info {
  margin-top: var(--space-3);
  border-left: 3px solid var(--color-info);
  background: var(--color-info-soft);
  padding: var(--space-3);
}

.preview-layer-info p {
  margin: var(--space-1) 0 var(--space-2);
  font-size: 11px;
}

.preview-layer-info dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.preview-layer-info dl > div {
  min-width: 0;
}

.publication-checklist {
  margin-top: var(--space-4);
  border-left: 3px solid var(--color-warning);
  background: var(--color-warning-soft);
  padding: var(--space-3) var(--space-4);
}

.publication-checklist.is-ready {
  border-left-color: var(--color-success);
  background: var(--color-success-soft);
}

.publication-checklist h5 {
  margin: 0 0 var(--space-2);
  font-size: 12px;
}

.publication-checklist ul {
  display: grid;
  gap: var(--space-1);
  margin: 0;
  list-style: none;
  padding: 0;
}

.publication-checklist li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: var(--space-2);
  font-size: 11px;
}

.publication-checklist li > span:first-child {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 9px;
}

.publication-checklist li.is-passed {
  color: var(--color-success);
}

.publication-checklist li.is-blocking {
  color: var(--color-warning);
}

.onboarding-test-result {
  margin-top: var(--space-3);
}

.onboarding-save-bar {
  position: sticky;
  z-index: 5;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin: var(--space-5) calc(var(--space-5) * -1) calc(var(--space-5) * -1);
  border-top: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  box-shadow: var(--shadow-footer);
  padding: var(--space-3) var(--space-5);
}

.onboarding-save-bar > div:first-child {
  display: grid;
}

.onboarding-save-bar small {
  color: var(--color-text-muted);
  font-size: 10px;
}

.layer-row-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
}

.layer-row-actions button {
  white-space: nowrap;
}

/* Data tables */
.table-wrap {
  position: relative;
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-medium);
  background: var(--color-surface);
  scrollbar-color: var(--color-border-strong) var(--color-surface-subtle);
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 12px;
  text-align: left;
}

th,
td {
  max-width: 320px;
  border-bottom: 1px solid var(--color-border);
  padding: 10px var(--space-3);
  vertical-align: middle;
}

th {
  position: sticky;
  z-index: 2;
  top: 0;
  background: var(--color-ink);
  color: var(--color-surface);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr:last-child > td {
  border-bottom: 0;
}

tbody tr:not(.layer-editor-table-row):hover > td {
  background: var(--color-forest-soft);
}

#layers-table table {
  min-width: 1280px;
}

#layers-table .layer-table-row {
  height: 40px;
}

#layers-table .layer-table-row > td {
  max-width: 190px;
  padding: 6px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#layers-table .layer-table-row > td:last-child {
  max-width: none;
  overflow: visible;
}

#layers-table .layer-row-actions .compact-button {
  min-height: 28px;
  padding: 4px 7px;
  font-size: 11px;
  line-height: 1;
}

#layers-table thead th:last-child,
#layers-table .layer-table-row td:last-child {
  position: sticky;
  z-index: 3;
  right: 0;
  border-left: 1px solid var(--color-border-strong);
}

#layers-table .layer-table-row td:last-child {
  z-index: 1;
  background: var(--color-surface);
}

.admin-layer-filter-toolbar { display: flex; flex-wrap: wrap; align-items: end; gap: 8px; margin: 0 0 var(--space-4); }
.admin-layer-filter-toolbar label { display: grid; gap: 3px; min-width: 132px; color: var(--color-text-muted); font-size: 12px; }
.admin-layer-filter-toolbar input, .admin-layer-filter-toolbar select { min-height: 34px; max-width: 205px; }
.filter-indicator { align-self: center; color: var(--color-forest); font-size: 12px; font-weight: 700; }
.admin-bulk-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3); margin: 0 0 var(--space-4); border: 1px solid var(--color-border-strong); background: var(--color-surface-muted); padding: var(--space-3); }
.admin-bulk-toolbar > div:first-child { display: grid; gap: 3px; }
.admin-bulk-toolbar small { color: var(--color-text-muted); font-size: 11px; }
.admin-bulk-results { margin: calc(var(--space-4) * -1) 0 var(--space-4); border: 1px solid var(--color-border); border-top: 0; background: var(--color-surface); padding: var(--space-3); }
.admin-bulk-results > p { margin: 0 0 var(--space-2); font-size: 12px; }
.admin-bulk-results ul { display: grid; max-height: 250px; gap: 5px; overflow-y: auto; margin: 0; list-style: none; padding: 0; }
.bulk-result { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: var(--space-2); align-items: start; border-left: 3px solid var(--color-border-strong); background: var(--color-surface-muted); padding: 6px 8px; font-size: 11px; }
.bulk-result > span { font-weight: 700; }
.bulk-result > div { display: grid; min-width: 0; gap: 2px; }
.bulk-result small { color: var(--color-text-muted); overflow-wrap: anywhere; }
.bulk-result-completed { border-left-color: var(--color-success); }
.bulk-result-failed { border-left-color: var(--color-danger); }
.bulk-result-skipped { border-left-color: var(--color-warning); }
.bulk-result-pending { border-left-color: var(--color-forest); }
.admin-bulk-select-cell { width: 34px; text-align: center; }
.admin-bulk-select-cell input, #layers-table th > [data-admin-bulk-select-all] { width: 16px; height: 16px; margin: 0; accent-color: var(--color-forest); vertical-align: middle; }
.layer-row-actions { position: relative; justify-content: flex-end; }
.layer-action-menu { position: relative; }
.layer-action-menu-toggle { min-width: 34px; font-size: 18px; line-height: 1; }
.layer-action-menu-popover { position: fixed; z-index: 1300; display: grid; min-width: 196px; max-width: min(280px, calc(100vw - 16px)); gap: 4px; padding: 6px; border: 1px solid var(--color-border-strong); background: var(--color-paper); box-shadow: 0 8px 22px rgb(0 0 0 / 16%); }
.layer-action-menu-popover[hidden] { display: none; }
.layer-action-menu-popover button { width: 100%; justify-content: flex-start; text-align: left; }
.layer-action-menu-reason { display: block; padding: 2px 4px 4px; color: var(--color-text-muted); font-size: 11px; line-height: 1.35; white-space: normal; }
.danger-button { border: 1px solid #a82f2f; background: #a82f2f; color: #fff; }
.danger-button:hover { background: #812323; }
.admin-dialog-backdrop { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; overflow: auto; padding: 16px; isolation: isolate; background: rgb(20 28 25 / 58%); }
.admin-dialog { box-sizing: border-box; width: min(760px, calc(100vw - 32px)); max-height: min(820px, calc(100dvh - 32px)); overflow-y: auto; padding: var(--space-5); border: 1px solid var(--color-border-strong); background: var(--color-paper); box-shadow: 0 22px 60px rgb(0 0 0 / 28%); }
.admin-dialog > label { display: grid; gap: 6px; margin-top: var(--space-4); }
.layer-tree-dialog { display: grid; grid-template-rows: auto auto minmax(180px, 1fr) auto; width: min(1120px, calc(100vw - 32px)); max-height: min(860px, calc(100dvh - 32px)); overflow: hidden; padding: 0; }
.layer-tree-heading { display: flex; align-items: start; justify-content: space-between; gap: var(--space-4); border-bottom: 1px solid var(--color-border); padding: var(--space-4) var(--space-5) var(--space-3); }
.layer-tree-heading h2 { margin: 0 0 4px; }
.layer-tree-heading p { margin: 0; }
.layer-tree-toolbar { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--space-2); border-bottom: 1px solid var(--color-border); background: var(--color-surface-muted); padding: var(--space-3) var(--space-5); color: var(--color-text-muted); font-size: 12px; }
.layer-tree-toolbar form, .layer-tree-create form { display: flex; gap: var(--space-2); }
.layer-tree-toolbar input, .layer-tree-create input { min-height: 32px; }
.layer-tree-search { display: grid; gap: 3px; min-width: min(260px, 100%); color: var(--color-text-muted); font-size: 11px; }
.layer-tree-scroll { min-height: 0; overflow: auto; padding: var(--space-3) var(--space-5); background: var(--color-surface); }
.layer-tree-categories, .layer-tree-subcategories, .layer-tree-layers { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.layer-tree-category { position: relative; background: var(--color-paper); }
.layer-tree-subcategories { margin: 2px 0 0 27px; border-left: 1px solid var(--color-border); padding-left: 8px; }
.layer-tree-subcategory { position: relative; border: 1px solid transparent; }
.layer-tree-row, .layer-tree-layer { position: relative; display: grid; grid-template-columns: 26px 26px minmax(150px, 1fr) auto 28px; align-items: center; min-height: 32px; gap: 3px; padding: 1px 4px; }
.layer-tree-category-row { border-bottom: 1px solid var(--color-border); background: var(--color-surface-muted); }
.layer-tree-subcategory-row { background: var(--color-surface); }
.layer-tree-layer { grid-template-columns: 22px 26px minmax(150px, 1fr) minmax(80px, .6fr); margin-left: 27px; border-left: 1px solid var(--color-border); color: var(--color-text); font-size: 13px; }
.layer-tree-layer small { overflow: hidden; color: var(--color-text-muted); text-overflow: ellipsis; white-space: nowrap; }
.layer-tree-drag-handle, .layer-tree-toggle, .layer-tree-icon-button { display: inline-grid; width: 26px; height: 26px; place-items: center; border: 0; border-radius: 3px; background: transparent; color: var(--color-text-muted); cursor: grab; font-size: 18px; line-height: 1; }
.layer-tree-drag-handle:hover, .layer-tree-toggle:hover, .layer-tree-icon-button:hover { background: var(--color-surface-muted); color: var(--color-forest); }
.layer-tree-toggle { cursor: pointer; font-size: 20px; }
.layer-tree-icon-button { cursor: pointer; color: var(--color-danger); }
.layer-tree-icon-button:disabled { cursor: not-allowed; opacity: .42; }
.layer-tree-node-name { min-width: 0; overflow-wrap: anywhere; font-weight: 650; }
.layer-tree-name { min-width: 0; height: 27px; font-weight: 650; }
.layer-tree-inline-action { border: 0; background: transparent; color: var(--color-forest); cursor: pointer; font-size: 11px; text-decoration: underline; text-underline-offset: 2px; }
.layer-tree-inline-action:hover { color: var(--color-ink); }
.layer-tree-select { width: 15px; height: 15px; margin: 0; accent-color: var(--color-forest); }
.layer-tree-count { min-width: 24px; border-radius: 999px; background: var(--color-surface-muted); color: var(--color-text-muted); font-size: 11px; line-height: 22px; text-align: center; }
.layer-tree-layers { margin: 0 0 3px; }
.layer-tree-empty { min-height: 32px; padding: 8px 12px; color: var(--color-text-muted); font-size: 12px; font-style: italic; }
.layer-tree-create { margin: 4px 0 5px 27px; padding: 5px; border-top: 1px dashed var(--color-border); }
.layer-tree-create form { max-width: 430px; }
.layer-tree-create input { flex: 1; }
.layer-tree-layer::before, .layer-tree-category::before, .layer-tree-subcategory::before, .layer-tree-categories::before, .layer-tree-subcategories::before, .layer-tree-layers::before { position: absolute; z-index: 2; right: 0; left: 0; height: 2px; background: var(--color-forest); content: ''; opacity: 0; pointer-events: none; }
.layer-tree-layer.is-insertion-before::before, .layer-tree-category.is-insertion-before::before, .layer-tree-subcategory.is-insertion-before::before, .layer-tree-categories.is-insertion-before::before, .layer-tree-subcategories.is-insertion-before::before, .layer-tree-layers.is-insertion-before::before { top: -1px; opacity: 1; }
.layer-tree-layer.is-insertion-after::before, .layer-tree-category.is-insertion-after::before, .layer-tree-subcategory.is-insertion-after::before, .layer-tree-categories.is-insertion-after::before, .layer-tree-subcategories.is-insertion-after::before, .layer-tree-layers.is-insertion-after::before { bottom: -1px; opacity: 1; }
.layer-tree-subcategory-row.is-drop-into { background: color-mix(in srgb, var(--color-forest) 10%, var(--color-paper)); box-shadow: inset 3px 0 var(--color-forest); }
.layer-tree-layer.is-dragging, .layer-tree-category.is-dragging, .layer-tree-subcategory.is-dragging { opacity: .48; }
.layer-tree-unpublished { margin-top: var(--space-4); border-top: 1px solid var(--color-border); padding-top: var(--space-2); }
.layer-tree-unpublished-toggle { width: 100%; border: 0; background: transparent; color: var(--color-text-muted); cursor: pointer; font-weight: 700; text-align: left; }
.layer-tree-unpublished-content { display: grid; gap: var(--space-2); padding: var(--space-2) 0; }
.layer-tree-unpublished-content > p { margin: 0; color: var(--color-text-muted); font-size: 12px; }
.is-unpublished-layer { grid-template-columns: 22px 26px minmax(140px, 1fr) minmax(80px, .5fr) auto minmax(120px, .7fr); background: var(--color-surface-muted); }
.layer-tree-status { border-radius: 999px; background: var(--color-warning-soft, #f4e8bd); color: var(--color-text); padding: 2px 6px; font-size: 10px; font-weight: 700; white-space: nowrap; }
.layer-tree-breadcrumb { font-size: 11px; }
.layer-tree-close { display: grid; width: 28px; height: 28px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--color-text-muted); cursor: pointer; font-size: 24px; line-height: 1; }
.layer-tree-close:hover { background: var(--color-surface-muted); color: var(--color-ink); }
.layer-tree-dirty { color: var(--color-forest); font-weight: 700; }
.layer-tree-clean { color: var(--color-text-muted); }
.layer-tree-bulk-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: var(--space-2); border-top: 1px solid var(--color-border); background: var(--color-surface-muted); padding: var(--space-2) var(--space-5); font-size: 12px; }
.layer-tree-bulk-toolbar label { display: flex; align-items: center; gap: 5px; }
.layer-tree-bulk-toolbar select { max-width: 250px; min-height: 30px; }
.layer-tree-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3); border-top: 1px solid var(--color-border); background: var(--color-paper); padding: var(--space-3) var(--space-5); }
.layer-tree-actions .message { margin: 0; }
.layer-tree-discard-confirmation { flex: 1 0 100%; margin: 0; }
.layer-tree-discard-confirmation p { margin: 0; font-weight: 650; }
#source-dialog-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
#source-dialog-fields .candidate-wide-field { grid-column: 1 / -1; }

@media (max-width: 760px) {
  .admin-layer-filter-toolbar > label { flex: 1 1 145px; }
  .admin-layer-filter-toolbar input, .admin-layer-filter-toolbar select { max-width: none; width: 100%; }
  .admin-dialog-backdrop { padding: 12px; }
  .admin-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); padding: var(--space-4); }
  .layer-tree-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); padding: 0; }
  .layer-tree-heading, .layer-tree-toolbar, .layer-tree-scroll, .layer-tree-actions { padding-inline: var(--space-3); }
  .layer-tree-heading { align-items: start; }
  .layer-tree-row, .layer-tree-layer { grid-template-columns: 25px 25px minmax(96px, 1fr) 24px 25px; }
  .layer-tree-layer { grid-template-columns: 25px minmax(96px, 1fr); }
  .layer-tree-layer small { display: none; }
  .layer-tree-actions { align-items: stretch; flex-direction: column; }
  .layer-tree-actions .admin-actions { justify-content: stretch; }
  .layer-tree-actions .admin-actions button { flex: 1; }
  #source-dialog-fields { grid-template-columns: 1fr; }
}

#sources-table table {
  min-width: 720px;
}

.layer-table-row td:first-child strong {
  color: var(--color-ink);
}

.layer-editor-table-row > td {
  max-width: none;
  background: var(--color-paper);
  padding: 0;
}

.layer-editor-panel {
  border-top: 3px solid var(--color-forest);
  padding: var(--space-5);
}

.layer-editor-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.layer-editor-heading h3 {
  margin-bottom: var(--space-1);
  font-size: 20px;
}

.layer-editor-heading p:last-child {
  margin: 0;
  color: var(--color-text-muted);
}

.layer-edit-form {
  display: grid;
  gap: var(--space-5);
}

.editor-section {
  min-width: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--color-border-strong);
  padding: var(--space-4) 0 0;
}

.editor-section legend {
  color: var(--color-forest-hover);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  padding: 0 var(--space-2) 0 0;
  text-transform: uppercase;
}

.layer-edit-grid {
  display: grid;
  align-items: start;
  gap: var(--space-3) var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.layer-edit-grid > label,
.layer-edit-form > label,
.resolution-note {
  display: grid;
  gap: var(--space-1);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 680;
}

.admin-checkbox {
  display: flex !important;
  min-height: 40px;
  align-items: center;
  gap: var(--space-2) !important;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text) !important;
  font-size: 12px !important;
}

.checkbox-stack {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.checkbox-stack .admin-checkbox {
  min-height: 32px;
  border: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 680;
  white-space: nowrap;
}

.status::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  content: "";
}

.status-ok,
.status-available,
.status-resolved,
.status-approved,
.status-valid {
  color: var(--color-success);
}

.status-ok::before,
.status-available::before,
.status-resolved::before,
.status-approved::before,
.status-valid::before {
  background: var(--color-success);
}

.status-error,
.status-temporarily_unavailable {
  color: var(--color-danger);
}

.status-error::before,
.status-temporarily_unavailable::before {
  background: var(--color-danger);
}

.status-changed,
.status-warning,
.status-needs_review,
.status-needs_more_info {
  color: var(--color-warning);
}

.status-changed::before,
.status-warning::before,
.status-needs_review::before,
.status-needs_more_info::before {
  background: var(--color-warning);
}

.status-pending,
.status-in_review {
  color: var(--color-info);
}

.status-pending::before,
.status-in_review::before {
  background: var(--color-info);
}

/* Admin records and diagnostics */
.diagnostic-grid,
.staging-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.diagnostic-grid > div,
.staging-meta > div {
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
}

.diagnostic-grid dt,
.staging-meta dt {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diagnostic-grid dd,
.staging-meta dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-family: var(--font-mono);
  font-size: 11px;
}

.cache-card h4,
.diagnostic-card h4 {
  margin-bottom: var(--space-3);
}

.diagnostic-card,
.cache-card {
  margin-top: var(--space-3);
  border-left: 3px solid var(--color-info);
  background: var(--color-surface);
  padding: var(--space-4);
}

.diagnostic-warning,
.diagnostic-error {
  margin-top: var(--space-3);
  border-left: 3px solid;
  padding: var(--space-3);
}

.source-diagnostic pre,
pre {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: var(--space-3);
  white-space: pre-wrap;
}

.monitoring-toolbar {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-2);
}

.monitoring-toolbar label { display: grid; gap: 4px; color: var(--color-text-muted); font-size: 12px; }
.monitoring-toolbar input, .monitoring-toolbar select { min-height: 34px; }
.monitoring-views { display: inline-flex; border: 1px solid var(--color-border-strong); border-radius: var(--radius-small); overflow: hidden; }
.monitoring-views button { border: 0; border-radius: 0; background: var(--color-surface); color: var(--color-text); min-height: 34px; }
.monitoring-views button[aria-selected="true"] { background: var(--color-ink); color: var(--color-paper); }
.monitoring-result-count { margin: var(--space-2) 0; }
.monitoring-bulk-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); margin: 0 0 var(--space-2); padding: var(--space-2) var(--space-3); border: 1px solid var(--color-border); background: var(--color-surface-muted); font-size: 12px; }
.monitoring-table-wrap { overflow-x: auto; }
.monitoring-table-wrap table { min-width: 900px; }
.monitoring-table-wrap td { vertical-align: top; }
.monitoring-selection { width: 1%; white-space: nowrap; text-align: center; }
.monitoring-selection label { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; }
.monitoring-source small { display: block; margin-top: 2px; color: var(--color-text-muted); }
.monitoring-occurrences { display: block; margin-top: 3px; color: var(--color-text-muted); font-size: 11px; }
.monitoring-health, .monitoring-review-status, .monitoring-attention { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; white-space: nowrap; }
.monitoring-health::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.monitoring-health-error { color: var(--color-error); }
.monitoring-health-warning, .monitoring-health-needs_review { color: var(--color-warning); }
.monitoring-health-changed { color: var(--color-accent); }
.monitoring-triage-summary { margin: var(--space-2) 0 0; font-weight: 600; }
.monitoring-attention-error, .monitoring-attention-needs_review, .monitoring-attention-changed, .monitoring-attention-pending_recheck { color: var(--color-ink); font-weight: 650; }
.monitoring-attention-error { color: var(--color-error); }
.monitoring-attention-needs_review { color: var(--color-warning); }
.monitoring-alert-row.monitoring-attention-error > td:first-child, .monitoring-alert-row.monitoring-attention-needs_review > td:first-child, .monitoring-alert-row.monitoring-attention-changed > td:first-child, .monitoring-alert-row.monitoring-attention-pending_recheck > td:first-child { box-shadow: inset 3px 0 0 var(--color-border-strong); }
.monitoring-attention-stable_after_change { color: var(--color-text-muted); }
.monitoring-alert-row.monitoring-attention-stable_after_change { background: color-mix(in srgb, var(--color-surface-muted) 55%, transparent); }
.monitoring-detail-row > td { padding: 0; background: var(--color-surface); }
.monitoring-detail { padding: var(--space-3); border-block: 1px solid var(--color-border); }
.monitoring-detail dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-2) var(--space-4); margin: 0; }
.monitoring-detail dt { color: var(--color-text-muted); font-size: 11px; }
.monitoring-detail dd { margin: 2px 0 0; font-size: 12px; }
.monitoring-technical-message { display: grid; gap: 3px; margin: var(--space-3) 0; font-size: 12px; overflow-wrap: anywhere; }
.monitoring-review-actions { margin-top: var(--space-2); }

.staging-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.staging-main p {
  margin: 2px 0 0;
  color: var(--color-text-muted);
  font-size: 11px;
}


.staging-list {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staging-row {
  min-width: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-surface);
  padding: var(--space-4);
}

.status-stack {
  display: grid;
  justify-items: end;
  gap: var(--space-1);
}

.staging-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: var(--space-3) 0;
}

.warning-list {
  margin: var(--space-3) 0;
  color: var(--color-warning);
  padding-left: 18px;
}

.staging-row .admin-actions {
  margin-top: var(--space-3);
}

.csv-import {
  max-width: 1100px;
}

.csv-counts {
  display: flex;
  margin: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.csv-counts span {
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.csv-counts span + span {
  border-left: 1px solid var(--color-border);
}

.csv-import .file-input,
.csv-import .admin-actions {
  margin-top: var(--space-3);
}

.report-card {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

@keyframes working-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .brand-copy small,
  .environment-label {
    display: none;
  }

  .topbar {
    gap: var(--space-2);
  }

  .topbar-divider {
    margin: 0 var(--space-1);
  }

  .topbar-tool {
    padding: 0 var(--space-2);
  }

  .admin-layout {
    padding-inline: var(--space-5);
  }

  #layers-table .layer-editor-table-row > td {
    position: relative;
  }

  #layers-table .layer-editor-panel {
    position: sticky;
    width: calc(100vw - 50px);
    max-width: calc(100vw - 50px);
    left: 0;
  }

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

@media (max-width: 900px) {
  .admin-page-head {
    align-items: stretch;
    flex-direction: column;
    gap: var(--space-4);
  }

  .admin-auth {
    width: 100%;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advanced-health {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card + .metric-card {
    border-left: 0;
  }

  .metric-card:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .metric-card:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .runtime-health-row:nth-child(odd) {
    border-left: 0;
  }

  .runtime-health-row:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .overview-action-row {
    grid-template-columns: minmax(90px, .7fr) minmax(0, 2fr) minmax(180px, 1fr);
  }

  .overview-action-row > .compact-button {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .staging-list {
    grid-template-columns: 1fr;
  }

  .monitoring-detail dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .onboarding-steps {
    display: flex;
    overflow-x: auto;
  }

  .onboarding-steps li {
    min-width: 180px;
    flex: 0 0 180px;
  }

  .layer-edit-grid,
  .diagnostic-grid,
  .connector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 52px;
  }

  .topbar {
    gap: var(--space-1);
    padding-inline: var(--space-2);
  }

  .brand-lockup {
    gap: var(--space-2);
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-copy strong,
  .brand-copy h1 {
    font-size: 14px;
  }

  .public-shell .dev-nav a.active,
  .admin-shell .dev-nav a.active {
    display: none;
  }

  .dev-nav a {
    min-height: 34px;
    font-size: 11px;
    padding-inline: var(--space-2);
  }

  .topbar-divider {
    display: none;
  }

  .admin-layout {
    padding: var(--space-3) var(--space-3) var(--space-6);
  }

  .admin-page-head {
    padding-top: var(--space-3);
  }

  .admin-page-head h1 {
    font-size: 24px;
  }

  .admin-auth > div {
    grid-template-columns: 1fr;
  }

  .admin-navigation {
    margin-inline: calc(var(--space-3) * -1);
    padding-inline: var(--space-2);
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .layer-register-tools,
  .onboarding-heading,
  .onboarding-step-heading,
  .suggestion-strip,
  .onboarding-save-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .layer-register-tools .admin-table-filter {
    min-width: 0;
  }

  .onboarding-heading,
  .onboarding-step-panel {
    padding: var(--space-4);
  }

  .layer-onboarding > .message {
    margin-inline: var(--space-4);
  }

  .onboarding-save-bar {
    margin: var(--space-5) calc(var(--space-4) * -1) calc(var(--space-4) * -1);
    padding-inline: var(--space-4);
  }

  .onboarding-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .format-configuration,
  .preview-layer-info dl,
  .taxonomy-grid,
  .review-summary {
    grid-template-columns: 1fr;
  }

  .admin-table-filter {
    width: 100%;
  }

  .admin-card {
    padding-block: var(--space-5);
  }

  .layer-editor-panel {
    padding: var(--space-4);
  }

  .layer-edit-grid,
  .diagnostic-grid,
  .staging-meta {
    grid-template-columns: 1fr;
  }

  .layer-editor-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .admin-actions button {
    width: 100%;
  }
}

@media (max-width: 840px) {
  .landing-pricing__grid { grid-template-columns: 1fr; }
  .landing-pricing__card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
