/* NorthPaw landing: mobile-first, forest / premium outdoors */

:root {
  --bg: #0d1f17;
  --bg-elevated: #12261c;
  --surface: #152a20;
  --surface-hover: #1a3226;
  --text: #e8f0eb;
  --muted: #9fb5a8;
  --accent: #2d6a4f;
  --accent-soft: #40916c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1100px;
  --prose: 42rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(45, 106, 79, 0.22), transparent 55%);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- header ----- */
.site-header {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 31, 23, 0.88);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  min-width: 0;
}

.logo {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .logo {
    font-size: 1.1rem;
    gap: 0.7rem;
  }
}

.logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .logo-mark {
    width: 3rem;
    height: 3rem;
  }
}

.logo-text {
  line-height: 1;
}

.logo:hover {
  color: var(--accent-soft);
}

.logo:hover .logo-mark {
  opacity: 0.92;
}

.header-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  margin-left: auto;
  flex-shrink: 0;
}

.btn-header {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

@media (max-width: 520px) {
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: var(--space-sm);
  }

  .header-ctas {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }

  .btn-header {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.6rem 0.65rem;
  }
}

/* ----- typography ----- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-sm);
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  margin: 0 0 var(--space-md);
}

h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin: 0 0 var(--space-md);
  max-width: var(--prose);
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 var(--space-xs);
}

p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: var(--prose);
  margin: 0 0 var(--space-md);
}

p {
  max-width: var(--prose);
  margin: 0 0 var(--space-md);
  color: var(--muted);
}

.support-line {
  font-size: 0.98rem;
  color: var(--text);
  opacity: 0.92;
  margin-bottom: var(--space-lg);
  max-width: var(--prose);
}

.microcopy {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-md);
  max-width: var(--prose);
}

.muted {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9em;
}

.section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-intro {
  margin-bottom: var(--space-lg);
}

.section.section--compact {
  padding: var(--space-lg) 0;
}

.section--waitlist {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 106, 79, 0.12), transparent 55%);
}

.section--survey {
  padding-bottom: var(--space-2xl);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
}

.lede-tight {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 var(--space-lg);
  line-height: 1.5;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 var(--space-sm);
  opacity: 0.95;
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--muted);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

@media (min-width: 520px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.btn-block {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ----- hero ----- */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  /* Top-align copy and mock so the phone does not sit mid-column next to a tall text block */
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: var(--space-2xl);
    align-items: start;
  }
}

.hero-mock-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero-mock-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  max-width: 16rem;
}

/* Device frame: screenshot keeps its real aspect ratio (no forced crop like object-fit: cover). */
.hero-mock {
  width: fit-content;
  max-width: min(300px, 100%);
  margin-inline: auto;
  padding: 10px;
  border-radius: 32px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, #1a2e24, #0a1410);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hero-mock img,
.hero-mock svg {
  display: block;
  max-width: min(280px, 100%);
  width: auto;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: contain;
  border-radius: 22px;
}

/* phone frame inner (optional CSS layer) */
.hero-mock-inner {
  width: 88%;
  height: 92%;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.2));
  border: 1px solid var(--border);
}

/* ----- cards ----- */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

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

.card-grid--tight {
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .card-grid--tight {
    gap: var(--space-md);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.card h3 {
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.card--benefit {
  padding: var(--space-md) var(--space-lg);
}

.card--benefit p {
  font-size: 0.92rem;
}

.insight-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .insight-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.14);
}

.insight-card h3 {
  color: var(--text);
  font-size: 1rem;
}

.insight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ----- preview blocks ----- */
.preview-grid {
  display: grid;
  gap: var(--space-lg);
}

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

.preview-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.preview-shot {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--bg-elevated), #0a1510);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  padding: var(--space-md);
  overflow: hidden;
}

.preview-shot:has(img) {
  padding: 0;
}

.preview-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.preview-body {
  padding: var(--space-md);
}

.preview-body h3 {
  color: var(--text);
}

.preview-body p {
  margin: 0;
  font-size: 0.92rem;
}

.caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-lg);
  font-style: italic;
}

/* ----- bullets ----- */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  max-width: var(--prose);
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.bullet-list--tight li {
  margin-bottom: var(--space-xs);
}

