:root {
  --font-body: "Alegreya Sans", sans-serif;
  --font-logo: "Comfortaa", sans-serif;

  --darkest: #111616;
  --darker: #5B7070;
  --dark: #99ACAC;
  --light: #C6D1D1;
  --lighter: #E8EDED;
  --lightest: #F9FCFC;
  --white: #FFFFFF;


  --black: #000000; /* rgb(0, 0, 0); */
  --red: #AE091F; /* rgb(174, 9, 31); */

  --blue: #0E495A; /* rgb(14, 73, 90); */
  --blue-light: #E3F2F6; /* rgb(227, 242, 246); */

  --cyan: #E1F6FF; /* rgb(225, 246, 255); */

  --green: #00AE83; /* rgb(0, 174, 131); */
  --green-light: #e9f2f0; /* rgb(230, 247, 243); */

  --purple: #664176; /* rgb(102, 65, 118); */
  --purple-light: #906DA0; /* rgb(144, 109, 160); */

  --orange: #EE6F00; /* rgb(238, 111, 0); */
  --orange-light: #FFA14E; /* rgb(255, 161, 78); */

  --color-background: var(--lightest);
  --color-font: var(--darkest);
  --color-neutral: var(--blue);
  --color-good: var(--green);
  --color-warning: var(--red);

  --shadow: 0 8px 24px rgba(17, 22, 22, 0.08);
  --shadow-soft: 0 4px 14px rgba(17, 22, 22, 0.05);
  --divider: 1px solid rgba(17, 22, 22, 0.10);
  --divider-light: 1px solid rgba(17, 22, 22, 0.08);

  --margin-xxl: 108px;
  --margin-xl: 88px;
  --margin-l: 66px;
  --margin: 44px;
  --margin-s: 22px;
  
  --radius-tight: 12px;
  --radius-large: 24px;

  --header-height: 84px;
  --page-max: 1120px;
  --page-gutter: 24px;
  --section-gap: 88px;

  --button-height: 52px;
  --button-width: 176px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-font);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg.icon {
  width: 24px;
  height: 24px;
}


.hide,
.hidden {
  display: none !important;
}

.show,
.visible {
  display: block !important;
}


p,
ul,
ol {
  margin-bottom: 16px;
}

ul,
ol {
  padding-left: 1.25rem;
}

strong {
  color: var(--darkest);
}


a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, background-color .2s ease, border-color .2s ease;
}

	a:hover {
	  color: var(--orange);
	}
	
	a.link,
	a.orange_link {
	  color: var(--orange);
	  text-decoration: underline;
	  text-underline-offset: 4px;
	}
	
	a.link:hover,
	a.orange_link:hover {
	  color: var(--blue);
	}
	

h1,
h2,
h3,
h4 {
  color: var(--darkest);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 14px;
}
	
	h1 {
	  font-size: clamp(36px, 4.8vw, 54px);
	}
	
	h2 {
	  font-size: clamp(26px, 3.6vw, 40px);
	}
	
	h3 {
	  font-size: clamp(20px, 2.4vw, 26px);
	}
	
	h4 {
	  font-size: 18px;
	  font-weight: 700;
	  letter-spacing: -0.01em;
	}


.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  color: var(--orange);
}

.layout {
 width: min(var(--page-max), calc(100vw - (var(--margin) * 2)));
 margin: calc(var(--header-height)) auto 88px;
}



button,
a.button,
input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--button-width);
  min-height: var(--button-height);
  padding: 0 22px;
  border: 3px solid white;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

	button:hover,
	a.button:hover,
	input.button:hover {
	  color: var(--white);
	  filter: brightness(1.04) saturate(1.08);
	}
	
	a.cta_button,
	button.cta_button,
	a.cta-button,
	button.cta-button {
	  min-width: 220px;
	}
	
	button.no_button,
	a.button.no_button,
	input.button.no_button {
		align-items: left;
		justify-content: left;
		min-width:0px;
		min-height:0px;
		padding:0px;
		border:none;
		background:transparent;
		color:auto;
		box-shadow:none;
	}
	
	button.no_button:hover,
	a.button.no_button:hover,
	input.button.no_button:hover {
		color:var(--orange);
	}
	
