/* ============================================================
   BIG SKY LEAD PARTNERS — SITE STYLESHEET
   Brand system: Big Sky Lead Partners LLC (company)
                 Big Sky Solutions™ (product)
                 Big Sky Scan™ (customer experience)
                 Command Launch™ (delivery process)
   ============================================================ */

/* ── Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors — preserved from original identity */
  --navy:    #0D1B2A;
  --navy2:   #152336;
  --navy3:   #1C2E42;
  --ember:   #C65A2A;
  --ember2:  #D9774E;
  --slate:   #5F7386;
  --bone:    #F5F2EC;
  --warm:    #EDE9E1;
  --cream:   #FAF8F4;
  --text:    #1A2535;
  --mid:     #5C6B7A;
  --light:   #8FA0B0;

  /* Feedback color (form success state) */
  --success: #2D6A4F;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;

  /* Radii */
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-card: 0 20px 48px rgba(13,27,42,0.1);
  --shadow-form: 0 48px 120px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);

  /* Content width */
  --content-width: 1000px;
  --doc-width: 760px;
}

/* ── Reset and Base ── */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}

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

a { color: inherit; }

/* Visible keyboard focus state for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--ember2);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ember);
  color: white;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 999;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Instrument Serif', serif; }

h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.07;
  color: #F0EDE7;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember2);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}

sup.tm { font-size: 0.55em; font-weight: 400; margin-left: 1px; }

/* ── Layout helpers ── */
.wrap { max-width: var(--content-width); margin: 0 auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,27,42,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 clamp(16px,5vw,80px); height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.nav-left {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; min-width: 0;
}
.nav-logo-img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; border: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.nav-name {
  font-family: 'Instrument Serif', serif; font-size: 17px;
  color: #F0EDE7; letter-spacing: -0.01em; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-sub {
  font-size: 10px; color: #3D5468; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-link {
  font-size: 13px; color: #5F7386; text-decoration: none;
  font-weight: 400; transition: color 0.15s;
}
.nav-link:hover, .nav-link:focus-visible { color: #F0EDE7; }
.nav-cta {
  background: var(--ember); color: white; padding: 10px 22px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background 0.15s; letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-cta:hover, .nav-cta:focus-visible { background: #B04D22; }

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn-primary {
  background: var(--ember); color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.01em; transition: background 0.15s, transform 0.1s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover, .btn-primary:focus-visible { background: #B04D22; transform: translateY(-1px); }

.btn-ghost {
  color: #5F7386; padding: 14px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 400; text-decoration: none;
  border: 1.5px solid rgba(95,115,134,0.3);
  transition: border-color 0.15s, color 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
  background: none; cursor: pointer; font-family: inherit;
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--ember2); color: #F0EDE7; }

/* Ghost button variant for use on light backgrounds */
.btn-ghost.on-light { color: var(--mid); border-color: #DDD9D0; }
.btn-ghost.on-light:hover, .btn-ghost.on-light:focus-visible { border-color: var(--ember); color: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy); min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(95,115,134,0.04) 0px, rgba(95,115,134,0.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(95,115,134,0.04) 0px, rgba(95,115,134,0.04) 1px, transparent 1px, transparent 60px);
}
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 7%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 52%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 32%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 78%, rgba(255,255,255,0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 62%, rgba(255,255,255,0.18) 0%, transparent 100%);
}
.hero-horizon {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  z-index: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath d='M0,180 L0,115 L80,88 L160,108 L240,58 L320,78 L400,38 L480,68 L530,28 L570,62 L620,18 L680,52 L740,8 L800,48 L858,22 L918,58 L978,33 L1038,68 L1100,43 L1160,75 L1240,52 L1320,88 L1380,68 L1440,92 L1440,180 Z' fill='%230D1B2A' opacity='0.45'/%3E%3Cpath d='M0,180 L0,138 L120,112 L200,128 L300,96 L380,114 L460,82 L540,102 L600,72 L660,96 L720,62 L780,86 L840,56 L900,80 L980,66 L1060,90 L1140,72 L1220,100 L1300,80 L1380,108 L1440,92 L1440,180 Z' fill='%23152336' opacity='0.75'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}
.hero-left {
  padding: clamp(56px,8vw,104px) clamp(24px,4vw,64px) clamp(56px,8vw,104px) clamp(24px,6vw,96px);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 28px;
}
.eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.65);} }

.hero-h1-line2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px,4.5vw,58px);
  line-height: 1.07; letter-spacing: -0.025em;
  font-style: italic; color: var(--ember2);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: clamp(15px,1.6vw,17px); color: #6A8098;
  font-weight: 300; line-height: 1.8;
  max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.brand-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy); color: #F0EDE7;
  border-radius: 6px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.brand-badge::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,rgba(255,255,255,0.03) 0px,rgba(255,255,255,0.03) 1px,transparent 1px,transparent 24px),
             repeating-linear-gradient(0deg,rgba(255,255,255,0.03) 0px,rgba(255,255,255,0.03) 1px,transparent 1px,transparent 24px);
  pointer-events: none;
}
.brand-badge .badge-mark { color: var(--ember2); }
.brand-badge strong { font-weight: 700; letter-spacing: 0.02em; }

