@charset "UTF-8";
:root {
  --oh-font-sans: inter, system-ui, -apple-system, 'Segoe UI', roboto, 'Helvetica Neue', arial, sans-serif;
  --oh-font-size-xs: 0.875rem;
  --oh-font-size-sm: 1rem;
  --oh-font-size-md: 1.125rem;
  --oh-font-size-lg: 1.25rem;
  --oh-font-size-xl: 1.5rem;
  --oh-font-size-2xl: 2rem;
  --oh-font-size-3xl: 2.5rem;
  --oh-line-tight: 1.3;
  --oh-line-base: 1.6;
  --oh-color-bg: #fff;
  --oh-color-surface: #f4f4f8;
  --oh-color-border: rgb(16 16 24 / 18%);
  --oh-color-text: #101018;
  --oh-color-muted: rgb(16 16 24 / 62%);
  --oh-color-accent: #4f46e5;
  --oh-color-accent-fg: #fff;
  --oh-color-accent-soft: #a5b4fc;
  --oh-color-canvas-dark: #101018;
  --oh-color-canvas-fg: #eaeaf2;
  --oh-color-canvas-muted: rgb(234 234 242 / 62%);
  --oh-color-canvas-rule: rgb(234 234 242 / 14%);
  --oh-color-success: #059669;
  --oh-color-warning: #d97706;
  --oh-color-danger: #b3261e;
  --oh-space-1: 4px;
  --oh-space-2: 8px;
  --oh-space-3: 12px;
  --oh-space-4: 16px;
  --oh-space-5: 24px;
  --oh-space-6: 32px;
  --oh-space-7: 48px;
  --oh-space-8: 64px;
  --oh-radius-sm: 4px;
  --oh-radius-md: 8px;
  --oh-radius-lg: 12px;
  --oh-shadow-sm: 0 1px 2px rgb(0 0 0 / 4%);
  --oh-shadow-md: 0 1px 2px rgb(0 0 0 / 4%), 0 8px 24px rgb(0 0 0 / 6%);
  --oh-motion-fast: 120ms;
  --oh-motion-base: 240ms;
  --oh-container-chrome: 1400px;
  --oh-container-content: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background-color: var(--oh-color-bg);
  color: var(--oh-color-text);
  font-family: var(--oh-font-sans);
  font-size: var(--oh-font-size-sm);
  line-height: var(--oh-line-base);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.screen-reader-text:focus {
  position: static !important;
  clip: auto;
  width: auto;
  height: auto;
  overflow: visible;
  white-space: normal;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--oh-space-3);
  font-weight: 600;
  line-height: var(--oh-line-tight);
}

h1 {
  font-size: var(--oh-font-size-3xl);
}

h2 {
  font-size: var(--oh-font-size-2xl);
}

h3 {
  font-size: var(--oh-font-size-xl);
}

h4 {
  font-size: var(--oh-font-size-lg);
}

h5 {
  font-size: var(--oh-font-size-md);
}

h6 {
  font-size: var(--oh-font-size-sm);
}

p {
  margin: 0 0 var(--oh-space-4);
}

a {
  color: var(--oh-color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover, a:focus-visible {
  text-decoration-thickness: 2px;
}

strong {
  font-weight: 600;
}

code, pre, kbd, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95em;
}

.oh-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.oh-main {
  flex: 1 0 auto;
  padding: var(--oh-space-6) var(--oh-space-4);
  /* stylelint-disable selector-class-pattern */
}
.oh-main-inner {
  max-width: var(--oh-container-content, 1200px);
  margin-inline: auto;
}
.oh-main-inner .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.oh-main-inner .alignwide {
  width: var(--oh-container-chrome, 1400px);
  max-width: 100%;
  margin-inline: auto;
}
.oh-main {
  /* stylelint-enable selector-class-pattern */
}

.oh-main-home {
  padding: 0;
  /* stylelint-disable-next-line selector-class-pattern */
}
.oh-main-home .alignwide {
  width: var(--oh-container-chrome, 1400px);
  max-width: calc(100% - 2 * var(--oh-space-5));
  margin-inline: auto;
}

.oh-skip-link:focus {
  position: absolute;
  top: var(--oh-space-2);
  inset-inline-start: var(--oh-space-2);
  padding: var(--oh-space-2) var(--oh-space-3);
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  border-radius: var(--oh-radius-md);
  z-index: 100;
}

.oh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--oh-space-2) var(--oh-space-4);
  border: 1px solid var(--oh-color-accent);
  border-radius: var(--oh-radius-md);
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  font-weight: 500;
  text-decoration: none;
  transition: background var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-button {
    transition: none;
    animation: none;
  }
}
.oh-button:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 85%, black);
}
.oh-button:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-button-secondary {
  background: transparent;
  color: var(--oh-color-accent);
}

.oh-card {
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border);
  border-radius: var(--oh-radius-lg);
  box-shadow: var(--oh-shadow-sm);
  padding: var(--oh-space-5);
}
.oh-card-header {
  margin-bottom: var(--oh-space-3);
}
.oh-card-title {
  margin: 0;
  font-size: var(--oh-font-size-lg);
}
.oh-card-body {
  color: var(--oh-color-text);
}
.oh-card-footer {
  margin-top: var(--oh-space-4);
  padding-top: var(--oh-space-4);
  border-top: 1px solid var(--oh-color-border);
  color: var(--oh-color-muted);
  font-size: var(--oh-font-size-xs);
}

.oh-form {
  --oh-field-h: 48px;
  --oh-field-radius: 8px;
  --oh-field-pad-x: 14px;
  --oh-field-icon-w: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: var(--oh-font-size-sm);
  color: var(--oh-color-text);
  counter-reset: oh-form-section;
}
.oh-form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  margin: 0;
  padding: 0;
  border: 0;
}
.oh-form-group legend {
  grid-column: 1/-1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 6px;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--oh-color-text);
  counter-increment: oh-form-section;
}
.oh-form-group legend::before {
  content: counter(oh-form-section, decimal-leading-zero);
  flex: none;
  font-size: 0.625rem;
  font-weight: 600;
  font-feature-settings: "tnum" on, "lnum" on;
  letter-spacing: 0.16em;
  color: var(--oh-color-accent);
}
.oh-form-group .oh-field {
  grid-column: span 1;
}
.oh-form-group .oh-field:has(input[name=email]),
.oh-form-group .oh-field:has(input[name=password]),
.oh-form-group .oh-field:has(input[name=password_confirm]),
.oh-form-group .oh-field:has(input[name=phone]),
.oh-form-group .oh-field:has(input[name=business_name]),
.oh-form-group .oh-field-dropzone {
  grid-column: 1/-1;
}
@media (width < 640px) {
  .oh-form-group {
    grid-template-columns: 1fr;
  }
  .oh-form-group .oh-field {
    grid-column: 1/-1;
  }
}
.oh-form-output {
  display: block;
  min-height: 1rem;
  font-size: var(--oh-font-size-xs);
  line-height: var(--oh-line-base);
  color: color-mix(in srgb, var(--oh-color-success) 75%, var(--oh-color-text));
}
.oh-form-output:empty {
  display: none;
}
.oh-form-output:not(:empty) {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: var(--oh-space-2) var(--oh-space-3);
  background: color-mix(in srgb, var(--oh-color-success) 8%, transparent);
  border-left: 3px solid var(--oh-color-success);
  border-radius: var(--oh-radius-sm);
}
.oh-form-output.oh-form-output-error {
  color: var(--oh-color-danger);
}
.oh-form-output.oh-form-output-error:not(:empty) {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-left-color: var(--oh-color-danger);
}
.oh-form-notice {
  margin: var(--oh-space-2) 0 0;
  color: var(--oh-color-muted);
  font-size: var(--oh-font-size-sm);
  text-align: center;
}
.oh-form-aside {
  margin: var(--oh-space-3) 0 0;
  color: var(--oh-color-muted);
  font-size: var(--oh-font-size-sm);
  text-align: center;
}
.oh-form-aside a {
  color: var(--oh-color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.oh-form-aside a:hover, .oh-form-aside a:focus-visible {
  color: color-mix(in srgb, var(--oh-color-accent) 80%, black);
}
.oh-form-success {
  margin: 0;
  padding: var(--oh-space-5);
  text-align: center;
  color: var(--oh-color-text);
  font-size: var(--oh-font-size-md);
  line-height: var(--oh-line-base);
}
.oh-form-success::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto var(--oh-space-3);
  border-radius: 50%;
  background: color-mix(in srgb, var(--oh-color-success) 12%, transparent);
  color: var(--oh-color-success);
  font-size: var(--oh-font-size-xl);
  font-weight: 600;
}

.oh-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.oh-field {
  --oh-field-pad-l: var(--oh-field-pad-x);
  --oh-field-pad-r: var(--oh-field-pad-x);
  position: relative;
  display: block;
  min-width: 0;
}
.oh-field .oh-field-hint {
  display: block;
  padding-left: var(--oh-field-pad-l);
  margin-top: 6px;
  color: var(--oh-color-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}
.oh-field input[type=text],
.oh-field input[type=email],
.oh-field input[type=url],
.oh-field input[type=tel],
.oh-field input[type=password],
.oh-field input[type=number] {
  width: 100%;
  height: var(--oh-field-h);
  padding-left: var(--oh-field-pad-l);
  padding-right: var(--oh-field-pad-r);
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border);
  border-radius: var(--oh-field-radius);
  color: var(--oh-color-text);
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-feature-settings: "tnum" on, "lnum" on;
  transition: border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease, background var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-field input[type=text],
  .oh-field input[type=email],
  .oh-field input[type=url],
  .oh-field input[type=tel],
  .oh-field input[type=password],
  .oh-field input[type=number] {
    transition: none;
    animation: none;
  }
}
.oh-field input[type=text]::-moz-placeholder, .oh-field input[type=email]::-moz-placeholder, .oh-field input[type=url]::-moz-placeholder, .oh-field input[type=tel]::-moz-placeholder, .oh-field input[type=password]::-moz-placeholder, .oh-field input[type=number]::-moz-placeholder {
  color: transparent;
}
.oh-field input[type=text]::placeholder,
.oh-field input[type=email]::placeholder,
.oh-field input[type=url]::placeholder,
.oh-field input[type=tel]::placeholder,
.oh-field input[type=password]::placeholder,
.oh-field input[type=number]::placeholder {
  color: transparent;
}
.oh-field input[type=text]:hover:not(:focus-visible, :user-invalid),
.oh-field input[type=email]:hover:not(:focus-visible, :user-invalid),
.oh-field input[type=url]:hover:not(:focus-visible, :user-invalid),
.oh-field input[type=tel]:hover:not(:focus-visible, :user-invalid),
.oh-field input[type=password]:hover:not(:focus-visible, :user-invalid),
.oh-field input[type=number]:hover:not(:focus-visible, :user-invalid) {
  border-color: color-mix(in srgb, var(--oh-color-text) 28%, transparent);
}
.oh-field input[type=text]:focus-visible,
.oh-field input[type=email]:focus-visible,
.oh-field input[type=url]:focus-visible,
.oh-field input[type=tel]:focus-visible,
.oh-field input[type=password]:focus-visible,
.oh-field input[type=number]:focus-visible {
  outline: none;
  border-color: var(--oh-color-accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oh-color-accent) 14%, transparent);
  padding-left: calc(var(--oh-field-pad-l) - 1px);
  padding-right: calc(var(--oh-field-pad-r) - 1px);
}
.oh-field input[type=text]:user-invalid:not(:-moz-placeholder), .oh-field input[type=email]:user-invalid:not(:-moz-placeholder), .oh-field input[type=url]:user-invalid:not(:-moz-placeholder), .oh-field input[type=tel]:user-invalid:not(:-moz-placeholder), .oh-field input[type=password]:user-invalid:not(:-moz-placeholder), .oh-field input[type=number]:user-invalid:not(:-moz-placeholder) {
  border-color: var(--oh-color-danger);
  border-width: 2px;
  padding-left: calc(var(--oh-field-pad-l) - 1px);
  padding-right: calc(var(--oh-field-pad-r) - 1px);
}
.oh-field input[type=text]:user-invalid:not(:placeholder-shown),
.oh-field input[type=email]:user-invalid:not(:placeholder-shown),
.oh-field input[type=url]:user-invalid:not(:placeholder-shown),
.oh-field input[type=tel]:user-invalid:not(:placeholder-shown),
.oh-field input[type=password]:user-invalid:not(:placeholder-shown),
.oh-field input[type=number]:user-invalid:not(:placeholder-shown) {
  border-color: var(--oh-color-danger);
  border-width: 2px;
  padding-left: calc(var(--oh-field-pad-l) - 1px);
  padding-right: calc(var(--oh-field-pad-r) - 1px);
}
.oh-field-label {
  position: absolute;
  top: calc(var(--oh-field-h) / 2);
  left: var(--oh-field-pad-x);
  z-index: 1;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--oh-color-muted);
  background: var(--oh-color-bg);
  transform: translateY(-50%);
  transition: top var(--oh-motion-fast) ease, font-size var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease;
  pointer-events: none;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .oh-field-label {
    transition: none;
    animation: none;
  }
}
.oh-field-required {
  margin-left: 2px;
  color: var(--oh-color-muted);
}
.oh-field:has(input:not(:-moz-placeholder)) .oh-field-label {
  top: 0;
  font-size: 11px;
  font-weight: 500;
  transform: translateY(-50%);
  padding: 0 6px;
}
.oh-field:focus-within .oh-field-label, .oh-field:has(input:not(:placeholder-shown)) .oh-field-label {
  top: 0;
  font-size: 11px;
  font-weight: 500;
  transform: translateY(-50%);
  padding: 0 6px;
}
.oh-field:focus-within .oh-field-label {
  color: var(--oh-color-accent);
}
.oh-field:has(input:user-invalid:not(:-moz-placeholder)) .oh-field-label {
  color: var(--oh-color-danger);
}
.oh-field:has(input:user-invalid:not(:placeholder-shown)) .oh-field-label, .oh-field[data-oh-error=true] .oh-field-label {
  color: var(--oh-color-danger);
}
.oh-field[data-oh-error=true] input[type=text], .oh-field[data-oh-error=true] input[type=email], .oh-field[data-oh-error=true] input[type=url], .oh-field[data-oh-error=true] input[type=tel], .oh-field[data-oh-error=true] input[type=password], .oh-field[data-oh-error=true] input[type=number] {
  border-color: var(--oh-color-danger);
  border-width: 2px;
  padding-left: calc(var(--oh-field-pad-l) - 1px);
  padding-right: calc(var(--oh-field-pad-r) - 1px);
}
.oh-field .oh-field-error {
  flex-basis: 100%;
  width: 100%;
  margin: 6px 0 0;
  padding-left: var(--oh-field-pad-l);
  color: var(--oh-color-danger);
  font-size: 0.75rem;
  line-height: 1.4;
}

.oh-field-icon {
  --oh-field-pad-l: var(--oh-field-icon-w);
}
.oh-field-icon .oh-field-label {
  left: 40px;
}
.oh-field-icon:has(input:not(:-moz-placeholder)) .oh-field-label {
  left: var(--oh-field-pad-x);
}
.oh-field-icon:focus-within .oh-field-label, .oh-field-icon:has(input:not(:placeholder-shown)) .oh-field-label {
  left: var(--oh-field-pad-x);
}
.oh-field-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--oh-field-icon-w);
  height: var(--oh-field-h);
  background: center/18px 18px no-repeat;
  pointer-events: none;
  z-index: 2;
}

.oh-field-icon-mail::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='M3 7l9 6 9-6'/></svg>");
}