section {
	margin: var(--margin-xxl) 0 !important;
	}

section.faq {
	margin-top: var(--margin-xxxl) !important;
	}
	

.home div.layout {
  margin-top: 0;
}

	
	
	.home .layout p {
	  font-size: clamp(19px, 1.65vw, 24px);
	  line-height: 1.6;
	  color: var(--darker);
	}
	
	.home .layout p.small {
	  margin-top: 10px;
	  font-size: 18px;
	  line-height: 1.55;
	  color: var(--darkest);
	}
	
	.home .layout .lead {
	  font-size: clamp(26px, 2.2vw, 34px);
	  line-height: 1.38;
	  color: var(--darkest);
	}


.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section,
.section_tinted,
.screenshot_placeholder,
.home_dashboard_media img,
.home_dashboard_media_placeholder {
  border: 1px solid rgba(17, 22, 22, 0.08);
  border-radius: 2px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.section_tinted {
  padding:var(--margin);
  background: linear-gradient(180deg, rgba(232,237,237,.58) 0%, rgba(249,252,252,.92) 100%);
}

.section_split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--margin);
  align-items: start;
}





.home_intro a.button {
	float:right;
}
	

.feature_list.plain {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature_list.plain li {
  margin: 0;
  padding: 0 0  var(--margin-s);
  border-bottom: 1px solid rgba(17, 22, 22, 0.10);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--darkest);
}

.feature_list.plain li + li {
  margin-top:  var(--margin-s);
}

.feature_list.plain li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.three_up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:  var(--margin-s);
  margin-top:  var(--margin-s);
}

.three_up > div {
  padding-top: 12px;
}

.home_for.three_up > div,
.pricing_cards > div {
  padding:  var(--margin-s);
  border-top: 1px solid rgba(17,22,22,0.10);
}

.three_up.minimal > div {
  padding:  var(--margin-s) 0 0;
  border-top: 1px solid rgba(17,22,22,0.10);
}

.three_up.mixed > div:nth-child(2) {
  padding-inline:  var(--margin-s);
  border-left: 1px solid rgba(17, 22, 22, 0.10);
  border-right: 1px solid rgba(17, 22, 22, 0.10);
}


.home_dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--margin);
  align-items: center;
}

.home_dashboard_media {
  display: block;
}

.home_dashboard_media img,
.home_dashboard_media_placeholder {
  width: 100%;
}

.home_dashboard_copy .button {
  margin-top: var(--margin-s);
}



.logo_band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--margin-s);
  align-items: center;
  margin-top: var(--margin-s);
}

	.logo_band a {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  min-height: 70px;
	}
	
	.logo_band img {
	  max-width: 75%;
	  max-height: var(--margin);
	  opacity: 0.72;
	  filter: grayscale(100%);
	}
	
	.logo_band img:hover {
	  opacity: 1;
	  filter: none;
	}




.topics h3 {
  margin-bottom: var(--margin-s);
}

.topic_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 20px;
  list-style: none;
  padding-left: 0 !important;
  margin: var(--margin) 0 var(--margin) !important;
}

.topic_list li {
  color: var(--darkest);
  font-size: 17px;
  line-height: 1.4;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(17,22,22,0.08);
}




.final_cta {
  padding-top: 26px;
  text-align: center;
  border-top: 1px solid rgba(17,22,22,0.10);
}

	.final_cta p {
	  max-width: 760px;
	  margin-inline: auto;
	}
	
	.final_cta .button {
	  margin-top: 18px;
	}



.footer_legal,
p.caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--darker);
}

