:root {
  /* --- Surfaces --- */
  --bg: #FBFAF7;
  --bg-alt: #F3F1EB;
  --surface: #FFFFFF;
  --surface-soft: #F6F5F1;
  --surface-tag: #F1EFE8;
  --surface-file: #EDEBE4;
  /* --- Brand --- */
  --ink: #16161A;
  --blue: #22389E;
  --yellow: #F2B735;
  --green: #1D7A5F;
  /* --- Text on light --- */
  --ink-700: #3A3A44;
  --ink-600: #4A4A55;
  --ink-500: #54545F;
  --ink-450: #5E5E68;
  --ink-400: #6A6A75;
  --ink-350: #7A7A85;
  --ink-300: #8A8A94;
  --ink-200: #A0A0AA;
  --ink-100: #C9C9CF;
  /* --- Text on dark --- */
  --on-dark: #E8E8EC;
  --on-dark-muted: #9A9AA6;
  --on-dark-dim: #8E8E9A;
  --on-dark-faint: #6E6E7A;
  /* --- Borders --- */
  --line-06: rgba(22, 22, 26, .06);
  --line-07: rgba(22, 22, 26, .07);
  --line-08: rgba(22, 22, 26, .08);
  --line-09: rgba(22, 22, 26, .09);
  --line-10: rgba(22, 22, 26, .10);
  --line-15: rgba(22, 22, 26, .15);
  --line-16: rgba(22, 22, 26, .16);
  /* --- Tints --- */
  --blue-08: rgba(34, 56, 158, .08);
  --blue-18: rgba(34, 56, 158, .18);
  --blue-22: rgba(34, 56, 158, .22);
  --blue-30: rgba(34, 56, 158, .30);
  --blue-35: rgba(34, 56, 158, .35);
  --yellow-10: rgba(242, 183, 53, .10);
  --yellow-14: rgba(242, 183, 53, .14);
  --yellow-25: rgba(242, 183, 53, .25);
  --white-05: rgba(255, 255, 255, .05);
  --white-06: rgba(255, 255, 255, .06);
  --white-16: rgba(255, 255, 255, .16);
  --white-20: rgba(255, 255, 255, .20);
  /* --- Typography --- */
  --font-sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --fs-h1: clamp(34px, 6.4vw, 80px);
  --fs-h2: clamp(30px, 3.8vw, 44px);
  --fs-h2-sm: clamp(28px, 3.4vw, 40px);
  --fs-lead: clamp(16px, 1.5vw, 18px);
  /* --- Radii --- */
  --r-xs: 5px;
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 13px;
  --r-xl: 16px;
  --r-2xl: 18px;
  --r-3xl: 20px;
  --r-4xl: 22px;
  --r-5xl: 24px;
  --r-pill: 999px;
  /* --- Shadows --- */
  --shadow-panel: 0 30px 70px -40px rgba(22, 22, 40, .35);
  --shadow-blue: 0 24px 60px -40px rgba(34, 56, 158, .50);
  --shadow-letter: 0 8px 20px -12px rgba(22, 22, 40, .40);
  --shadow-chip: 0 8px 18px -10px rgba(34, 56, 158, .90);
  /* --- Layout --- */
  --container: 1440px;
  --pad: 24px;
  --section-y: clamp(64px, 8vw, 96px);
  --header-h: 69px;
  /* --- Motion --- */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .16s var(--ease);
}

