:root {
  --emgi-ink: #0b1020;
  --emgi-ink-soft: #111832;
  --emgi-violet: #5b2eff;
  --emgi-blue: #2f6bff;
  --emgi-blue-soft: #8ba8ff;
  --emgi-mist: #eef3fb;
  --emgi-cloud: #f7f9fd;
  --emgi-white: #ffffff;
  --emgi-border: rgba(11, 16, 32, 0.08);
  --emgi-shadow-soft: 0 24px 80px rgba(11, 16, 32, 0.1);
  --emgi-radius-lg: 28px;
  --emgi-radius-xl: 40px;
  --emgi-font-heading: "Manrope", sans-serif;
  --emgi-font-body: "Public Sans", sans-serif;
  --emgi-shell: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(139, 168, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #eef3fb 100%);
  color: var(--emgi-ink);
  font-family: var(--emgi-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  width: var(--emgi-shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 253, 0.8);
  border-bottom: 1px solid rgba(11, 16, 32, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.site-brand img {
  width: 156px;
  background: transparent;
}

.site-nav {
  position: relative;
  z-index: 101;
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(11, 16, 32, 0.76);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--emgi-violet);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emgi-violet), var(--emgi-blue));
  color: var(--emgi-white);
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(91, 46, 255, 0.22);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--emgi-ink);
  border: 1px solid rgba(11, 16, 32, 0.08);
  box-shadow: none;
}

.hero {
  padding: 72px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.card,
.roadmap__step,
.founder,
.faq-item,
.proof-strip,
.trust-bar__grid > div,
.site-footer__grid > div {
  border: 1px solid var(--emgi-border);
  box-shadow: var(--emgi-shadow-soft);
}

.hero__content,
.hero-card,
.card,
.roadmap__step,
.proof-strip,
.faq-item {
  border-radius: var(--emgi-radius-xl);
  background: rgba(255, 255, 255, 0.86);
}

.hero__content {
  padding: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(91, 46, 255, 0.1);
  color: var(--emgi-violet);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--emgi-font-heading);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

.hero__lede,
.section-heading p,
.card p,
.roadmap__step p,
.faq-item p,
.founder__content p,
.site-footer p {
  color: rgba(11, 16, 32, 0.72);
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--emgi-mist);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__panel {
  padding: 16px;
  border-radius: calc(var(--emgi-radius-xl) + 4px);
  background:
    radial-gradient(circle at top right, rgba(91, 46, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #0f1630 0%, #151d3a 100%);
}

.hero-card {
  height: 100%;
  padding: 34px;
  color: var(--emgi-white);
  background: linear-gradient(180deg, rgba(15, 22, 48, 0.84) 0%, rgba(19, 29, 62, 0.94) 100%);
}

.hero-card__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--emgi-blue-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.hero-card__stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-card__stats strong {
  display: block;
  font-family: var(--emgi-font-heading);
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.hero-card__stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.journey-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.journey-stack__row,
.buyer-funnel__row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.journey-stack__row span,
.buyer-funnel__row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.journey-stack__bar,
.buyer-funnel__bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #0b1020;
  font-family: var(--emgi-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.journey-stack__bar--blue,
.buyer-funnel__bar--blue {
  background: #74b5f7;
}

.journey-stack__bar--violet,
.buyer-funnel__bar--violet {
  background: #ab86f9;
}

.journey-stack__bar--mint,
.buyer-funnel__bar--mint {
  background: #72dccf;
}

.journey-stack__bar--gold,
.buyer-funnel__bar--gold {
  background: #f4d56e;
}

.buyer-funnel__bar--rose {
  background: #f59ca7;
}

.trust-bar {
  padding-bottom: 32px;
}

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

.trust-bar__grid > div {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
}

.trust-bar span {
  display: block;
  margin-bottom: 8px;
  color: rgba(11, 16, 32, 0.58);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-bar strong {
  font-family: var(--emgi-font-heading);
  font-size: 1.1rem;
}

.section {
  padding: 48px 0;
}

.section--journey {
  padding-top: 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: end;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  padding: 28px;
}

.card--feature {
  min-height: 220px;
}

.section--problem .card:nth-child(2),
.cards--two-wide .card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(91, 46, 255, 0.04) 0%, rgba(47, 107, 255, 0.08) 100%),
    #fff;
}

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

.buyer-funnel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at right top, rgba(47, 107, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.98) 0%, rgba(17, 24, 50, 0.95) 100%);
  box-shadow: var(--emgi-shadow-soft);
}

.buyer-funnel__left {
  display: grid;
  gap: 18px;
}

.buyer-funnel__right {
  display: grid;
  gap: 16px;
  align-content: start;
}

.buyer-funnel__callout {
  padding: 24px;
  border: 1px solid rgba(116, 181, 247, 0.18);
  border-radius: 28px;
  background: rgba(28, 41, 83, 0.8);
  color: var(--emgi-white);
}

.buyer-funnel__callout--soft {
  background: rgba(255, 255, 255, 0.08);
}

.buyer-funnel__callout p {
  color: rgba(255, 255, 255, 0.72);
}

.roadmap--flow {
  align-items: stretch;
}

.roadmap__step {
  padding: 28px;
  position: relative;
}

.roadmap__step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--emgi-violet);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.roadmap--flow .roadmap__step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(47, 107, 255, 0.38);
  font-family: var(--emgi-font-heading);
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at right top, rgba(47, 107, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.97) 0%, rgba(17, 24, 50, 0.94) 100%);
  color: var(--emgi-white);
}