.note--closing {
  margin-top: var(--space-md);
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text);
  opacity: 0.92;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: var(--prose);
}

/* ----- comparison ----- */
.compare-grid {
  display: grid;
  gap: var(--space-md);
}

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

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.compare-card h3 {
  color: var(--text);
  font-size: 1rem;
}

.compare-card p {
  margin: 0;
  font-size: 0.92rem;
}

.compare-card.is-highlight {
  border-color: rgba(64, 145, 108, 0.45);
  box-shadow: 0 0 0 1px rgba(64, 145, 108, 0.12);
}

.wedge-line {
  font-weight: 800;
  color: var(--text);
  margin-top: var(--space-lg);
  font-size: 0.95rem;
}

/* ----- forms ----- */
.form-section {
  scroll-margin-top: 5rem;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  max-width: 32rem;
  box-shadow: var(--shadow);
}

.form-card--primary {
  max-width: 26rem;
  margin: 0 auto;
  border-color: rgba(64, 145, 108, 0.25);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(64, 145, 108, 0.08);
}

.form-card--survey {
  max-width: 38rem;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  background: rgba(18, 38, 28, 0.65);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.form-card h2 {
  max-width: none;
}

.survey-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  margin: 0 0 var(--space-sm);
  max-width: 36rem;
}

.survey-lede {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 var(--space-lg);
  max-width: 34rem;
  line-height: 1.5;
}

.survey-group {
  border: 0;
  margin: 0 0 var(--space-lg);
  padding: 0;
  min-width: 0;
}

.form-card--survey .survey-group:first-of-type {
  margin-top: 0;
}

.survey-group legend,
.survey-group .fieldset-label.legend-style {
  margin-top: 0;
}

.legend-style {
  margin-bottom: var(--space-sm);
}

.field {
  margin-bottom: var(--space-md);
}

.field:last-of-type {
  margin-bottom: var(--space-lg);
}

.form-card .field input,
.form-card .field textarea {
  margin-bottom: 0;
}

.req {
  color: var(--accent-soft);
  font-weight: 700;
}

.form-foot {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin: var(--space-md) 0 0;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.form-card--survey input[type="email"],
.form-card--survey textarea {
  margin-bottom: 0;
  background: rgba(13, 31, 23, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
}

.form-card--survey textarea {
  min-height: 4.5rem;
}

.form-card--survey .option {
  font-size: 0.9rem;
}

.survey-tally-card {
  text-align: center;
}

.survey-tally-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 var(--space-md);
  line-height: 1.45;
}


input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2);
}

textarea {
  min-height: 6rem;
  resize: vertical;
}

.fieldset-label {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--space-sm);
  padding: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

legend.fieldset-label {
  display: block;
  width: 100%;
  max-width: 100%;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.option input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.form-msg {
  font-size: 0.85rem;
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  display: none;
}

.form-msg.is-visible {
  display: block;
}

.form-msg.success {
  background: rgba(64, 145, 108, 0.15);
  color: var(--text);
  border: 1px solid rgba(64, 145, 108, 0.35);
}

.form-msg.error {
  background: rgba(180, 80, 60, 0.12);
  color: #f0c4bc;
  border: 1px solid rgba(180, 80, 60, 0.3);
}

.survey-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-md);
}

/* ----- footer ----- */
.site-footer {
  padding: 0 0 var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-cta-band {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(45, 106, 79, 0.14), transparent 60%);
}

.footer-cta-title {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 auto var(--space-md);
  max-width: 22rem;
  line-height: 1.2;
}

.footer-cta-lede {
  margin: 0 auto var(--space-lg);
  max-width: 28rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta-row--footer {
  justify-content: center;
  margin-top: 0;
}

.footer-meta {
  padding: var(--space-xl) var(--space-md) 0;
}

.footer-brand {
  font-weight: 800;
  color: var(--text);
  margin: 0 0 var(--space-xs);
  font-size: 1rem;
}

.footer-byline {
  margin: 0;
  font-size: 0.9rem;
}

.footer-copy {
  margin: var(--space-lg) 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.disclaimer {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  opacity: 0.9;
  margin-top: var(--space-lg);
  max-width: 48rem;
}

/* ----- MailerLite waitlist (#mlb2-39779360): on-brand overrides ----- */
/* Adjust colors here (or :root tokens above) if you want the embed to track site tweaks. */
.mailerlite-waitlist-wrap.form-card--primary {
  padding-bottom: var(--space-md);
}

#mlb2-39779360.ml-form-embedContainer {
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  position: static;
}

#mlb2-39779360 .ml-form-embedWrapper.embedForm {
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#mlb2-39779360 .ml-form-embedBody.row-form {
  padding: 0 !important;
}