@media (max-width: 860px) {
  :root {
    --pad: 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --- Surfaces --- */
  --bg: #FBFAF7;
  --bg-alt: #F3F1EB;
  --surface: #FFFFFF;
  --surface-soft: #F6F5F1;
  --surface-tag: #F1EFE8;
  --surface-file: #EDEBE4;
  /* --- Brand --- */
  --ink: #16161A;
  --blue: #22389E;
  --yellow: #F2B735;
  --green: #1D7A5F;
  /* --- Text on light --- */
  --ink-700: #3A3A44;
  --ink-600: #4A4A55;
  --ink-500: #54545F;
  --ink-450: #5E5E68;
  --ink-400: #6A6A75;
  --ink-350: #7A7A85;
  --ink-300: #8A8A94;
  --ink-200: #A0A0AA;
  --ink-100: #C9C9CF;
  /* --- Text on dark --- */
  --on-dark: #E8E8EC;
  --on-dark-muted: #9A9AA6;
  --on-dark-dim: #8E8E9A;
  --on-dark-faint: #6E6E7A;
  /* --- Borders --- */
  --line-06: rgba(22, 22, 26, .06);
  --line-07: rgba(22, 22, 26, .07);
  --line-08: rgba(22, 22, 26, .08);
  --line-09: rgba(22, 22, 26, .09);
  --line-10: rgba(22, 22, 26, .10);
  --line-15: rgba(22, 22, 26, .15);
  --line-16: rgba(22, 22, 26, .16);
  /* --- Tints --- */
  --blue-08: rgba(34, 56, 158, .08);
  --blue-18: rgba(34, 56, 158, .18);
  --blue-22: rgba(34, 56, 158, .22);
  --blue-30: rgba(34, 56, 158, .30);
  --blue-35: rgba(34, 56, 158, .35);
  --yellow-10: rgba(242, 183, 53, .10);
  --yellow-14: rgba(242, 183, 53, .14);
  --yellow-25: rgba(242, 183, 53, .25);
  --white-05: rgba(255, 255, 255, .05);
  --white-06: rgba(255, 255, 255, .06);
  --white-16: rgba(255, 255, 255, .16);
  --white-20: rgba(255, 255, 255, .20);
  /* --- Typography --- */
  --font-sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --fs-h1: clamp(34px, 6.4vw, 80px);
  --fs-h2: clamp(30px, 3.8vw, 44px);
  --fs-h2-sm: clamp(28px, 3.4vw, 40px);
  --fs-lead: clamp(16px, 1.5vw, 18px);
  /* --- Radii --- */
  --r-xs: 5px;
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 13px;
  --r-xl: 16px;
  --r-2xl: 18px;
  --r-3xl: 20px;
  --r-4xl: 22px;
  --r-5xl: 24px;
  --r-pill: 999px;
  /* --- Shadows --- */
  --shadow-panel: 0 30px 70px -40px rgba(22, 22, 40, .35);
  --shadow-blue: 0 24px 60px -40px rgba(34, 56, 158, .50);
  --shadow-letter: 0 8px 20px -12px rgba(22, 22, 40, .40);
  --shadow-chip: 0 8px 18px -10px rgba(34, 56, 158, .90);
  /* --- Layout --- */
  --container: 1440px;
  --pad: 24px;
  --section-y: clamp(64px, 8vw, 96px);
  --header-h: 69px;
  /* --- Motion --- */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .16s var(--ease);
}

@media (max-width: 860px) {
  :root {
    --pad: 20px;
  }
}
.hero {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-10);
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: #4A4A55;
}
.hero-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}
.hero-pill span:nth-of-type(1) {
  background: var(--yellow);
}
.hero-pill span:nth-of-type(2) {
  background: var(--blue);
  margin-left: -6px;
}
.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero-heading h1 {
  width: 20ch;
  font-size: var(--fs-h1);
  line-height: 1.1em;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}
.hero-heading p {
  max-width: 55ch;
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-500);
  text-wrap: pretty;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  margin-top: 16px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-350);
}
.hero-notes i {
  color: var(--ink-100);
  font-style: normal;
}

