:root {
  --ink: #050b18;
  --muted: #4e586b;
  --line: #d9dee8;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --orange: #f35a05;
  --green: #148b2e;
  --blue: #075ee8;
  --shadow: 0 18px 48px rgba(5, 11, 24, 0.14);
  --display: "Nunito", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(217, 222, 232, 0.95);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.1vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.015em;
}
.brand > span, .footer-brand > span { color: var(--orange); }
.brand strong { color: var(--ink); }
.footer-brand strong { color: #fff; }
.brand-mark { flex: none; height: .95em; width: auto; }
.brand-logo { display: block; height: clamp(34px, 4.4vw, 46px); width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  font-weight: 700;
}
.site-nav a:not(.nav-cta):hover { color: var(--orange); }
.site-nav a { position: relative; }
.site-nav a.active { color: var(--orange); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: var(--orange);
}
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 14px 28px rgba(7,94,232,.22);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.nav-cta { min-height: 48px; border-radius: 11px; padding: 0 24px; font-size: 1rem; }
.nav-cta, .button.blue { background: linear-gradient(180deg, #0c6bff, var(--blue)); }
.button.orange { background: linear-gradient(180deg, #ff6a0b, var(--orange)); box-shadow: 0 14px 28px rgba(243,90,5,.22); }
.button.green { background: linear-gradient(180deg, #1fab42, var(--green)); box-shadow: 0 14px 28px rgba(20,139,46,.22); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  display: grid;
  max-width: 2100px;
  margin: 0 auto;
  grid-template-columns: minmax(480px, 1fr) minmax(340px, clamp(360px, 24vw, 460px));
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: 560px;
  padding: 46px max(52px, 3.6vw) 24px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.99) 29%, rgba(255,255,255,.7) 38%, rgba(255,255,255,.08) 46%, rgba(255,255,255,0) 52%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: clamp(560px, 40vw, 700px); padding-bottom: 30px; }
@media (min-width: 1500px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.99) 26%, rgba(255,255,255,.7) 35%, rgba(255,255,255,.08) 43%, rgba(255,255,255,0) 50%);
  }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1.5px solid #ffd3b3;
  background: #fff3e9;
  color: #b34503;
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
}
.hero-kicker svg { flex: none; }
.hero h1, .page-hero h1, .article-page h1, .legal-page h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.018em;
  font-size: clamp(2.9rem, 4vw, 4.8rem);
  line-height: 1.05;
  text-wrap: balance;
}
.headline-line { display: block; }
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero-copy p {
  max-width: max(595px, 38vw);
  margin: 23px 0 30px;
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  line-height: 1.5;
}
.hero-copy strong { color: var(--orange); }
.hero-byline {
  max-width: max(595px, 38vw) !important;
  margin: -14px 0 0 !important;
  color: var(--muted);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(.95rem, 1.1vw, 1.08rem) !important;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-line svg { flex: none; }
.market-note {
  display: inline-flex;
  max-width: 630px;
  margin: -4px 0 24px !important;
  padding: 11px 14px;
  border-left: 5px solid var(--orange);
  background: rgba(255,255,255,.72);
  color: var(--ink) !important;
  font-size: clamp(1rem, 1.2vw, 1.15rem) !important;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(5,11,24,.08);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  top: 50%;
  right: clamp(390px, 32vw, 600px);
  height: clamp(380px, 34vw, 530px);
  width: auto;
  max-width: none;
  transform: translateY(-50%);
  -webkit-mask-image: radial-gradient(ellipse 68% 90% at 62% 50%, #000 0%, #000 68%, rgba(0,0,0,.85) 76%, rgba(0,0,0,.28) 91%, transparent 100%);
  mask-image: radial-gradient(ellipse 68% 90% at 62% 50%, #000 0%, #000 68%, rgba(0,0,0,.85) 76%, rgba(0,0,0,.28) 91%, transparent 100%);
}
.hero-form { position: relative; z-index: 3; justify-self: end; align-self: center; width: min(100%, clamp(360px, 24vw, 460px)); margin-bottom: 12px; }
.contact-form {
  display: grid;
  gap: 14px;
  width: min(100%, 560px);
  padding: clamp(24px,4vw,36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.contact-form.compact {
  position: relative;
  gap: 10px;
  padding: 28px 24px 18px;
  border: 1px solid #cfdcf2;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(5, 11, 24, 0.22);
}
.form-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #1fab42, var(--green));
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .07em;
  box-shadow: 0 8px 20px rgba(20,139,46,.4);
}
.form-heading h2 {
  margin: 4px 0 0;
  color: var(--blue);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.45rem,1.85vw,2rem);
  line-height: 1.14;
  text-align: center;
}
.form-heading p { margin: 7px 0 2px; color: var(--muted); font-size: .88rem; font-weight: 650; text-align: center; }
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 2px 0 0;
  font-size: .82rem;
  font-weight: 650;
  color: var(--ink);
}
.form-trust svg { flex: none; }
.contact-form label { display: grid; gap: 5px; font-size: .84rem; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 39px;
  padding: 8px 12px;
  border: 1px solid #cfd6e1;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: .98rem;
}
.contact-form textarea { resize: vertical; }
.form-status { margin: 0; color: var(--green); font-size: .9rem; font-weight: 700; }
.form-status.error { color: #d94600; }
.contact-form .button.pulse { width: 100%; margin-top: 4px; }
@media (prefers-reduced-motion: no-preference) {
  .button.pulse { animation: ctaPulse 2.8s ease-in-out infinite; }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 12px 26px rgba(243,90,5,.28); transform: scale(1); }
    50% { box-shadow: 0 16px 38px rgba(243,90,5,.5); transform: scale(1.015); }
  }
}

.offer-band {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: clamp(22px,3.5vw,42px);
  padding: 28px 6vw;
  color: #fff;
  background: linear-gradient(90deg, #dd4c00, #f26400);
}
.offer-icon { flex: none; }
.offer-band h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
}
.offer-band p {
  margin: 0;
  padding-left: clamp(22px,3vw,40px);
  border-left: 1px solid rgba(255,255,255,.7);
  font-size: clamp(1.08rem,1.4vw,1.28rem);
  font-weight: 700;
  line-height: 1.55;
}

.blog-preview, .split-section, .cta-strip, .content-page { padding-right: 7vw; padding-left: 7vw; }
.blog-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  padding-top: 46px;
  padding-bottom: 54px;
  background: var(--soft);
}
.section-side-title h2, .split-section h2, .cta-strip h2, .post-card h3, .blog-list-card h2, .step-card h2, .article-cta h2 {
  font-family: var(--display);
}
.section-side-title h2 { margin: 26px 0 24px; font-family: var(--display); font-weight: 900; letter-spacing: -0.012em; font-size: 1.75rem; line-height: 1.18; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 850; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.post-card, .blog-list-card, .step-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover, .blog-list-card:hover, .step-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(5,11,24,.12); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card div { padding: 18px; }
.post-card h3, .blog-list-card h2, .step-card h2 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -0.008em; font-size: clamp(1.15rem,1.35vw,1.35rem); line-height: 1.28; }
.post-card span { margin-top: 14px; }
.post-card p, .blog-list-card p, .step-card p, .article-body p, .legal-page p { color: var(--muted); line-height: 1.65; }
.post-card span, .blog-list-card span { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 850; }

.split-section {
  display: grid;
  grid-template-columns: minmax(300px,.9fr) minmax(320px,1fr);
  gap: 56px;
  padding-top: 74px;
  padding-bottom: 74px;
  background: var(--soft);
}
.split-section h2 { margin: 0 0 18px; max-width: 700px; font-size: clamp(2rem,4vw,4.4rem); line-height: 1; }
.split-section p { max-width: 680px; color: var(--muted); font-size: 1.12rem; line-height: 1.65; }
.proof-list { display: grid; gap: 14px; align-self: center; }
.proof-row { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-weight: 800; }
.check { color: var(--green); font-weight: 900; }
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 46px;
  color: #fff;
  background: #08111f;
}
.cta-strip h2 { max-width: 830px; margin: 0; font-size: clamp(1.85rem,3vw,3.4rem); line-height: 1.04; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 44px;
  flex-wrap: wrap;
  padding: 30px 7vw;
  color: #fff;
  background: #0c1420;
}
.site-footer nav { display: flex; flex: 1; justify-content: center; gap: clamp(20px,3vw,40px); flex-wrap: wrap; font-weight: 650; font-size: .98rem; }
.site-footer nav a:hover { color: var(--orange); }
.site-footer .footer-brand { font-size: 1.45rem; }
.site-footer p { width: 100%; margin: 0; color: #c6cfdb; font-size: .95rem; }

.content-page { padding-top: 76px; padding-bottom: 90px; }
.page-hero { max-width: 980px; margin-bottom: 48px; }
.page-hero h1, .legal-page h1 { font-size: clamp(2.7rem,5vw,5.5rem); }
.page-hero p, .article-intro { max-width: 790px; color: var(--muted); font-size: clamp(1.1rem,1.5vw,1.32rem); line-height: 1.55; }
.steps, .blog-list { display: grid; gap: 18px; }
.steps { grid-template-columns: repeat(4, minmax(0,1fr)); }
.step-card { padding: 24px; }
.step-card .number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 30px; border-radius: 50%; color: #fff; background: var(--orange); font-weight: 900; }
.blog-list-card { display: grid; grid-template-columns: 300px 1fr; gap: 24px; padding: 16px; }
.blog-list-card img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; border-radius: 6px; }
.article-page { max-width: 1100px; margin: 0 auto; }
.article-page h1 { margin-top: 20px; font-size: clamp(2.55rem,5vw,5.4rem); }
.article-page > img { width: 100%; aspect-ratio: 16/8; height: auto; object-fit: cover; margin: 34px 0; border-radius: 12px; }
.takeaways { padding: 26px; border-left: 7px solid var(--orange); background: var(--soft); }
.takeaways h2 { margin-top: 0; font-family: var(--display); }
.takeaways li { margin: 10px 0; font-weight: 750; }
.article-body { max-width: 780px; margin: 34px auto; font-size: 1.18rem; line-height: 1.7; }
.article-body.narrow { margin-left: 0; margin-right: 0; }
.article-cta { margin-top: 42px; padding: 34px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, #091322, #082f68); }
.article-cta h2 { margin: 0; font-size: clamp(1.8rem,3vw,3rem); }
.article-cta p { color: #c9d6f2; }
.article-cta .button { margin-top: 18px; }
.article-cta p:last-child { margin: 16px 0 0; font-size: .95rem; }
.article-cta p:last-child strong { color: #fff; }
.get-started-page .contact-form, .contact-page .contact-form { margin-top: 20px; }
.legal-page { max-width: 860px; }

/* ---------- Article rich components ---------- */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 4px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
}
.article-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #c2c9d6; }
.article-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { flex: none; color: var(--orange); }

.article-body h2 {
  margin: 46px 0 14px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.012em;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.article-body h2 .lead-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 12px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  vertical-align: middle;
}
.article-body h3 {
  margin: 30px 0 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.22rem;
}
.article-body a:not(.button) { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.article-body > img { width: 100%; border-radius: 10px; margin: 30px 0; }

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0;
}
.stat-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}
.stat-card .figure {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: var(--ink);
}
.stat-card.green .figure { color: var(--green); }
.stat-card.orange .figure { color: var(--orange); }
.stat-card.blue .figure { color: var(--blue); }
.stat-card .label { margin-top: 10px; color: var(--muted); font-size: .95rem; font-weight: 650; line-height: 1.4; }

/* Pull quote */
.pull-quote {
  position: relative;
  margin: 40px 0;
  padding: 8px 0 8px 34px;
  border-left: 6px solid var(--orange);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.012em;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink);
}
.pull-quote cite { display: block; margin-top: 14px; font-size: 1rem; font-weight: 650; font-style: normal; color: var(--muted); }