/* Section heading already carries the pitch; hide MailerLite header to reduce noise */
#mlb2-39779360 .ml-form-embedContent {
  display: none;
}

#mlb2-39779360 .ml-form-formContent {
  margin: 0 !important;
}

#mlb2-39779360 .ml-form-fieldRow {
  margin: 0 0 var(--space-md) 0 !important;
  width: 100% !important;
  float: none !important;
}

#mlb2-39779360 .ml-form-fieldRow.ml-last-item {
  margin-bottom: 0 !important;
}

#mlb2-39779360 .ml-label {
  font-family: var(--font) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: var(--space-xs) !important;
}

#mlb2-39779360 .form-control {
  font-family: var(--font) !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  color: var(--text) !important;
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.65rem 0.85rem !important;
  width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

#mlb2-39779360 .form-control:focus {
  outline: none !important;
  border-color: var(--accent-soft) !important;
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2) !important;
}

#mlb2-39779360 .form-control::placeholder {
  color: var(--muted) !important;
  opacity: 1;
}

#mlb2-39779360 .ml-form-embedSubmit {
  margin: var(--space-md) 0 0 0 !important;
  float: none !important;
  width: 100% !important;
}

#mlb2-39779360 .ml-form-embedSubmit button.primary {
  font-family: var(--font) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  width: 100% !important;
  padding: 0.85rem 1.35rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

#mlb2-39779360 .ml-form-embedSubmit button.primary:hover {
  background: var(--accent-soft) !important;
}

#mlb2-39779360 .ml-form-successBody .ml-form-successContent {
  padding: var(--space-sm) 0 0 !important;
  text-align: center;
}

#mlb2-39779360 .ml-form-successBody h4 {
  font-family: var(--font) !important;
  color: var(--text) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  margin: 0 0 var(--space-sm) !important;
}

#mlb2-39779360 .ml-form-successBody p {
  font-family: var(--font) !important;
  color: var(--muted) !important;
  margin: 0 !important;
  font-size: 0.95rem !important;
}

#mlb2-39779360 .ml-form-successBody p.ml-success-hint {
  margin-top: var(--space-sm) !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  opacity: 0.95;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad::after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#mlb2-39779360 .ml-error input {
  border-color: #c96b5a !important;
}

/* ----- privacy / legal subpages (privacy/index.html) ----- */
.privacy-hero {
  padding: var(--space-xl) 0 var(--space-md);
}

.privacy-meta {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  max-width: var(--prose);
}

.privacy-stack {
  padding-bottom: var(--space-2xl);
}

.privacy-card h2 {
  margin: var(--space-xl) 0 var(--space-sm);
  max-width: none;
  color: var(--text);
}

.privacy-card h2:first-of-type {
  margin-top: 0;
}

.privacy-card h3 {
  margin: var(--space-lg) 0 var(--space-xs);
  color: var(--text);
}

.privacy-card p {
  margin: 0 0 var(--space-md);
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.privacy-card ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.35rem;
  color: var(--muted);
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.55;
}

.privacy-card li + li {
  margin-top: var(--space-xs);
}

.privacy-card strong {
  color: var(--text);
  font-weight: 700;
}

.privacy-note {
  margin-top: var(--space-lg);
  margin-bottom: 0;
  padding: var(--space-md);
  border-radius: var(--radius);
  background: rgba(64, 145, 108, 0.12);
  border: 1px solid rgba(64, 145, 108, 0.28);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.privacy-footer-min {
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.privacy-footer-line {
  margin: 0 0 var(--space-sm);
  color: var(--text);
  font-weight: 700;
}

.privacy-footer-links {
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-md);
}

.privacy-footer-min .footer-copy {
  margin-top: var(--space-md);
  text-align: left;
}