@media (max-width: 1080px) {
  :root {
    --section-gap: 72px;
  }

  .section_split,
  .home_dashboard {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .screenshot_grid {
    grid-template-columns: 1fr 1fr;
  }

  .screenshot_placeholder.large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }

  .three_up,
  .logo_band,
  .topic_list {
    grid-template-columns: 1fr 1fr;
  }

  .three_up.mixed > div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --page-gutter: 16px;
    --section-gap: 60px;
  }

  .layout {
    margin-top: calc(var(--header-height) + 28px);
    margin-bottom: 64px;
  }

  .home p {
    font-size: 18px;
  }

  .home .lead {
    font-size: 24px;
  }

  .section,
  .section_tinted {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .three_up,
  .logo_band,
  .topic_list,
  .screenshot_grid {
    grid-template-columns: 1fr;
  }

  .three_up.mixed > div:nth-child(2) {
    border-left: 0;
    border-right: 0;
    padding-inline: 0;
  }

  .home_dashboard_media_placeholder {
    min-height: 260px;
    font-size: 20px;
  }

  .screenshot_placeholder,
  .screenshot_placeholder.large {
    min-height: 220px;
  }

  button,
  a.button,
  input.button,
  a.cta_button,
  button.cta_button,
  a.cta-button,
  button.cta-button {
    width: 100%;
    min-width: 0;
  }
}

/* Pricing page */
.pricing_page section {
  margin: var(--margin-xl) 0 !important;
}

.pricing_intro {
  max-width: 860px;
}

.pricing_intro .lead {
  max-width: 900px;
}

.pricing_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--margin-s);
  align-items: stretch;
}

.pricing_tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 26px;
  border: 1px solid rgba(17, 22, 22, 0.10);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.pricing_tier_top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price_lockup h2 {
  margin-bottom: 4px;
}

.price_lockup p {
  margin: 0;
  color: var(--darker);
  font-size: 17px;
}

.tier_summary {
  min-height: 92px;
  color: var(--darkest);
}

.pricing_features {
  margin-top: 0;
}

.pricing_features li {
  font-size: 18px;
}

.pricing_note {
  margin-top: auto;
  padding-top: 6px;
  color: var(--darker);
  font-size: 16px;
  line-height: 1.45;
}

.pricing_tier .button {
  width: 100%;
}

.pricing_tier.featured {
  border-color: rgba(238,111,0,0.22);
  box-shadow: 0 12px 30px rgba(238,111,0,0.12);
  background: linear-gradient(180deg, rgba(255,161,78,0.08) 0%, rgba(255,255,255,0.95) 100%);
}

.popular_tag {
  position: absolute;
  top: -14px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.tier_free .eyebrow { color: var(--blue); }
.tier_basic .eyebrow { color: var(--green); }
.tier_standard .eyebrow { color: var(--orange); }
.tier_pro .eyebrow { color: var(--purple); }

.pricing_explainer {
  padding-top: 10px;
  border-top: var(--divider);
}

.pricing_detail_row h3 {
  margin-bottom: 10px;
}

.pricing_addons {
  text-align: center;
}

.addon_row {
  display: flex;
  justify-content: center;
  gap: var(--margin-s);
  margin: var(--margin) 0 var(--margin-s);
  flex-wrap: wrap;
}

.addon_card {
  min-width: 220px;
  padding: 24px 28px;
  border: 1px solid rgba(17,22,22,0.10);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}

.addon_card h3 {
  margin-bottom: 4px;
}

.addon_card p {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: var(--darkest);
}

.pricing_final_cta {
  margin-top: var(--margin-xl) !important;
}

@media (max-width: 1180px) {
  .pricing_grid {
    grid-template-columns: 1fr 1fr;
  }
  .tier_summary {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .pricing_grid {
    grid-template-columns: 1fr;
  }
  .pricing_tier {
    padding: 24px 20px;
  }
  .popular_tag {
    left: 20px;
  }
  .addon_card {
    width: 100%;
    min-width: 0;
  }
}


/* General marketing pages */
.section_narrow {
  max-width: 860px;
}

.home_intro,
.page_intro {
  max-width: 940px;
}

.resource_grid,
.path_grid,
.audience_grid,
.benefit_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--margin-s);
  margin-top: var(--margin-s);
}