:root {
  /* --- Surfaces --- */
  --bg: #FBFAF7;
  --bg-alt: #F3F1EB;
  --surface: #FFFFFF;
  --surface-soft: #F6F5F1;
  --surface-tag: #F1EFE8;
  --surface-file: #EDEBE4;
  /* --- Brand --- */
  --ink: #16161A;
  --blue: #22389E;
  --yellow: #F2B735;
  --green: #1D7A5F;
  /* --- Text on light --- */
  --ink-700: #3A3A44;
  --ink-600: #4A4A55;
  --ink-500: #54545F;
  --ink-450: #5E5E68;
  --ink-400: #6A6A75;
  --ink-350: #7A7A85;
  --ink-300: #8A8A94;
  --ink-200: #A0A0AA;
  --ink-100: #C9C9CF;
  /* --- Text on dark --- */
  --on-dark: #E8E8EC;
  --on-dark-muted: #9A9AA6;
  --on-dark-dim: #8E8E9A;
  --on-dark-faint: #6E6E7A;
  /* --- Borders --- */
  --line-06: rgba(22, 22, 26, .06);
  --line-07: rgba(22, 22, 26, .07);
  --line-08: rgba(22, 22, 26, .08);
  --line-09: rgba(22, 22, 26, .09);
  --line-10: rgba(22, 22, 26, .10);
  --line-15: rgba(22, 22, 26, .15);
  --line-16: rgba(22, 22, 26, .16);
  /* --- Tints --- */
  --blue-08: rgba(34, 56, 158, .08);
  --blue-18: rgba(34, 56, 158, .18);
  --blue-22: rgba(34, 56, 158, .22);
  --blue-30: rgba(34, 56, 158, .30);
  --blue-35: rgba(34, 56, 158, .35);
  --yellow-10: rgba(242, 183, 53, .10);
  --yellow-14: rgba(242, 183, 53, .14);
  --yellow-25: rgba(242, 183, 53, .25);
  --white-05: rgba(255, 255, 255, .05);
  --white-06: rgba(255, 255, 255, .06);
  --white-16: rgba(255, 255, 255, .16);
  --white-20: rgba(255, 255, 255, .20);
  /* --- Typography --- */
  --font-sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --fs-h1: clamp(34px, 6.4vw, 80px);
  --fs-h2: clamp(30px, 3.8vw, 44px);
  --fs-h2-sm: clamp(28px, 3.4vw, 40px);
  --fs-lead: clamp(16px, 1.5vw, 18px);
  /* --- Radii --- */
  --r-xs: 5px;
  --r-sm: 7px;
  --r-md: 10px;
  --r-lg: 13px;
  --r-xl: 16px;
  --r-2xl: 18px;
  --r-3xl: 20px;
  --r-4xl: 22px;
  --r-5xl: 24px;
  --r-pill: 999px;
  /* --- Shadows --- */
  --shadow-panel: 0 30px 70px -40px rgba(22, 22, 40, .35);
  --shadow-blue: 0 24px 60px -40px rgba(34, 56, 158, .50);
  --shadow-letter: 0 8px 20px -12px rgba(22, 22, 40, .40);
  --shadow-chip: 0 8px 18px -10px rgba(34, 56, 158, .90);
  /* --- Layout --- */
  --container: 1440px;
  --pad: 24px;
  --section-y: clamp(64px, 8vw, 96px);
  --header-h: 69px;
  /* --- Motion --- */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .16s var(--ease);
}