.oh-field-icon-lock::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2'/><path d='M8 11V7a4 4 0 0 1 8 0v4'/></svg>");
}

.oh-field-icon-phone::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M5 4h4l2 5-2.5 1.5a11 11 0 0 0 5 5L15 13l5 2v4a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2z'/></svg>");
}

.oh-field-icon-briefcase::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='7' width='18' height='13' rx='2'/><path d='M9 7V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2'/></svg>");
}

.oh-field-icon-instagram::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='5'/><circle cx='12' cy='12' r='4'/><circle cx='17.5' cy='6.5' r='1' fill='%23737380'/></svg>");
}

.oh-field-password {
  --oh-field-pad-r: 2.5rem;
}
.oh-field-password .oh-field-toggle {
  position: absolute;
  top: calc((var(--oh-field-h) - 2rem) / 2);
  right: 6px;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  background: transparent center/18px 18px no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23737380' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12z'/><circle cx='12' cy='12' r='3'/></svg>");
  border: 0;
  border-radius: var(--oh-radius-sm);
  cursor: pointer;
  transition: background-color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-field-password .oh-field-toggle {
    transition: none;
    animation: none;
  }
}
.oh-field-password .oh-field-toggle:hover {
  background-color: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}
.oh-field-password .oh-field-toggle:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-field-password .oh-field-toggle[data-revealed=true] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s3.5-7 10-7c2 0 3.7.4 5.2 1.1M22 12s-3.5 7-10 7c-2 0-3.7-.4-5.2-1.1'/><path d='M3 3l18 18'/></svg>");
}

.oh-field-checkbox {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: var(--oh-space-3);
  padding: 0;
  margin-top: var(--oh-space-2);
}
.oh-field-checkbox-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--oh-color-muted);
  line-height: var(--oh-line-base);
}
.oh-field-checkbox-label a {
  color: var(--oh-color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.oh-field-checkbox-label a:hover {
  color: color-mix(in srgb, var(--oh-color-accent) 80%, black);
}
.oh-field-checkbox input[type=checkbox] {
  flex: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  background: var(--oh-color-bg);
  border: 1.5px solid var(--oh-color-border);
  border-radius: var(--oh-radius-sm);
  cursor: pointer;
  transition: border-color var(--oh-motion-fast) ease, background var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-field-checkbox input[type=checkbox] {
    transition: none;
    animation: none;
  }
}
.oh-field-checkbox input[type=checkbox]:hover {
  border-color: var(--oh-color-accent);
}
.oh-field-checkbox input[type=checkbox]:checked {
  background: var(--oh-color-accent);
  border-color: var(--oh-color-accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5,8.5 6.5,11.5 12.5,5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
}
.oh-field-checkbox input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 30%, transparent);
}

.oh-field-dropzone {
  position: relative;
  display: block;
  padding: 18px var(--oh-space-4);
  background: var(--oh-color-bg);
  border: 1.5px dashed color-mix(in srgb, var(--oh-color-accent) 45%, var(--oh-color-border));
  border-radius: var(--oh-field-radius);
  cursor: pointer;
  transition: border-color var(--oh-motion-fast) ease, background var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-field-dropzone {
    transition: none;
    animation: none;
  }
}
.oh-field-dropzone input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  opacity: 0;
  cursor: pointer;
}
.oh-field-dropzone input[type=file]:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 4px;
}
.oh-field-dropzone-body {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2px 14px;
  align-items: center;
  pointer-events: none;
}
.oh-field-dropzone-body::before {
  content: "";
  grid-column: 1;
  grid-row: 1/span 2;
  align-self: center;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--oh-color-accent) 12%, transparent) center/20px 20px no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M12 14V4m0 0l-4 4m4-4l4 4'/><path d='M5 16a4 4 0 0 1 1-7.9 6 6 0 0 1 11.5 1A3.5 3.5 0 0 1 18 16'/></svg>");
  border-radius: var(--oh-radius-sm);
}
.oh-field-dropzone-body strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--oh-color-text);
}
.oh-field-dropzone-body small {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--oh-color-muted);
}
.oh-field-dropzone:hover {
  border-color: var(--oh-color-accent);
  background: color-mix(in srgb, var(--oh-color-accent) 4%, var(--oh-color-bg));
}
.oh-field-dropzone:has(input:focus-visible) {
  border-color: var(--oh-color-accent);
  border-style: solid;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oh-color-accent) 14%, transparent);
}

.oh-form .oh-button[type=submit] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: var(--oh-space-3);
  padding: 0.9rem var(--oh-space-4);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  border: 0;
  border-radius: var(--oh-field-radius);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.12), 0 6px 16px -8px color-mix(in srgb, var(--oh-color-accent) 60%, transparent);
  overflow: hidden;
  transition: background var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-form .oh-button[type=submit] {
    transition: none;
    animation: none;
  }
}
.oh-form .oh-button[type=submit]:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 92%, black);
  transform: translateY(-1px);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.14), 0 12px 24px -10px color-mix(in srgb, var(--oh-color-accent) 70%, transparent);
}
.oh-form .oh-button[type=submit]:active {
  background: color-mix(in srgb, var(--oh-color-accent) 82%, black);
  transform: translateY(0);
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.16);
}
.oh-form .oh-button[type=submit]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oh-color-accent) 24%, transparent), 0 1px 1px rgba(15, 23, 42, 0.14);
}
.oh-form .oh-button[type=submit]:disabled {
  background: color-mix(in srgb, var(--oh-color-accent) 60%, var(--oh-color-bg));
  color: color-mix(in srgb, var(--oh-color-accent-fg) 80%, transparent);
  cursor: progress;
}
.oh-form .oh-button[type=submit]:disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, white 25%, transparent) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: oh-button-shimmer 1.4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .oh-form .oh-button[type=submit]:disabled::after {
    animation: none;
  }
}

@keyframes oh-button-shimmer {
  to {
    transform: translateX(100%);
  }
}
.oh-repeater {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}

.oh-repeater-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-2);
}
.oh-repeater-rows:empty {
  margin: 0;
}

.oh-repeater-row {
  display: flex;
  align-items: center;
  gap: var(--oh-space-2);
}
.oh-repeater-row > :not(.oh-repeater-remove):first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.oh-repeater-add {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px dashed color-mix(in srgb, var(--oh-color-text) 22%, transparent);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
.oh-repeater-add::before {
  content: "+";
  display: inline-block;
  width: 0.875rem;
  text-align: center;
  font-weight: 600;
  color: var(--oh-color-accent);
}
.oh-repeater-add:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 6%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, transparent);
  color: color-mix(in srgb, var(--oh-color-accent) 70%, var(--oh-color-text));
}
.oh-repeater-add:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-repeater-add[aria-disabled=true] {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-danger) 40%, transparent);
  color: var(--oh-color-danger);
  cursor: not-allowed;
}

.oh-repeater-remove {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  color: var(--oh-color-muted);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 12%, transparent);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
.oh-repeater-remove:hover {
  background: color-mix(in srgb, var(--oh-color-danger) 6%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-danger) 35%, transparent);
  color: var(--oh-color-danger);
}
.oh-repeater-remove:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-repeater-remove[aria-disabled=true] {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-danger) 40%, transparent);
  color: var(--oh-color-danger);
  cursor: not-allowed;
}

.oh-dropzone {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}

.oh-dropzone-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--oh-space-5) var(--oh-space-4);
  background: var(--oh-color-bg);
  border: 1.5px dashed color-mix(in srgb, var(--oh-color-accent) 35%, var(--oh-color-border));
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-text);
  text-align: center;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}
.oh-dropzone-target::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: center/24px 24px no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M12 14V4m0 0l-4 4m4-4l4 4'/><path d='M5 16a4 4 0 0 1 1-7.9 6 6 0 0 1 11.5 1A3.5 3.5 0 0 1 18 16'/></svg>");
}
.oh-dropzone-target:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 4%, var(--oh-color-bg));
  border-color: var(--oh-color-accent);
}
.oh-dropzone-target:focus-within {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oh-color-accent) 14%, transparent);
}
.oh-dropzone-target input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.oh-dropzone-dragover .oh-dropzone-target {
  background: color-mix(in srgb, var(--oh-color-accent) 8%, var(--oh-color-bg));
  border-color: var(--oh-color-accent);
  border-style: solid;
}

.oh-dropzone-error {
  margin: 0;
  padding: var(--oh-space-2) var(--oh-space-3);
  background: color-mix(in srgb, var(--oh-color-danger) 6%, transparent);
  border-left: 3px solid var(--oh-color-danger);
  border-radius: var(--oh-radius-sm);
  color: var(--oh-color-danger);
  font-size: var(--oh-font-size-xs);
  line-height: var(--oh-line-base);
}
.oh-dropzone-error[hidden] {
  display: none;
}

.oh-dropzone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--oh-space-2);
}
.oh-dropzone-list:empty {
  display: none;
}

.oh-dropzone-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: var(--oh-radius-md);
}

.oh-dropzone-item-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  border-radius: var(--oh-radius-sm);
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--oh-color-muted);
}
.oh-dropzone-item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.oh-dropzone-item-thumb-doc {
  background: color-mix(in srgb, var(--oh-color-accent) 8%, transparent);
  color: color-mix(in srgb, var(--oh-color-accent) 80%, var(--oh-color-text));
}

.oh-dropzone-item-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.oh-dropzone-item-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--oh-color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oh-dropzone-item-size {
  font-size: 0.6875rem;
  color: var(--oh-color-muted);
  font-feature-settings: "tnum" on, "lnum" on;
}

.oh-dropzone-item-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  padding: 0;
  background: rgba(15, 23, 42, 0.7);
  color: white;
  border: 0;
  border-radius: 50%;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease;
}
.oh-dropzone-item-remove:hover {
  background: var(--oh-color-danger);
}
.oh-dropzone-item-remove:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}

/* stylelint-disable selector-class-pattern */
:root {
  --oh-header-height: 72px;
}

.oh-skip-link:focus, .oh-skip-link:focus-visible {
  position: fixed;
  inset: var(--oh-space-3) auto auto var(--oh-space-3);
  z-index: 9999;
  padding: var(--oh-space-2) var(--oh-space-4);
  background: var(--oh-color-text);
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-bg);
  font-size: var(--oh-font-size-xs);
  font-weight: 600;
  text-decoration: none;
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
}

.oh-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--oh-color-bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--oh-motion-base) ease, box-shadow var(--oh-motion-base) ease;
}
.oh-site-header.is-scrolled {
  border-bottom-color: var(--oh-color-border);
  box-shadow: var(--oh-shadow-sm);
}
.oh-site-header-inner {
  display: flex;
  align-items: center;
  gap: var(--oh-space-5);
  max-width: var(--oh-container-chrome);
  height: var(--oh-header-height);
  margin-inline: auto;
  padding: 0 var(--oh-space-5);
}

.oh-brand-link {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-3);
  margin-right: auto;
  color: inherit;
  text-decoration: none;
  border-radius: var(--oh-radius-sm);
}
.oh-brand-link:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 4px;
}

.oh-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-3);
}

.oh-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}
.oh-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.oh-brand-mark-custom a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  pointer-events: none;
}

.oh-brand-name {
  color: var(--oh-color-text);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.oh-primary-nav {
  display: flex;
  align-items: center;
}
.oh-primary-nav-list {
  display: flex;
  gap: var(--oh-space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}
.oh-primary-nav-list a {
  display: inline-block;
  padding: var(--oh-space-2) 0;
  color: var(--oh-color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--oh-motion-fast) ease;
}
.oh-primary-nav-list a:hover {
  color: var(--oh-color-text);
}
.oh-primary-nav-list a:focus-visible {
  color: var(--oh-color-text);
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 4px;
  border-radius: var(--oh-radius-sm);
}

.oh-header-actions {
  display: flex;
  align-items: center;
  gap: var(--oh-space-2);
  margin-left: auto;
}
@media (width < 769px) {
  .oh-header-actions {
    display: none;
  }
}

.oh-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 var(--oh-space-4);
  border-radius: var(--oh-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
.oh-header-cta:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}
.oh-header-cta-ghost {
  background: transparent;
  border: 1px solid var(--oh-color-border);
  color: var(--oh-color-text);
}
.oh-header-cta-ghost:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, var(--oh-color-border));
  transform: translateY(-1px);
}
.oh-header-cta-primary {
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.28);
}
.oh-header-cta-primary:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 90%, black);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.32), 0 8px 18px rgba(79, 70, 229, 0.22);
}

.oh-header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--oh-color-border);
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-text);
  cursor: pointer;
  transition: border-color var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease;
}
@media (width < 769px) {
  .oh-header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.oh-header-toggle:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, var(--oh-color-border));
}
.oh-header-toggle:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}
.oh-header-toggle-bars {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 12px;
}
.oh-header-toggle-bars::before, .oh-header-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentcolor;
  border-radius: 1px;
  transition: transform var(--oh-motion-fast) ease, top var(--oh-motion-fast) ease;
}
.oh-header-toggle-bars::before {
  top: 2px;
}
.oh-header-toggle-bars::after {
  top: 8px;
}
.oh-header-toggle[aria-expanded=true] .oh-header-toggle-bars::before {
  top: 5px;
  transform: rotate(45deg);
}
.oh-header-toggle[aria-expanded=true] .oh-header-toggle-bars::after {
  top: 5px;
  transform: rotate(-45deg);
}

@media (width >= 769px) {
  .oh-primary-nav {
    margin-left: var(--oh-space-2);
  }
}
@media (width < 769px) {
  .oh-primary-nav {
    display: none;
  }
}
/* stylelint-disable selector-class-pattern */
.oh-mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 110;
  width: min(360px, 100%);
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform var(--oh-motion-base) cubic-bezier(0.2, 0.8, 0.2, 1);
}
.oh-mobile-drawer[hidden] {
  display: none;
}
.oh-mobile-drawer.is-open {
  transform: translateX(0);
}
.oh-mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  height: 100%;
  padding: var(--oh-space-5) var(--oh-space-5) var(--oh-space-7);
}
.oh-mobile-drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--oh-color-canvas-rule);
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-canvas-fg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease;
}
.oh-mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--oh-color-accent-soft) 60%, var(--oh-color-canvas-rule));
}
.oh-mobile-drawer-close:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}
.oh-mobile-drawer-nav {
  display: block;
}
.oh-mobile-drawer-list {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.oh-mobile-drawer-list a {
  display: block;
  padding: var(--oh-space-3) var(--oh-space-3);
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-canvas-fg);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color var(--oh-motion-fast) ease;
}
.oh-mobile-drawer-list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.oh-mobile-drawer-list a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}
.oh-mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  margin-top: auto;
}
.oh-mobile-drawer-actions .oh-header-cta {
  width: 100%;
}
.oh-mobile-drawer-actions .oh-header-cta-ghost {
  background: transparent;
  border-color: var(--oh-color-canvas-rule);
  color: var(--oh-color-canvas-fg);
}
.oh-mobile-drawer-actions .oh-header-cta-ghost:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent-soft) 60%, var(--oh-color-canvas-rule));
  background: rgba(255, 255, 255, 0.04);
}

.oh-body.is-drawer-open {
  overflow: hidden;
  padding-right: var(--oh-scrollbar-comp, 0);
}