.resource_grid.two_up,
.path_grid.two_up,
.benefit_grid.two_up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource_card,
.path_card,
.audience_card,
.benefit_card,
.signal_card {
  display: block;
  padding: var(--margin-s);
  border: 1px solid rgba(17, 22, 22, 0.10);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.resource_card h3,
.path_card h3,
.audience_card h3,
.benefit_card h3,
.signal_card h3 {
  margin-bottom: 10px;
}

.resource_card p,
.path_card p,
.audience_card p,
.benefit_card p,
.signal_card p {
  font-size: 18px !important;
  line-height: 1.5;
}

.resource_card:hover,
.path_card:hover,
.audience_card:hover {
  border-color: rgba(238,111,0,0.35);
  transform: translateY(-2px);
}

.section_kicker {
  max-width: 760px;
}

.signal_band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding-left: 0;
  margin-top: var(--margin-s);
}

.signal_band li {
  padding: 14px 12px;
  border: 1px solid rgba(17,22,22,0.08);
  background: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.3;
  color: var(--darkest);
  text-align: center;
}

.use_list,
.check_list,
.page_bullets {
  list-style: none;
  padding-left: 0;
}

.use_list li,
.check_list li,
.page_bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--darkest);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

.use_list li::before,
.check_list li::before,
.page_bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

.inline_cta {
  margin-top: var(--margin-s);
}

.section_rule {
  padding-top: 24px;
  border-top: 1px solid rgba(17,22,22,0.10);
}

.proof_strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--margin);
  align-items: center;
}

.proof_strip img {
  width: 100%;
  border: 1px solid rgba(17,22,22,0.08);
  box-shadow: var(--shadow-soft);
}

.callout_line {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-left: 6px solid var(--orange);
  background: rgba(255,255,255,0.75);
  color: var(--darkest);
  font-size: 18px;
  line-height: 1.4;
}

.lp_intro {
  max-width: 980px;
}

.lp_hero_actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp_breadcrumb {
  margin-bottom: 10px;
  font-size: 15px !important;
  color: var(--darker) !important;
}

.lp_breadcrumb a { color: var(--darker); text-decoration: underline; text-underline-offset: 3px; }

.template_note {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(225,246,255,0.52);
  border-left: 4px solid var(--blue);
}

.custom_block {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(232,237,237,0.55);
  border: 1px dashed rgba(17,22,22,0.16);
}

.custom_block p,
.custom_block li,
.template_note p,
.template_note li {
  font-size: 17px !important;
}

.custom_block code {
  font-family: monospace;
  font-size: 14px;
}

.page_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: var(--margin-s);
}

.page_nav a {
  padding: 9px 14px;
  border: 1px solid rgba(17,22,22,0.10);
  background: rgba(255,255,255,0.7);
  color: var(--darkest);
  font-size: 16px;
}


@media (max-width: 1080px) {
  .resource_grid,
  .path_grid,
  .audience_grid,
  .benefit_grid,
  .proof_strip,
  .signal_band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .resource_grid,
  .path_grid,
  .audience_grid,
  .benefit_grid,
  .proof_strip,
  .signal_band {
    grid-template-columns: 1fr;
  }

  .lp_hero_actions {
    flex-direction: column;
  }
}




/* =========================
   FAQ PAGE
   ========================= */

.faq_page {
	max-width: 980px;
}

.faq_page section {
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(18, 38, 63, 0.08);
}

.faq_page section:first-child {
	padding-top: 0;
}

.faq_page section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.faq_page .eyebrow {
	display: inline-block;
	margin-bottom: 12px;
}

.faq_page h1 {
	max-width: 720px;
	margin-bottom: 16px;
}

.faq_page .lead {
	max-width: 760px;
	font-size: 1.18rem;
	line-height: 1.65;
	color: #334a62;
	margin-bottom: 0;
}

