/*
 * Hexafusion PREVIEW — LOCKED SITE TEMPLATE
 * Aligned with Service plans (plans.html / plans-elementor): Nunito Sans, light surfaces,
 * text #252525, primary #0345bf, secondary #2b9fd4. Change only with explicit design sign-off.
 */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800&display=swap");

:root {
  color-scheme: light;
  --bg-page: #f7f9fc;
  --bg-panel: #ffffff;
  --bg0: #f7f9fc;
  --bg1: #ffffff;
  --surface: rgba(255, 255, 255, 0.97);
  --surface-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --text: #252525;
  --muted: #516175;
  --accent: #0345bf;
  --accent-hover: #044cd0;
  --accent2: #2b9fd4;
  --font-display: "Nunito Sans", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --radius: 0.75rem;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 12px 40px rgba(15, 23, 42, 0.04);
  --max: 75rem;
  --header-h: 4rem;
  --text-size-base: 1rem;
  --text-size-lead: 1.05rem;
  --text-size-small: 0.88rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Skip link: first focusable in page (rebuilt preview shell) */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: calc(var(--ribbon-h, 0px) + 0.75rem);
  z-index: 300;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.skip-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .preview-atmosphere {
    display: none !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-size-base);
  font-weight: 400;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Soft orbs: motion applied via preview.js (respects reduced-motion) */
.preview-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.preview-atmosphere-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.preview-ribbon {
  position: sticky;
  top: 0;
  z-index: 200;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  background: linear-gradient(90deg, #0345bf, #2b9fd4);
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-wrap {
  position: relative;
  z-index: 1;
  padding-top: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.site-header {
  position: sticky;
  top: var(--ribbon-h, 0px);
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-family: var(--font-body);
}

/*
 * Header logo. The PNG is 1070×652 px (ratio 1.64:1).
 * CSS sets a fixed height; width: auto derives the correct proportional width
 * from the true intrinsic ratio encoded in the HTML width/height attributes.
 * Do NOT use object-fit here — it creates a mismatched box.
 */
.brand-logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(220px, 50vw);
  flex-shrink: 0;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 35%, transparent);
}

.brand-mark svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #fff;
}

.brand span {
  font-family: var(--font-display);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  align-items: center;
}

.nav-main a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 820px) {
  .nav-cta .btn { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  .nav-toggle { display: inline-flex; }
  .nav-main {
    position: fixed;
    inset: calc(var(--header-h) + var(--ribbon-h, 0px)) 0 auto 0;
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-main ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-main a {
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    border-bottom: none;
  }
  .nav-main a:hover,
  .nav-main a[aria-current="page"] {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
  }
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.5rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }

.lead {
  font-size: var(--text-size-lead);
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.lead strong { color: var(--text); }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.hero {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2) 55%, color-mix(in srgb, var(--accent2) 60%, var(--accent)));
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}
.stat span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(3, 69, 191, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--accent-hover);
  box-shadow: 0 6px 18px rgba(3, 69, 191, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: #d0d5de;
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(3, 69, 191, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 0.85rem;
}

.card-tile {
  background: var(--surface-solid);
  border: 1px solid #e0e0e0;
  border-left: 3px solid var(--accent);
  border-radius: 0.65rem;
  padding: 1rem 1rem 1rem 1.05rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

@media (hover: hover) {
  .card-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  }
}

.card-tile h3 {
  color: var(--text);
  margin-top: 0;
}

.card-tile p {
  margin: 0;
  font-size: var(--text-size-small);
  color: #555;
  line-height: 1.5;
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .split.two { grid-template-columns: 1fr 1fr; align-items: start; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.panel p:last-child { margin-bottom: 0; }

.site-footer {
  margin-top: auto;
  border-top: none;
  background: #1a1a1a;
  backdrop-filter: none;
  padding: 1.5rem clamp(1rem, 4vw, 1.5rem) 2rem;
}

.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #aaa;
}

.site-footer a {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent2);
  text-decoration: underline;
}

.form-grid label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-grid label .req {
  color: var(--accent);
  margin-left: 2px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--border);
  background: var(--surface-solid);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(3, 69, 191, 0.1);
}

.form-grid input.invalid,
.form-grid textarea.invalid,
.form-grid select.invalid {
  border-color: #d93025;
}

.form-grid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23516175' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.form-grid textarea { min-height: 7rem; resize: vertical; }

.form-grid .field { margin-bottom: 1.1rem; }

.form-grid .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

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

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
}

