:root {
  color-scheme: light;
  --ink: #181512;
  --muted: #69615a;
  --line: #e4d9cf;
  --line-soft: #eee5dc;
  --soft: #f6efe8;
  --cream: #faf7f4;
  --white: #fffdf9;
  --black: #171513;
  --green: #8c4b39;
  --green-dark: #703828;
  --blue: #2f5f73;
  --amber: #b65f3d;
  --red: #b42318;
  --shadow: 0 20px 56px rgba(75, 56, 42, 0.11);
  --shadow-soft: 0 8px 28px rgba(75, 56, 42, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 10px 32px;
  border-bottom: 1px solid rgba(228, 217, 207, 0.8);
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 10px;
  color: var(--white);
  background: var(--black);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(228, 217, 207, 0.82);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 253, 249, 0.74);
}

.main-nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(24, 21, 18, 0.06);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 10px 24px rgba(23, 21, 19, 0.13);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-menu-toggle .close-icon {
  display: none;
}

body.mobile-menu-open .mobile-menu-toggle .menu-icon {
  display: none;
}

body.mobile-menu-open .mobile-menu-toggle .close-icon {
  display: inline-flex;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 96px 32px 48px;
  background:
    radial-gradient(circle at 74% 36%, rgba(255, 253, 249, 0.96) 0 210px, transparent 500px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.42), rgba(250, 247, 244, 0)),
    var(--cream);
}

#heroCanvas {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  column-gap: 74px;
  align-items: center;
  justify-items: start;
  min-height: min(620px, calc(100svh - 144px));
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 22px;
  border: 1px solid rgba(140, 75, 57, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green-dark);
  background: rgba(255, 253, 249, 0.72);
  font-size: 15px;
  font-weight: 800;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 74px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: #3c3630;
  font-size: 21px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 26px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 30px rgba(23, 21, 19, 0.16);
}

.button.primary:hover {
  background: #2a2520;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(23, 21, 19, 0.19);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.56);
}

.hero-device {
  grid-column: 2;
  grid-row: 1 / span 5;
  justify-self: center;
  width: min(100%, 460px);
  margin-bottom: 0;
}

.phone-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  border: 4px solid var(--black);
  border-radius: 28px;
  padding: 7px;
  background: var(--black);
  box-shadow: 0 26px 64px rgba(24, 21, 18, 0.18);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  padding: 10px 16px 8px;
  color: var(--black);
  background: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.phone-screen {
  display: grid;
  gap: 11px;
  min-height: 494px;
  border-radius: 0 0 20px 20px;
  padding: 17px;
  background: var(--white);
  text-align: left;
}

.phone-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 14px auto 4px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f4d7cd;
}

.phone-icon svg {
  width: 30px;
  height: 30px;
}

.phone-label {
  margin: 0 0 2px;
  text-align: center;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
}

.phone-message {
  max-width: 92%;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 15px;
  line-height: 1.35;
}

.phone-message.client {
  background: #f1ece7;
  color: var(--ink);
}

.phone-message.ai {
  justify-self: end;
  background: #f7e7df;
  color: #5b2d20;
}

.phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phone-actions span {
  min-height: 38px;
  border: 1px solid #e5b9aa;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #fff5ef;
  font-size: 15px;
  font-weight: 850;
}

.phone-lead {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  border: 1px solid #d7c5b7;
  border-radius: 8px;
  padding: 13px;
  background: #fbf8f4;
}

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

.phone-lead span {
  color: var(--muted);
  font-size: 15px;
}

.button.full {
  width: 100%;
}

.hero-metrics {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: min(100%, 660px);
  margin: 0;
}

.hero-metrics div {
  border: 1px solid rgba(228, 217, 207, 0.82);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: var(--shadow-soft);
}

.hero-metrics dt {
  font-size: 19px;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.section {
  border-top: 1px solid rgba(228, 217, 207, 0.58);
  padding: 104px 32px;
}

section[id] {
  scroll-margin-top: 88px;
}

.section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading p:last-child,
.comparison p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-grid article,
.package-card,
.report-panel,
.scenario-panel,
.timeline article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.flow-grid article {
  padding: 24px;
}

.flow-grid p,
.package-card li,
.timeline p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #e5b9aa;
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff5ef;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.visibility-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow-soft);
}