.faq_page h2 {
	font-size: 1.9rem;
	line-height: 1.15;
	margin: 0 0 18px 0;
	padding-top: 4px;
	color: #12263f;
}

.faq_page strong {
	display: block;
	font-size: 1.08rem;
	line-height: 1.45;
	font-weight: 700;
	color: #12263f;
	margin: 0 0 8px 0;
}

.faq_page p {
	max-width: 760px;
	margin: 0 0 18px 0;
	font-size: 1.02rem;
	line-height: 1.72;
	color: #334a62;
}

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

.faq_page ul {
	max-width: 760px;
	margin: 4px 0 22px 0;
	padding-left: 22px;
}

.faq_page li {
	margin: 0 0 10px 0;
	padding-left: 4px;
	font-size: 1rem;
	line-height: 1.7;
	color: #334a62;
}

.faq_page li strong {
	display: inline;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	color: #12263f;
}

.faq_page em {
	font-style: italic;
	color: #12263f;
}

.faq_page a.link,
.faq_page a[href^="mailto:"] {
	color: #0c66c2;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.faq_page a.link:hover,
.faq_page a[href^="mailto:"]:hover {
	color: #084f96;
}

/* top intro block */

.faq_page section:first-of-type {
	padding-bottom: 26px;
	margin-bottom: 8px;
}

/* trust-forward section near the bottom */

.faq_page section:nth-last-of-type(2) {
	background: linear-gradient(180deg, rgba(12, 102, 194, 0.03) 0%, rgba(12, 102, 194, 0.00) 100%);
	border: 1px solid rgba(12, 102, 194, 0.10);
	border-radius: 18px;
	padding: 26px 26px 24px 26px;
	margin-top: 12px;
}

.faq_page section:nth-last-of-type(2) h2 {
	margin-bottom: 12px;
}

.faq_page section:nth-last-of-type(2) p {
	max-width: 780px;
}

/* final contact block */

.faq_page section:last-of-type {
	padding-top: 26px;
}

.faq_page section:last-of-type p {
	font-size: 1.05rem;
}

/* subtle motif line treatment */

.faq_page h2::before {
	content: "";
	display: block;
	width: 68px;
	height: 6px;
	border-radius: 999px;
	background: #12263f;
	margin-bottom: 14px;
	opacity: 0.14;
}

/* improve readability for dense answer sections */

.faq_page br {
	display: none;
}

/* optional reusable trust card class if you add one later */

.faq_trust_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 18px 0 8px 0;
	max-width: 900px;
}

.faq_trust_item {
	background: #f7fafc;
	border: 1px solid rgba(18, 38, 63, 0.08);
	border-radius: 16px;
	padding: 16px 16px 14px 16px;
}

.faq_trust_item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1rem;
}

.faq_trust_item p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* optional FAQ mini nav if added later */

.faq_toc {
	margin: 18px 0 10px 0;
	padding: 16px 18px;
	border: 1px solid rgba(18, 38, 63, 0.08);
	border-radius: 16px;
	background: #fbfcfe;
	max-width: 920px;
}

.faq_toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.faq_toc li {
	margin: 0;
	padding: 0;
}

.faq_toc a {
	color: #12263f;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid transparent;
}

.faq_toc a:hover {
	border-bottom-color: rgba(18, 38, 63, 0.35);
}

/* mobile */