.oh-site-footer {
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  font-size: var(--oh-font-size-xs);
  padding: var(--oh-space-7) 0 var(--oh-space-5);
}
.oh-site-footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(2, minmax(0, 1fr));
  gap: var(--oh-space-7);
  max-width: var(--oh-container-chrome);
  margin-inline: auto;
  padding-inline: var(--oh-space-5);
}
@media (width < 769px) {
  .oh-site-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--oh-space-6);
  }
}
.oh-site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}
.oh-site-footer-brand .oh-brand-name {
  color: #fff;
  font-size: 1.0625rem;
}
.oh-site-footer-tagline {
  margin: 0;
  max-width: 38ch;
  color: var(--oh-color-canvas-muted);
  font-size: var(--oh-font-size-xs);
  line-height: 1.55;
}
.oh-site-footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}
.oh-site-footer-section-title {
  margin: 0;
  color: var(--oh-color-canvas-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.oh-site-footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.oh-site-footer-list a {
  color: var(--oh-color-canvas-fg);
  font-size: var(--oh-font-size-xs);
  text-decoration: none;
  transition: color var(--oh-motion-fast) ease;
}
.oh-site-footer-list a:hover {
  color: #fff;
}
.oh-site-footer-list a:focus-visible {
  color: #fff;
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
  border-radius: var(--oh-radius-sm);
}
.oh-site-footer-meta {
  max-width: var(--oh-container-chrome);
  margin-inline: auto;
  margin-block-start: var(--oh-space-6);
  padding-block-start: var(--oh-space-4);
  padding-inline: var(--oh-space-5);
  border-block-start: 1px solid var(--oh-color-canvas-rule);
}
.oh-site-footer-copy {
  margin: 0;
  color: var(--oh-color-canvas-muted);
  font-size: var(--oh-font-size-xs);
}

.oh-article-header {
  margin-bottom: var(--oh-space-4);
}
.oh-article-title {
  margin: 0;
}
.oh-article-content {
  color: var(--oh-color-text);
}

.oh-empty {
  text-align: center;
  padding: var(--oh-space-7) var(--oh-space-4);
  color: var(--oh-color-muted);
}
.oh-empty-title {
  margin-bottom: var(--oh-space-3);
  color: var(--oh-color-text);
}
.oh-empty-text {
  margin-bottom: var(--oh-space-5);
}

.oh-search {
  display: flex;
  gap: var(--oh-space-2);
}
.oh-search-input {
  flex: 1;
  padding: var(--oh-space-2) var(--oh-space-3);
  border: 1px solid var(--oh-color-border);
  border-radius: var(--oh-radius-md);
  font-family: inherit;
  font-size: var(--oh-font-size-sm);
}
.oh-search-input:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-search-submit {
  padding: var(--oh-space-2) var(--oh-space-4);
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  border: 1px solid var(--oh-color-accent);
  border-radius: var(--oh-radius-md);
}

html:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)),
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) {
  min-height: 100dvh;
  margin: 0 !important; /* stylelint-disable-line declaration-no-important -- outrank WP's admin-bar inline CSS. */
}

body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) {
  background: var(--oh-color-bg);
}
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-site-header,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-site-footer,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-article-header,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-article-title,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-article-meta,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-page-title,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-breadcrumbs,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-comments,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-empty,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .wp-block-post-title,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .wp-block-post-author,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .wp-block-post-date {
  display: none;
}
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) {
  /* stylelint-enable selector-class-pattern */
}
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-main,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-main-inner,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-article,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .oh-article-content,
body:has(:is(.oh-auth-page, .oh-form-signup, .oh-form-signin, .oh-form-forgot, .oh-form-reset)) .entry-content {
  display: contents;
}

.oh-auth-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  isolation: isolate;
  font-family: inter, system-ui, -apple-system, sans-serif;
}
@media (min-width: 1024px) {
  .oh-auth-page {
    grid-template-columns: 0.85fr 1fr;
  }
}

.oh-auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--oh-space-7);
  padding: 40px 32px;
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  overflow: hidden;
  order: 2;
}
.oh-auth-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, color-mix(in srgb, var(--oh-color-accent-soft) 8%, transparent) 1px, transparent 1px), linear-gradient(to bottom, color-mix(in srgb, var(--oh-color-accent-soft) 8%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(135deg, black 0%, black 30%, transparent 90%);
          mask-image: linear-gradient(135deg, black 0%, black 30%, transparent 90%);
  pointer-events: none;
}
.oh-auth-aside::after {
  content: "";
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  z-index: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--oh-color-accent) 28%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.oh-auth-aside > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .oh-auth-aside {
    padding: 40px 48px;
    order: 0;
  }
}

.oh-auth-aside-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-3);
  text-decoration: none;
  color: inherit;
  width: -moz-fit-content;
  width: fit-content;
}
.oh-auth-aside-brand img {
  width: 32px;
  height: 32px;
}
.oh-auth-aside-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.oh-auth-aside-brand-name strong {
  font-size: var(--oh-font-size-md);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oh-color-canvas-fg);
}
.oh-auth-aside-brand-name small {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-color-canvas-muted);
}

.oh-auth-aside-hero {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-4);
}
.oh-auth-aside-hero .oh-auth-aside-rule {
  width: 3rem;
  height: 2px;
  margin: 0;
  border: 0;
  background: var(--oh-color-accent-soft);
}
.oh-auth-aside-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--oh-color-canvas-fg);
}
.oh-auth-aside-hero h1 em {
  display: block;
  font-style: normal;
  color: var(--oh-color-accent-soft);
}
.oh-auth-aside-hero p {
  max-width: 28rem;
  margin: 0;
  color: var(--oh-color-canvas-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.oh-auth-aside-quote {
  margin: 0;
  padding-left: var(--oh-space-4);
  border-left: 2px solid var(--oh-color-canvas-rule);
}
.oh-auth-aside-quote p {
  margin: 0 0 var(--oh-space-3);
  color: var(--oh-color-canvas-fg);
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.6;
}
.oh-auth-aside-quote cite {
  display: block;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-color-canvas-muted);
}

.oh-auth-aside-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-4);
  margin: 0;
  padding-top: var(--oh-space-5);
  border-top: 1px solid var(--oh-color-canvas-rule);
}
.oh-auth-aside-pillars li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--oh-space-3);
  align-items: start;
}
.oh-auth-aside-pillars-pillar-num {
  font-size: 0.6875rem;
  font-weight: 500;
  font-feature-settings: "tnum" on, "lnum" on;
  letter-spacing: 0.06em;
  color: var(--oh-color-canvas-muted);
  padding-top: 2px;
}
.oh-auth-aside-pillars strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh-color-canvas-fg);
}
.oh-auth-aside-pillars p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--oh-color-canvas-muted);
}

.oh-auth-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 28px;
  background: var(--oh-color-surface);
  isolation: isolate;
  overflow: hidden;
}
.oh-auth-main::before {
  content: "";
  position: absolute;
  top: -22rem;
  left: 50%;
  width: 44rem;
  height: 44rem;
  z-index: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--oh-color-accent) 9%, transparent) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.oh-auth-main-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
}
.oh-auth-main-header {
  margin: 0 0 28px;
}
@media (min-width: 1024px) {
  .oh-auth-main {
    padding: 64px 56px;
  }
}

.oh-auth-card {
  min-height: 520px;
  padding: 32px 32px 36px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.04), 0 24px 48px -32px rgba(15, 23, 42, 0.18);
}
@media (min-width: 1024px) {
  .oh-auth-card {
    padding: 40px 40px 44px;
  }
}

.oh-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oh-color-accent);
}
.oh-form-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentcolor;
  border-radius: 2px;
}

.oh-form-heading {
  margin: 0 0 8px;
  font-size: clamp(1.625rem, 1.4rem + 0.6vw, 1.875rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--oh-color-text);
  font-feature-settings: "ss01" on;
}

.oh-form-tagline {
  margin: 0;
  max-width: 38ch;
  color: var(--oh-color-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .oh-auth-aside-brand,
  .oh-auth-aside-hero,
  .oh-auth-aside-quote,
  .oh-auth-aside-pillars,
  .oh-auth-main-header,
  .oh-auth-main .oh-auth-tabs,
  .oh-auth-main .oh-form {
    animation: oh-auth-rise 560ms cubic-bezier(0.16, 0.84, 0.32, 1) both;
  }
  .oh-auth-aside-brand {
    animation-delay: 40ms;
  }
  .oh-auth-aside-hero {
    animation-delay: 140ms;
  }
  .oh-auth-aside-quote {
    animation-delay: 240ms;
  }
  .oh-auth-aside-pillars {
    animation-delay: 340ms;
  }
  .oh-auth-main-header {
    animation-delay: 120ms;
  }
  .oh-auth-main .oh-auth-tabs {
    animation-delay: 200ms;
  }
  .oh-auth-main .oh-form {
    animation-delay: 280ms;
  }
}
@keyframes oh-auth-rise {
  from {
    opacity: 0.1;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.oh-auth-tabs {
  display: flex;
  gap: 4px;
  margin: -4px -4px 28px;
  padding: 4px;
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  border-radius: 12px;
}

.oh-auth-tab {
  flex: 1 1 0;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-radius: 9px;
  color: var(--oh-color-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: center;
  text-decoration: none;
  transition: background var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-auth-tab {
    transition: none;
    animation: none;
  }
}
.oh-auth-tab:hover, .oh-auth-tab:focus-visible {
  color: var(--oh-color-text);
  outline: 0;
}
.oh-auth-tab-active {
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font-weight: 600;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.04), 0 4px 12px -6px rgba(15, 23, 42, 0.14);
}

.oh-form-row-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -4px;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.oh-field-inline {
  margin: 0;
}
.oh-field-inline .oh-field-checkbox-label {
  margin-left: 4px;
}

.oh-form-link {
  color: var(--oh-color-accent);
  text-decoration: none;
  font-weight: 500;
}
.oh-form-link:hover, .oh-form-link:focus-visible {
  text-decoration: underline;
}

.oh-form-aside {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--oh-color-muted);
}

.oh-form-success {
  margin: 0;
  padding: 16px 18px;
  background: color-mix(in srgb, var(--oh-color-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-accent) 30%, transparent);
  border-radius: 10px;
  color: var(--oh-color-text);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.oh-button-block {
  width: 100%;
}

.oh-auth-page-body {
  /* stylelint-disable-next-line selector-class-pattern -- WP core class. */
}
.oh-auth-page-body.admin-bar #wpadminbar {
  display: none;
}

html:has(.oh-dashboard-screen),
body:has(.oh-dashboard-screen) {
  min-height: 100dvh;
  margin: 0 !important; /* stylelint-disable-line declaration-no-important -- outrank WP's admin-bar inline CSS. */
}

body:has(.oh-dashboard-screen) {
  background: var(--oh-color-bg);
}
body:has(.oh-dashboard-screen) .oh-site-header,
body:has(.oh-dashboard-screen) .oh-site-footer,
body:has(.oh-dashboard-screen) .oh-article-header,
body:has(.oh-dashboard-screen) .oh-empty {
  display: none;
}
body:has(.oh-dashboard-screen) .oh-main,
body:has(.oh-dashboard-screen) .oh-main-inner,
body:has(.oh-dashboard-screen) .oh-article,
body:has(.oh-dashboard-screen) .oh-article-content {
  display: contents;
}

.oh-dashboard-page-body {
  /* stylelint-disable-next-line selector-class-pattern -- WP core class. */
}
.oh-dashboard-page-body.admin-bar #wpadminbar {
  display: none;
}

.oh-dashboard-screen {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font-family: var(--oh-font-sans);
  isolation: isolate;
}
@media (min-width: 1024px) {
  .oh-dashboard-screen {
    grid-template-columns: 290px 1fr;
  }
}

.oh-dashboard-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-4);
  padding: var(--oh-space-4) var(--oh-space-5);
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail {
    gap: var(--oh-space-6);
    padding: var(--oh-space-7) var(--oh-space-5);
  }
}
.oh-dashboard-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, var(--oh-color-canvas-rule) 1px, transparent 1px), linear-gradient(to bottom, var(--oh-color-canvas-rule) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent 65%);
          mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent 65%);
  pointer-events: none;
}
.oh-dashboard-rail > * {
  position: relative;
  z-index: 1;
}

.oh-dashboard-rail-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-3);
  text-decoration: none;
  color: inherit;
}
.oh-dashboard-rail-brand img {
  width: 32px;
  height: 32px;
}
.oh-dashboard-rail-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.oh-dashboard-rail-brand-name strong {
  font-size: var(--oh-font-size-md);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oh-color-canvas-fg);
}
.oh-dashboard-rail-brand-name small {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-color-canvas-muted);
}

.oh-dashboard-rail-rule {
  display: none;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--oh-color-canvas-rule);
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-rule {
    display: block;
  }
}

.oh-dashboard-rail-nav {
  display: flex;
  flex-direction: row;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  /* stylelint-disable-next-line property-no-vendor-prefix -- Safari/Chrome only honour the prefixed pseudo-element. */
}
.oh-dashboard-rail-nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-nav {
    flex-direction: column;
    gap: 2px;
    overflow: visible;
  }
}

.oh-dashboard-rail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--oh-color-canvas-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-dashboard-rail-link {
    transition: none;
    animation: none;
  }
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-link {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: baseline;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 0.9375rem;
    white-space: normal;
  }
}
.oh-dashboard-rail-link-num {
  display: none;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--oh-color-canvas-muted);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-link-num {
    display: inline;
  }
}
.oh-dashboard-rail-link-label {
  font-weight: 500;
}
.oh-dashboard-rail-link-tag {
  display: none;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oh-color-canvas-muted);
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-link-tag {
    display: inline;
  }
}
.oh-dashboard-rail-link:hover, .oh-dashboard-rail-link:focus-visible {
  color: var(--oh-color-canvas-fg);
  background: rgba(255, 255, 255, 0.04);
  outline: 0;
}
.oh-dashboard-rail-link:hover .oh-dashboard-rail-link-num, .oh-dashboard-rail-link:focus-visible .oh-dashboard-rail-link-num {
  color: var(--oh-color-canvas-fg);
}
.oh-dashboard-rail-link.oh-dashboard-rail-link-active {
  color: var(--oh-color-canvas-fg);
  background: rgba(255, 255, 255, 0.08);
}
.oh-dashboard-rail-link.oh-dashboard-rail-link-active .oh-dashboard-rail-link-num {
  color: var(--oh-color-accent-soft);
}
.oh-dashboard-rail-link.oh-dashboard-rail-link-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.oh-dashboard-rail-identity {
  display: none;
  grid-template-columns: 40px 1fr;
  gap: var(--oh-space-3);
  align-items: center;
  margin-top: auto;
  padding: var(--oh-space-3) 12px;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-identity {
    display: grid;
  }
}
.oh-dashboard-rail-identity-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.oh-dashboard-rail-identity-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oh-color-canvas-fg);
  letter-spacing: -0.005em;
}

.oh-dashboard-rail-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--oh-color-canvas-fg);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.oh-dashboard-rail-signout {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--oh-color-canvas-rule);
  border-radius: 10px;
  color: var(--oh-color-canvas-fg);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-signout {
    display: inline-flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  .oh-dashboard-rail-signout {
    transition: none;
    animation: none;
  }
}
.oh-dashboard-rail-signout:hover, .oh-dashboard-rail-signout:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(234, 234, 242, 0.3);
  outline: 0;
}

.oh-dashboard-rail-locale {
  display: none;
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .oh-dashboard-rail-locale {
    display: block;
  }
}

.oh-dashboard-rail-locale-row {
  display: flex;
  gap: 6px;
  align-items: stretch;
}

