/* VENDORHELM_THEME_LOCK_V1: vendor brand palette and active logo asset are locked. Do not reintroduce legacy Gem Show Radar or CollectionRadar assets into the active shell. */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #eef2f7;
  --text: #0f172a;
  --text-soft: #475569;
  --line: #dbe3ee;
  --brand: #2563eb;
  --brand-deep: #1d4ed8;
  --header: #225781;
  --footer: #225781;
  --footer-text: #f3f7fb;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-header { background: #225781; background-color: #225781; position: sticky; top: 0; z-index: 100; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 92px; }
.brand-logo { height: 56px; width: auto; }
.site-nav { display: flex; gap: 22px; align-items: center; }
.site-nav a { color: #e2e8f0; font-weight: 600; font-size: 15px; }
.site-nav a:hover { color: #ffffff; }
.site-nav .nav-cta {
  background: #f3c97a;
  color: #173a5b;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.site-nav .nav-cta:hover {
  background: #f7d89a;
  color: #122f49;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hero { padding: 84px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 0; border-radius: 999px; background: #dbeafe; color: #1d4ed8; padding: 8px 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.eyebrow::before { content: none; }
.hero h1, .page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.03; margin: 18px 0 18px; letter-spacing: -0.04em; }
.hero p, .page-hero p { font-size: 1.125rem; color: var(--text-soft); max-width: 750px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover { background: var(--brand-deep); }
.button-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  border-color: #b9c8da;
  color: #173a5b;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.button-secondary:hover {
  border-color: #8ea7c4;
  color: #102d46;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}
.hero-card, .card, .stat-card, .feature-card, .form-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { padding: 28px; }
.hero-card h2 { margin: 0 0 10px; font-size: 1.4rem; }
.hero-card ul { padding-left: 18px; color: var(--text-soft); }
.section { padding: 26px 0 70px; }
.section h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.08; margin: 0 0 14px; letter-spacing: -0.03em; }
.section-intro { max-width: 860px; color: var(--text-soft); margin-bottom: 28px; font-size: 1.05rem; }
.grid-3, .grid-2, .stats-grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .feature-card, .stat-card { padding: 26px; }
.card h3, .feature-card h3, .stat-card h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.25rem; }
.card p, .feature-card p, .stat-card p, .card li, .feature-card li { color: var(--text-soft); }
.list-clean { padding-left: 20px; margin: 0; }
.band { background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%); border-top: 1px solid #dbeafe; border-bottom: 1px solid #dbeafe; }
.quote { font-size: 1.12rem; color: var(--text); }
.page-hero { padding: 70px 0 30px; }
.kicker { color: var(--brand); font-size: 0.86rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.form-shell { padding: 30px; }
.form-status { margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; background: #eff6ff; color: #1d4ed8; font-weight: 600; }
.form-status.error { background: #fee2e2; color: #b91c1c; }
.form-status.success { background: #dcfce7; color: #166534; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 14px; border: 1px solid #cbd5e1; border-radius: 12px; background: #fff;
  font: inherit; color: var(--text);
}
.field textarea { min-height: 160px; resize: vertical; }
.form-shell,
.form-grid,
.form-section,
.form-subgrid,
.option-grid,
.field,
.field input,
.field select,
.field textarea {
  min-width: 0;
}

.field.full { grid-column: 1 / -1; }
.form-section { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, #f9fbff 0%, #f3f7fc 100%); }
.form-section-header h3 { margin: 0; font-size: 1.12rem; line-height: 1.3; }
.form-section-header p { margin: 6px 0 0; color: var(--text-soft); }
.form-subgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(240px, 1fr)); gap: 10px 22px; }
.option-check { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; min-width: 0; }
.option-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brand); }
.option-check span { display: block; min-width: 0; line-height: 1.45; }
.form-actions { padding-top: 4px; }
.form-help { margin: 8px 0 0; color: var(--text-soft); font-size: 0.96rem; }
.contact-next-step-note { margin: 18px 0 0; padding: 14px 16px; border: 1px solid #bfdbfe; border-radius: 14px; background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%); color: #163b65; }
.contact-next-step-note strong { color: #0f2f52; }
.form-success-panel { grid-column: 1 / -1; padding: 22px; border: 1px solid #bfdbfe; border-radius: 16px; background: linear-gradient(180deg, #f0f9ff 0%, #ecfeff 100%); }
.form-success-panel h3 { margin: 0 0 10px; font-size: 1.18rem; }
.form-success-panel p { margin: 0 0 14px; color: #0f3a63; }
.success-checklist { margin: 0; padding-left: 20px; color: #0f3a63; }
.success-checklist li + li { margin-top: 8px; }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.form-success-panel:focus { outline: 3px solid rgba(37, 99, 235, 0.22); outline-offset: 2px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 14px; align-items: stretch; }
.checkbox { display: grid; grid-template-columns: 18px minmax(0, 1fr); column-gap: 12px; align-items: start; width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--brand); }
.checkbox span { display: block; min-width: 0; line-height: 1.45; }
.site-footer { margin-top: 70px; background: #225781; background-color: #225781; color: var(--footer-text); padding: 48px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr; gap: 30px; align-items: start; }
.footer-logo { height: 54px; width: auto; margin-bottom: 14px; }
.footer-copy { max-width: 480px; color: var(--footer-text); }
.site-footer h2 { font-size: 1rem; color: #fff; margin: 0 0 12px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: #fff; }
.muted { color: var(--text-soft); }
.policy-copy h2 { margin-top: 36px; }
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .stats-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 92px; background: #225781; border: 1px solid #1e293b; border-radius: 16px; padding: 18px; flex-direction: column; align-items: flex-start; display: none; }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-block; }
  .checkbox-grid { grid-template-columns: 1fr; }
}


.card,
.feature-card,
.stat-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.feature-card:hover,
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
  border-color: #c8d4e3;
}


.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #173a5b;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #0f2e49;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}


.button.is-submitting,
.button.is-submitting:hover {
  cursor: wait;
}


.form-status[hidden] {
  display: none;
}

.field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.field-error:focus {
  outline: none;
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16);
}

.button {
  cursor: pointer;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.button.is-submitting,
.button.is-submitting:hover {
  cursor: wait;
}

.field.full #submit-button {
  align-self: flex-start;
  display: inline-flex;
  width: auto;
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 14px 22px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 32px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 28px;
  }

  .hero-actions .button {
    font-size: 0.95rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}


@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .form-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .form-subgrid,
  .option-grid,
  .checkbox-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-section {
    padding: 18px;
  }

  .field.full #submit-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 20px 0 54px;
  }

  .form-section {
    padding: 16px;
    border-radius: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 13px 12px;
  }

  .consent-check {
    padding: 12px 14px;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 12px;
  }
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 14px;
}
.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
  display: block;
}
.consent-check span {
  display: block;
  min-width: 0;
  line-height: 1.45;
  color: var(--text);
}
