:root {
  --ink: #142028;
  --ink-soft: #3a4a52;
  --paper: #f3f6f2;
  --paper-2: #e7efe9;
  --teal: #1f6f6a;
  --teal-deep: #14343a;
  --ember: #c45c26;
  --link: #0b5fff;
  --link-hover: #0847c7;
  --line: rgba(20, 32, 40, 0.12);
  --shadow: 0 24px 60px rgba(20, 52, 58, 0.12);
  --font-display: "Manrope", "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --shell: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(31, 111, 106, 0.16), transparent 55%),
    radial-gradient(900px 600px at 92% 8%, rgba(196, 92, 38, 0.12), transparent 50%),
    linear-gradient(180deg, #f7faf7 0%, var(--paper) 42%, #eef4f0 100%);
  overflow-x: hidden;
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 32, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 40, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 25%, transparent 75%);
  z-index: 0;
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.lang-switch {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.lang-btn {
  border: 0;
  background: transparent;
  font: 700 0.78rem/1 var(--font-display);
  letter-spacing: 0.04em;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.lang-btn.is-active {
  background: var(--teal-deep);
  color: #f4f7f5;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto;
  padding: 0 0 3rem;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #f4f7f5;
  background: var(--teal-deep);
  padding: 0.45rem 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.lede {
  margin: 0 0 0.85rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.coverage {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--teal-deep);
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--teal);
  background: rgba(31, 111, 106, 0.08);
}

.coverage strong {
  font-weight: 800;
}

.mode-switch {
  display: inline-flex;
  gap: 0;
  margin: 0 0 0.85rem;
  border: 1.5px solid var(--ink);
}

.mode-btn {
  border: 0;
  background: transparent;
  font: 700 0.82rem/1.1 var(--font-display);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.mode-btn.is-active {
  background: var(--teal-deep);
  color: #f4f7f5;
}

.resolve {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
  max-width: 36rem;
  animation: rise 0.8s ease both;
  animation-delay: 0.15s;
}

.resolve #single-wrap,
.resolve #batch-wrap {
  flex: 1;
  min-width: 0;
}

.resolve input,
.resolve textarea {
  width: 100%;
  border: 1.5px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.95rem 1.1rem;
  font: 600 1rem/1.2 var(--font-display);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.resolve input::placeholder,
.resolve textarea::placeholder {
  color: #7a8a90;
  font-weight: 500;
}

.resolve input:focus,
.resolve textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 111, 106, 0.18);
}

.examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0.85rem 0 0;
  max-width: 36rem;
}

.examples-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-right: 0.15rem;
}

.chip {
  border: 1px solid rgba(20, 32, 40, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-deep);
  font: 600 0.8rem/1 var(--font-display);
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  border-radius: 2px;
}

.chip:hover {
  border-color: var(--teal);
  background: #fff;
}

.chip:disabled,
.mode-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.resolve button {
  border: 1.5px solid var(--teal-deep);
  background: var(--teal-deep);
  color: #f4f7f5;
  padding: 0.95rem 1.25rem;
  font: 700 0.95rem/1.1 var(--font-display);
  letter-spacing: -0.01em;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease;
}

.resolve button:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.resolve button:active {
  transform: translateY(0);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--teal-deep);
}

.form-note[data-tone="error"] {
  color: #9b2c1a;
}

.resolve button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.progress {
  margin-top: 1.25rem;
  max-width: 36rem;
  animation: rise 0.4s ease both;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.progress-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-deep);
}

.progress-pct {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 8px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal) 55%, #c45c26);
  transition: width 0.25s ease;
}

.progress-steps {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.progress-steps li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: #8a9aa0;
  transition: color 0.2s ease;
}

.progress-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: #c5d0d3;
}

.progress-steps li.is-active {
  color: var(--teal-deep);
  font-weight: 600;
}

.progress-steps li.is-active::before {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 111, 106, 0.18);
}

.progress-steps li.is-done {
  color: var(--ink-soft);
}

.progress-steps li.is-done::before {
  background: var(--teal-deep);
}

.results {
  margin-top: 1.75rem;
  max-width: 36rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  animation: rise 0.45s ease both;
}

body.has-workspace .hero {
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  width: min(100% - 2rem, 64rem);
  padding-top: 0.5rem;
}