.proof-strip ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip li + li {
  margin-top: 12px;
}

.section--founder {
  padding-top: 64px;
}

.founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.86);
}

.founder__image-wrap {
  min-height: 100%;
  background: linear-gradient(180deg, #dfe8fb 0%, #eef3fb 100%);
}

.founder__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder__content {
  padding: 40px;
}

.founder__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  font-weight: 700;
}

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

.faq-item {
  padding: 28px;
}

.site-footer {
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at top right, rgba(91, 46, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #05070d 0%, #0b1020 100%);
  color: var(--emgi-white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 20px;
}

.site-footer__grid > div {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
}

.site-footer__logo {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.site-footer__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  letter-spacing: -0.05em;
}

.site-footer__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 10px;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  font-weight: 600;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: var(--emgi-white);
}

.site-footer__cta-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.site-footer__cta-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
}

.site-footer__cta-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emgi-violet), var(--emgi-blue));
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .text-link {
  color: #9fb3ff;
}

.prose {
  padding: 52px 0 80px;
}

.service-hero {
  padding: 72px 0 36px;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.service-hero__content,
.service-hero__panel,
.pricing-card {
  border: 1px solid var(--emgi-border);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--emgi-shadow-soft);
}

.service-hero__content,
.service-summary,
.pricing-card {
  padding: 34px;
}

.service-hero__panel {
  padding: 16px;
  background:
    radial-gradient(circle at right top, rgba(91, 46, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.98) 0%, rgba(17, 24, 50, 0.95) 100%);
}

.service-summary {
  height: 100%;
  border-radius: 26px;
  color: var(--emgi-white);
  background: rgba(17, 24, 50, 0.82);
}

.service-summary span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--emgi-blue-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-summary ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.service-summary p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.authority-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.authority-snapshot div {
  min-height: 140px;
  padding: 20px;
  border: 1px solid rgba(114, 220, 207, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.authority-snapshot div:nth-child(2),
.authority-snapshot div:nth-child(3) {
  border-color: rgba(171, 134, 249, 0.24);
}

.authority-snapshot strong,
.authority-snapshot small {
  display: block;
}

.authority-snapshot strong {
  color: var(--emgi-white);
  font-family: var(--emgi-font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.authority-snapshot small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  line-height: 1.35;
}

.authority-snapshot--llm div {
  border-color: rgba(171, 134, 249, 0.28);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--emgi-violet);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--emgi-font-heading);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(91, 46, 255, 0.05) 0%, rgba(47, 107, 255, 0.1) 100%),
    #fff;
}