@media (max-width: 860px) {
  :root {
    --pad: 20px;
  }
}
.document-analyzer {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.document-analyzer__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line-09);
  border-radius: var(--r-5xl);
  box-shadow: var(--shadow-panel);
}
.document-analyzer__layout:hover .document-analyzer__dropzone {
  border-color: var(--blue);
}
.document-analyzer__panel {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  border-radius: var(--r-2xl);
}
.document-analyzer__panel--upload {
  gap: 16px;
  background: var(--surface-soft);
}
.document-analyzer__panel--result {
  gap: 14px;
  color: #fff;
  background: var(--ink);
}
.document-analyzer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-300);
  letter-spacing: 0;
  text-transform: uppercase;
}
.document-analyzer__dropzone {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 26px;
  text-align: center;
  background: #fff;
  border: 1.5px dashed var(--blue-30);
  border-radius: var(--r-xl);
  transition: border-color var(--t), background var(--t);
  cursor: pointer;
}
.document-analyzer__upload-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.document-analyzer__upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--blue-08);
  border-radius: 15px;
}
.document-analyzer__upload-icon i {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 4px;
  animation: float-y 3.2s ease-in-out infinite;
}
.document-analyzer__upload-title {
  font-size: 16px;
  font-weight: 700;
}
.document-analyzer__upload-hint {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-350);
}
.document-analyzer__upload-button {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: var(--r-lg);
}
.document-analyzer__scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@property --progress {
  .document-analyzer {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
  }
}
.document-analyzer__progress {
  --progress: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--blue) calc(var(--progress) * 1%), rgba(22, 22, 26, 0.08) 0);
  transition: --progress 0.18s linear;
}
.document-analyzer__progress::before {
  position: absolute;
  inset: -6px;
  content: "";
  background: radial-gradient(circle, rgba(34, 56, 158, 0.16), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.document-analyzer__progress::after {
  position: absolute;
  inset: 1px;
  content: "";
  border: 1px solid transparent;
  border-top-color: rgba(34, 56, 158, 0.35);
  border-radius: 50%;
  animation: ring-spin 1.15s linear infinite;
  pointer-events: none;
}
.document-analyzer__progress-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 122px;
  background: #fff;
  border-radius: 50%;
}
@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}
.document-analyzer__progress-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.document-analyzer__progress-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.document-analyzer__progress-value sup {
  margin-left: 2px;
  font-size: 12px;
}
.document-analyzer__progress-label {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-300);
  text-transform: uppercase;
}
.document-analyzer__progress-check {
  display: none;
}
.document-analyzer__progress-check svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.document-analyzer__scan-status {
  font-size: 14px;
  font-weight: 700;
}
.document-analyzer__scan-file {
  font-size: 12px;
  color: var(--ink-300);
}
.document-analyzer__file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line-07);
  border-radius: var(--r-lg);
}
.document-analyzer__file-thumbnail {
  flex: none;
  width: 28px;
  height: 34px;
  background: var(--surface-file);
  border: 1px solid var(--line-08);
  border-radius: var(--r-xs);
}
.document-analyzer__file-info {
  flex: 1;
  min-width: 0;
}
.document-analyzer__file-name, .document-analyzer__file-meta {
  display: block;
}
.document-analyzer__file-name {
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.document-analyzer__file-meta {
  font-size: 12px;
  color: var(--ink-300);
}
.document-analyzer__file-status {
  flex: none;
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--green);
  background: rgba(29, 122, 95, 0.09);
  border-radius: 8px;
}
.document-analyzer__samples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.document-analyzer__samples-label {
  font-size: 12px;
  color: var(--ink-300);
}
.document-analyzer__sample {
  padding: 7px 10px;
  font: inherit;
  font-size: 12px;
  color: var(--ink-350);
  background: #fff;
  border: 1px solid var(--line-07);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: color var(--t), background var(--t), border-color var(--t);
}
.document-analyzer__sample:hover, .document-analyzer__sample--active {
  color: var(--ink);
  border-color: var(--blue-30);
}
.document-analyzer__sample--active {
  background: var(--blue-08);
}
.document-analyzer__privacy-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-300);
}
.document-analyzer__result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.document-analyzer__result-header span {
  font-family: var(--font-mono);
  font-size: 12px;
}
.document-analyzer__result-header span:first-child {
  color: var(--on-dark-dim);
  letter-spacing: 0;
  text-transform: uppercase;
}
.document-analyzer__result-header span:last-child {
  color: var(--yellow);
}
.document-analyzer__result-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}
.document-analyzer__result-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.28s var(--ease);
}
.document-analyzer__result-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.document-analyzer__result-sections {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.document-analyzer__result-section {
  padding: 14px 16px;
  background: var(--white-06);
  border-radius: 14px;
}
.document-analyzer__result-section--warning {
  background: var(--yellow-10);
  border: 1px solid var(--yellow-25);
}
.document-analyzer__result-section--warning .document-analyzer__result-label {
  color: var(--yellow);
}
.document-analyzer__result-section--warning .document-analyzer__result-text {
  color: #f6f1e6;
}
.document-analyzer__result-label {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--on-dark-muted);
}
.document-analyzer__result-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark);
}
.document-analyzer__steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--on-dark);
}
.document-analyzer__step {
  display: flex;
  gap: 9px;
}
.document-analyzer__step-number {
  flex: none;
  font-weight: 400;
  color: var(--yellow);
}
.document-analyzer__step-text {
  flex: 1;
}
.document-analyzer__skeleton {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.document-analyzer__skeleton-title {
  width: 72%;
  height: 28px;
  background: var(--white-06);
  border-radius: var(--r-sm);
}
.document-analyzer__skeleton-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: var(--white-06);
  border-radius: 14px;
}
.document-analyzer__skeleton-block i {
  display: block;
  height: 10px;
  background: var(--white-20);
  border-radius: 10px;
}
.document-analyzer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}
.document-analyzer__action {
  flex: 1 1 130px;
  padding: 13px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--r-lg);
}
.document-analyzer__action--primary {
  color: var(--ink);
  background: #fff;
}
.document-analyzer__action--secondary {
  color: #fff;
  border: 1px solid var(--white-20);
}
.document-analyzer__scan, .document-analyzer__file, .document-analyzer__skeleton {
  display: none;
}
.document-analyzer__layout[data-state=analyzing] .document-analyzer__upload-state {
  display: none;
}
.document-analyzer__layout[data-state=analyzing] .document-analyzer__scan,
.document-analyzer__layout[data-state=analyzing] .document-analyzer__file,
.document-analyzer__layout[data-state=analyzing] .document-analyzer__skeleton {
  display: flex;
}
.document-analyzer__layout[data-state=analyzing] .document-analyzer__result-content,
.document-analyzer__layout[data-state=analyzing] .document-analyzer__actions {
  display: none;
}

@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}/*# sourceMappingURL=main.css.map */