body.has-workspace .hero-visual,
body.has-workspace .hero-kicker,
body.has-workspace .hero h1,
body.has-workspace .lede,
body.has-workspace .coverage {
  display: none !important;
}

body.has-workspace .hero-copy {
  width: 100%;
  max-width: none;
}

body.has-workspace .resolve,
body.has-workspace .examples,
body.has-workspace .progress,
body.has-workspace .results,
body.has-workspace .form-note {
  max-width: none;
}

body.has-workspace .results {
  margin-top: 1.75rem;
  padding: 0;
  border-top: 0;
}

body.has-workspace .result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1.75rem;
}

body.has-workspace .strip,
body.has-workspace .api-teaser {
  display: none;
}

body.has-workspace .pricing-banner {
  display: grid;
  margin-top: 2.5rem;
}

body.has-workspace .foot {
  margin-top: 2rem;
}

.results-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.results h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.export-actions {
  display: flex;
  gap: 0.45rem;
}

.ghost-btn {
  border: 1.5px solid rgba(20, 32, 40, 0.28);
  background: #fff;
  color: var(--teal-deep);
  font: 700 0.82rem/1 var(--font-display);
  padding: 0.55rem 0.8rem;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(20, 32, 40, 0.04);
}

.ghost-btn:hover {
  border-color: var(--teal);
  background: #f7fbf9;
}

.result-card {
  background: #fff;
  border: 1.5px solid rgba(20, 32, 40, 0.16);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 40px rgba(20, 52, 58, 0.1),
    0 4px 12px rgba(20, 32, 40, 0.06);
  padding: 1.35rem 1.4rem 1.45rem;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
}

.result-card + .result-card {
  margin-top: 1.35rem;
}

.confidence-block {
  margin-bottom: 1.25rem;
}

.confidence-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
}

.confidence-top strong,
.score-chip {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--ink);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  line-height: 1.2;
}

.confidence-track {
  height: 12px;
  border: 1.5px solid rgba(20, 32, 40, 0.22);
  background: #e8eee9;
  overflow: hidden;
  border-radius: 2px;
}

.confidence-fill {
  height: 100%;
  width: 0;
  background: var(--teal);
  transition: width 0.6s ease;
}