.visibility-note h3 {
  max-width: 640px;
}

.visibility-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.visibility-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visibility-note li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.visibility-note svg {
  color: var(--green-dark);
}

.funnel-blueprint {
  background: linear-gradient(180deg, #fffaf6 0%, var(--cream) 100%);
}

.blueprint-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.blueprint-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.blueprint-card.result {
  position: sticky;
  top: 92px;
}

.blueprint-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.blueprint-top > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #e5b9aa;
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff5ef;
}

.blueprint-top svg {
  width: 23px;
  height: 23px;
}

.blueprint-top p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blueprint-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 250, 246, 0.72);
}

.check-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-dark);
}

.check-mark svg {
  width: 16px;
  height: 16px;
}

.blueprint-checklist strong,
.blueprint-result-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.blueprint-checklist small,
.blueprint-result-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.blueprint-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.blueprint-result-grid div {
  min-height: 116px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 250, 246, 0.72);
}

.blueprint-how {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.blueprint-how ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-how li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.blueprint-how li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f6e6dc;
  font-size: 13px;
  font-weight: 900;
}

.blueprint-how p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.band {
  background: linear-gradient(180deg, var(--soft) 0%, #fbf5ef 100%);
}

.comparison {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof-list svg {
  color: var(--green);
}

.funnel-upgrade {
  background: var(--white);
}

.funnel-upgrade .section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: stretch;
}

.funnel-card,
.funnel-step,
.funnel-metric,
.funnel-deliverables article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.funnel-card.main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.08), rgba(255, 253, 249, 0) 36%),
    var(--black);
  color: var(--white);
}

.funnel-card.main p {
  color: #e6ddd5;
  line-height: 1.6;
}

.funnel-price {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  border-top: 1px solid rgba(250, 247, 244, 0.2);
  padding-top: 18px;
}

.funnel-price strong {
  font-size: 24px;
}

.funnel-price span {
  color: #e6ddd5;
}

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.funnel-step {
  padding: 20px;
}

.funnel-step svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.funnel-step p,
.funnel-metric span,
.funnel-deliverables li {
  color: var(--muted);
  line-height: 1.55;
}

.funnel-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.funnel-metric {
  padding: 18px;
}

.funnel-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.funnel-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.funnel-deliverables article {
  padding: 24px;
}

.funnel-deliverables ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.site-widget {
  background: #f7f0e9;
}