.pricing-grid--premium {
  gap: 28px;
}

.pricing-card--premium {
  min-height: 560px;
  padding: 42px;
  border: 2px solid rgba(114, 220, 207, 0.76);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(114, 220, 207, 0.12), transparent 34%),
    linear-gradient(180deg, #111a33 0%, #101831 100%);
  color: var(--emgi-white);
  box-shadow: 0 28px 90px rgba(11, 16, 32, 0.22);
}

.pricing-card--premium.pricing-card--featured {
  border-color: rgba(171, 134, 249, 0.9);
  background:
    radial-gradient(circle at top right, rgba(171, 134, 249, 0.16), transparent 34%),
    linear-gradient(180deg, #172143 0%, #121b37 100%);
}

.pricing-card--premium span {
  color: #72dccf;
}

.pricing-card--premium.pricing-card--featured span,
.pricing-card--premium.pricing-card--featured h3 {
  color: #ab86f9;
}

.pricing-card--premium strong {
  margin: 46px 0 10px;
  color: var(--emgi-white);
  font-size: clamp(3rem, 5.8vw, 5.3rem);
}

.pricing-card--premium h3 {
  color: #72dccf;
  font-size: 1.45rem;
}

.pricing-card--premium p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.pricing-pills {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-pills li {
  padding: 18px 22px;
  border-radius: 18px;
  background: #74b5f7;
  color: #091020;
  text-align: center;
  font-weight: 900;
}

.pricing-pills li:nth-child(even) {
  background: #ab86f9;
  color: var(--emgi-white);
}

.pricing-card--featured .pricing-pills li:nth-child(odd) {
  background: #72dccf;
}

.pricing-card--featured .pricing-pills li:nth-child(even) {
  background: #f4d56e;
  color: #091020;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-card,
.case-study-sidebar-card,
.case-study-metric,
.case-study-layout__main {
  border: 1px solid var(--emgi-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--emgi-shadow-soft);
}

.case-card {
  overflow: hidden;
}

.case-card__link {
  display: block;
  height: 100%;
}

.case-card__image {
  background: linear-gradient(180deg, #dce7ff 0%, #eef3fb 100%);
}

.case-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.case-card__content {
  padding: 26px;
}

.case-card__content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--emgi-violet);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-card__cta,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--emgi-violet);
  font-weight: 800;
}

.resources-cta {
  margin-top: 28px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--emgi-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--emgi-shadow-soft);
  font-weight: 700;
}