.tone-high .confidence-fill { background: linear-gradient(90deg, #1f6f6a, #0f4f4b); }
.tone-mid .confidence-fill { background: linear-gradient(90deg, #8a9f45, #5f7030); }
.tone-low .confidence-fill { background: linear-gradient(90deg, #e07a3a, var(--ember)); }
.tone-poor .confidence-fill { background: linear-gradient(90deg, #c4543a, #9b2c1a); }

.status-hint {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 1.4;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.5rem;
  padding: 1.15rem 1.1rem;
  background: #f4f7f5;
  border: 1px solid rgba(20, 32, 40, 0.1);
  border-radius: 4px;
}

.result-grid .field {
  min-width: 0;
}

.result-grid dt,
.result-grid .label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a7a82;
  display: block;
}

.result-grid dd,
.result-grid .value {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--ink);
  word-break: break-word;
  display: block;
  letter-spacing: -0.015em;
}

.result-grid a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.result-grid a:hover {
  color: var(--link-hover);
}

.result-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1.5px solid rgba(20, 32, 40, 0.1);
}

.result-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1.5px solid rgba(20, 32, 40, 0.14);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
}

.result-brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.tagline {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.value .muted {
  color: #6a7a82;
  font-weight: 600;
  font-size: 0.82em;
}

.result-more {
  margin-top: 1.15rem;
  font-family: var(--font-display);
  font-size: 1rem;
  border-top: 1px solid rgba(20, 32, 40, 0.1);
  padding-top: 0.85rem;
}

.result-more summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.result-more p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
  white-space: pre-wrap;
  font-size: 1rem;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border: 1.5px solid #1a8a4a;
  background: #e8f7ee;
  color: #0d5c32;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  border-radius: 3px;
}

.tone-high .badge {
  border-color: #1a8a4a;
  background: #e8f7ee;
  color: #0d5c32;
}

.tone-mid .badge {
  border-color: #7a8f3d;
  background: #f3f6e8;
  color: #4a5a20;
}

.tone-low .badge,
.tone-poor .badge {
  border-color: var(--ember);
  background: #fdf0e8;
  color: #8a3a12;
}

.evidence {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.result-empty,
.result-error {
  margin: 0;
  font-family: var(--font-display);
}

.result-error {
  color: #9b2c1a;
}

@media (max-width: 900px) {
  body.has-workspace .result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .result-grid {
    grid-template-columns: 1fr;
  }

  body.has-workspace .result-grid {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
  min-height: 320px;
  animation: fade-in 1s ease both;
}

.enrich-scene {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1.5px solid rgba(20, 32, 40, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(231, 239, 233, 0.92)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(20, 32, 40, 0.04) 27px,
      rgba(20, 32, 40, 0.04) 28px
    );
  box-shadow: var(--shadow);
}

.enrich-kicker {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.enrich-input {
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed rgba(20, 32, 40, 0.18);
}

.enrich-query {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.enrich-sparse {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.enrich-sparse li {
  height: 10px;
  max-width: 100%;
  background: rgba(20, 32, 40, 0.08);
}

.enrich-sparse li:nth-child(1) { width: 72%; }
.enrich-sparse li:nth-child(2) { width: 54%; }
.enrich-sparse li:nth-child(3) { width: 63%; }

.enrich-bridge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.enrich-bridge-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--ember), transparent);
  position: relative;
  overflow: hidden;
}

.enrich-bridge-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  background: rgba(255, 255, 255, 0.85);
  animation: scan 2.4s ease-in-out infinite;
}

.enrich-bridge-core {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f7f5;
  background: var(--teal-deep);
  padding: 0.45rem 0.7rem;
}

.enrich-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.enrich-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #f4f7f5;
  background: var(--teal-deep);
  letter-spacing: -0.03em;
}

.enrich-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.enrich-meta {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.chip em {
  font-style: normal;
  font-weight: 700;
  opacity: 0.7;
  margin-left: 0.2rem;
}

.score-chip,
.enrich-score {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: #f4f7f5;
  background: var(--teal-deep);
  padding: 0.28rem 0.55rem;
  line-height: 1;
}

.confidence-top .score-chip {
  font-size: 0.95rem;
}

.enrich-score {
  font-size: 1.05rem;
  color: #f4f7f5;
  background: var(--teal-deep);
}

.enrich-fields {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(20, 32, 40, 0.14);
}

.enrich-field {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(20, 32, 40, 0.1);
  opacity: 0;
  transform: translateY(6px);
  animation: rise 0.45s ease forwards;
}

.enrich-field.f1 { animation-delay: 0.25s; }
.enrich-field.f2 { animation-delay: 0.4s; }
.enrich-field.f3 { animation-delay: 0.55s; }
.enrich-field.f4 { animation-delay: 0.7s; }
.enrich-field.f5 { animation-delay: 0.85s; }
.enrich-field.f6 { animation-delay: 1s; }
.enrich-field.f7 { animation-delay: 1.15s; }

.enrich-field dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
}

.enrich-field dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  word-break: break-word;
}

@keyframes scan {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(380%); }
}

.strip {
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto 4rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.strip h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
}

.strip-title {
  display: inline-block;
  margin: 0 0 0.85rem;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding: 0;
  background: transparent;
  border-left: 3px solid var(--teal);
  padding-left: 0.75rem;
}

.strip-lede {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.strip-featured .strip-lede {
  max-width: 44rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.strip-featured .strip-lede strong,
.use-item p strong,
.trust-points li strong {
  font-weight: 700;
  color: var(--ink);
  background: rgba(31, 111, 106, 0.14);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.05em 0.2em;
}

.use-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.use-item {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.use-item:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.use-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.use-item p {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.trust-points {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 48rem;
  border-top: 1px solid var(--line);
}

.trust-points li {
  margin: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--teal-deep);
}

.trust-legal {
  margin: 1.25rem 0 0;
}

.trust-legal a {
  color: var(--teal-deep);
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(20, 52, 58, 0.35);
}

.trust-legal a:hover {
  color: var(--link);
  border-color: var(--link);
}

.pricing-banner {
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto 3.5rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem 2rem;
  border: 1.5px solid rgba(20, 32, 40, 0.14);
  background:
    linear-gradient(135deg, rgba(31, 111, 106, 0.08), rgba(255, 255, 255, 0.72) 45%, rgba(196, 92, 38, 0.06));
  box-shadow: var(--shadow);
}

.pricing-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.pricing-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pricing-copy h2 strong {
  color: var(--teal-deep);
  background: rgba(31, 111, 106, 0.14);
  padding: 0.05em 0.25em;
}

.pricing-lede {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1.02rem;
}

.pricing-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-bullets li {
  position: relative;
  margin: 0 0 0.45rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.pricing-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--ember);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(20, 32, 40, 0.12);
}

.contact-form h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  border: 1.5px solid rgba(20, 32, 40, 0.22);
  background: #fff;
  padding: 0.65rem 0.7rem;
  font: 500 0.95rem/1.2 var(--font-body);
  color: var(--ink);
}

.contact-form input:focus {
  outline: 2px solid rgba(31, 111, 106, 0.35);
  border-color: var(--teal);
}

.captcha-fields {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.captcha-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--teal-deep);
  min-width: 4.5rem;
  padding: 0.55rem 0.65rem;
  background: rgba(31, 111, 106, 0.1);
  border: 1.5px solid rgba(20, 52, 58, 0.18);
}

.captcha-fields input {
  max-width: 5.5rem;
}

.contact-form button[type="submit"] {
  margin-top: 0.25rem;
  border: 0;
  background: var(--teal-deep);
  color: #f4f7f5;
  font: 700 0.95rem/1 var(--font-display);
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background: var(--teal);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-note[data-tone="ok"] {
  color: var(--teal-deep);
}

.contact-note[data-tone="error"] {
  color: #9b2c2c;
}

.contact-success {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.35rem 0.1rem 0.15rem;
  animation: rise 0.45s ease both;
}

.contact-success[hidden] {
  display: none !important;
}

.contact-success-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.contact-success-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.contact-success-body {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.98rem;
}

.contact-success .ghost-btn {
  justify-self: start;
}

.contact-privacy {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact-privacy a {
  color: var(--teal-deep);
  font-weight: 600;
}

.examples-hint {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: var(--teal-deep);
  color: #f4f7f5;
  border-color: var(--teal-deep);
}

.ghost-link:hover {
  background: var(--teal);
  color: #fff;
}

.evidence-block {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--teal);
  background: rgba(31, 111, 106, 0.07);
}

.evidence-block h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.evidence-block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.legal-page .legal {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto 4rem;
  padding-top: 1rem;
}

.legal-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.legal h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-intro {
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1.05rem;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-meta h2 {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.legal-meta p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.legal section {
  margin: 0 0 2.25rem;
}

.legal h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.legal h3 {
  margin: 1.25rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  line-height: 1.55;
}

.legal ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}

.legal-back {
  margin: 2rem 0 0;
}

.legal-back a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.outputs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.outputs li {
  padding: 1.25rem 1rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.outputs li + li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.api-teaser .api-code {
  margin: 0 0 1rem;
  max-width: 40rem;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border: 1.5px solid rgba(20, 32, 40, 0.16);
  background: rgba(20, 52, 58, 0.95);
  color: #e7efe9;
  font: 500 0.86rem/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.cta-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: #f4f7f5;
  background: var(--teal-deep);
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border: 1.5px solid var(--teal-deep);
}

.cta-link:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.foot {
  width: min(100% - 2rem, var(--shell));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  font-size: 0.92rem;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}

.foot-links a {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

.foot-links a:hover {
  text-decoration: underline;
}

.foot .muted {
  color: var(--ink-soft);
  margin: 0.2rem 0 0;
}

.foot p {
  margin: 0;
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-visual {
    order: 0;
    max-width: 560px;
  }

  .pricing-banner {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .enrich-field {
    grid-template-columns: 6.2rem 1fr;
  }

  .outputs {
    grid-template-columns: 1fr 1fr;
  }

  .use-list {
    grid-template-columns: 1fr;
  }

  .use-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .outputs li + li {
    border-left: none;
    padding-left: 0;
  }

  .outputs li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .resolve {
    flex-direction: column;
  }

  .hero-kicker {
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    padding: 0.55rem 0.8rem;
    line-height: 1.35;
  }

  .enrich-profile {
    grid-template-columns: auto 1fr;
  }

  .enrich-score {
    grid-column: 2;
    justify-self: start;
  }

  .enrich-field {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .outputs {
    grid-template-columns: 1fr;
  }

  .outputs li:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .top .brand {
    font-size: 0.92rem;
  }
}