.oh-dashboard-rail-locale-row select {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--oh-color-canvas-rule);
  border-radius: 8px;
  color: var(--oh-color-canvas-fg);
  font-size: 0.8125rem;
  line-height: 1.3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.oh-dashboard-rail-locale-row select:focus {
  outline: 0;
  border-color: rgba(234, 234, 242, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.oh-dashboard-rail-locale-save {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--oh-color-canvas-rule);
  border-radius: 8px;
  color: var(--oh-color-canvas-fg);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-dashboard-rail-locale-save {
    transition: none;
    animation: none;
  }
}
.oh-dashboard-rail-locale-save:hover, .oh-dashboard-rail-locale-save:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(234, 234, 242, 0.3);
  outline: 0;
}

.oh-dashboard-workspace {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  padding: var(--oh-space-6) var(--oh-space-5);
  background: color-mix(in srgb, var(--oh-color-text) 4%, var(--oh-color-bg));
}
@media (min-width: 1024px) {
  .oh-dashboard-workspace {
    padding: var(--oh-space-7);
  }
}

.oh-dashboard-hero {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  padding-bottom: var(--oh-space-5);
  border-bottom: 1px solid color-mix(in srgb, var(--oh-color-text) 10%, transparent);
}

.oh-dashboard-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-space-3);
}

.oh-dashboard-hero-section {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}

.oh-dashboard-hero-headline {
  display: flex;
  align-items: center;
  gap: var(--oh-space-4);
}

.oh-dashboard-hero-avatar {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(140deg, hsl(var(--oh-subject-hue, 240), 80%, 62%), hsl(calc(var(--oh-subject-hue, 240) + 35), 75%, 45%));
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--oh-color-bg), 0 0 0 5px color-mix(in srgb, var(--oh-color-text) 8%, transparent), 0 14px 28px color-mix(in srgb, var(--oh-color-text) 18%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oh-dashboard-hero-avatar-glow {
  position: absolute;
  inset: -5px;
  background: conic-gradient(from 220deg, hsl(var(--oh-subject-hue, 240), 90%, 70%, 50%), transparent 35%, hsl(calc(var(--oh-subject-hue, 240) + 60), 90%, 65%, 38%) 70%, transparent);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.oh-dashboard-hero-avatar-initial {
  font-family: var(--oh-font-sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.oh-dashboard-hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.oh-dashboard-hero-greeting {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, var(--oh-color-text) 0%, color-mix(in srgb, var(--oh-color-text) 75%, var(--oh-color-accent)) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.oh-dashboard-hero-subtitle {
  margin: 0;
  max-width: 72ch;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--oh-color-muted);
}

.oh-dashboard-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--oh-space-3);
  margin: var(--oh-space-3) 0 0;
  padding: var(--oh-space-4);
  background: var(--oh-color-surface);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-dashboard-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.oh-dashboard-hero-stat-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}

.oh-dashboard-hero-stat-value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--oh-color-text);
  font-variant-numeric: tabular-nums;
}
.oh-dashboard-hero-stat-value small {
  margin-left: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--oh-color-muted);
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .oh-dashboard-hero-greeting {
    font-size: 2.25rem;
  }
  .oh-dashboard-hero-avatar {
    width: 72px;
    height: 72px;
  }
  .oh-dashboard-hero-avatar-initial {
    font-size: 30px;
  }
}
.oh-dashboard-stage {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
}

.oh-dashboard-card {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-4);
  padding: var(--oh-space-6);
  background: var(--oh-color-bg);
  border-radius: 12px;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.oh-status-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  background: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  color: var(--oh-color-text);
  border: 1px solid var(--oh-color-border);
}
.oh-status-pill-approved {
  background: color-mix(in srgb, var(--oh-color-success) 14%, var(--oh-color-bg));
  color: color-mix(in srgb, var(--oh-color-success) 90%, var(--oh-color-text));
  border-color: color-mix(in srgb, var(--oh-color-success) 35%, var(--oh-color-border));
}
.oh-status-pill-pending {
  background: color-mix(in srgb, var(--oh-color-warning) 14%, var(--oh-color-bg));
  color: color-mix(in srgb, var(--oh-color-warning) 80%, var(--oh-color-text));
  border-color: color-mix(in srgb, var(--oh-color-warning) 35%, var(--oh-color-border));
}
.oh-status-pill-rejected, .oh-status-pill-blocked {
  background: color-mix(in srgb, var(--oh-color-danger) 14%, var(--oh-color-bg));
  color: color-mix(in srgb, var(--oh-color-danger) 88%, var(--oh-color-text));
  border-color: color-mix(in srgb, var(--oh-color-danger) 35%, var(--oh-color-border));
}

.oh-dashboard-rail .oh-status-pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--oh-color-canvas-fg);
  border-color: var(--oh-color-canvas-rule);
}
.oh-dashboard-rail .oh-status-pill-approved {
  background: color-mix(in srgb, var(--oh-color-success) 22%, transparent);
  color: #b6f5d2;
  border-color: color-mix(in srgb, var(--oh-color-success) 38%, transparent);
}
.oh-dashboard-rail .oh-status-pill-pending {
  background: color-mix(in srgb, var(--oh-color-warning) 22%, transparent);
  color: #fbd9a3;
  border-color: color-mix(in srgb, var(--oh-color-warning) 38%, transparent);
}
.oh-dashboard-rail .oh-status-pill-rejected, .oh-dashboard-rail .oh-status-pill-blocked {
  background: color-mix(in srgb, var(--oh-color-danger) 22%, transparent);
  color: #f6c1b9;
  border-color: color-mix(in srgb, var(--oh-color-danger) 38%, transparent);
}

.oh-profile-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  padding: var(--oh-space-6);
  background: var(--oh-color-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.oh-profile-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oh-color-accent), var(--oh-color-accent-soft));
}

.oh-profile-form .oh-form-output {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.oh-profile-form .oh-form-output:empty {
  display: none;
}
.oh-profile-form .oh-form-output:not(:empty) {
  padding: var(--oh-space-2) var(--oh-space-3);
  background: color-mix(in srgb, var(--oh-color-success) 8%, transparent);
  border-left: 3px solid var(--oh-color-success);
  border-radius: var(--oh-radius-sm);
  color: color-mix(in srgb, var(--oh-color-success) 75%, var(--oh-color-text));
}
.oh-profile-form .oh-form-output.oh-form-output-error:not(:empty) {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-left-color: var(--oh-color-danger);
  color: var(--oh-color-danger);
}

.oh-profile-card-head {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}
@media (min-width: 768px) {
  .oh-profile-card-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.oh-profile-card-head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.oh-profile-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.oh-profile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-profile-action {
    transition: none;
    animation: none;
  }
}
.oh-profile-action:hover, .oh-profile-action:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-text) 22%, transparent);
  outline: 0;
}
.oh-profile-action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.oh-profile-action-save {
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border-color: var(--oh-color-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}
.oh-profile-action-save:hover, .oh-profile-action-save:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  border-color: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  color: var(--oh-color-bg);
}
.oh-profile-action[hidden] {
  display: none;
}

.oh-profile-card-title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}

.oh-profile-card-subtitle {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--oh-color-muted);
}

.oh-profile-identity {
  display: flex;
  align-items: center;
  gap: var(--oh-space-4);
}
.oh-profile-identity-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--oh-color-canvas-dark) 88%, var(--oh-color-accent)), var(--oh-color-canvas-dark));
  border-radius: 50%;
  color: var(--oh-color-canvas-fg);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 1px 2px rgba(0, 0, 0, 0.08);
}
.oh-profile-identity-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.oh-profile-identity-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--oh-color-text);
}
.oh-profile-identity-since {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--oh-color-muted);
}

.oh-profile-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  background: color-mix(in srgb, var(--oh-color-text) 3%, var(--oh-color-bg));
  border-radius: 10px;
  overflow: hidden;
}

.oh-profile-field {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 6px;
  min-height: 52px;
  padding: 12px var(--oh-space-4);
  transition: background var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-profile-field {
    transition: none;
    animation: none;
  }
}
@media (min-width: 640px) {
  .oh-profile-field {
    grid-template-columns: minmax(120px, 1fr) 2fr;
    align-items: center;
    gap: var(--oh-space-4);
    padding: 8px var(--oh-space-4);
  }
}
.oh-profile-field + .oh-profile-field {
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}
.oh-profile-field:hover {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
}
.oh-profile-field-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--oh-color-muted);
}
.oh-profile-field-control {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.oh-profile-field-input {
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--oh-color-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: right;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-profile-field-input {
    transition: none;
    animation: none;
  }
}
.oh-profile-field-input:focus, .oh-profile-field-input:focus-visible {
  outline: 0;
}
.oh-profile-field-input::-moz-placeholder {
  color: color-mix(in srgb, var(--oh-color-muted) 70%, transparent);
}
.oh-profile-field-input::placeholder {
  color: color-mix(in srgb, var(--oh-color-muted) 70%, transparent);
}
.oh-profile-field-error {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--oh-color-danger);
  text-align: right;
}
.oh-profile-field-error[hidden] {
  display: none;
}
.oh-profile-field[data-oh-error=true] {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
}
.oh-profile-field[data-oh-error=true] .oh-profile-field-input {
  color: var(--oh-color-danger);
}

.oh-profile-form[data-oh-profile-editing=true] .oh-profile-field:not([data-oh-profile-row-locked=true]) .oh-profile-field-input {
  background: var(--oh-color-bg);
  border-color: color-mix(in srgb, var(--oh-color-text) 16%, transparent);
  text-align: left;
}
.oh-profile-form[data-oh-profile-editing=true] .oh-profile-field:not([data-oh-profile-row-locked=true]) .oh-profile-field-input:hover {
  border-color: color-mix(in srgb, var(--oh-color-text) 26%, transparent);
}
.oh-profile-form[data-oh-profile-editing=true] .oh-profile-field:not([data-oh-profile-row-locked=true]) .oh-profile-field-input:focus, .oh-profile-form[data-oh-profile-editing=true] .oh-profile-field:not([data-oh-profile-row-locked=true]) .oh-profile-field-input:focus-visible {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 18%, transparent);
}
.oh-profile-form[data-oh-profile-editing=true] .oh-profile-field[data-oh-profile-row-locked=true] .oh-profile-field-input {
  color: var(--oh-color-muted);
}

.oh-profile-danger {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  margin-top: var(--oh-space-7);
  padding: var(--oh-space-6);
  background: var(--oh-color-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.oh-profile-danger::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oh-color-danger), #fca5a5);
}

.oh-profile-danger-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-profile-danger-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--oh-color-danger);
}

.oh-profile-danger-subtitle {
  margin: 0;
  color: var(--oh-color-muted);
  font-size: 0.9rem;
}

.oh-profile-danger-trigger {
  align-self: flex-start;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 500;
  color: var(--oh-color-danger);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--oh-color-danger) 35%, transparent);
  border-radius: 8px;
  cursor: pointer;
}
.oh-profile-danger-trigger:hover {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
}
.oh-profile-danger-trigger:focus-visible {
  outline: 2px solid var(--oh-color-danger);
  outline-offset: 2px;
}

.oh-profile-danger-noscript {
  margin: var(--oh-space-3) 0 0;
  font-size: 0.875rem;
  color: var(--oh-color-muted);
}

.oh-account-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oh-account-delete-modal[hidden] {
  display: none;
}

.oh-account-delete-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.oh-account-delete-modal-card {
  position: relative;
  width: min(440px, 100% - 2rem);
  max-height: calc(100vh - 4rem);
  overflow: auto;
  background: var(--oh-color-bg);
  border-radius: 14px;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.12), 0 30px 60px rgba(0, 0, 0, 0.28);
}

.oh-account-delete-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-space-3);
  padding: var(--oh-space-5) var(--oh-space-6) 0;
}

.oh-account-delete-modal-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.oh-account-delete-modal-close {
  background: none;
  border: 0;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--oh-color-muted);
  cursor: pointer;
}

.oh-account-delete-modal-body {
  padding: var(--oh-space-4) var(--oh-space-6);
  font-size: 0.95rem;
  color: var(--oh-color-text);
}
.oh-account-delete-modal-body ul {
  margin: var(--oh-space-3) 0;
  padding-left: 1.25rem;
  color: var(--oh-color-muted);
}
.oh-account-delete-modal-body code {
  padding: 0.05rem 0.35rem;
  font-family: var(--oh-font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 0.9em;
  background: var(--oh-color-surface);
  border-radius: 4px;
}

.oh-account-delete-confirm-label {
  display: block;
  margin-top: var(--oh-space-3);
}

.oh-account-delete-confirm-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-family: var(--oh-font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  letter-spacing: 0.04em;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border);
  border-radius: 8px;
}
.oh-account-delete-confirm-input:focus {
  outline: 2px solid color-mix(in srgb, var(--oh-color-danger) 50%, transparent);
  outline-offset: 1px;
  border-color: var(--oh-color-danger);
}

.oh-account-delete-error {
  margin-top: var(--oh-space-3);
  padding: 0.55rem 0.85rem;
  background: color-mix(in srgb, var(--oh-color-danger) 10%, transparent);
  color: var(--oh-color-danger);
  border-radius: 8px;
  font-size: 0.875rem;
}

.oh-account-delete-modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: var(--oh-space-3);
  padding: var(--oh-space-4) var(--oh-space-6) var(--oh-space-5);
}

.oh-account-delete-cancel,
.oh-account-delete-confirm {
  padding: 0.55rem 1.1rem;
  font: inherit;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
}

.oh-account-delete-cancel {
  background: transparent;
  border: 1px solid var(--oh-color-border);
  color: var(--oh-color-text);
}
.oh-account-delete-cancel:hover {
  background: var(--oh-color-surface);
}

.oh-account-delete-confirm {
  background: var(--oh-color-danger);
  border: 1px solid var(--oh-color-danger);
  color: white;
}
.oh-account-delete-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.oh-account-delete-confirm:not(:disabled):hover {
  filter: brightness(0.95);
}

.oh-verify-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  padding: var(--oh-space-6);
  background: var(--oh-color-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.oh-verify-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oh-color-warning), #f4b556);
}
.oh-verify-card[data-status=approved]::before {
  background: linear-gradient(90deg, var(--oh-color-success), #34d399);
}
.oh-verify-card[data-status=rejected]::before, .oh-verify-card[data-status=blocked]::before {
  background: linear-gradient(90deg, var(--oh-color-danger), #fca5a5);
}

.oh-verify-card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-verify-card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-verify-card-subtitle {
  margin: 0;
  max-width: 56ch;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--oh-color-muted);
}

.oh-verify-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 36px;
  padding: 0 18px;
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border: 1px solid var(--oh-color-text);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: background var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-verify-cta {
    transition: none;
    animation: none;
  }
}
.oh-verify-cta:hover, .oh-verify-cta:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  border-color: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  outline: 0;
}
.oh-verify-cta:active {
  transform: translateY(1px);
}
.oh-verify-cta-ghost {
  background: transparent;
  color: var(--oh-color-text);
  border-color: color-mix(in srgb, var(--oh-color-text) 18%, transparent);
  box-shadow: none;
}
.oh-verify-cta-ghost:hover, .oh-verify-cta-ghost:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-text) 28%, transparent);
  color: var(--oh-color-text);
}

.oh-verify-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-verify-field-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh-color-text);
}

.oh-verify-field-input {
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 16%, transparent);
  border-radius: 7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-verify-field-input {
    transition: none;
    animation: none;
  }
}
.oh-verify-field-input::-moz-placeholder {
  color: color-mix(in srgb, var(--oh-color-muted) 70%, transparent);
}
.oh-verify-field-input::placeholder {
  color: color-mix(in srgb, var(--oh-color-muted) 70%, transparent);
}
.oh-verify-field-input:hover {
  border-color: color-mix(in srgb, var(--oh-color-text) 26%, transparent);
}
.oh-verify-field-input:focus, .oh-verify-field-input:focus-visible {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 18%, transparent);
  outline: 0;
}