/* ============================================================
   CONSULTATION FORM
   ============================================================ */
.hero-right {
  padding: clamp(32px,5vw,80px) clamp(20px,4vw,64px) clamp(32px,5vw,80px) clamp(16px,2vw,32px);
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.form-card {
  background: #F5F2EC; border-radius: var(--radius-lg);
  padding: clamp(24px,3.5vw,44px); width: 100%; max-width: 420px;
  box-shadow: var(--shadow-form);
}
.form-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 10px;
}
.form-card h2 {
  font-size: clamp(20px,2.2vw,26px); color: var(--navy);
  line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em;
}
.form-card > p {
  font-size: 13px; color: var(--mid); font-weight: 300;
  line-height: 1.65; margin-bottom: 22px;
}
.form-group { margin-bottom: 13px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--mid); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid #DDD9D0; background: white;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color 0.15s; -webkit-appearance: none;
  min-height: 44px;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--ember); box-shadow: 0 0 0 3px rgba(198,90,42,0.1);
}
.form-group input::placeholder { color: #B0A898; }

.sms-consent {
  margin: 16px 0 14px; padding: 14px 14px;
  border: 1.5px solid #DDD9D0; border-radius: 8px;
  background: #FAF8F4; font-size: 11.5px; line-height: 1.55;
  color: var(--mid);
}
.sms-consent label { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.sms-consent input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 1px;
  accent-color: var(--ember);
}
.sms-consent strong { color: var(--navy); font-weight: 600; }
.sms-consent a { color: var(--ember); text-decoration: underline; font-weight: 500; }

.submit-btn {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  border: none; background: var(--ember); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 600; cursor: pointer; margin-top: 4px;
  transition: background 0.15s, transform 0.1s; letter-spacing: 0.01em;
  min-height: 48px;
}
.submit-btn:hover, .submit-btn:focus-visible { background: #B04D22; transform: translateY(-1px); }
.submit-btn:disabled { cursor: default; transform: none; }

.form-status {
  background: white; border: 1.5px solid #DDD9D0; border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.form-status p {
  font-size: 13.5px; color: var(--mid); font-weight: 400; line-height: 1.7; margin: 0;
}
.form-status a { color: var(--ember); font-weight: 600; text-decoration: underline; }

.form-trust {
  display: flex; align-items: center; gap: 7px;
  margin-top: 14px; justify-content: center; flex-wrap: wrap;
}
.form-trust span { font-size: 12px; color: var(--light); font-weight: 300; }
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: #C0B8AC; }
.trust-list {
  margin-top: 15px; padding-top: 15px; border-top: 1px solid #E4DFD8;
  display: flex; flex-direction: column; gap: 7px;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); font-weight: 400; }
.trust-check { color: #2D7D46; font-size: 12px; }

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.cred-strip {
  background: var(--bone);
  border-top: 1px solid var(--warm); border-bottom: 1px solid var(--warm);
  padding: 22px clamp(16px,5vw,80px);
}
.cred-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: clamp(16px,4vw,48px);
  flex-wrap: wrap;
}
.cred-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--light); flex-shrink: 0;
}
.cred-divider { width: 1px; height: 16px; background: var(--warm); flex-shrink: 0; }
.cred-items { display: flex; gap: clamp(12px,3vw,36px); flex-wrap: wrap; align-items: center; }
.cred-item { font-size: 13px; font-weight: 500; color: var(--mid); display: flex; align-items: center; gap: 7px; }
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--navy);
  padding: clamp(72px,9vw,112px) clamp(16px,5vw,80px);
  position: relative; overflow: hidden;
}
.philosophy-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 80px),
    repeating-linear-gradient(0deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 80px);
}
.philosophy-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
  position: relative; z-index: 1;
}
.philosophy h2 { color: #F0EDE7; }
.philosophy h2 em { font-style: italic; color: var(--ember2); }
.philosophy p { font-size: 15px; color: #5C7080; font-weight: 300; line-height: 1.8; margin-bottom: 14px; }
.philosophy p:last-child { margin-bottom: 0; }
.philosophy-callout {
  margin-top: 28px; padding: 20px 24px;
  background: rgba(198,90,42,0.08); border: 1px solid rgba(198,90,42,0.2);
  border-radius: 10px; position: relative; z-index: 1;
}
.philosophy-callout p {
  font-size: 14px; color: #C4CFDA; font-weight: 400; line-height: 1.7; margin: 0;
}
.phil-outcomes { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.phil-outcome {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s;
}
.phil-outcome:hover { border-color: rgba(198,90,42,0.35); }
.phil-icon { font-size: 18px; flex-shrink: 0; }
.phil-text { font-size: 14px; font-weight: 500; color: #C4CFDA; }

/* ============================================================
   BIG SKY SOLUTIONS
   ============================================================ */
.solutions-section {
  padding: clamp(72px,9vw,108px) clamp(16px,5vw,80px);
  background: var(--cream);
}
.solutions-intro {
  background: var(--navy2); border-radius: 14px; padding: 32px clamp(20px,4vw,36px);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px; position: relative; overflow: hidden;
}
.solutions-intro-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 60px),
    repeating-linear-gradient(0deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 60px);
}
.solutions-intro-content { position: relative; z-index: 1; }
.solutions-intro h3 {
  font-size: clamp(22px,2.5vw,30px); color: #F0EDE7;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.solutions-intro p { font-size: 14px; color: #A9B8C6; font-weight: 300; line-height: 1.75; max-width: 640px; }
.solutions-tags { display: flex; gap: clamp(8px,2vw,14px); flex-wrap: wrap; margin-top: 20px; }
.solutions-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: #8FA0B0; letter-spacing: 0.03em;
}

.system-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.system-steps::before {
  content: ''; position: absolute; top: 28px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(198,90,42,0.3) 20%,rgba(198,90,42,0.3) 80%,transparent);
}
.system-step { padding: 0 20px; text-align: center; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--ember);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Instrument Serif', serif;
  font-size: 20px; color: #F0EDE7; position: relative; z-index: 1;
}
.system-step h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; font-family: 'DM Sans', sans-serif; }
.system-step p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.65; }