/* Callout */
.callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  margin: 32px 0;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.callout .callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #fff;
}
.callout h3 { margin: 2px 0 6px; font-size: 1.12rem; font-weight: 800; }
.callout p { margin: 0; }
.callout.tip { background: #eefaf0; border-color: #cdeed3; }
.callout.tip .callout-icon { background: var(--green); }
.callout.warn { background: #fff4ec; border-color: #ffd9be; }
.callout.warn .callout-icon { background: var(--orange); }
.callout.info { background: #eef4ff; border-color: #cddffb; }
.callout.info .callout-icon { background: var(--blue); }

/* Do / Don't grid */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0; }
.dd-card { padding: 22px 24px; border-radius: 12px; border: 1px solid var(--line); }
.dd-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 1.15rem; font-weight: 850; }
.dd-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.dd-card li { position: relative; padding-left: 28px; line-height: 1.45; color: var(--muted); font-weight: 600; }
.dd-card li::before { position: absolute; left: 0; top: -1px; font-weight: 900; font-size: 1.05rem; }
.dd-card.do { background: #eefaf0; border-color: #cdeed3; }
.dd-card.do h3 { color: #0f6f26; }
.dd-card.do li::before { content: "✓"; color: var(--green); }
.dd-card.dont { background: #fdeeee; border-color: #f6cfcf; }
.dd-card.dont h3 { color: #b42318; }
.dd-card.dont li::before { content: "✕"; color: #d9402f; }

/* Checklist */
.checklist { margin: 26px 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-weight: 650; line-height: 1.5; }
.checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eefaf0;
  color: var(--green);
  font-weight: 900;
  font-size: .92rem;
}

/* Divider */
.article-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 46px 0; color: var(--orange); }
.article-divider::before, .article-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.article-divider svg { flex: none; }

/* Sales letter: hero section on a long-form landing page */
.letter-section { padding: 6px 7vw 4px; }
.letter-section .article-body { max-width: 760px; }

/* Offer cards (My Offer section) */
.offer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.offer-card { padding: 28px 26px; border-radius: 16px; border: 1px solid var(--line); background: #fff; }
.offer-card .offer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.offer-card.free .offer-kicker { color: #0f6f26; background: #eefaf0; }
.offer-card.managed .offer-kicker { color: #fff; background: var(--orange); }
.offer-card h3 { margin: 0 0 8px; font-family: var(--display); font-weight: 900; font-size: 1.32rem; }
.offer-card .offer-price {
  display: block;
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  color: var(--orange);
}
.offer-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 1.02rem; }
.offer-card p + p { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.offer-card p strong { color: var(--ink); }
.offer-card.managed {
  border-color: #ffd3b3;
  background: #fffaf5;
  box-shadow: 0 18px 40px rgba(243,90,5,.14);
}

.assistant-widget { position: fixed; right: 24px; bottom: 8px; z-index: 80; display: flex; flex-direction: column; align-items: flex-end; }
.assistant-widget .assistant-panel { width: min(360px, calc(100vw - 48px)); }
.assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  padding: 14px 26px 14px 15px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  text-align: left;
  background: linear-gradient(135deg, #0c6bff, var(--blue));
  box-shadow: 0 14px 38px rgba(7,94,232,.45);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.assistant-launcher:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(7,94,232,.55); }
.launcher-paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.launcher-paw svg { width: 25px; height: 21px; }
.launcher-text { display: grid; gap: 2px; }
.launcher-text strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.15;
}
.launcher-text span {
  font-size: .89rem;
  font-weight: 650;
  opacity: .93;
  line-height: 1.15;
}
.assistant-launcher[hidden] { display: none; }
/* On short viewports the full pill would cover the hero form's submit
   button; collapse to a round paw bubble there instead. */
@media (max-height: 800px) {
  .assistant-widget { right: 14px; bottom: 14px; }
  .assistant-launcher { justify-content: center; gap: 0; width: 58px; height: 58px; padding: 0; }
  .assistant-launcher .launcher-text { display: none; }
}
.assistant-panel { overflow: hidden; border: 1px solid #bfd1ff; border-radius: 16px; background: #fff; box-shadow: 0 24px 64px rgba(5,11,24,.28); }
.assistant-panel[hidden] { display: none; }
.assistant-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; color: #fff; background: linear-gradient(135deg, #0c6bff, var(--blue)); font-family: var(--display); font-weight: 800; }
.assistant-head span { display: inline-flex; align-items: center; gap: 8px; }
.assistant-head button { border: 0; color: #fff; background: transparent; font-size: 1.35rem; line-height: 1; cursor: pointer; }
.assistant-messages { display: grid; gap: 9px; max-height: 210px; overflow-y: auto; padding: 14px; background: #fff; }
.quick-prompts { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 14px 12px; background: #fff; }
.quick-prompts button {
  min-height: 34px;
  padding: 0 15px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 700;
  font-size: .86rem;
  cursor: pointer;
}
.quick-prompts button:hover { background: #eef4ff; }
.chat-row { display: flex; align-items: flex-start; gap: 8px; }
.chat-avatar { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 28px; height: 28px; margin-top: 2px; border-radius: 50%; color: var(--orange); background: #ffece0; }
.chat { max-width: 88%; padding: 10px 12px; border-radius: 10px; font-size: .92rem; line-height: 1.4; }
.chat.assistant { justify-self: start; background: #f1f4f9; }
.chat.user { justify-self: end; color: #fff; background: var(--blue); }
.assistant-input { display: grid; grid-template-columns: 1fr 42px; gap: 8px; align-items: center; padding: 10px 14px 14px; border-top: 1px solid var(--line); }
.assistant-input input { min-height: 40px; padding: 0 14px; border: 1px solid #cfd6e1; border-radius: 999px; }
.assistant-input button { height: 40px; border: 0; border-radius: 9px; color: #fff; background: var(--blue); font-size: 1rem; cursor: pointer; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr .8fr; }
  .hero-form { grid-column: 1/-1; justify-self: start; width: min(100%, 560px); margin-bottom: 32px; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .site-header { min-height: 68px; padding: 0 22px; }
  .mobile-menu { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
  .site-nav { position: absolute; top: 67px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav a.active::after { display: none; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; padding: 38px 22px 0; }
  .hero::before { display: none; }
  .hero-copy { padding-bottom: 18px; }
  .hero-media { position: relative; inset: auto; order: 2; height: 400px; margin: 4px -22px 0; }
  .hero-media img { position: static; width: 100%; height: 100%; object-fit: cover; object-position: 55% 28%; transform: none; }
  .hero-form { order: 3; width: 100%; margin: -30px 0 28px; }
  .assistant-launcher { width: 58px; height: 58px; padding: 0; border-radius: 50%; }
  .assistant-launcher .launcher-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .assistant-launcher .launcher-paw { width: 42px; height: 42px; }
  .offer-band, .blog-preview, .split-section, .cta-strip, .site-footer, .content-page { padding-right: 22px; padding-left: 22px; }
  .offer-band, .blog-preview, .split-section, .blog-list-card, .site-footer { grid-template-columns: 1fr; }
  .offer-band { gap: 12px; }
  .offer-band p { padding-left: 0; border-left: 0; }
  .post-grid, .steps { grid-template-columns: 1fr; }
  .stat-band, .do-dont, .offer-cards { grid-template-columns: 1fr; }
  .letter-section { padding-right: 22px; padding-left: 22px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .site-footer nav { justify-content: flex-start; }
  .assistant-launcher:not([hidden]) { display: flex; }
}
@media (max-width: 560px) {
  .brand { font-size: 1.38rem; }
  .brand-logo { height: 30px; }
  .hero-actions, .button { width: 100%; }
  .button { padding: 0 18px; }
  .hero-media { height: 340px; }
  .assistant-widget { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
}