.oh-verify-regenerate-label {
  display: block;
  margin: var(--oh-space-3) 0 6px;
}

.oh-verify-regenerate-input {
  flex: 0 1 280px;
  min-width: 0;
  max-width: 280px;
}

.oh-verify-code {
  display: inline-flex;
  padding: var(--oh-space-4) var(--oh-space-5);
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  border-radius: 10px;
  font-family: var(--oh-font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
}

.oh-verify-status {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--oh-color-muted);
}

.oh-verify-regenerate-wrap {
  margin-top: var(--oh-space-3);
  padding-top: var(--oh-space-4);
  border-top: 1px solid var(--oh-color-border);
}
.oh-verify-regenerate-wrap > summary {
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--oh-color-muted);
  list-style: none;
}
.oh-verify-regenerate-wrap > summary::-webkit-details-marker {
  display: none;
}
.oh-verify-regenerate-wrap > summary:hover, .oh-verify-regenerate-wrap > summary:focus-visible {
  color: var(--oh-color-text);
  outline: 0;
}

.oh-verify-regenerate-row {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}
@media (min-width: 768px) {
  .oh-verify-regenerate-row {
    flex-direction: row;
    align-items: center;
  }
}

.oh-properties-screen {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
}

.oh-properties-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-space-4);
}

.oh-properties-head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.oh-properties-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-properties-subtitle {
  margin: 0;
  max-width: 64ch;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--oh-color-muted);
}

.oh-properties-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: background var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-properties-add {
    transition: none;
    animation: none;
  }
}
.oh-properties-add:hover, .oh-properties-add:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  outline: 0;
}
.oh-properties-add:active {
  transform: translateY(1px);
}

.oh-properties-empty,
.oh-properties-loading {
  margin: 0;
  padding: var(--oh-space-5);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--oh-color-muted);
  text-align: center;
  background: color-mix(in srgb, var(--oh-color-text) 3%, var(--oh-color-bg));
  border-radius: 12px;
}
.oh-properties-empty[hidden],
.oh-properties-loading[hidden] {
  display: none;
}

.oh-properties-output {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.oh-properties-output:empty {
  display: none;
}
.oh-properties-output:not(:empty) {
  padding: var(--oh-space-2) var(--oh-space-3);
  background: color-mix(in srgb, var(--oh-color-success) 8%, transparent);
  border-left: 3px solid var(--oh-color-success);
  border-radius: var(--oh-radius-sm);
  color: color-mix(in srgb, var(--oh-color-success) 75%, var(--oh-color-text));
}
.oh-properties-output.oh-form-output-error:not(:empty) {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-left-color: var(--oh-color-danger);
  color: var(--oh-color-danger);
}

.oh-properties-list {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  gap: var(--oh-space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .oh-properties-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  }
}

.oh-property-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--oh-color-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-card {
    transition: none;
    animation: none;
  }
}
.oh-property-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oh-color-success), #34d399);
  z-index: 2;
}
.oh-property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06), 0 18px 40px rgba(0, 0, 0, 0.08);
}

.oh-property-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  background-color: color-mix(in srgb, var(--oh-color-text) 6%, var(--oh-color-bg));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.oh-property-card-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}
.oh-property-card-cover-empty-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.78);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
}
.oh-property-card-cover-has-image .oh-property-card-cover-empty-mark {
  display: none;
}
.oh-property-card-cover-empty {
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0) 0 14px, rgba(255, 255, 255, 0.06) 14px 28px), linear-gradient(140deg, color-mix(in srgb, var(--oh-color-accent) 50%, var(--oh-color-canvas-dark)) 0%, color-mix(in srgb, var(--oh-color-accent) 75%, var(--oh-color-canvas-dark)) 100%);
}
.oh-property-card-cover-empty .oh-property-card-cover-shade {
  display: none;
}

.oh-property-card-type {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
  color: var(--oh-color-text);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 1;
}
.oh-property-card-type[hidden] {
  display: none;
}

.oh-property-card-type-icon {
  width: 12px;
  height: 12px;
  color: var(--oh-color-accent);
  flex-shrink: 0;
}

.oh-property-card-photo-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
  color: var(--oh-color-text);
  font-size: 0.6875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.oh-property-card-photo-badge[hidden] {
  display: none;
}
.oh-property-card-photo-badge svg {
  width: 12px;
  height: 12px;
  color: var(--oh-color-accent);
}

.oh-property-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  padding: var(--oh-space-5);
}

.oh-property-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-property-card-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--oh-color-muted);
}
.oh-property-card-address[hidden] {
  display: none;
}

.oh-property-card-address-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--oh-color-accent);
  margin-top: 1px;
}

.oh-property-card-description {
  margin: 0;
  padding: 12px 14px;
  background: var(--oh-color-surface);
  border-left: 3px solid color-mix(in srgb, var(--oh-color-accent) 60%, transparent);
  border-radius: 0 8px 8px 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--oh-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.oh-property-card-description[hidden] {
  display: none;
}

.oh-property-card-meta {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px 16px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  font-size: 0.78rem;
}
.oh-property-card-meta[hidden] {
  display: none;
}

.oh-property-card-meta-row {
  display: contents;
}
.oh-property-card-meta-row[hidden] > * {
  display: none;
}
.oh-property-card-meta-row > dt {
  margin: 0;
  color: var(--oh-color-muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 1px;
}
.oh-property-card-meta-row > dd {
  margin: 0;
  color: var(--oh-color-text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.oh-property-card-reports {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  background: color-mix(in srgb, var(--oh-color-warning) 12%, transparent);
  color: var(--oh-color-warning);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background var(--oh-motion-fast) ease, transform 120ms ease;
}
.oh-property-card-reports:hover {
  background: color-mix(in srgb, var(--oh-color-warning) 22%, transparent);
  transform: translateX(2px);
}
.oh-property-card-reports-empty {
  background: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  color: var(--oh-color-muted);
}
.oh-property-card-reports-empty:hover {
  background: color-mix(in srgb, var(--oh-color-text) 10%, transparent);
  color: var(--oh-color-text);
}
.oh-property-card-reports svg {
  width: 12px;
  height: 12px;
}
.oh-property-card-reports-arrow {
  color: currentcolor;
  opacity: 0.7;
  margin-left: 1px;
  transition: transform 120ms ease;
}
.oh-property-card-reports:hover .oh-property-card-reports-arrow, .oh-property-card-reports:hover .oh-property-card-reports-arrow {
  transform: translateX(2px);
}

.oh-property-card-actions {
  display: flex;
  gap: 8px;
  margin-top: var(--oh-space-2);
  padding-top: var(--oh-space-3);
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-property-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease, transform 120ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-card-action {
    transition: none;
    animation: none;
  }
}
.oh-property-card-action:hover, .oh-property-card-action:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-text) 22%, transparent);
  transform: translateY(-1px);
  outline: 0;
}
.oh-property-card-action-edit {
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border-color: var(--oh-color-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}
.oh-property-card-action-edit:hover, .oh-property-card-action-edit:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  border-color: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  color: var(--oh-color-bg);
}
.oh-property-card-action-delete {
  color: var(--oh-color-danger);
  border-color: color-mix(in srgb, var(--oh-color-danger) 30%, transparent);
}
.oh-property-card-action-delete:hover, .oh-property-card-action-delete:focus-visible {
  background: color-mix(in srgb, var(--oh-color-danger) 6%, transparent);
  border-color: var(--oh-color-danger);
  color: var(--oh-color-danger);
}

.oh-property-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
}
.oh-property-modal[hidden] {
  display: none;
}

.oh-property-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(15, 23, 42, 0.42);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--oh-motion-base) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-modal-backdrop {
    transition: none;
    animation: none;
  }
}
.oh-property-modal-open .oh-property-modal-backdrop {
  opacity: 1;
}

.oh-property-form.oh-property-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  height: 100dvh;
  overflow-y: auto;
  border-radius: 12px 0 0 12px;
  box-shadow: -1px 0 0 rgba(15, 23, 42, 0.06), -24px 0 48px -12px rgba(15, 23, 42, 0.22);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.2, 0, 0, 1);
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-form.oh-property-modal-panel {
    transition: none;
    animation: none;
  }
}
.oh-property-modal-open .oh-property-form.oh-property-modal-panel {
  transform: translateX(0);
}

body.oh-property-modal-locked {
  overflow: hidden;
  padding-right: var(--oh-scrollbar-comp, 0);
}

.oh-property-form {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  padding: var(--oh-space-6);
  background: var(--oh-color-bg);
  border-radius: 12px;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.oh-property-form[hidden] {
  display: none;
}

.oh-property-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--oh-space-3);
}

.oh-property-form-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-property-form-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  color: var(--oh-color-muted);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 12%, transparent);
  border-radius: 50%;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-form-close {
    transition: none;
    animation: none;
  }
}
.oh-property-form-close:hover, .oh-property-form-close:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  color: var(--oh-color-text);
  outline: 0;
}

.oh-property-form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-4);
}

.oh-property-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-property-field-label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh-color-text);
}

.oh-property-field-required {
  color: var(--oh-color-danger);
  font-weight: 600;
}

.oh-property-field-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--oh-color-muted);
}

.oh-property-field-input {
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 16%, transparent);
  border-radius: 7px;
  transition: border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-field-input {
    transition: none;
    animation: none;
  }
}
.oh-property-field-input:hover {
  border-color: color-mix(in srgb, var(--oh-color-text) 26%, transparent);
}
.oh-property-field-input:focus, .oh-property-field-input:focus-visible {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 18%, transparent);
  outline: 0;
}

.oh-property-field-textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

.oh-property-field-error {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--oh-color-danger);
}
.oh-property-field-error[hidden] {
  display: none;
}

.oh-property-field[data-oh-error=true] .oh-property-field-input {
  border-color: var(--oh-color-danger);
}

.oh-property-form-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.oh-property-modal-panel > .oh-property-form-foot {
  margin-top: auto;
}

.oh-property-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-property-action {
    transition: none;
    animation: none;
  }
}
.oh-property-action:hover, .oh-property-action:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-text) 22%, transparent);
  outline: 0;
}
.oh-property-action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.oh-property-action-save {
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border-color: var(--oh-color-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}
.oh-property-action-save:hover, .oh-property-action-save:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  border-color: color-mix(in srgb, var(--oh-color-text) 88%, var(--oh-color-accent));
  color: var(--oh-color-bg);
}

.oh-reports-screen {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
}

.oh-reports-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--oh-space-4);
}
.oh-reports-head-text {
  flex: 1 1 auto;
  min-width: 0;
}

.oh-reports-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-reports-subtitle {
  margin: 0;
  max-width: 64ch;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--oh-color-muted);
}

.oh-reports-add {
  flex: none;
  align-self: flex-start;
  padding: 9px 16px;
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease;
}
.oh-reports-add:hover:not(:disabled) {
  background: color-mix(in srgb, var(--oh-color-text) 88%, transparent);
}
.oh-reports-add:disabled {
  background: color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  color: var(--oh-color-muted);
  cursor: not-allowed;
}

.oh-reports-empty,
.oh-reports-loading {
  margin: 0;
  padding: var(--oh-space-5) 0;
  text-align: center;
  color: var(--oh-color-muted);
  font-size: 0.875rem;
}

.oh-reports-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}

.oh-report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  padding: var(--oh-space-5);
  background: var(--oh-color-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-report-card {
    transition: none;
    animation: none;
  }
}
.oh-report-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oh-color-warning), #f4b556);
}
.oh-report-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06), 0 18px 40px rgba(0, 0, 0, 0.08);
}
.oh-report-card[data-oh-report-card-status=hidden] {
  background: color-mix(in srgb, var(--oh-color-text) 3%, var(--oh-color-bg));
}
.oh-report-card[data-oh-report-card-status=hidden]::before {
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}
.oh-report-card[data-oh-report-card-status=disputed]::before {
  background: linear-gradient(90deg, var(--oh-color-accent), var(--oh-color-accent-soft));
}
.oh-report-card[data-oh-report-card-status=removed]::before {
  background: linear-gradient(90deg, var(--oh-color-danger), #fca5a5);
}
.oh-report-card[data-oh-report-card-status=draft] {
  background: color-mix(in srgb, var(--oh-color-warning) 4%, var(--oh-color-bg));
}
.oh-report-card[data-oh-report-card-status=draft]::before {
  background: linear-gradient(90deg, var(--oh-color-warning), #fcd34d);
}

.oh-report-card-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--oh-space-4);
}
.oh-report-card-head-text {
  min-width: 0;
}

.oh-report-card-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, hsl(var(--oh-subject-hue, 240), 80%, 62%), hsl(calc(var(--oh-subject-hue, 240) + 35), 75%, 45%));
  box-shadow: 0 0 0 3px var(--oh-color-bg), 0 0 0 4px color-mix(in srgb, var(--oh-color-text) 6%, transparent), 0 8px 18px color-mix(in srgb, var(--oh-color-text) 12%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oh-report-card-avatar-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, hsl(var(--oh-subject-hue, 240), 90%, 70%, 50%), transparent 35%, hsl(calc(var(--oh-subject-hue, 240) + 60), 90%, 65%, 38%) 70%, transparent);
  filter: blur(8px);
  opacity: 0.45;
  z-index: -1;
}

.oh-report-card-avatar-initial {
  font-family: var(--oh-font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.oh-report-card-name {
  margin: 0 0 2px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
  word-break: break-word;
}

.oh-report-card-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--oh-color-muted);
  font-feature-settings: "tnum" on, "lnum" on;
}
.oh-report-card-meta:empty {
  display: none;
}

.oh-report-card-status {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 10px;
  border-radius: 999px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}

.oh-report-card-status-dot {
  width: 8px;
  height: 8px;
  background: currentcolor;
  border-radius: 50%;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentcolor 18%, transparent);
}

.oh-report-card-status-published {
  color: var(--oh-color-success);
}

.oh-report-card-status-hidden {
  color: var(--oh-color-warning);
}

.oh-report-card-status-disputed {
  color: var(--oh-color-accent);
}

.oh-report-card-status-removed {
  color: var(--oh-color-danger);
}

.oh-report-card-status-draft {
  color: var(--oh-color-warning);
}

.oh-report-card-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--oh-space-3) var(--oh-space-5);
  margin-top: -4px;
}
.oh-report-card-strip[hidden] {
  display: none;
}

.oh-report-card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.oh-report-card-tags[hidden] {
  display: none;
}

.oh-report-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.14), rgba(217, 119, 6, 0.08));
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.16);
  color: var(--oh-color-warning);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: capitalize;
}

.oh-report-card-description {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--oh-color-text);
  white-space: pre-wrap;
  word-break: break-word;
}
.oh-report-card-description[hidden] {
  display: none;
}

.oh-report-card-head-aside {
  display: flex;
  align-items: center;
}

.oh-report-card-severity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.oh-report-card-severity[hidden] {
  display: none;
}
.oh-report-card-severity-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}
.oh-report-card-severity-bar {
  display: inline-flex;
  gap: 3px;
  width: 80px;
  height: 6px;
}
.oh-report-card-severity-segment {
  flex: 1;
  background: color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 99px;
  transition: background 120ms ease;
}
.oh-report-card-severity-segment-on {
  background: var(--oh-color-accent);
}
.oh-report-card-severity-bar[data-oh-report-severity="4"] .oh-report-card-severity-segment-on, .oh-report-card-severity-bar[data-oh-report-severity="5"] .oh-report-card-severity-segment-on {
  background: var(--oh-color-danger);
}
.oh-report-card-severity-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oh-color-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.oh-report-card-property {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  background: var(--oh-color-surface);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 999px;
  color: var(--oh-color-text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, transform 120ms ease;
}
.oh-report-card-property:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 8%, var(--oh-color-surface));
  border-color: color-mix(in srgb, var(--oh-color-accent) 30%, transparent);
  transform: translateY(-1px);
}
.oh-report-card-property[hidden] {
  display: none;
}

