/* Components: reusable pieces used by more than one section. */
.brand { display: inline-flex; flex-direction: column; gap: 3px; text-decoration: none; font-family: var(--font-brand); min-height: 44px; padding-block: 10px; }
.brand__row { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
/* NeuGenPulse is ONE word in the logo: no gap between the navy and the orange part. */
.brand__word { display: inline-flex; align-items: baseline; gap: 0; }
.brand__tagline { font-size: 12px; line-height: 1.3; white-space: nowrap; }
.brand__tagline em, .footer-tagline em { font-style: italic; }
.brand__tagline em { color: var(--navy); }
.brand__tagline strong, .footer-tagline strong { font-style: normal; font-weight: 700; color: var(--orange); }
.brand__neugen, .brand__pulse { font-weight: 700; font-size: 24px; line-height: 1.2; }
.brand__neugen { color: var(--navy); }
.brand__pulse { color: var(--orange); display: inline-flex; flex-direction: column; }
.brand__line { width: 100%; height: 10px; fill: none; stroke: var(--orange); stroke-width: 4; stroke-linejoin: round; }
.brand__tech { font-size: 15px; color: var(--steel); }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 28px; border-radius: var(--radius-btn); border: 2px solid transparent; font-family: inherit; font-size: 16px; font-weight: 700; text-decoration: none; text-align: center; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease; }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 15px; }
.btn--primary { background: var(--orange); color: var(--navy); }
.btn--primary:hover { background: var(--orange-soft); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--mist); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.accent { color: var(--orange); }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; font-weight: 500; }
.muted { color: var(--ink-soft); }
.note { font-size: 15px; color: var(--ink-soft); }

.card { padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.card p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.tagline-caps { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.icon { width: 28px; height: 28px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon.icon--sm { width: 20px; height: 20px; flex-shrink: 0; stroke-width: 2.4; }
.icon--xs { width: 1.15em; height: 1.15em; stroke-width: 2.5; flex-shrink: 0; }

.pill { align-self: flex-start; display: inline-flex; align-items: center; min-height: 30px; padding: 0 14px; border-radius: 15px; background: var(--orange); color: var(--navy); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 420px) {
  .brand__neugen, .brand__pulse { font-size: 20px; }
  .brand__tech { font-size: 13px; }
  .brand__tagline { font-size: 11px; }
}
/* Very small phones: the punch line takes two lines so the menu button stays on the logo's row. */
@media (max-width: 340px) {
  .brand__tagline strong { display: block; }
}