@media (max-width: 900px) {
	.faq_page {
		max-width: 100%;
	}

	.faq_page .lead,
	.faq_page p,
	.faq_page ul {
		max-width: 100%;
	}

	.faq_trust_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.faq_page section {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.faq_page h1 {
		margin-bottom: 14px;
	}

	.faq_page .lead {
		font-size: 1.06rem;
		line-height: 1.62;
	}

	.faq_page h2 {
		font-size: 1.45rem;
		margin-bottom: 16px;
	}

	.faq_page h2::before {
		width: 54px;
		height: 5px;
		margin-bottom: 12px;
	}

	.faq_page strong {
		font-size: 1rem;
		line-height: 1.45;
	}

	.faq_page p,
	.faq_page li {
		font-size: 0.98rem;
		line-height: 1.68;
	}

	.faq_page ul {
		padding-left: 18px;
		margin-bottom: 18px;
	}

	.faq_page section:nth-last-of-type(2) {
		padding: 20px 18px 18px 18px;
		border-radius: 16px;
	}

	.faq_trust_grid {
		grid-template-columns: 1fr;
	}

	.faq_toc {
		padding: 14px 14px;
	}

	.faq_toc ul {
		display: block;
	}

	.faq_toc li + li {
		margin-top: 8px;
	}
}


a.toplink {
	font-size:14px;
	float:right;
}
/* Comparison page */
.comparison_page {
  --comparison-accent: var(--orange);
}

.comparison_hero {
  max-width: 920px;
}

.comparison_hero .lead {
  max-width: 900px;
}

.comparison_summary {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: var(--margin);
  align-items: start;
}

.comparison_matrix {
  display: block;
  margin-top: var(--margin-xl) !important;
  border-top: 1px solid rgba(17,22,22,0.12);
}

.comparison_row {
  display: grid;
  grid-template-columns: minmax(180px, .78fr) minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 0;
  border-bottom: 1px solid rgba(17,22,22,0.10);
}

.comparison_header {
  position: sticky;
  top: var(--header-height);
  z-index: 4;
  background: rgba(249,252,252,.94);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--darker);
  border-bottom-color: rgba(17,22,22,0.18);
}

.comparison_header > div,
.comparison_row > div {
  padding: 24px 26px;
}

.comparison_header > div + div,
.comparison_row > div + div {
  border-left: 1px solid rgba(17,22,22,0.08);
}

.comparison_topic h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.comparison_cell p {
  margin: 0;
  color: var(--darker);
  font-size: 18px;
  line-height: 1.62;
}

.persimi_cell {
  background: linear-gradient(180deg, rgba(255,255,255,0.70), rgba(232,237,237,0.30));
}

.persimi_cell p {
  color: var(--darkest);
}

.comparison_aside {
  margin-top: 16px;
  color: var(--darker);
  font-size: 16px;
  line-height: 1.55;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 16px 18px;
}

.comparison_takeaway {
  padding-top: var(--margin-s);
  border-top: 1px solid rgba(17,22,22,0.10);
}

.direct_ai h2,
.comparison_final_cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.direct_ai p {
  max-width: 900px;
}

.comparison_bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  padding-left: 0;
  margin: var(--margin) 0 0;
  list-style: none;
}

.comparison_bullets li {
  padding: 18px 20px;
  border-top: 1px solid rgba(17,22,22,0.12);
  color: var(--darkest);
  font-size: 18px;
  line-height: 1.55;
}

.comparison_final_cta .lead {
  max-width: 820px;
}

@media (max-width: 960px) {
  .comparison_summary {
    grid-template-columns: 1fr;
  }

  .comparison_header {
    display: none;
  }

  .comparison_matrix {
    border-top: 0;
  }

  .comparison_row {
    display: block;
    margin-bottom: var(--margin-s);
    border: 1px solid rgba(17,22,22,0.10);
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow-soft);
  }

  .comparison_row > div {
    padding: 20px;
    border-left: 0 !important;
  }

  .comparison_topic {
    border-bottom: 1px solid rgba(17,22,22,0.08);
  }

  .chat_cell::before,
  .persimi_cell::before {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--darker);
  }

  .chat_cell::before { content: "AI Chat"; }
  .persimi_cell::before { content: "Persimi"; }

  .persimi_cell {
    border-top: 1px solid rgba(17,22,22,0.08);
  }

  .comparison_bullets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .comparison_header > div,
  .comparison_row > div {
    padding: 18px 16px;
  }

  .comparison_cell p,
  .comparison_bullets li {
    font-size: 17px;
  }

  .comparison_aside {
    font-size: 15px;
  }
}