.oh-report-card-property-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--oh-color-accent);
}

.oh-report-card-evidence {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  font-size: 0.8rem;
}
.oh-report-card-evidence[hidden] {
  display: none;
}

.oh-report-card-evidence-row {
  display: contents;
}
.oh-report-card-evidence-row[hidden] > * {
  display: none;
}
.oh-report-card-evidence-row > dt {
  margin: 0;
  color: var(--oh-color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
  padding-top: 4px;
}
.oh-report-card-evidence-row > dd {
  margin: 0;
  color: var(--oh-color-text);
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.oh-report-card-evidence-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px 6px;
}

.oh-report-card-evidence-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  background: var(--oh-color-surface);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--oh-color-text);
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}
.oh-report-card-evidence-pill code {
  background: none;
  padding: 0;
  font-family: var(--oh-font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 0.78rem;
  color: var(--oh-color-text);
}
.oh-report-card-evidence-pill:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 6%, var(--oh-color-surface));
  border-color: color-mix(in srgb, var(--oh-color-accent) 25%, transparent);
}

.oh-report-card-evidence-pill-identifier {
  font-family: inherit;
}

.oh-report-card-evidence-pill-kind {
  font-family: inherit;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oh-color-accent);
  border-right: 1px solid color-mix(in srgb, var(--oh-color-accent) 25%, transparent);
  padding-right: 7px;
}

.oh-report-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-report-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}
.oh-report-card-action:hover {
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-text) 22%, transparent);
}
.oh-report-card-action-delete {
  color: var(--oh-color-danger);
  border-color: color-mix(in srgb, var(--oh-color-danger) 30%, transparent);
}
.oh-report-card-action-delete:hover {
  background: color-mix(in srgb, var(--oh-color-danger) 6%, transparent);
  border-color: color-mix(in srgb, var(--oh-color-danger) 50%, transparent);
}
.oh-report-card-action[hidden] {
  display: none;
}

.oh-report-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  justify-content: flex-end;
}
.oh-report-modal[hidden] {
  display: none;
}

.oh-report-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(15, 23, 42, 0.42);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--oh-motion-base) ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-report-modal-backdrop {
    transition: none;
    animation: none;
  }
}
.oh-report-modal-open .oh-report-modal-backdrop {
  opacity: 1;
}

.oh-tenant-form.oh-report-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  height: 100dvh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--oh-color-bg);
  border-radius: 12px 0 0 12px;
  box-shadow: -1px 0 0 rgba(15, 23, 42, 0.06), -24px 0 48px -12px rgba(15, 23, 42, 0.22);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.2, 0, 0, 1);
}
@media (prefers-reduced-motion: reduce) {
  .oh-tenant-form.oh-report-modal-panel {
    transition: none;
    animation: none;
  }
}
.oh-report-modal-open .oh-tenant-form.oh-report-modal-panel {
  transform: translateX(0);
}

.oh-tenant-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--oh-space-3);
  padding: var(--oh-space-5) var(--oh-space-6);
  border-bottom: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-tenant-form-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-tenant-form-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  color: var(--oh-color-muted);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 12%, transparent);
  border-radius: 50%;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
.oh-tenant-form-close:hover, .oh-tenant-form-close:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  color: var(--oh-color-text);
  outline: 0;
}

.oh-tenant-form-output {
  margin: 0 var(--oh-space-6);
  min-height: 0;
}

.oh-tenant-form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
  padding: var(--oh-space-5) var(--oh-space-6);
}

.oh-tenant-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  margin: 0;
  padding: 0;
  border: 0;
}
.oh-tenant-form-group > legend {
  margin: 0 0 4px;
  padding: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-color-muted);
}

.oh-tenant-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-tenant-field-label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--oh-color-text);
}

.oh-tenant-field-required {
  color: var(--oh-color-danger);
  font-weight: 600;
}

.oh-tenant-field-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--oh-color-muted);
  line-height: 1.5;
}

.oh-tenant-field-disabled {
  opacity: 0.65;
}
.oh-tenant-field-disabled .oh-tenant-field-input,
.oh-tenant-field-disabled .oh-tenant-field-input:focus,
.oh-tenant-field-disabled .oh-tenant-field-input:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  cursor: not-allowed;
}

.oh-tenant-field-thread[hidden] {
  display: none;
}

.oh-tenant-thread {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oh-tenant-thread-note {
  position: relative;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--oh-color-text) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  border-radius: var(--oh-radius-sm);
}

.oh-tenant-thread-head {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.oh-tenant-thread-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--oh-color-text);
}

.oh-tenant-thread-when {
  font-size: 0.6875rem;
  color: var(--oh-color-muted);
  font-feature-settings: "tnum" on, "lnum" on;
}

.oh-tenant-thread-body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--oh-color-text) 80%, transparent);
  white-space: pre-wrap;
  word-break: break-word;
}

.oh-tenant-field-input {
  width: 100%;
  padding: 8px 12px;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: var(--oh-radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
.oh-tenant-field-input:focus-visible {
  outline: none;
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 18%, transparent);
}
.oh-tenant-field-input:disabled {
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  color: var(--oh-color-muted);
  cursor: not-allowed;
}

.oh-tenant-field-textarea {
  resize: vertical;
  min-height: 5rem;
  font-family: inherit;
  line-height: var(--oh-line-base);
}

.oh-tenant-field-error {
  margin: 0;
  color: var(--oh-color-danger);
  font-size: 0.75rem;
  line-height: 1.4;
}
.oh-tenant-field-error[hidden] {
  display: none;
}

.oh-tenant-field-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px 12px;
}

.oh-tenant-field-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--oh-color-text);
  cursor: pointer;
}
.oh-tenant-field-checkbox input {
  accent-color: var(--oh-color-accent);
  cursor: pointer;
}

.oh-tenant-field-likert {
  display: inline-flex;
  gap: 4px;
}

.oh-tenant-field-likert-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease;
}
.oh-tenant-field-likert-item input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.oh-tenant-field-likert-item:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, transparent);
}
.oh-tenant-field-likert-item:has(input:checked) {
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  border-color: var(--oh-color-accent);
}

.oh-tenant-identifier-row > select {
  flex: none;
  width: 12rem;
}
.oh-tenant-identifier-row > input {
  flex: 1 1 auto;
  min-width: 0;
}

.oh-tenant-form-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: var(--oh-space-4) var(--oh-space-6);
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  margin-top: auto;
}

.oh-tenant-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--oh-motion-fast) ease, color var(--oh-motion-fast) ease, border-color var(--oh-motion-fast) ease;
}

.oh-tenant-action-cancel {
  background: transparent;
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
}
.oh-tenant-action-cancel:hover {
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
}

.oh-tenant-action-save {
  background: var(--oh-color-text);
  color: var(--oh-color-bg);
  border: 1px solid var(--oh-color-text);
}
.oh-tenant-action-save:hover {
  background: color-mix(in srgb, var(--oh-color-text) 88%, transparent);
}
.oh-tenant-action-save:disabled {
  background: color-mix(in srgb, var(--oh-color-text) 28%, transparent);
  border-color: transparent;
  cursor: not-allowed;
}

.oh-import-screen {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-5);
}

.oh-import-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-import-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--oh-color-text);
}

.oh-import-lead {
  margin: 0;
  max-width: 68ch;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--oh-color-muted);
}

.oh-import-form-card {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
  padding: 22px 24px;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border-soft);
  border-radius: 14px;
  box-shadow: var(--oh-shadow-card);
}

.oh-import-mode {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: var(--oh-color-surface);
  border-radius: 10px;
  align-self: flex-start;
}

.oh-import-mode-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--oh-color-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.oh-import-mode-button:hover, .oh-import-mode-button:focus {
  color: var(--oh-color-text);
  outline: 0;
}
.oh-import-mode-button.oh-import-mode-button-active {
  background: var(--oh-color-bg);
  color: var(--oh-color-accent);
  box-shadow: 0 1px 2px rgba(16, 16, 24, 0.06);
}

.oh-import-form {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}

.oh-import-pane {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-import-label {
  color: var(--oh-color-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oh-import-textarea {
  width: 100%;
  min-height: 180px;
  padding: 12px 14px;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border);
  border-radius: 10px;
  color: var(--oh-color-text);
  font-family: var(--oh-font-mono);
  font-size: 13.5px;
  line-height: 1.55;
  resize: vertical;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.oh-import-textarea:focus {
  outline: none;
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px var(--oh-color-accent-tint);
}

.oh-import-hint {
  margin: 4px 0 0;
  color: var(--oh-color-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.oh-import-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--oh-color-bg);
  border: 1px dashed var(--oh-color-border);
  border-radius: 10px;
  color: var(--oh-color-muted);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}
.oh-import-file:hover, .oh-import-file:focus-within {
  border-color: var(--oh-color-accent);
  background: var(--oh-color-accent-tint);
  color: var(--oh-color-accent-deep);
  outline: 0;
}
.oh-import-file input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oh-import-file-icon {
  flex: 0 0 auto;
  color: currentcolor;
}

.oh-import-file-text {
  flex: 1 1 auto;
  min-width: 0;
}

.oh-import-actions {
  display: flex;
  align-items: center;
  gap: var(--oh-space-3);
  flex-wrap: wrap;
}

.oh-import-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--oh-color-accent);
  border: 0;
  border-radius: 10px;
  color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}
.oh-import-submit:hover, .oh-import-submit:focus {
  background: var(--oh-color-accent-deep);
  transform: translateY(-1px);
  outline: 0;
}
.oh-import-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.oh-import-output {
  font-size: 13px;
  font-weight: 500;
  color: var(--oh-color-muted);
}
.oh-import-output.oh-import-output-success {
  color: var(--oh-color-success);
}
.oh-import-output.oh-import-output-error {
  color: var(--oh-color-danger);
}
.oh-import-output.oh-import-output-info {
  color: var(--oh-color-accent);
}

.oh-import-rejected {
  margin: 4px 0 0;
  padding: 12px 16px;
  background: rgba(179, 38, 30, 0.06);
  border: 1px solid rgba(179, 38, 30, 0.18);
  border-radius: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-import-rejected-item {
  font-size: 13px;
  line-height: 1.5;
  color: var(--oh-color-danger);
}

.oh-import-drafts {
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}

.oh-import-drafts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-space-3);
  flex-wrap: wrap;
}

.oh-import-drafts-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oh-color-text);
}

.oh-import-drafts-count {
  margin-left: 4px;
  color: var(--oh-color-muted);
  font-weight: 500;
}

.oh-import-publish-all {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-accent);
  border-radius: 8px;
  color: var(--oh-color-accent);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.oh-import-publish-all:hover, .oh-import-publish-all:focus {
  background: var(--oh-color-accent);
  color: #fff;
  outline: 0;
}
.oh-import-publish-all[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--oh-color-bg);
  color: var(--oh-color-muted);
  border-color: var(--oh-color-border);
}

.oh-import-empty {
  margin: 0;
  padding: 24px;
  background: var(--oh-color-surface);
  border: 1px dashed var(--oh-color-border);
  border-radius: 12px;
  color: var(--oh-color-muted);
  font-size: 14px;
  text-align: center;
}

.oh-import-drafts-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oh-import-draft {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--oh-space-3);
  padding: 14px 16px;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border-soft);
  border-radius: 12px;
  align-items: center;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.oh-import-draft:hover {
  border-color: var(--oh-color-accent-soft);
  box-shadow: var(--oh-shadow-card);
}
.oh-import-draft.oh-import-draft-published {
  opacity: 0.6;
}

.oh-import-draft-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.oh-import-draft-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--oh-color-text);
  letter-spacing: -0.005em;
}

.oh-import-draft-desc {
  margin: 0;
  font-size: 13px;
  color: var(--oh-color-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.oh-import-draft-missing {
  margin: 0;
  font-size: 12.5px;
  color: var(--oh-color-warning);
  font-style: italic;
}

.oh-import-draft-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.oh-import-draft-edit {
  font-size: 13px;
  font-weight: 500;
  color: var(--oh-color-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 140ms ease, color 140ms ease;
}
.oh-import-draft-edit:hover, .oh-import-draft-edit:focus {
  background: var(--oh-color-surface);
  color: var(--oh-color-text);
  outline: 0;
}

.oh-import-draft-publish {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--oh-color-accent);
  border: 0;
  border-radius: 6px;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 140ms ease;
}
.oh-import-draft-publish:hover, .oh-import-draft-publish:focus {
  background: var(--oh-color-accent-deep);
  outline: 0;
}
.oh-import-draft-publish[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.oh-import-draft-output {
  grid-column: 1/-1;
  font-size: 12.5px;
  font-weight: 500;
  color: transparent;
}
.oh-import-draft-output:not(:empty) {
  margin-top: 6px;
}
.oh-import-draft-output.oh-import-draft-output-success {
  color: var(--oh-color-success);
}
.oh-import-draft-output.oh-import-draft-output-error {
  color: var(--oh-color-danger);
}
.oh-import-draft-output.oh-import-draft-output-info {
  color: var(--oh-color-accent);
}

@media (width < 640px) {
  .oh-import-draft {
    grid-template-columns: 1fr;
  }
  .oh-import-draft-actions {
    justify-content: flex-end;
  }
}
.oh-search-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.oh-search-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 10px 16px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 10px;
}

.oh-search-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  flex: 0 0 auto;
  min-width: 0;
}
.oh-search-stat + .oh-search-stat {
  border-left: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}

.oh-search-stat-icon {
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}

.oh-search-stat-label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-stat-value {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--oh-color-text);
  font-feature-settings: "tnum" on, "lnum" on;
}

.oh-search-stat-value-pill {
  padding: 2px 8px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--oh-color-accent) 12%, transparent);
  color: var(--oh-color-accent);
}

.oh-search-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.oh-search-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 15, 30, 0.04);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-search-form {
    transition: none;
    animation: none;
  }
}
@media (min-width: 640px) {
  .oh-search-form {
    flex-wrap: nowrap;
  }
}
.oh-search-form:focus-within {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 16%, transparent);
}

.oh-search-mode {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  margin-left: 2px;
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  border-radius: 8px;
  flex-shrink: 0;
  flex-basis: 100%;
  justify-content: stretch;
}
@media (min-width: 640px) {
  .oh-search-mode {
    flex-basis: auto;
  }
}

.oh-search-mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  flex: 1 1 0;
  transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}
@media (min-width: 640px) {
  .oh-search-mode-button {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .oh-search-mode-button {
    transition: none;
    animation: none;
  }
}
.oh-search-mode-button:hover:not(.oh-search-mode-button-active) {
  color: var(--oh-color-text);
}
.oh-search-mode-button:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-search-mode-button-active {
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 15, 30, 0.06), inset 0 0 0 1px rgba(16, 16, 24, 0.05);
}

.oh-search-mode-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.oh-search-form-divider {
  align-self: stretch;
  width: 1px;
  margin: 4px;
  background: color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  display: none;
}
@media (min-width: 640px) {
  .oh-search-form-divider {
    display: block;
  }
}

.oh-search-form-icon {
  display: inline-flex;
  align-items: center;
  padding-left: 4px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}

.oh-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--oh-color-text);
  font: inherit;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.oh-search-input::-moz-placeholder {
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}
.oh-search-input::placeholder {
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}
.oh-search-input:focus, .oh-search-input:focus-visible {
  outline: 0;
}