.widget-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.widget-copy,
.widget-preview,
.widget-use-grid article,
.widget-kpis div {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.widget-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.widget-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-copy li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.widget-copy svg,
.widget-use-grid svg {
  color: var(--green);
}

.widget-price {
  display: grid;
  gap: 6px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.widget-price strong {
  color: var(--green-dark);
  font-size: 22px;
}

.widget-price span {
  color: var(--muted);
}

.widget-preview {
  overflow: hidden;
  min-height: 460px;
  background: #f1e8df;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  padding: 0 14px;
  background: var(--white);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b7a79a;
}

.browser-bar small {
  min-width: 0;
  margin-left: 8px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-page {
  position: relative;
  min-height: 418px;
  padding: 24px;
  background:
    repeating-linear-gradient(90deg, rgba(120, 94, 76, 0.08) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(120, 94, 76, 0.08) 0 1px, transparent 1px 44px),
    #f1e8df;
}

.mock-copy {
  display: grid;
  gap: 10px;
  max-width: 310px;
  border: 1px solid rgba(120, 94, 76, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 249, 0.9);
}

.mock-copy strong {
  font-size: 22px;
  line-height: 1.2;
}

.mock-copy span {
  color: var(--muted);
}

.widget-shell {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 12px;
  width: min(330px, calc(100% - 48px));
  border: 1px solid #e8c9bc;
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.widget-head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}

.widget-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.widget-head strong,
.widget-head small {
  display: block;
}

.widget-head small {
  color: var(--muted);
}

.widget-message {
  max-width: 92%;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.widget-message.client {
  background: #f1ece7;
  color: var(--ink);
}

.widget-message.assistant {
  justify-self: end;
  background: #f7e7df;
  color: #5b2d20;
}

.widget-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.widget-buttons button {
  min-height: 34px;
  border: 1px solid #e5b9aa;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--green-dark);
  background: #fff5ef;
  cursor: pointer;
  font-weight: 750;
}

.widget-input {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 14px;
}

.widget-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.widget-use-grid article {
  padding: 22px;
}

.widget-use-grid svg {
  width: 28px;
  height: 28px;
}

.widget-use-grid p,
.widget-kpis span {
  color: var(--muted);
  line-height: 1.55;
}

.widget-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.widget-kpis div {
  padding: 18px;
}

.widget-kpis strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.examples-section {
  background: var(--white);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.example-card,
.artifact-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.example-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.example-top {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.example-top > span,
.artifact-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #e5b9aa;
  border-radius: 8px;
  color: var(--green-dark);
  background: #fff5ef;
}

.example-top strong,
.example-top small {
  display: block;
}

.example-top small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.example-card p,
.artifact-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.example-card b,
.artifact-grid b {
  color: var(--ink);
}

.example-lead {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: 1px solid #e5c5b8;
  border-radius: 8px;
  padding: 12px;
  background: #fff8f3;
}

.example-lead span {
  color: #594339;
  font-size: 14px;
  line-height: 1.35;
}

.example-outcome {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-weight: 750;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.artifact-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.artifact-grid svg,
.example-top svg {
  width: 24px;
  height: 24px;
}

.demo-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fffaf6 100%);
}

.demo-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
}

.scenario-panel,
.report-panel,
.lead-form {
  padding: 22px;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  min-height: 44px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: var(--soft);
}

.segment {
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.segment.active {
  color: var(--white);
  background: var(--green);
}

.chat-window {
  display: grid;
  gap: 14px;
}

.message {
  max-width: 78%;
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.45;
}

.message.client {
  justify-self: start;
  background: #f1ece7;
  color: var(--ink);
}

.message.assistant {
  justify-self: end;
  background: #f7e7df;
  color: #5b2d20;
}

.lead-card {
  display: grid;
  gap: 8px;
  border: 1px solid #e5c5b8;
  border-radius: 8px;
  padding: 18px;
  background: #fff8f3;
}

.lead-card span {
  color: #594339;
}

.report-panel {
  align-self: stretch;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row span {
  color: var(--muted);
}

.danger {
  color: var(--red);
}

.packages {
  background: #f7f0e9;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
}

.package-card.featured {
  border-color: var(--black);
  box-shadow: 0 24px 60px rgba(75, 56, 42, 0.14);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #f4d7cd;
  font-size: 12px;
  font-weight: 800;
}

.package-top {
  min-height: 106px;
}

.package-card p {
  color: var(--muted);
  line-height: 1.5;
}

.price {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 850;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.monthly {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.founder-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid #e5c5b8;
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--green-dark);
  background: #fff8f3;
}

.founder-strip svg {
  flex: 0 0 auto;
}

.niche-table {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.niche-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.35fr 1.5fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.niche-row:last-child {
  border-bottom: 0;
}

.niche-row span {
  min-width: 0;
  padding: 16px;
  background: var(--white);
  line-height: 1.45;
}

.niche-row.head span {
  color: var(--ink);
  background: #efe5dc;
  font-weight: 850;
}

.industry-pages {
  background: linear-gradient(180deg, #f7f0e9 0%, var(--cream) 100%);
}

.industry-link-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.industry-link-grid a {
  display: grid;
  gap: 10px;
  min-height: 190px;
  align-content: start;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.industry-link-grid a:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.industry-link-grid svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.industry-link-grid strong {
  font-size: 18px;
}

.industry-link-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 24px;
}

.timeline article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 42px;
  align-items: start;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 215, 205, 0.15), transparent 320px),
    var(--black);
}

.contact > * {
  max-width: none;
}

.contact-copy {
  color: var(--white);
}

.contact-copy .eyebrow {
  color: #f4d7cd;
}

.contact-copy p {
  color: #e6ddd5;
}

.contact-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  max-width: 680px;
  margin-top: 26px;
  border: 1px solid rgba(250, 247, 244, 0.24);
  border-radius: 8px;
  padding: 16px;
}

.contact-note p {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(140, 75, 57, 0.16);
  border-color: var(--green);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 750;
}

.form-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.form-status-actions a,
.form-copy-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5b9aa;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #fff5ef;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.form-copy-button {
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

body.support-widget-open {
  overflow: hidden;
}

.support-widget {
  position: relative;
  z-index: 80;
}

.support-focus-backdrop {
  position: fixed;
  inset: 0;
  z-index: 78;
  opacity: 0;
  pointer-events: none;
  background: rgba(24, 21, 18, 0.2);
  transition: opacity 160ms ease;
}

.support-widget.inline-focused:not(.is-open) .support-focus-backdrop {
  opacity: 1;
}

.support-collapsed {
  position: fixed;
  z-index: 82;
  right: 24px;
  bottom: 24px;
  width: 420px;
  max-width: calc(100vw - 32px);
}

.support-widget.is-open .support-collapsed {
  display: none;
}

.support-inline-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e7b9ac;
  border-radius: 28px;
  padding: 12px 14px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 46px rgba(24, 21, 18, 0.16);
  backdrop-filter: blur(12px);
  cursor: text;
}

.support-inline-card:focus-within {
  border-color: #d86347;
  box-shadow: 0 20px 54px rgba(112, 56, 40, 0.2);
}

.support-inline-input,
.support-input-row label {
  flex: 1;
  min-width: 0;
}

.support-inline-input input,
.support-input-row input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.support-inline-input input::placeholder,
.support-input-row input::placeholder {
  color: rgba(24, 21, 18, 0.62);
}

.support-file-button,
.support-send-button,
.support-icon-button {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.support-file-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
}

.support-send-button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--white);
  background: #d84d33;
}