/* ============================================================
   BIG SKY SCAN — major differentiator section
   ============================================================ */
.scan-section {
  background: var(--navy3);
  padding: clamp(80px,10vw,120px) clamp(16px,5vw,80px);
  position: relative; overflow: hidden;
}
.scan-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 70px),
    repeating-linear-gradient(0deg,rgba(95,115,134,0.05) 0px,rgba(95,115,134,0.05) 1px,transparent 1px,transparent 70px);
}
.scan-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.scan-header { max-width: 640px; margin-bottom: 44px; }
.scan-header .section-eyebrow { color: var(--ember2); }
.scan-header h2 { color: #F0EDE7; margin-bottom: 6px; }
.scan-subhead {
  font-family: 'Instrument Serif', serif; font-style: italic;
  color: var(--ember2); font-size: clamp(18px,2vw,24px); margin-bottom: 18px;
}
.scan-header p { font-size: 15px; color: #9CACBB; font-weight: 300; line-height: 1.8; margin-bottom: 12px; }

.scan-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,64px);
  align-items: center; margin-bottom: 48px;
}

/* Visual mockup */
.scan-visual {
  background: linear-gradient(155deg, #14222F 0%, #0D1B2A 100%);
  border-radius: 22px; border: 1px solid rgba(255,255,255,0.07);
  padding: clamp(24px,3vw,36px);
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.scan-qr-card {
  background: white; border-radius: 14px; padding: 14px;
  width: 148px; height: 148px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.scan-qr-card img { width: 100%; height: 100%; object-fit: contain; }
.scan-visual-text { min-width: 0; }
.scan-visual-brand {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #6A8098; margin-bottom: 8px;
}
.scan-visual-cta {
  font-family: 'Instrument Serif', serif; font-size: clamp(20px,2.4vw,26px);
  color: #F0EDE7; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 10px;
}
.scan-visual-sample {
  font-size: 12.5px; color: #7C8FA0; font-weight: 300; line-height: 1.6; margin-bottom: 14px;
}
.scan-signature {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; color: #4A5A6A; letter-spacing: 0.04em;
}
.scan-signature .mtn { color: var(--ember2); }

.scan-actions-list { display: flex; flex-direction: column; gap: 10px; }
.scan-actions-list .list-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #6A8098; margin-bottom: 4px;
}
.scan-action-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #C4CFDA; font-weight: 400;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scan-action-row:last-child { border-bottom: none; }
.scan-action-row .check { color: var(--ember2); font-size: 13px; flex-shrink: 0; }

.scan-grid-actions {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 44px;
}
.scan-chip {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px 16px;
  font-size: 13px; color: #C4CFDA; font-weight: 400;
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.scan-chip:hover { border-color: rgba(198,90,42,0.35); background: rgba(255,255,255,0.06); }
.scan-chip .chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ember2); flex-shrink: 0; }

.scan-closing {
  text-align: center; padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.scan-closing p {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(17px,2vw,21px); color: #F0EDE7;
}
.scan-actions-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   BRAND RELATIONSHIP
   ============================================================ */
.brand-map-section {
  padding: clamp(64px,8vw,96px) clamp(16px,5vw,80px);
  background: var(--cream);
}
.brand-map-inner { max-width: 1000px; margin: 0 auto; }
.brand-map-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px;
}
.brand-map-card {
  background: white; border: 1.5px solid var(--warm); border-radius: 14px;
  padding: 26px 24px; position: relative;
}
.brand-map-card .bmc-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 10px;
}
.brand-map-card h3 {
  font-size: 19px; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em;
  font-family: 'Instrument Serif', serif;
}
.brand-map-card p { font-size: 13.5px; color: var(--mid); font-weight: 300; line-height: 1.65; }
.brand-map-arrow {
  display: none;
}
.brand-map-statement {
  text-align: center; font-size: 15px; color: var(--navy); font-weight: 500;
  padding-top: 20px; border-top: 1px solid var(--warm);
}