.form-status.error {
  display: block;
  background: #fce4e4;
  border: 1px solid #f5a5a5;
  color: #c62828;
}

.form-submit-btn {
  position: relative;
}

.form-submit-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.field-hint {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.35rem;
  line-height: 1.4;
}

.field-hint.hint-error {
  display: block;
  color: #c62828;
}

.field-hint.hint-ok {
  display: block;
  color: #2e7d32;
}

.field-hint.hint-loading {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: var(--muted);
  font-size: 0.82rem;
}

/* OS / platform checkbox cards */
.check-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.check-card {
  position: relative;
}

.check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-solid);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.check-card-label svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.check-card input[type="checkbox"]:checked + .check-card-label {
  border-color: var(--accent);
  background: rgba(3, 69, 191, 0.07);
  color: var(--accent);
}

.check-card input[type="checkbox"]:checked + .check-card-label svg {
  opacity: 1;
}

.check-card-label::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--surface-solid);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.check-card input[type="checkbox"]:checked + .check-card-label::before {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Reveal container for count fields */
.count-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  opacity: 0;
  margin-top: 0;
}

.count-reveal.is-open {
  max-height: 5rem;
  opacity: 1;
  margin-top: 0.6rem;
}

.count-reveal input {
  width: 100%;
  max-width: 160px;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--accent);
  background: var(--surface-solid);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.count-reveal input:focus {
  box-shadow: 0 0 0 3px rgba(3, 69, 191, 0.1);
}

/* Fieldset section divider */
.form-section-legend {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

/* ── Free-email lockout ───────────────────────────────────────────────────── */

/* Gray-out + disable the section below the email field */
.form-lockout {
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  filter: grayscale(0.5);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Animated transition back to normal */
.form-lockout-restored {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Full-width red banner shown when free email is detected */
.hint-error-banner {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  background: #ffeaea;
  border: 1.5px solid #e57373;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  color: #b71c1c;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.hint-error-banner svg {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  color: #c62828;
}

/* ── Business Verification System ────────────────────────────────────────── */

/* LinkedIn autofill strip */
.linkedin-autofill-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: #f0f6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 0.6rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.linkedin-autofill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  background: #0a66c2;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.linkedin-autofill-btn:hover {
  background: #004182;
}

.linkedin-autofill-btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.linkedin-autofill-hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.linkedin-verified-strip {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a66c2;
}

.linkedin-verified-strip.is-visible {
  display: flex;
}

.linkedin-verified-strip svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.linkedin-verified-strip img.li-avatar {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #bfdbfe;
}

/* Company Intelligence card — shown when Clearbit recognises the domain */
.company-intel-card {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.85rem;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 0.5rem;
  margin-top: 0.45rem;
  transition: opacity 0.2s ease;
}

.company-intel-card.is-visible {
  display: flex;
}

.company-intel-card.is-unknown {
  background: #fefce8;
  border-color: #fde68a;
}

.company-intel-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}

.company-intel-info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.company-intel-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-intel-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #15803d;
}

.company-intel-badge.badge-unknown {
  color: #92400e;
}

/* Domain confidence chip shown after backend check */
.domain-confidence {
  display: none;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.domain-confidence.is-visible { display: flex; }
.domain-confidence.conf-high { color: #15803d; }
.domain-confidence.conf-medium { color: #92400e; }
.domain-confidence.conf-low { color: #b91c1c; }

.domain-confidence svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

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

.contact-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-list .lbl {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.muted { color: var(--muted); font-size: 0.9rem; }

/* plans.html: React table lives inside standard site shell */
.plans-page-main {
  flex: 1;
  width: 100%;
  min-height: 0;
}

/* Long-form legal / policy pages */
.legal-doc {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-doc .legal-notice {
  background: #f7f9fc;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  font-size: var(--text-size-small);
  color: var(--muted);
}

.legal-doc .legal-notice strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-doc h2 {
  font-size: 1.05rem;
  margin: 2rem 0 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.legal-doc h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-doc p { margin: 0 0 0.85rem; }

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li { margin: 0.35rem 0; }

.legal-doc .effective {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.site-footer .inner.is-wide {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