.support-send-button:hover {
  background: #bd3f27;
}

.support-file-button svg,
.support-send-button svg,
.support-icon-button svg {
  width: 18px;
  height: 18px;
}

.support-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 84;
}

.support-widget.is-open .support-panel {
  display: flex;
  justify-content: flex-end;
}

.support-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 21, 18, 0.32);
}

.support-panel-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 100%;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  color: #111827;
  background: #fff;
  box-shadow: -24px 0 70px rgba(24, 21, 18, 0.22);
  animation: supportPanelIn 260ms ease-out;
}

@keyframes supportPanelIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.support-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 16px;
}

.support-agent {
  display: flex;
  min-width: 0;
  gap: 12px;
}

.support-agent img,
.support-message-row > img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.support-agent h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.support-agent p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 3px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

.support-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
}

.support-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.support-contact-links a {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0 8px;
  color: #4b5563;
  font-size: 11px;
  font-weight: 700;
}

.support-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.support-manager-link {
  display: none;
  border: 0;
  color: #4b5563;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.support-icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #4b5563;
  background: #fff;
}

.support-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 0;
  background: #f9fafb;
}

.support-message-row {
  display: flex;
  width: 100%;
  gap: 12px;
  padding: 6px 16px;
}

.support-message-row.user {
  justify-content: flex-end;
}

.support-message-row.user > img {
  display: none;
}

.support-message-row.user > div {
  display: flex;
  justify-content: flex-end;
}

.support-message-bubble {
  max-width: 300px;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.48;
}

.support-message-bubble.agent {
  border: 1px solid #e5e7eb;
  color: #111827;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.support-message-bubble.user {
  border-radius: 999px;
  color: #1e3a8a;
  background: #dbeafe;
}

.support-message-bubble.system {
  border: 1px solid #f1d0c5;
  color: var(--green-dark);
  background: #fff8f3;
}

.support-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 9px 0 0 2px;
}

.support-quick-replies button {
  min-height: 30px;
  border: 1px solid #e7b9ac;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #fff5ef;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.support-typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-width: 52px;
}

.support-typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  animation: supportTypingPulse 900ms ease-in-out infinite;
}

.support-typing span:nth-child(2) {
  animation-delay: 150ms;
}