/* ============================================================
   COMMAND LAUNCH PROCESS
   ============================================================ */
.process-section {
  background: var(--warm);
  padding: clamp(72px,9vw,108px) clamp(16px,5vw,80px);
}
.process-inner { max-width: 1000px; margin: 0 auto; }
.process-inner h2 { color: var(--navy); margin-bottom: 12px; }
.process-note {
  font-size: 14px; color: var(--mid); font-weight: 400; font-style: italic;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #DED8CC;
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::after {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--ember) 15%,var(--ember) 85%,transparent);
  opacity: 0.25;
}
.process-step { text-align: center; padding: 0 16px; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; border: 2px solid var(--warm);
  box-shadow: 0 4px 16px rgba(13,27,42,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.process-num-text {
  font-family: 'Instrument Serif', serif; font-size: 13px; font-weight: 400;
  color: var(--ember); letter-spacing: 0.04em; text-transform: uppercase;
}
.process-step h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.65; }

/* ============================================================
   WHAT CAN BE INCLUDED
   ============================================================ */
.included-section {
  padding: clamp(64px,8vw,96px) clamp(16px,5vw,80px);
  background: var(--cream);
}
.included-inner { max-width: 1000px; margin: 0 auto; }
.included-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px;
}
.included-chip {
  background: white; border: 1.5px solid var(--warm); border-radius: 9px;
  padding: 12px 14px; font-size: 13px; color: var(--navy); font-weight: 500;
  text-align: center; transition: border-color 0.2s, transform 0.2s;
}
.included-chip:hover { border-color: var(--ember); transform: translateY(-2px); }
.included-note { font-size: 13px; color: var(--light); font-style: italic; text-align: center; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--cream); padding: clamp(72px,9vw,108px) clamp(16px,5vw,80px); }
.industries-inner { max-width: 1000px; margin: 0 auto; }
.industries-inner h2 { color: var(--navy); }
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.industry-card {
  background: white; border-radius: 14px; padding: 30px;
  border: 1.5px solid #E4DFD8; position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover { border-color: var(--ember); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.industry-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--ember),var(--ember2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.industry-card:hover .industry-accent { transform: scaleX(1); }
.industry-icon { font-size: 30px; margin-bottom: 18px; }
.industry-card h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.industry-card .problem {
  font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.7;
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--warm);
}
.industry-card .outcomes { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.outcome-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--navy); font-weight: 400; }
.outcome-row::before { content: '→'; color: var(--ember); font-size: 12px; flex-shrink: 0; }
.industry-scan-note {
  font-size: 12px; color: var(--ember); font-weight: 500;
  padding-top: 12px; border-top: 1px dashed var(--warm);
}