.head_to_head {
  padding: 32px 44px 32px 44px !important;
  width:100%;
  background-color:var(--blue);
  border-radius:12px;
  transition:.5s;
 }
 
 	.head_to_head:hover {
	 	filter:brightness(150%);
 	}
	
	.hth_content {
	  width:100%;
	  color:white !important;
	}

	.hth_content h2 {
	  margin-bottom: 14px;
	  color:white !important;
	}
	
	.hth_content p {
	  font-size:18px !important;
	  color:white !important;
	  line-height:24px !important;
	  max-width:100% !important;
	  width:100% !important;
	}
	
	.head_to_head p.eyebrow {
	  color:var(--lighter) !important;
	  font-size:12px !important;
	  margin-bottom:10px;
	}

/* Site cleanup and polish pass */
:root {
  --margin-xxxl: 132px;
  --content-narrow: 820px;
  --content-wide: 1280px;
}

.centered_cta {
  text-align: center;
}

.confidence_screenshot {
  width: 100%;
  margin-top: -24px;
  border: 1px solid rgba(17,22,22,0.08);
  box-shadow: var(--shadow-soft);
}

.faq_group_links {
  position: relative;
  top: -60px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  padding-left: 0;
  margin: 0 0 -24px;
}

.faq_group_links a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(17,22,22,0.10);
  background: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.2;
  color: var(--darkest);
}

.faq_group_links a:hover {
  border-color: rgba(238,111,0,0.35);
}

/* More consistent interactive states */
button:focus-visible,
a.button:focus-visible,
input.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(238,111,0,0.35);
  outline-offset: 3px;
}

/* Keep pricing cards visually even without forcing artificial text heights. */
.pricing_tier {
  min-height: 100%;
}

.pricing_tier .pricing_features {
  flex: 1;
}

.pricing_tier .pricing_features li {
  padding-bottom: 18px;
}

.pricing_tier .pricing_features li + li {
  margin-top: 18px;
}



/* Responsive refinements */
@media (max-width: 900px) {
  .layout {
    width: calc(100vw - 32px);
  }

  section {
    margin: 72px 0 !important;
  }

  .home_dashboard,
  .section_split,
  .comparison_summary {
    gap: 28px;
  }

  .confidence_screenshot {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .home .layout .lead {
    font-size: 24px;
  }

  .home .layout p {
    font-size: 19px;
  }

  .section_tinted,
  .section {
  }

  .faq_group_links {
    top: 0;
    margin-bottom: 24px;
  }
}


/* Persimi segment landing page rewrite */
.lp_rewrite_intro {
  max-width: 1080px;
}

.lp_url_panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(17,22,22,0.10);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(227,242,246,0.72) 100%);
  box-shadow: var(--shadow);
}

.lp_url_copy h2 {
  margin-bottom: 10px;
}

.home .layout .lp_url_copy p {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--darkest);
}

.lp_micro_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
}

.lp_micro_list li {
  padding: 7px 11px;
  border: 1px solid rgba(17,22,22,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--darkest);
  font-size: 15px;
  line-height: 1.2;
}