.support-typing span:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes supportTypingPulse {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

.support-composer {
  border-top: 1px solid #e5e7eb;
  padding: 10px 12px calc(env(safe-area-inset-bottom) + 12px);
  background: #fff;
}

.support-faq-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.support-faq-panel p {
  margin: 0 4px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.support-faq-buttons button {
  min-height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0 12px;
  color: #111827;
  background: #f9fafb;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.support-faq-buttons button:hover {
  border-color: #e7b9ac;
  color: var(--green-dark);
  background: #fff5ef;
}

.support-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 9px;
}

.support-mode-tabs button {
  min-height: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0 12px;
  color: #6b7280;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.support-mode-tabs button.active {
  border-color: #d84d33;
  color: #bd3f27;
  background: #fff5ef;
}

.support-input-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 9px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.support-caption {
  margin: 8px 4px 0;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .support-panel-shell,
  .support-typing span {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .site-header {
    padding: 12px 18px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    z-index: 21;
    top: 68px;
    left: 18px;
    right: 18px;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 18px 50px rgba(24, 21, 18, 0.16);
    backdrop-filter: blur(12px);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 0 14px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: rgba(24, 21, 18, 0.06);
  }

  .mobile-menu-cta {
    justify-content: center !important;
    margin-top: 4px;
    color: var(--white) !important;
    background: var(--black);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    max-width: 960px;
    text-align: center;
  }

  .hero-badge,
  .hero-actions {
    justify-content: center;
  }

  .hero-device,
  .hero-metrics {
    grid-column: 1;
  }

  .hero-device {
    grid-row: auto;
    width: min(100%, 560px);
    margin-bottom: 22px;
  }

  .phone-frame {
    max-width: 316px;
  }

  .phone-screen {
    min-height: 330px;
  }

  .phone-icon {
    width: 46px;
    height: 46px;
    margin: 4px auto 0;
  }

  .phone-icon svg {
    width: 22px;
    height: 22px;
  }

  .phone-label {
    font-size: 16px;
  }

  .phone-message {
    font-size: 13px;
  }

  .phone-actions span,
  .phone-lead span {
    font-size: 13px;
  }

  .flow-grid,
  .package-grid,
  .industry-link-grid,
  .example-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison,
  .demo-layout,
  .funnel-layout,
  .blueprint-layout,
  .widget-layout,
  .visibility-note,
  .contact {
    grid-template-columns: 1fr;
  }

  .blueprint-card.result {
    position: static;
  }

  .funnel-metrics,
  .funnel-deliverables,
  .blueprint-result-grid,
  .widget-use-grid,
  .widget-kpis,
  .artifact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .niche-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-height: 760px) {
  .hero {
    min-height: 500px;
    padding-top: 84px;
    padding-bottom: 24px;
  }

  .hero-metrics {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .mobile-menu {
    top: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 18px 64px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-device,
  .hero-metrics {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 18px;
  }

  .flow-grid,
  .package-grid,
  .industry-link-grid,
  .funnel-steps,
  .funnel-metrics,
  .funnel-deliverables,
  .blueprint-layout,
  .blueprint-result-grid,
  .widget-use-grid,
  .widget-kpis,
  .example-grid,
  .artifact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .example-lead {
    grid-template-columns: 1fr;
  }

  .widget-preview {
    min-height: auto;
  }

  .mock-page {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .widget-shell {
    position: static;
    width: 100%;
  }

  .package-card {
    min-height: auto;
  }

  .founder-strip {
    align-items: flex-start;
  }

  .segmented {
    display: grid;
    width: 100%;
  }

  .segment {
    min-height: 38px;
  }

  .message {
    max-width: 100%;
  }

  .niche-row {
    grid-template-columns: 1fr;
  }

  .niche-row.head {
    display: none;
  }

  .contact {
    padding-top: 72px;
  }

  .support-collapsed {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .support-inline-card {
    border-radius: 22px;
    padding: 10px 12px;
  }

  .support-widget.is-open .support-panel {
    justify-content: stretch;
  }

  .support-panel-backdrop {
    background: #fff;
  }

  .support-panel-shell {
    width: 100%;
    box-shadow: none;
  }

  .support-panel-header {
    padding: 12px 14px;
  }

  .support-manager-link {
    display: none;
  }

  .support-contact-links {
    display: none;
  }

  .support-message-bubble {
    max-width: min(78vw, 300px);
  }

  .support-caption {
    display: none;
  }
}