/* ============================================================
   FOUNDER
   ============================================================ */
.paul-section {
  padding: clamp(72px,9vw,108px) clamp(16px,5vw,80px);
  background: white; border-top: 1px solid var(--warm); border-bottom: 1px solid var(--warm);
}
.paul-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(36px,5vw,64px); align-items: start;
}
.paul-photo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--warm);
  box-shadow: 0 16px 40px rgba(13,27,42,0.12);
}
.paul-text h2 { color: var(--navy); margin-bottom: 20px; }
.paul-text p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.85; margin-bottom: 14px; }
.paul-text p:last-child { margin-bottom: 0; }
.paul-text p strong { color: var(--navy); font-weight: 500; }
.paul-signature {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--warm);
  font-family: 'Instrument Serif', serif; font-style: italic; color: var(--navy); font-size: 16px;
}
.paul-signature span { display: block; font-family: 'DM Sans', sans-serif; font-style: normal; font-size: 12px; color: var(--light); margin-top: 4px; }

/* ============================================================
   BENEFITS / DELIVERABLES
   ============================================================ */
.deliverables {
  background: var(--navy); padding: clamp(72px,9vw,108px) clamp(16px,5vw,80px);
  position: relative; overflow: hidden;
}
.deliverables-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,rgba(95,115,134,0.04) 0px,rgba(95,115,134,0.04) 1px,transparent 1px,transparent 80px),
    repeating-linear-gradient(0deg,rgba(95,115,134,0.04) 0px,rgba(95,115,134,0.04) 1px,transparent 1px,transparent 80px);
}
.deliverables-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.deliverables-inner h2 { color: #F0EDE7; margin-bottom: 12px; }
.deliverables-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.deliverable {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 24px; transition: border-color 0.2s, background 0.2s;
}
.deliverable:hover { border-color: rgba(198,90,42,0.35); background: rgba(255,255,255,0.06); }
.deliverable-icon { font-size: 22px; margin-bottom: 14px; }
.deliverable h4 { font-size: 14px; font-weight: 600; color: #C4CFDA; margin-bottom: 6px; letter-spacing: -0.01em; }
.deliverable p { font-size: 13px; color: #7C8FA0; font-weight: 300; line-height: 1.65; margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: clamp(80px,10vw,120px) clamp(16px,5vw,80px); text-align: center; background: var(--cream); }
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--navy); margin-bottom: 16px; }
.final-cta p { font-size: 16px; color: var(--mid); font-weight: 300; line-height: 1.8; margin-bottom: 36px; }
.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.final-cta-actions .btn-primary { padding: 16px 40px; font-size: 15px; border-radius: 8px; }
.final-note { display: block; font-size: 13px; color: var(--light); margin-top: 20px; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); padding: 32px clamp(16px,5vw,80px);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-brand-name { font-family: 'Instrument Serif', serif; font-size: 16px; color: #F0EDE7; letter-spacing: -0.01em; }
.footer-brand-sub { font-size: 10px; color: #5F7386; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; }
.footer-links a { color: #C4CFDA; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--ember2); }
.footer-legal { font-size: 11px; color: #5F7386; width: 100%; text-align: center; margin-top: 4px; }

/* ============================================================
   LEGAL / DOC PAGES (privacy, terms)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: clamp(56px,8vw,96px) clamp(16px,5vw,80px) clamp(40px,5vw,64px);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(95,115,134,0.04) 0px, rgba(95,115,134,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(95,115,134,0.04) 0px, rgba(95,115,134,0.04) 1px, transparent 1px, transparent 80px);
}
.page-hero-inner { max-width: var(--doc-width); margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember2); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(28px,4vw,44px); color: #F0EDE7; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: #5C7080; font-weight: 300; line-height: 1.75; }

.doc-body { max-width: var(--doc-width); margin: 0 auto; padding: clamp(40px,5vw,64px) clamp(16px,4vw,48px); }
.doc-section { margin-bottom: 44px; }
.doc-section h2 {
  font-size: clamp(20px,2.5vw,26px); color: var(--navy); letter-spacing: -0.01em;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--warm);
}
.doc-section h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin: 20px 0 8px; }
.doc-section p { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.8; margin-bottom: 12px; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section ul { margin: 10px 0 12px 20px; display: flex; flex-direction: column; gap: 6px; }
.doc-section li { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.7; }
.doc-section a { color: var(--ember); text-decoration: none; }
.doc-section a:hover, .doc-section a:focus-visible { text-decoration: underline; }
.doc-callout { background: var(--warm); border-radius: 10px; padding: 18px 22px; margin: 20px 0; border-left: 4px solid var(--ember); }
.doc-callout p { font-size: 14px; color: var(--text); font-weight: 400; margin: 0; line-height: 1.7; }

/* ============================================================
   FADE-UP (visibility-safe: content stays visible with JS off)
   ============================================================ */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.animate { opacity: 0; transform: translateY(22px); }
.fade-up.animate.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   CHAT WIDGET ADJUSTMENTS (GoHighLevel / LeadConnector)
   Prevent the proactive greeting bubble from overwhelming mobile
   screens. Selectors target the widget's shadow-safe wrapper
   classes; if the provider changes markup these rules simply
   no-op rather than breaking anything.
   ============================================================ */
@media (max-width: 480px) {
  #chat-widget-container,
  .chat-widget-container,
  [id*="leadconnector"] {
    max-width: calc(100vw - 24px) !important;
  }
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding-top: 0; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .system-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .system-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::after { display: none; }
  .industry-grid { grid-template-columns: 1fr; }
  .paul-inner { grid-template-columns: 1fr; text-align: center; }
  .paul-photo { margin: 0 auto; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .scan-layout { grid-template-columns: 1fr; }
  .scan-visual { grid-template-columns: auto 1fr; }
  .scan-grid-actions { grid-template-columns: repeat(2,1fr); }
  .brand-map-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; height: 62px; }
  .nav-logo-img { width: 38px; height: 38px; }
  .nav-name { font-size: 15px; }
  .nav-sub { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .system-steps { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .scan-visual { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .scan-qr-card { width: 128px; height: 128px; }
  .scan-grid-actions { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  footer { justify-content: center; text-align: center; }
  .footer-left { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-actions, .final-cta-actions, .scan-actions-cta { flex-direction: column; align-items: stretch; }
  .hero-actions a, .final-cta-actions a, .scan-actions-cta a { text-align: center; justify-content: center; }
}