.pagination .current {
  background: linear-gradient(135deg, var(--emgi-violet), var(--emgi-blue));
  color: var(--emgi-white);
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.case-study-layout__main,
.case-study-sidebar-card {
  padding: 30px;
}

.case-study-layout__main > *:first-child {
  margin-top: 0;
}

.case-study-metrics {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.case-study-metric {
  padding: 22px;
}

.case-study-metric span {
  display: block;
  margin-bottom: 8px;
  color: rgba(11, 16, 32, 0.56);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-metric strong {
  font-family: var(--emgi-font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.case-study-sidebar-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.home-hero {
  padding: 86px 0 42px;
  text-align: center;
}

.home-hero__inner {
  max-width: 920px;
}

.home-hero h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(3rem, 5.4vw, 5.1rem);
}

.service-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 4.9vw, 4.85rem);
}

.home-hero p {
  max-width: 740px;
  margin: 22px auto 0;
  color: rgba(11, 16, 32, 0.68);
  font-size: 1.08rem;
}

.home-hero .button {
  margin-top: 28px;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--emgi-border);
  border-bottom: 1px solid var(--emgi-border);
}

.home-hero__stats span {
  padding: 18px 22px;
  color: rgba(11, 16, 32, 0.82);
  font-family: var(--emgi-font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-hero__stats span + span {
  border-left: 1px solid var(--emgi-border);
}

.home-hero__stats--mini {
  max-width: 660px;
  margin: 24px auto 0;
}

.logo-cloud {
  padding: 34px 0 42px;
  overflow: hidden;
}

.logo-cloud__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 64px;
  align-items: center;
}

.logo-cloud__track img {
  width: 100%;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  opacity: 0.82;
  filter: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo-cloud__track img:hover,
.logo-cloud__track img:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.section--compact {
  padding-top: 12px;
}

.testimonial-feature {
  max-width: 900px;
}

.result-grid,
.case-tile-grid,
.differentiator-grid,
.latest-grid {
  display: grid;
  gap: 18px;
}

.result-grid,
.latest-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.result-card,
.case-mini,
.differentiator-grid article,
.latest-card,
.problem-points article,
.journey-map article,
.journey-map__funnel div,
.testimonial-slide {
  border: 1px solid var(--emgi-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--emgi-shadow-soft);
}

.result-card {
  padding: 24px;
}

.result-card span,
.case-mini span,
.differentiator-grid span,
.latest-card span,
.roadmap-timeline span {
  display: block;
  color: rgba(11, 16, 32, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-card p {
  margin: 12px 0 10px;
  color: rgba(11, 16, 32, 0.68);
  font-weight: 700;
}

.result-card strong,
.case-mini strong,
.differentiator-grid strong {
  display: block;
  font-family: var(--emgi-font-heading);
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.result-card small,
.case-mini small,
.differentiator-grid p {
  display: block;
  margin-top: 8px;
  color: rgba(11, 16, 32, 0.58);
  font-weight: 700;
}

.result-card a,
.case-mini small {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 13px;
  border: 1px solid var(--emgi-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.testimonial-slider {
  display: grid;
  grid-auto-columns: minmax(620px, 0.9fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 290px;
  padding: 30px;
  scroll-snap-align: start;
}

.testimonial-slide--feature {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(91, 46, 255, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.testimonial-slide--image {
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--emgi-white);
}

.testimonial-slide__image {
  width: 100%;
  min-height: 154px;
  object-fit: cover;
  object-position: left center;
}

.testimonial-slide__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--emgi-violet), var(--emgi-blue));
  color: var(--emgi-white);
  font-family: var(--emgi-font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.testimonial-slide__mark--text {
  background:
    radial-gradient(circle at top right, rgba(114, 220, 207, 0.32), transparent 42%),
    linear-gradient(135deg, #111a33, #0b1020);
}

.testimonial-slide__logo {
  width: 112px;
  max-height: 104px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--emgi-border);
  border-radius: 24px;
  background: var(--emgi-white);
}

.testimonial-slide__logo--wide {
  width: 128px;
  object-position: center;
}

.testimonial-slide blockquote {
  margin: 0;
  font-family: var(--emgi-font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.04em;
}

.testimonial-slide cite {
  display: block;
  margin-top: 10px;
  color: rgba(11, 16, 32, 0.58);
  font-style: normal;
  font-weight: 700;
}

.section--problem-story {
  background: rgba(255, 255, 255, 0.5);
}

.problem-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.problem-story__copy > p {
  color: rgba(11, 16, 32, 0.68);
  font-size: 1.05rem;
}

.problem-story__copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 900;
}

.problem-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.problem-points article {
  padding: 20px 22px;
}

.problem-points h3 {
  font-size: 1.05rem;
}

.problem-points p {
  margin-bottom: 0;
  color: rgba(11, 16, 32, 0.68);
}

.problem-story__surfaces {
  display: grid;
  gap: 16px;
}

.problem-story__surfaces div {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 16, 32, 0.96), rgba(17, 24, 50, 0.92));
  color: var(--emgi-white);
  box-shadow: var(--emgi-shadow-soft);
}

.problem-story__surfaces div:nth-child(2) {
  margin-left: 36px;
}

.problem-story__surfaces div:nth-child(3) {
  margin-left: 72px;
}

.problem-story__surfaces strong,
.problem-story__surfaces span {
  display: block;
}

.problem-story__surfaces span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.search-narrative-image,
.service-visual-card img {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.funnel-image-wrap {
  margin-top: 30px;
}

.funnel-image-wrap--service {
  margin-top: 34px;
}

.funnel-image {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--emgi-white);
  box-shadow: none;
}

.interactive-funnel {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin-top: 44px;
}

.interactive-funnel__stage {
  overflow: hidden;
  border: 1px solid rgba(91, 46, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(91, 46, 255, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(91, 46, 255, 0.1);
}

.interactive-funnel__stage--top {
  margin-inline: 0;
}

.interactive-funnel__stage--middle {
  margin-inline: 42px;
}

.interactive-funnel__stage--bottom {
  margin-inline: 90px;
}

.interactive-funnel__stage summary {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 106px;
  padding: 24px 34px;
  cursor: pointer;
  list-style: none;
}

.interactive-funnel__stage summary::-webkit-details-marker {
  display: none;
}

.interactive-funnel__stage summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(91, 46, 255, 0.12);
  color: var(--emgi-violet);
  font-family: var(--emgi-font-heading);
  font-size: 1.35rem;
  font-weight: 900;
}

.interactive-funnel__stage[open] summary::after {
  content: "−";
}

.interactive-funnel__stage summary span,
.interactive-funnel__stage summary strong,
.interactive-funnel__stage summary em {
  display: block;
}

.interactive-funnel__stage summary span {
  color: rgba(11, 16, 32, 0.58);
  font-size: 0.98rem;
  font-weight: 800;
}

.interactive-funnel__stage summary strong {
  color: var(--emgi-violet);
  font-family: var(--emgi-font-heading);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.interactive-funnel__stage summary em {
  color: rgba(11, 16, 32, 0.76);
  font-family: var(--emgi-font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.interactive-funnel__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 34px 34px;
}

.interactive-funnel__panel article {
  padding: 24px;
  border: 1px solid var(--emgi-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.interactive-funnel__panel h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.interactive-funnel__panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(11, 16, 32, 0.72);
  font-weight: 650;
}

.service-visual-card {
  align-self: center;
}

.section-heading--center {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.journey-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.journey-map__col,
.journey-map__funnel {
  display: grid;
  gap: 16px;
}

.journey-map__col > span,
.journey-map__funnel > span {
  justify-self: center;
  padding: 7px 14px;
  border: 1px solid var(--emgi-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(11, 16, 32, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
}

.journey-map article {
  padding: 20px;
}

.journey-map article h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.journey-map article ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 16, 32, 0.68);
  font-size: 0.9rem;
}

.journey-map__funnel div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 24px;
  text-align: center;
  clip-path: polygon(8% 0, 92% 0, 82% 100%, 18% 100%);
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.96), rgba(220, 229, 244, 0.92));
  box-shadow: none;
  font-family: var(--emgi-font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.journey-map__funnel div:nth-child(3) {
  min-height: 130px;
  margin-inline: 14px;
}

.journey-map__funnel div:nth-child(4) {
  min-height: 110px;
  margin-inline: 34px;
}

.journey-map__cta {
  margin-top: 34px;
  text-align: center;
}

.section--roadmap-dark,
.section--final-cta,
.section--founder-band {
  background: #05070d;
  color: var(--emgi-white);
}

.section--roadmap-dark {
  padding: 76px 0;
}

.section--roadmap-dark .section-heading p,
.section--founder-band p {
  color: rgba(255, 255, 255, 0.7);
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.roadmap-timeline article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.roadmap-timeline article:hover {
  border-color: rgba(139, 168, 255, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.roadmap-timeline h3 {
  margin: 16px 0 8px;
  font-size: 1.3rem;
}

.roadmap-timeline strong {
  display: block;
  color: var(--emgi-white);
  font-size: 0.98rem;
  line-height: 1.35;
}

.roadmap-timeline p,
.roadmap-timeline small {
  color: rgba(255, 255, 255, 0.66);
}

.roadmap-timeline small {
  display: block;
  margin-top: 16px;
}

.roadmap-timeline small strong {
  color: var(--emgi-blue-soft);
  font-weight: 900;
}

.case-mini {
  display: block;
  min-height: 210px;
  padding: 26px;
}

.case-mini h3 {
  margin: 14px 0 18px;
  font-size: 1.32rem;
}

.section--testimonial-grid {
  background:
    radial-gradient(circle at top left, rgba(91, 46, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 243, 251, 0.72));
}

.client-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.client-proof-card {
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(11, 16, 32, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(91, 46, 255, 0.06), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--emgi-shadow-soft);
}

.client-proof-card__logo {
  width: 150px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}

.client-proof-card__logo--wide {
  width: 190px;
}

.client-proof-card blockquote {
  margin: 0;
  font-family: var(--emgi-font-heading);
  color: rgba(11, 16, 32, 0.92);
  font-size: 1.16rem;
  font-weight: 850;
  line-height: 1.42;
  letter-spacing: -0.04em;
}

.client-proof-card cite {
  display: block;
  margin-top: 20px;
  color: rgba(11, 16, 32, 0.58);
  font-style: normal;
  font-weight: 800;
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: end;
}

.founder-band img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 36px 36px 0 0;
}

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

.differentiator-grid article {
  min-height: 210px;
  padding: 26px;
}

.differentiator-grid article:nth-child(2),
.differentiator-grid article:nth-child(4) {
  background: var(--emgi-ink);
  color: var(--emgi-white);
}

.differentiator-grid article:nth-child(3),
.differentiator-grid article:nth-child(5) {
  background: rgba(11, 16, 32, 0.1);
}

.differentiator-grid article:nth-child(2) p,
.differentiator-grid article:nth-child(4) p,
.differentiator-grid article:nth-child(2) span,
.differentiator-grid article:nth-child(4) span {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list--single {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.faq-list--single .faq-item {
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: none;
}

.faq-list--single .faq-item h3 {
  font-size: 1.02rem;
}

.faq-list--single .faq-item p {
  margin-bottom: 0;
}

.section--final-cta {
  padding: 70px 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 640px;
}

.latest-heading {
  align-items: center;
}

.latest-heading .button {
  justify-self: end;
}

.latest-card {
  overflow: hidden;
}

.latest-card a {
  display: block;
  height: 100%;
  padding: 18px;
}

.latest-card__thumb {
  min-height: 190px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 46, 255, 0.09), rgba(47, 107, 255, 0.1));
  overflow: hidden;
}

.latest-card__thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.latest-card h3 {
  margin-top: 8px;
  font-size: 1.22rem;
}

.section--editor-content {
  padding-top: 18px;
}

.editor-content {
  padding: 34px;
  border: 1px solid var(--emgi-border);
  border-radius: var(--emgi-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--emgi-shadow-soft);
}

.editor-content > *:first-child {
  margin-top: 0;
}

.editor-content > *:last-child {
  margin-bottom: 0;
}

.editor-content p,
.editor-content li {
  color: rgba(11, 16, 32, 0.72);
  font-size: 1.04rem;
}

.editor-content a {
  color: var(--emgi-violet);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 1040px) {
  .site-header__inner,
  .site-footer__grid,
  .hero__grid,
  .service-hero__grid,
  .section-heading--split,
  .cards--three,
  .cards--two-wide,
  .case-study-grid,
  .case-study-layout,
  .roadmap,
  .proof-strip,
  .founder,
  .faq-list,
  .pricing-grid,
  .trust-bar__grid,
  .problem-story,
  .journey-map,
  .roadmap-timeline,
  .founder-band,
  .differentiator-grid,
  .result-grid,
  .latest-grid,
  .client-proof-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    padding: 18px 0;
  }

  .roadmap--flow .roadmap__step:not(:last-child)::after {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-header__inner > .button {
    width: fit-content;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }

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

  .problem-story__surfaces div,
  .problem-story__surfaces div:nth-child(2),
  .problem-story__surfaces div:nth-child(3) {
    margin-left: 0;
  }

  .founder-band {
    align-items: center;
  }

  .interactive-funnel__stage,
  .interactive-funnel__stage--middle,
  .interactive-funnel__stage--bottom {
    margin-inline: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__content,
  .hero-card,
  .service-hero__content,
  .service-summary,
  .card,
  .case-study-layout__main,
  .case-study-sidebar-card,
  .case-study-metric,
  .roadmap__step,
  .buyer-funnel,
  .buyer-funnel__callout,
  .pricing-card,
  .faq-item,
  .founder__content,
  .proof-strip,
  .site-footer__grid > div {
    padding: 22px;
  }

  .journey-stack__row,
  .buyer-funnel__row {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.15;
  }

  .hero__lede,
  .section-heading p,
  .card p,
  .roadmap__step p,
  .faq-item p,
  .founder__content p,
  .site-footer p {
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .site-brand img {
    width: 142px;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.88rem;
  }

  .button,
  .button--secondary,
  .button--ghost {
    width: 100%;
    min-height: 50px;
  }

  .hero__actions,
  .resources-cta {
    width: 100%;
  }

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

  .journey-stack__bar,
  .buyer-funnel__bar {
    min-height: 48px;
    font-size: 1rem;
    text-align: center;
  }

  .section {
    padding: 36px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .site-footer {
    padding: 28px 0 52px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 42px 0 24px;
  }

  .home-hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .home-hero p {
    font-size: 1rem;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }

  .home-hero__stats span + span {
    border-top: 1px solid var(--emgi-border);
    border-left: 0;
  }

  .logo-cloud__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .logo-cloud__track img {
    height: 46px;
    max-height: 46px;
  }

  .testimonial-slider {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
  }

  .testimonial-slide blockquote {
    font-size: 1.05rem;
  }

  .testimonial-slide__image {
    min-height: 120px;
  }

  .pricing-card--premium {
    min-height: auto;
  }

  .pricing-card--premium strong {
    margin-top: 22px;
    font-size: clamp(2.6rem, 12vw, 3.4rem);
  }

  .pricing-pills {
    margin-top: 24px;
  }

  .pricing-pills li {
    padding: 14px 16px;
  }

  .funnel-image-wrap {
    width: min(1180px, calc(100vw - 20px));
  }

  .interactive-funnel {
    gap: 16px;
    margin-top: 28px;
  }

  .interactive-funnel__stage summary {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 22px;
  }

  .interactive-funnel__stage summary em {
    grid-column: 1 / -1;
    font-size: 1.12rem;
  }

  .interactive-funnel__stage summary strong {
    font-size: 1.18rem;
  }

  .interactive-funnel__panel {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .interactive-funnel__panel article {
    padding: 20px;
  }

  .journey-map__funnel div,
  .journey-map__funnel div:nth-child(3),
  .journey-map__funnel div:nth-child(4) {
    min-height: auto;
    margin-inline: 0;
    clip-path: none;
  }

  .case-tile-grid,
  .differentiator-grid,
  .result-grid,
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .founder-band img {
    max-height: 300px;
  }

  .client-proof-card {
    min-height: auto;
    padding: 24px;
  }

  .client-proof-card blockquote {
    font-size: 1.02rem;
  }

  .final-cta {
    display: grid;
    text-align: left;
  }

  .latest-heading .button {
    justify-self: stretch;
  }
}