.oh-search-submit {
  flex-shrink: 0;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-search-submit {
    transition: none;
    animation: none;
  }
}
.oh-search-submit:hover, .oh-search-submit:focus-visible {
  background: color-mix(in srgb, var(--oh-color-accent) 88%, var(--oh-color-text));
}
.oh-search-submit:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-search-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.oh-search-form-hint {
  font-size: 11px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  padding-left: 4px;
  margin: 0;
}

.oh-search-form-hint-key {
  font: inherit;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-status {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  min-height: 1.25em;
  padding-left: 4px;
}
.oh-search-status-error {
  color: var(--oh-color-danger);
}
.oh-search-status-info {
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 24px;
  background: var(--oh-color-bg);
  border: 1px dashed color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 12px;
}
.oh-search-empty[hidden] {
  display: none;
}

.oh-search-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--oh-color-accent) 10%, transparent);
  color: var(--oh-color-accent);
}

.oh-search-empty-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oh-color-text);
}

.oh-search-empty-text {
  margin: 0;
  max-width: 360px;
  font-size: 12px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-empty-examples {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.oh-search-empty-example {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  font-family: ui-monospace, sfmono-regular, menlo, monospace;
}

.oh-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (width >= 760px) {
  .oh-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.oh-search-results:empty {
  display: none;
}

.oh-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-card {
    transition: none;
    animation: none;
  }
}
.oh-card:hover {
  border-color: color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  box-shadow: 0 4px 18px rgba(15, 15, 30, 0.06);
}

.oh-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oh-card-avatar {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--oh-subject-hue, 240), 60%, 55%), hsl(calc(var(--oh-subject-hue, 240) + 28), 70%, 45%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 0 rgba(0, 0, 0, 0.04);
}

.oh-card-avatar-initial {
  font-family: var(--oh-font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.oh-card-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--oh-color-text);
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

.oh-card-severity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--oh-color-text) 3%, transparent);
  border-radius: 8px;
}

.oh-card-severity-eyebrow {
  font-size: 9px;
  font-weight: 600;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oh-card-severity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.oh-card-severity-bar {
  display: inline-flex;
  gap: 3px;
}

.oh-card-severity-segment {
  width: 14px;
  height: 4px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}

.oh-card-severity-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-card[data-oh-card-severity=low] .oh-card-severity-segment-on {
  background: #10b981;
}
.oh-card[data-oh-card-severity=low] .oh-card-severity-label {
  color: #047857;
}

.oh-card[data-oh-card-severity=med] .oh-card-severity-segment-on {
  background: #f59e0b;
}
.oh-card[data-oh-card-severity=med] .oh-card-severity-label {
  color: #b45309;
}

.oh-card[data-oh-card-severity=high] .oh-card-severity-segment-on {
  background: #ef4444;
}
.oh-card[data-oh-card-severity=high] .oh-card-severity-label {
  color: #b42318;
}

.oh-card[data-oh-card-severity=crit] .oh-card-severity-segment-on {
  background: #db2777;
}
.oh-card[data-oh-card-severity=crit] .oh-card-severity-label {
  color: #9d174d;
}

.oh-card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.oh-card-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.005em;
  white-space: nowrap;
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  text-transform: capitalize;
}

.oh-card-tag[data-tag-tone=med] {
  background: #fffbeb;
  color: #b45309;
}

.oh-card-tag[data-tag-tone=high] {
  background: #fef3f2;
  color: #b42318;
}

.oh-card-tag[data-tag-tone=crit] {
  background: #fdf2f8;
  color: #9d174d;
}

.oh-card-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-card-date {
  font-feature-settings: "tnum" on, "lnum" on;
}

.oh-card-view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--oh-color-accent);
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-card-view {
    transition: none;
    animation: none;
  }
}
.oh-card-view:hover, .oh-card-view:focus-visible {
  color: color-mix(in srgb, var(--oh-color-accent) 75%, var(--oh-color-text));
}
.oh-card-view:hover .oh-card-view-arrow, .oh-card-view:focus-visible .oh-card-view-arrow {
  transform: translateX(2px);
}
.oh-card-view:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}

.oh-card-view-arrow {
  display: inline-flex;
  font-size: 0.95em;
  line-height: 1;
  transition: transform 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-card-view-arrow {
    transition: none;
    animation: none;
  }
}

.oh-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
}
.oh-pagination[hidden] {
  display: none;
}

.oh-pagination-page {
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-pagination-page {
    transition: none;
    animation: none;
  }
}
.oh-pagination-page:hover:not(:disabled), .oh-pagination-page:focus-visible:not(:disabled) {
  background: color-mix(in srgb, var(--oh-color-accent) 5%, var(--oh-color-bg));
  border-color: color-mix(in srgb, var(--oh-color-accent) 30%, transparent);
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-pagination-page-current {
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  border-color: var(--oh-color-accent);
  cursor: default;
}
.oh-pagination-page:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.oh-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}

.oh-search-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.oh-search-detail-modal[hidden] {
  display: none;
}
.oh-search-detail-modal.oh-search-detail-modal-open .oh-search-detail-modal-card {
  transform: scale(1);
  opacity: 1;
}

body.oh-search-detail-locked {
  overflow: hidden;
  padding-right: var(--oh-scrollbar-comp, 0);
}

.oh-search-detail-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(10, 10, 20, 0.34);
  backdrop-filter: blur(2px);
  border: 0;
  cursor: pointer;
}

.oh-search-detail-modal-card {
  position: relative;
  z-index: 1;
  width: 960px;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  background: var(--oh-color-bg);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(10, 10, 20, 0.3);
  overflow: hidden;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.18s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-search-detail-modal-card {
    transition: none;
    animation: none;
  }
}

.oh-search-detail-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 16px 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  background: var(--oh-color-bg);
}

.oh-search-detail-topbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.oh-search-detail-eyebrow-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--oh-color-accent) 10%, transparent);
  color: var(--oh-color-accent);
}

.oh-search-detail-id {
  font-size: 11px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  font-family: ui-monospace, sfmono-regular, menlo, monospace;
}

.oh-search-detail-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 12%, transparent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--oh-color-text);
  white-space: nowrap;
}
.oh-search-detail-status-pill[hidden] {
  display: none;
}
.oh-search-detail-status-pill-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentcolor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentcolor 16%, transparent);
}
.oh-search-detail-status-pill-disputed {
  color: var(--oh-color-warning, #d97706);
  border-color: color-mix(in srgb, var(--oh-color-warning, #d97706) 32%, transparent);
  background: color-mix(in srgb, var(--oh-color-warning, #d97706) 8%, var(--oh-color-bg));
}

.oh-search-detail-modal-title {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.oh-search-detail-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-search-detail-modal-close {
    transition: none;
    animation: none;
  }
}
.oh-search-detail-modal-close:hover, .oh-search-detail-modal-close:focus-visible {
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  color: var(--oh-color-text);
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}

.oh-search-detail-modal-body {
  padding: 24px 32px 28px;
  overflow-y: auto;
}

.oh-search-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oh-search-detail-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-search-detail-avatar {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--oh-subject-hue, 240), 60%, 55%), hsl(calc(var(--oh-subject-hue, 240) + 28), 70%, 45%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 0 rgba(0, 0, 0, 0.04);
}

.oh-search-detail-avatar-initial {
  font-family: var(--oh-font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.oh-search-detail-identity-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oh-search-detail-name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--oh-color-text);
  word-break: break-word;
}

.oh-search-detail-severity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.oh-search-detail-severity-bar {
  display: inline-flex;
  gap: 4px;
}

.oh-search-detail-severity-segment {
  width: 22px;
  height: 5px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}

.oh-search-detail-severity-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-detail-identity[data-oh-severity=low] .oh-search-detail-severity-segment-on {
  background: #10b981;
}
.oh-search-detail-identity[data-oh-severity=low] .oh-search-detail-severity-label {
  color: #047857;
}

.oh-search-detail-identity[data-oh-severity=med] .oh-search-detail-severity-segment-on {
  background: #f59e0b;
}
.oh-search-detail-identity[data-oh-severity=med] .oh-search-detail-severity-label {
  color: #b45309;
}

.oh-search-detail-identity[data-oh-severity=high] .oh-search-detail-severity-segment-on {
  background: #ef4444;
}
.oh-search-detail-identity[data-oh-severity=high] .oh-search-detail-severity-label {
  color: #b42318;
}

.oh-search-detail-identity[data-oh-severity=crit] .oh-search-detail-severity-segment-on {
  background: #db2777;
}
.oh-search-detail-identity[data-oh-severity=crit] .oh-search-detail-severity-label {
  color: #9d174d;
}

.oh-search-detail-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.oh-search-detail-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.005em;
  white-space: nowrap;
  background: color-mix(in srgb, var(--oh-color-text) 5%, transparent);
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  text-transform: capitalize;
}

.oh-search-detail-tag[data-tag-tone=med] {
  background: #fffbeb;
  color: #b45309;
}

.oh-search-detail-tag[data-tag-tone=high] {
  background: #fef3f2;
  color: #b42318;
}

.oh-search-detail-tag[data-tag-tone=crit] {
  background: #fdf2f8;
  color: #9d174d;
}

.oh-search-detail-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: color-mix(in srgb, var(--oh-color-text) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  border-radius: 10px;
  overflow: hidden;
}

.oh-search-detail-fact {
  padding: 14px 16px;
  min-width: 0;
}
.oh-search-detail-fact + .oh-search-detail-fact {
  border-left: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
}

.oh-search-detail-fact-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 600;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oh-search-detail-fact-icon {
  display: inline-flex;
  align-items: center;
}

.oh-search-detail-fact-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--oh-color-text);
  word-break: break-word;
}

.oh-search-detail-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oh-search-detail-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.oh-search-detail-section-heading {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oh-search-detail-section-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}

.oh-search-detail-description {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--oh-color-text);
  background: color-mix(in srgb, var(--oh-color-text) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  white-space: pre-wrap;
  word-break: break-word;
}

.oh-search-detail-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oh-search-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  border-radius: 8px;
}

.oh-search-detail-row-kind {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 96px;
  font-size: 10px;
  font-weight: 600;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oh-search-detail-row-divider {
  flex-shrink: 0;
  width: 1px;
  height: 14px;
  background: color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}

.oh-search-detail-row-value {
  flex: 1;
  font-family: ui-monospace, sfmono-regular, menlo, monospace;
  font-size: 13px;
  color: var(--oh-color-text);
  word-break: break-all;
}

.oh-search-detail-reporter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--oh-color-text) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  border-radius: 10px;
}

.oh-search-detail-reporter-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--oh-subject-hue, 240), 60%, 55%), hsl(calc(var(--oh-subject-hue, 240) + 28), 70%, 45%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 0 rgba(0, 0, 0, 0.04);
}

.oh-search-detail-reporter-avatar-initial {
  font-family: var(--oh-font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.oh-search-detail-reporter-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-search-detail-reporter-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.oh-search-detail-reporter-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--oh-color-text);
}

.oh-search-detail-reporter-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--oh-color-accent) 12%, transparent);
  color: var(--oh-color-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.oh-search-detail-reporter-meta {
  margin: 0;
  font-size: 12px;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-detail-reporter-action {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-search-detail-reporter-contact {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 999px;
  color: var(--oh-color-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: border-color 120ms ease, color 120ms ease, transform 120ms ease;
}
.oh-search-detail-reporter-contact:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, var(--oh-color-text) 14%);
  color: var(--oh-color-accent);
  transform: translateY(-1px);
}
.oh-search-detail-reporter-contact:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}

.oh-search-detail-reporter-contact-hint {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--oh-color-text) 50%, transparent);
}

.oh-search-detail-evidence {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.oh-search-detail-evidence-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 6%, transparent);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.oh-search-detail-evidence-item:hover, .oh-search-detail-evidence-item:focus-visible {
  border-color: color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  box-shadow: 0 4px 12px rgba(15, 15, 30, 0.06);
}

.oh-search-detail-evidence-thumb {
  height: 80px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}
.oh-search-detail-evidence-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.oh-search-detail-evidence-thumb-doc {
  background: color-mix(in srgb, var(--oh-color-accent) 6%, transparent);
  color: var(--oh-color-accent);
}

.oh-search-detail-evidence-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.oh-search-detail-evidence-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--oh-color-text);
  font-feature-settings: "tnum" on, "lnum" on;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oh-search-detail-evidence-kind {
  font-size: 10px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.oh-search-detail-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oh-search-detail-note {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 4px;
}
.oh-search-detail-note:not([data-last=true])::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 32px;
  bottom: -10px;
  width: 1px;
  background: color-mix(in srgb, var(--oh-color-text) 10%, transparent);
}

.oh-search-detail-note-avatar {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--oh-subject-hue, 240), 60%, 55%), hsl(calc(var(--oh-subject-hue, 240) + 28), 70%, 45%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 0 2px var(--oh-color-bg);
}

.oh-search-detail-note-initial {
  font-family: var(--oh-font-sans);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.oh-search-detail-note-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding-top: 4px;
}

.oh-search-detail-note-head {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.oh-search-detail-note-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--oh-color-text);
}

.oh-search-detail-note-when {
  font-size: 11px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  font-feature-settings: "tnum" on, "lnum" on;
}

.oh-search-detail-note-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--oh-color-text) 80%, transparent);
  white-space: pre-wrap;
  word-break: break-word;
}

.oh-search-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
}

.oh-search-detail-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease, transform 120ms ease;
}

.oh-search-detail-action-dispute {
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-warning, #d97706) 38%, transparent);
  color: var(--oh-color-warning, #d97706);
}
.oh-search-detail-action-dispute:hover {
  background: color-mix(in srgb, var(--oh-color-warning, #d97706) 8%, var(--oh-color-bg));
  border-color: color-mix(in srgb, var(--oh-color-warning, #d97706) 60%, transparent);
  transform: translateY(-1px);
}
.oh-search-detail-action-dispute:focus-visible {
  outline: 2px solid var(--oh-color-warning, #d97706);
  outline-offset: 2px;
}

.oh-search-detail-quota {
  margin: 0;
  font-size: 11px;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
  text-align: right;
}

.oh-search-detail-loading {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-search-detail-error {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-left: 3px solid var(--oh-color-danger);
  border-radius: 0 8px 8px 0;
  color: var(--oh-color-danger);
}
.oh-search-detail-error > p {
  margin: 0;
}
.oh-search-detail-error-meta {
  font-size: 12px;
  opacity: 0.85;
}

.oh-appeal-page-body {
  background: color-mix(in srgb, var(--oh-color-text) 4%, var(--oh-color-bg));
  color: var(--oh-color-text);
  font-family: var(--oh-font-sans);
  min-height: 100vh;
}

.oh-appeal-screen {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oh-appeal-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-appeal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oh-color-accent);
}
.oh-appeal-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentcolor;
  opacity: 0.6;
}

.oh-appeal-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--oh-color-text);
}

.oh-appeal-subtitle {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-appeal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 15, 30, 0.04), 0 16px 40px rgba(15, 15, 30, 0.05);
}

.oh-appeal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oh-appeal-field[data-oh-error=true] .oh-appeal-field-input {
  border-color: var(--oh-color-danger);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-danger) 16%, transparent);
}

.oh-appeal-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--oh-color-text);
}

.oh-appeal-field-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--oh-color-bg);
  color: var(--oh-color-text);
  font: inherit;
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 14%, transparent);
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-appeal-field-input {
    transition: none;
    animation: none;
  }
}
.oh-appeal-field-input:focus, .oh-appeal-field-input:focus-visible {
  border-color: var(--oh-color-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oh-color-accent) 18%, transparent);
  outline: 0;
}