.lp_url_form {
  padding: 22px;
  border: 1px solid rgba(17,22,22,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.lp_url_form label {
  display: block;
  margin-bottom: 8px;
  color: var(--darkest);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp_url_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.lp_url_row input {
  width: 100%;
  min-height: var(--button-height);
  padding: 0 18px;
  border: 2px solid rgba(17,22,22,0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--darkest);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(17,22,22,0.04);
}

.lp_url_row input:focus {
  border-color: rgba(238,111,0,0.72);
  box-shadow: 0 0 0 4px rgba(238,111,0,0.12);
}

.home .layout .lp_form_note {
  margin: 12px 0 0;
  color: var(--darker);
  font-size: 15px;
  line-height: 1.45;
}

.lp_rewrite_band {
  align-items: center;
}

.lp_value_section p {
  max-width: 860px;
}

.lp_value_grid,
.lp_objection_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--margin-s);
  margin-top: var(--margin-s);
}

.lp_value_card,
.lp_objection {
  padding: 22px;
  border: 1px solid rgba(17,22,22,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.lp_value_card h3,
.lp_objection h3 {
  margin-bottom: 8px;
}

.home .layout .lp_value_card p,
.home .layout .lp_objection p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--darker);
}

.lp_objection_section {
  margin-top: var(--margin-xl) !important;
}

.lp_final_cta .button {
  margin-top: 8px;
}


div.landing_hero {
	margin-top:var(--margin);
	padding-left:344px;
	position:relative;
}

div.landing_hero img {
	position:absolute;
	top:0px;
	left:0px;
	width:300px;
	border:1px solid var(--lighter);
  box-shadow: var(--shadow-soft), var(--shadow-soft);
}

@media (max-width: 1080px) {
  .lp_url_panel,
  .lp_value_grid,
  .lp_objection_grid {
    grid-template-columns: 1fr;
  }

  .lp_url_row {
    grid-template-columns: 1fr;
  }

  .lp_url_row button {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .lp_url_panel,
  .lp_url_form,
  .lp_value_card,
  .lp_objection {
    padding: 20px;
    border-radius: 16px;
  }

  .lp_micro_list {
    display: block;
  }

  .lp_micro_list li + li {
    margin-top: 8px;
  }
}

/* Final conversion pass */
.hero_content_wide {
  width: min(980px, calc(100vw - 64px));
}

.hero_content_wide h1 {
  font-size: clamp(42px, 5.8vw, 74px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero_url_form {
  width: 100%;
  margin: 32px auto 0;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
  box-shadow: 0 16px 46px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  position:absolute;
  bottom:0px;
}

.hero_url_form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  font-weight: 700;
}

.hero_url_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.hero_url_row input {
  min-height: 56px;
  width: 100%;
  border: 2px solid rgba(255,255,255,.42);
  border-radius: 999px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--darkest);
  background: rgba(255,255,255,.96);
  outline: none;
}

.hero_url_row input:focus {
  border-color: var(--orange-light);
  box-shadow: 0 0 0 4px rgba(238,111,0,.18);
}

.hero_url_form .button {
  min-width: 154px;
}

.home .hero_url_form p,
.hero_url_form p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.84) !important;
  font-size: 15px !important;
  line-height: 1.35;
}

.hero_actions_secondary {
  margin-top: 18px;
}

.secondary_button {
  background: var(--white) !important;
  color: var(--blue) !important;
  border-color: rgba(14,73,90,.16) !important;
}

.secondary_button:hover {
  color: var(--orange) !important;
}

.value_statement {
  text-align: center;
  padding-left: min(56px, 5vw) !important;
  padding-right: min(56px, 5vw) !important;
}

.value_statement h2,
.value_statement p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.proof_strip,
.sample_metric_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: var(--margin-xl) 0;
}

.proof_strip div,
.sample_metric_grid div {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(17,22,22,.09);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof_strip strong,
.sample_metric_grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.15;
}

.proof_strip span,
.sample_metric_grid span {
  display: block;
  color: var(--darker);
  font-size: 16px;
  line-height: 1.35;
}

.sample_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--margin-s);
  margin: var(--margin-xl) 0;
}

.sample_card {
  padding: 28px;
  border: 1px solid rgba(17,22,22,.10);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample_card ul {
  margin-top: 14px;
}

.sample_confidence {
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--darkest) !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}

.feature_path {
  background: linear-gradient(135deg, rgba(227,242,246,.88), rgba(255,255,255,.96));
  border-color: rgba(14,73,90,.18) !important;
}

@media (max-width: 960px) {
  .proof_strip,
  .sample_metric_grid,
  .sample_cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero_url_row {
    grid-template-columns: 1fr;
  }
  .hero_url_form .button {
    width: 100%;
  }
  .proof_strip,
  .sample_metric_grid,
  .sample_cards {
    grid-template-columns: 1fr;
  }
  .hero_content_wide {
    width: calc(100vw - 32px);
  }
}
