/* /newhome — customer-first homepage proposal (preview) */
.nh-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 32px) 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nh-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px) 4rem;
  width: 100%;
}

.nh-main .hero {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.nh-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0 0 2.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  font-size: 0.92rem;
  opacity: 0.9;
}

.nh-trust-strip span::before {
  content: "·";
  margin-right: 0.65rem;
  opacity: 0.45;
}

.nh-trust-strip span:first-child::before {
  content: none;
  margin: 0;
}

.nh-section {
  margin: 3rem 0;
}

.nh-section h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.25;
  margin: 0.35rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.nh-section > .nh-intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.nh-jobs {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .nh-jobs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nh-job {
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--background) 70%, transparent);
}

.nh-job h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0 0.5rem;
}

.nh-job .nh-job-mark {
  font-size: 1.25rem;
  line-height: 1;
}

.nh-job .nh-for {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  opacity: 0.75;
  font-style: italic;
}

.nh-grow-note {
  margin-top: 1.25rem;
  font-weight: 600;
  max-width: 42rem;
}

.nh-grow-note--hero {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  letter-spacing: -0.015em;
  line-height: 1.35;
  max-width: none;
  border-left: 3px solid #CC0000;
  background: color-mix(in srgb, var(--text) 4%, transparent);
}

.nh-explainer-player {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  background: #000;
}

.nh-explainer-player video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.nh-workers {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .nh-workers {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nh-worker {
  padding: 1rem 1.1rem;
  border-left: 3px solid #003366;
}

html.dark .nh-worker {
  border-left-color: #7eb6e8;
}

.nh-worker h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.nh-worker p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.nh-use-cases {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .nh-use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nh-use-case {
  position: relative;
  display: block;
  padding: 1rem 1.1rem 1rem 1.15rem;
  border-left: 3px solid #003366;
  text-decoration: none;
  color: inherit;
}

a.nh-use-case--link:hover {
  background: rgba(0, 51, 102, 0.04);
}

html.dark .nh-use-case {
  border-left-color: #7eb6e8;
}

html.dark a.nh-use-case--link:hover {
  background: rgba(126, 182, 232, 0.08);
}

.nh-use-case h3 {
  font-size: 1rem;
  margin: 0.35rem 0 0.35rem;
}

.nh-use-case p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.nh-use-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 51, 102, 0.08);
  color: #003366;
}

html.dark .nh-use-badge {
  background: rgba(126, 182, 232, 0.15);
  color: #c8e4ff;
}

.nh-use-badge--live {
  background: rgba(0, 100, 60, 0.12);
  color: #00643c;
}

.nh-use-badge--next {
  background: rgba(0, 51, 102, 0.14);
}

.nh-use-badge--test {
  opacity: 0.85;
}

.nh-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0.5rem;
}

.nh-intent {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
  text-decoration: none;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--background) 80%, transparent);
}

.nh-intent:hover {
  border-color: color-mix(in srgb, var(--text) 45%, transparent);
  text-decoration: none;
}

.nh-choices {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .nh-choices {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nh-choice {
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 8px;
}

.nh-choice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.nh-close {
  margin: 3.5rem 0 1rem;
  padding: 1.75rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.nh-close .nh-brand-line {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 28rem;
  margin: 0 0 1.25rem;
}

.nh-preview-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.65;
}