.oh-appeal-field-textarea {
  height: auto;
  min-height: 132px;
  padding: 12px 14px;
  line-height: 1.55;
  resize: vertical;
}

.oh-appeal-field-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-appeal-field-error {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--oh-color-danger);
}
.oh-appeal-field-error[hidden] {
  display: none;
}

.oh-appeal-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.oh-appeal-status {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  min-height: 1.25em;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}
.oh-appeal-status:not(:empty) {
  padding: 10px 12px;
  border-radius: 8px;
}
.oh-appeal-status-info:not(:empty) {
  background: color-mix(in srgb, var(--oh-color-text) 4%, transparent);
}
.oh-appeal-status-error:not(:empty) {
  background: color-mix(in srgb, var(--oh-color-danger) 8%, transparent);
  border-left: 3px solid var(--oh-color-danger);
  color: var(--oh-color-danger);
  border-radius: 0 8px 8px 0;
}

.oh-appeal-submit {
  align-self: flex-start;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--oh-color-accent);
  color: var(--oh-color-accent-fg);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.12s ease;
}
@media (prefers-reduced-motion: reduce) {
  .oh-appeal-submit {
    transition: none;
    animation: none;
  }
}
.oh-appeal-submit:hover, .oh-appeal-submit:focus-visible {
  background: color-mix(in srgb, var(--oh-color-accent) 88%, var(--oh-color-text));
}
.oh-appeal-submit:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 2px;
}
.oh-appeal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.oh-appeal-foot {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--oh-color-text) 42%, transparent);
}

.oh-appeal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 32px;
  background: var(--oh-color-bg);
  border: 1px solid color-mix(in srgb, var(--oh-color-text) 8%, transparent);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 15, 30, 0.04), 0 16px 40px rgba(15, 15, 30, 0.05);
}
.oh-appeal-success[hidden] {
  display: none;
}

.oh-appeal-success-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--oh-color-success) 12%, transparent);
  color: var(--oh-color-success);
}

.oh-appeal-success-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--oh-color-text);
}

.oh-appeal-success-text {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--oh-color-text) 62%, transparent);
}

.oh-legal {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--oh-space-6) var(--oh-space-4) var(--oh-space-7);
  color: var(--oh-color-text);
}
.oh-legal-head {
  margin-bottom: var(--oh-space-5);
  padding-bottom: var(--oh-space-4);
  border-bottom: 1px solid var(--oh-color-border, rgba(0, 0, 0, 0.08));
}
.oh-legal-eyebrow {
  margin: 0 0 var(--oh-space-2);
  color: var(--oh-color-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.oh-legal-title {
  margin: 0 0 var(--oh-space-3);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.oh-legal-meta {
  margin: 0;
  color: var(--oh-color-muted);
  font-size: 0.875rem;
}
.oh-legal-banner {
  margin-bottom: var(--oh-space-5);
  padding: var(--oh-space-3) var(--oh-space-4);
  background: var(--oh-color-warning-soft, #fff7ed);
  border-left: 4px solid var(--oh-color-warning, #d97706);
  border-radius: 4px;
  color: var(--oh-color-text);
  font-size: 0.9375rem;
}
.oh-legal-banner strong {
  display: block;
  margin-bottom: var(--oh-space-1);
  font-weight: 700;
}
.oh-legal-section {
  margin-bottom: var(--oh-space-5);
}
.oh-legal-section h2 {
  margin: 0 0 var(--oh-space-3);
  font-size: 1.25rem;
  font-weight: 600;
}
.oh-legal-section p,
.oh-legal-section ul {
  margin: 0 0 var(--oh-space-3);
  line-height: 1.65;
}
.oh-legal-section ul {
  padding-left: var(--oh-space-5);
}
.oh-legal-section li + li {
  margin-top: var(--oh-space-2);
}

/* stylelint-disable selector-class-pattern */
.wp-block-button__link {
  display: inline-block;
  text-decoration: none;
}

.wp-block-button.is-style-oh-primary .wp-block-button__link {
  background: var(--oh-color-accent);
  border: 1px solid transparent;
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-accent-fg);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
.wp-block-button.is-style-oh-primary .wp-block-button__link:hover {
  background: color-mix(in srgb, var(--oh-color-accent) 92%, black);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.32), 0 12px 28px rgba(79, 70, 229, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.wp-block-button.is-style-oh-primary .wp-block-button__link:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}
.wp-block-button.is-style-oh-ghost .wp-block-button__link {
  background: transparent;
  border: 1px solid var(--oh-color-border);
  border-radius: var(--oh-radius-md);
  color: var(--oh-color-text);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  transition: border-color var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease;
}
.wp-block-button.is-style-oh-ghost .wp-block-button__link:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 50%, var(--oh-color-border));
  background: color-mix(in srgb, var(--oh-color-accent) 6%, transparent);
  transform: translateY(-1px);
}
.wp-block-button.is-style-oh-ghost .wp-block-button__link:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
}

.oh-marketing-cta .wp-block-button.is-style-oh-ghost .wp-block-button__link {
  border-color: var(--oh-color-canvas-rule);
  color: var(--oh-color-canvas-fg);
}
.oh-marketing-cta .wp-block-button.is-style-oh-ghost .wp-block-button__link:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent-soft) 60%, var(--oh-color-canvas-rule));
  background: rgba(255, 255, 255, 0.04);
}

/* stylelint-disable selector-class-pattern */
.oh-marketing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(var(--oh-space-7), 12vw, 9rem);
}
.oh-marketing-hero-glow {
  position: absolute;
  inset: -25% -15% auto auto;
  z-index: -1;
  width: min(70%, 760px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--oh-color-accent) 28%, transparent), transparent 70%);
  pointer-events: none;
}
.oh-marketing-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(to right, color-mix(in srgb, var(--oh-color-text) 5%, transparent) 1px, transparent 1px), linear-gradient(to bottom, color-mix(in srgb, var(--oh-color-text) 5%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.oh-marketing-hero-inner {
  max-width: var(--oh-container-chrome, 1400px);
  margin-inline: auto;
  padding-inline: var(--oh-space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.oh-marketing-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-2);
  margin: 0 0 var(--oh-space-5);
  padding: 0.45rem 0.9rem;
  background: color-mix(in srgb, var(--oh-color-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-accent) 30%, transparent);
  border-radius: 999px;
  color: var(--oh-color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.oh-marketing-hero-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--oh-color-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent) 50%, transparent);
  animation: oh-marketing-hero-pulse 2.4s ease-out infinite;
}
.oh-marketing-hero-headline {
  margin: 0 auto var(--oh-space-5);
  max-width: 22ch;
  color: var(--oh-color-text);
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.oh-marketing-hero-headline em {
  display: inline;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--oh-color-accent) 0%, color-mix(in srgb, var(--oh-color-accent) 60%, #312e81) 100%);
  background-clip: text;
  /* stylelint-disable-next-line property-no-vendor-prefix -- Safari still needs the vendor-prefixed clip on background-clip:text. */
  -webkit-background-clip: text;
  /* stylelint-disable-next-line property-no-vendor-prefix -- needed alongside webkit-background-clip:text. */
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.oh-marketing-hero-subcopy {
  margin: 0 auto var(--oh-space-7);
  max-width: 64ch;
  color: var(--oh-color-muted);
  font-size: clamp(1rem, 1vw + 0.625rem, 1.1875rem);
  line-height: 1.55;
}
.oh-marketing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--oh-space-3);
}

@keyframes oh-marketing-hero-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent) 50%, transparent);
  }
  70% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--oh-color-accent) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent) 0%, transparent);
  }
}
/* stylelint-disable selector-class-pattern */
.oh-marketing-features {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  padding-block: clamp(var(--oh-space-7), 9vw, 7rem);
}
.oh-marketing-features-glow {
  position: absolute;
  inset: 10% auto auto -8%;
  z-index: -1;
  width: 540px;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--oh-color-accent) 16%, transparent), transparent 70%);
  pointer-events: none;
}
.oh-marketing-features-inner {
  max-width: var(--oh-container-chrome, 1400px);
  margin-inline: auto;
  padding-inline: var(--oh-space-5);
}
.oh-marketing-features-kicker {
  margin: 0 auto var(--oh-space-3);
  color: var(--oh-color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
.oh-marketing-features-lead {
  margin: 0 auto var(--oh-space-7);
  max-width: 26ch;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  text-align: center;
}
.oh-marketing-features-grid {
  gap: var(--oh-space-5) !important;
}
@media (width >= 769px) {
  .oh-marketing-features-grid {
    gap: var(--oh-space-6) !important;
  }
}

.oh-marketing-feature {
  position: relative;
  isolation: isolate;
  padding: var(--oh-space-7) var(--oh-space-6);
  background: linear-gradient(180deg, var(--oh-color-bg) 0%, color-mix(in srgb, var(--oh-color-accent) 5%, var(--oh-color-bg)) 100%);
  border: 1px solid var(--oh-color-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color var(--oh-motion-fast) ease, transform var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease;
}
.oh-marketing-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--oh-color-accent) 80%, transparent), transparent);
  opacity: 0;
  transition: opacity var(--oh-motion-fast) ease;
}
.oh-marketing-feature::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  z-index: -1;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--oh-color-accent) 14%, transparent), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--oh-motion-base) ease;
}
.oh-marketing-feature:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 38%, var(--oh-color-border));
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 24px 48px rgba(79, 70, 229, 0.12);
}
.oh-marketing-feature:hover::before {
  opacity: 1;
}
.oh-marketing-feature:hover::after {
  opacity: 1;
}
.oh-marketing-feature-num {
  margin: 0 0 var(--oh-space-5);
  color: var(--oh-color-accent);
  font-family: ui-monospace, sfmono-regular, menlo, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}
.oh-marketing-feature-title {
  margin: 0 0 var(--oh-space-3);
  color: var(--oh-color-text);
  font-size: clamp(1.25rem, 1vw + 0.875rem, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.oh-marketing-feature-body {
  margin: 0;
  color: var(--oh-color-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* stylelint-disable selector-class-pattern */
.oh-marketing-faq {
  position: relative;
  background: linear-gradient(180deg, var(--oh-color-bg) 0%, var(--oh-color-surface) 100%);
  padding-block: clamp(var(--oh-space-7), 9vw, 7rem);
}
.oh-marketing-faq-inner {
  max-width: var(--oh-container-chrome, 1400px);
  margin-inline: auto;
  padding-inline: var(--oh-space-5);
}
.oh-marketing-faq-kicker {
  margin: 0 auto var(--oh-space-3);
  color: var(--oh-color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
.oh-marketing-faq-lead {
  margin: 0 auto var(--oh-space-7);
  max-width: 26ch;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  text-align: center;
}
.oh-marketing-faq-list {
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: var(--oh-space-3);
}
.oh-marketing-faq-item {
  position: relative;
  padding: 0;
  background: var(--oh-color-bg);
  border: 1px solid var(--oh-color-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color var(--oh-motion-fast) ease, box-shadow var(--oh-motion-fast) ease, background-color var(--oh-motion-fast) ease;
}
.oh-marketing-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-space-4);
  padding: var(--oh-space-5) var(--oh-space-6);
  color: var(--oh-color-text);
  font-size: clamp(1.0625rem, 0.5vw + 0.875rem, 1.1875rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  cursor: pointer;
  list-style: none;
  transition: color var(--oh-motion-fast) ease;
}
.oh-marketing-faq-item summary::-webkit-details-marker {
  display: none;
}
.oh-marketing-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-inline-end: 4px;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  transform: rotate(45deg);
  transform-origin: 60% 60%;
  color: var(--oh-color-muted);
  transition: transform var(--oh-motion-base) cubic-bezier(0.2, 0.8, 0.2, 1), color var(--oh-motion-fast) ease;
}
.oh-marketing-faq-item summary:hover {
  color: var(--oh-color-accent);
}
.oh-marketing-faq-item summary:hover::after {
  color: var(--oh-color-accent);
}
.oh-marketing-faq-item summary:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
  outline-offset: -3px;
  border-radius: inherit;
}
.oh-marketing-faq-item > p {
  margin: 0;
  padding: 0 var(--oh-space-6) var(--oh-space-5);
  max-width: 70ch;
  color: var(--oh-color-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.oh-marketing-faq-item:hover {
  border-color: color-mix(in srgb, var(--oh-color-accent) 30%, var(--oh-color-border));
}
.oh-marketing-faq-item[open] {
  background: color-mix(in srgb, var(--oh-color-accent) 4%, var(--oh-color-bg));
  border-color: color-mix(in srgb, var(--oh-color-accent) 36%, var(--oh-color-border));
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 12px 28px rgba(79, 70, 229, 0.1);
}
.oh-marketing-faq-item[open] summary {
  color: var(--oh-color-accent);
}
.oh-marketing-faq-item[open] summary::after {
  transform: rotate(-135deg);
  color: var(--oh-color-accent);
}

/* stylelint-disable selector-class-pattern */
.oh-marketing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-block: var(--oh-space-7);
  padding-block: clamp(var(--oh-space-7), 10vw, 8rem);
  background: var(--oh-color-canvas-dark);
  color: var(--oh-color-canvas-fg);
  border-radius: 24px;
}
.oh-marketing-cta-glow {
  position: absolute;
  inset: -45% 0 auto;
  z-index: -1;
  height: 90%;
  background: radial-gradient(closest-side at 50% 30%, color-mix(in srgb, var(--oh-color-accent) 38%, transparent), transparent 70%);
  pointer-events: none;
}
.oh-marketing-cta-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.oh-marketing-cta-inner {
  max-width: var(--oh-container-chrome, 1400px);
  margin-inline: auto;
  padding-inline: var(--oh-space-5);
  text-align: center;
}
.oh-marketing-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-space-2);
  margin: 0 auto var(--oh-space-5);
  padding: 0.45rem 0.9rem;
  background: color-mix(in srgb, var(--oh-color-accent-soft) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--oh-color-accent-soft) 38%, transparent);
  border-radius: 999px;
  color: var(--oh-color-accent-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.oh-marketing-cta-kicker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--oh-color-accent-soft);
  border-radius: 999px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent-soft) 60%, transparent);
  animation: oh-marketing-cta-pulse 2.4s ease-out infinite;
}
.oh-marketing-cta-lead {
  margin: 0 auto var(--oh-space-4);
  max-width: 22ch;
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.oh-marketing-cta-body {
  margin: 0 auto var(--oh-space-7);
  max-width: 62ch;
  color: var(--oh-color-canvas-muted);
  font-size: clamp(1rem, 1vw + 0.625rem, 1.1875rem);
  line-height: 1.55;
}
.oh-marketing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--oh-space-4);
}
.oh-marketing-cta-signin {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--oh-color-canvas-muted);
}
.oh-marketing-cta-signin a {
  color: var(--oh-color-accent-soft);
  text-decoration: none;
  transition: color var(--oh-motion-fast) ease;
}
.oh-marketing-cta-signin a:hover {
  color: #fff;
}
.oh-marketing-cta-signin a:focus-visible {
  outline: 2px solid var(--oh-color-accent);
  outline-offset: 3px;
  outline-offset: 4px;
  border-radius: var(--oh-radius-sm);
}

@keyframes oh-marketing-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent-soft) 60%, transparent);
  }
  70% {
    box-shadow: 0 0 0 8px color-mix(in srgb, var(--oh-color-accent-soft) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--oh-color-accent-soft) 0%, transparent);
  }
}
/*# sourceMappingURL=main.css.map */
