.app-story-page {
  --story-black: #2b2b2b;
  --story-green: #00ca64;
  --story-dark-green: #027f48;
  --story-mint: #ccffd6;
  --story-aqua: #99f2dd;
  background: #fff;
  color: var(--story-black);
  font-family: "Raleway", Arial, sans-serif;
  overflow: hidden;
}

body:has(.app-story-page) {
  overflow-x: hidden;
}

.app-story-page *,
.app-story-page *::before,
.app-story-page *::after {
  box-sizing: border-box;
}

.app-story-page p,
.app-story-page blockquote,
.app-story-page ul,
.app-story-page ol {
  float: none;
  position: static;
  width: auto;
}

.app-story-page p {
  color: var(--story-black);
}

.app-story-eyebrow {
  color: var(--story-dark-green);
  display: block;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 16px;
  font-variation-settings: "wdth" 55, "wght" 800;
  letter-spacing: .05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.app-story-section-heading {
  margin-bottom: 70px;
  max-width: 970px;
}

.app-story-section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.app-story-section-heading h2,
.app-story-founder h2,
.app-story-final h2 {
  color: var(--story-black);
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(52px, 6vw, 92px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .92;
  margin: 0;
  text-transform: uppercase;
}

.app-story-section-heading h2 em {
  color: var(--story-dark-green);
  font-style: normal;
}

.app-story-section-heading > p {
  font-size: 21px;
  line-height: 1.5;
  margin: 28px auto 0;
  max-width: 760px;
}

/* Hero */
.app-story-hero {
  background: var(--story-mint);
  min-height: calc(100vh - 100px);
  padding: 110px 0 100px;
  position: relative;
}

.app-story-hero::before {
  background: radial-gradient(circle, rgba(0, 202, 100, .2) 0 2px, transparent 3px);
  background-size: 24px 24px;
  content: "";
  inset: 0;
  opacity: .48;
  pointer-events: none;
  position: absolute;
}

.app-story-hero .col-center2 {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  position: relative;
}

.app-story-hero-copy,
.app-story-hero-art {
  min-width: 0;
}

.app-story-hero-copy {
  position: relative;
  z-index: 2;
}

.app-story-hero h1 {
  color: var(--story-black);
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(60px, 6.2vw, 102px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .88;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.app-story-hero h1 em {
  color: var(--story-dark-green);
  font-style: normal;
}

.app-story-hero-copy > p {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
}

.app-story-actions {
  align-items: stretch;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.app-story-actions a {
  align-items: center;
  background: var(--story-black);
  border: 2px solid var(--story-black);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 15px;
  font-variation-settings: "wdth" 55, "wght" 800;
  justify-content: center;
  line-height: 1;
  min-height: 54px;
  min-width: 210px;
  padding: 16px 26px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.app-story-actions a.secondary {
  background: var(--story-green);
  border-color: var(--story-green);
  color: var(--story-black);
}

.app-story-actions a:hover,
.app-story-actions a:focus-visible {
  background: var(--story-dark-green);
  border-color: var(--story-dark-green);
  color: #fff;
  transform: translateY(-2px);
}

.app-story-hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 690px;
  padding: 30px 0 55px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.app-story-laptop {
  filter: drop-shadow(0 28px 30px rgba(43, 43, 43, .22));
  position: relative;
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
  transform-origin: center;
  width: 100%;
}

.app-story-laptop-screen {
  background: var(--story-black);
  border: 12px solid var(--story-black);
  border-bottom-width: 16px;
  border-radius: 20px 20px 8px 8px;
  overflow: hidden;
  position: relative;
}

.app-story-laptop-screen::before {
  background: #707070;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  top: -8px;
  transform: translateX(-50%);
  width: 4px;
  z-index: 2;
}

.app-story-laptop-screen img {
  display: block;
  height: auto;
  width: 100%;
}

.app-story-laptop-base {
  background: linear-gradient(180deg, #e5e8e8 0%, #aeb4b5 100%);
  border-radius: 2px 2px 14px 14px;
  height: 24px;
  left: -5%;
  position: relative;
  width: 110%;
}

.app-story-laptop-base::after {
  background: #979d9e;
  border-radius: 0 0 7px 7px;
  content: "";
  height: 7px;
  left: 42%;
  position: absolute;
  top: 0;
  width: 16%;
}

/* Parent choice overload */
.app-story-questions {
  background: var(--story-black);
  color: #fff;
  padding: 150px 0;
}

#choice-overload,
#roadmap,
#compare {
  scroll-margin-top: 86px;
}

.app-story-questions .col-center2 {
  display: grid;
  gap: 42px 90px;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
}

.app-story-questions .app-story-eyebrow {
  color: var(--story-green);
}

.app-story-questions-title h2 {
  color: #fff;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(52px, 5.5vw, 88px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .94;
  margin: 0;
  text-transform: uppercase;
}

.app-story-option-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.app-story-option-cloud span {
  align-items: center;
  background: #393939;
  border: 1px solid #5d5d5d;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.app-story-option-cloud span::before {
  background: var(--story-green);
  border-radius: 50%;
  content: "";
  height: 7px;
  margin-right: 8px;
  width: 7px;
}

.app-story-question-list {
  align-self: start;
}

.app-story-question-list p {
  border-bottom: 1px solid #686868;
  color: #fff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.32;
  margin: 0;
  padding: 23px 0;
}

.app-story-question-list p:first-child {
  border-top: 1px solid #686868;
}

.app-story-question-list em {
  color: var(--story-green);
  font-style: normal;
}

.app-story-question-answer {
  border-left: 5px solid var(--story-green);
  grid-column: 2;
  padding: 4px 0 4px 28px;
}

.app-story-question-answer p {
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  max-width: 780px;
}

/* The right stage for each kind of prep */
.app-story-stage-section {
  background: #fff;
  padding: 165px 0;
}

.app-story-stage-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.app-story-stage-path {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-story-stage-grid article {
  border: 2px solid var(--story-black);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 400px;
  padding: 30px 30px 46px;
}

.app-story-stage-path:nth-child(1) article { background: #f5f5f5; }
.app-story-stage-path:nth-child(2) article { background: var(--story-mint); }
.app-story-stage-path:nth-child(3) article { background: var(--story-green); }

.app-story-stage-grid article > span,
.app-story-feature-copy > span,
.app-story-coordination-problem > span,
.app-story-coordination-solution-copy > span,
.app-story-checkpoint-ui > span {
  color: var(--story-dark-green);
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 14px;
  font-variation-settings: "wdth" 55, "wght" 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.app-story-stage-grid i {
  align-items: center;
  background: #fff;
  border: 2px solid var(--story-black);
  border-radius: 50%;
  display: flex;
  font-size: 26px;
  height: 64px;
  justify-content: center;
  margin: 30px 0 0;
  width: 64px;
}

.app-story-stage-format {
	align-self: stretch;
	background: #fff;
	border: 2px solid var(--story-black);
	border-radius: 18px;
	box-shadow: 6px 7px 0 var(--story-mint);
	margin: 0 6px 7px 0;
	min-height: 126px;
	padding: 18px 20px;
}

.app-story-stage-format span,
.app-story-stage-format strong {
  display: block;
  line-height: 1.2;
}

.app-story-stage-format span {
  color: var(--story-dark-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.app-story-stage-format strong {
	color: var(--story-black);
	font-family: "adapt-variable", Impact, sans-serif;
	font-size: 22px;
	font-variation-settings: "wdth" 55, "wght" 800;
	font-weight: 850;
	text-transform: uppercase;
}

.app-story-stage-format small {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	margin-top: 8px;
}

.app-story-stage-link {
	height: 68px;
	position: relative;
}

.app-story-stage-link::before {
	background: var(--story-black);
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-1px);
	width: 3px;
}

.app-story-stage-link::after {
	background: var(--story-green);
	border: 3px solid var(--story-black);
	border-radius: 50%;
	bottom: -7px;
	content: "";
	height: 15px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 15px;
}

.app-story-stage-grid h3 {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 38px;
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: 1;
  margin: 30px 0 15px;
}

.app-story-stage-grid p {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}

.app-story-coordination-problem {
  align-items: end;
  background: var(--story-black);
  border-radius: 34px;
  color: #fff;
  display: grid;
  gap: 8px 40px;
  grid-template-columns: 1fr auto;
  margin-bottom: 42px;
  padding: 46px 52px;
}

.app-story-coordination-problem > span {
  color: var(--story-green);
  grid-column: 1 / -1;
}

.app-story-coordination-problem h3 {
  color: #fff;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: 1;
  margin: 0;
  max-width: 900px;
  text-transform: uppercase;
}

.app-story-coordination-problem p {
  color: var(--story-aqua);
  float: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  max-width: 310px;
}

.app-story-stage-convergence {
  height: 132px;
  margin: 0 3%;
  position: relative;
}

.app-story-stage-convergence::before {
  border-top: 3px solid var(--story-black);
  content: "";
	left: 16.666%;
  position: absolute;
	right: 16.666%;
  top: 34px;
}

.app-story-stage-convergence::after {
  border-left: 3px solid var(--story-black);
  content: "";
  height: 65px;
  left: 50%;
  position: absolute;
  top: 34px;
  transform: translateX(-1px);
}

.app-story-stage-convergence > span {
  border-left: 3px solid var(--story-black);
  height: 36px;
  position: absolute;
  top: 0;
}

.app-story-stage-convergence > span:nth-child(1) { left: 16.666%; }
.app-story-stage-convergence > span:nth-child(2) { left: 50%; }
.app-story-stage-convergence > span:nth-child(3) { left: 83.333%; }

.app-story-stage-convergence > i {
  align-items: center;
  background: var(--story-green);
  border: 3px solid var(--story-black);
  border-radius: 50%;
  bottom: 0;
  display: flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 48px;
  z-index: 2;
}

.app-story-coordination-solution {
  align-items: center;
  background: var(--story-black);
  border: 2px solid var(--story-black);
  border-radius: 34px;
  box-shadow: 14px 16px 0 var(--story-mint);
  color: #fff;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(300px, .8fr) minmax(500px, 1.2fr);
  overflow: hidden;
  padding: 54px;
}

.app-story-coordination-solution-copy > span {
  color: var(--story-green);
  display: block;
  margin-bottom: 16px;
}

.app-story-coordination-solution h3 {
  color: #fff;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 74px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .94;
  margin: 0;
  text-transform: uppercase;
}

.app-story-coordination-solution p {
  color: #fff;
  float: none;
  font-size: 18px;
  line-height: 1.55;
  margin: 24px 0 0;
}

.app-story-solution-sequence {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.app-story-solution-sequence span {
  background: var(--story-green);
  border-radius: 999px;
  color: var(--story-black);
  font-size: 11px;
  font-weight: 900;
  padding: 8px 11px;
  text-transform: uppercase;
}

.app-story-solution-sequence i {
  color: var(--story-aqua);
  font-size: 12px;
}

.app-story-coordination-solution-screen {
  background: #fff;
  border: 7px solid #fff;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .35);
  line-height: 0;
  overflow: hidden;
  transform: rotate(1deg);
}

.app-story-coordination-solution-screen img {
  display: block;
  height: auto;
  width: 100%;
}

/* Founder */
.app-story-founder {
  background: #f4f4f4;
  padding: 160px 0;
}

.app-story-founder .col-center2 {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(320px, .8fr) minmax(440px, 1.2fr);
}

.app-story-founder-photo {
  margin: 0 auto;
  max-width: 470px;
  position: relative;
  width: 100%;
}

.app-story-founder-image-wrap {
  position: relative;
}

.app-story-founder-image-wrap > img {
  border: 0;
  border-radius: 34px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.app-story-founder-caption {
  background: var(--story-black);
  border-radius: 16px;
  color: #fff;
  left: 50%;
  min-width: min(390px, 86%);
  padding: 16px 50px;
  position: absolute;
  text-align: center;
  top: calc(100% - 36px);
  transform: translateX(-50%);
}

.app-story-founder-caption strong,
.app-story-founder-caption span {
  color: #fff;
  display: block;
}

.app-story-founder-caption strong {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 25px;
  font-variation-settings: "wdth" 55, "wght" 800;
  text-transform: uppercase;
}

.app-story-founder-caption span {
  font-size: 14px;
  margin-top: 3px;
}

.app-story-founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 65px auto 0;
}

.app-story-founder-credentials span {
  border: 2px solid var(--story-black);
  border-radius: 999px;
  color: var(--story-black);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
}

.app-story-founder-credentials span:nth-child(1) { background: var(--story-mint); }
.app-story-founder-credentials span:nth-child(2) { background: var(--story-aqua); }
.app-story-founder-credentials span:nth-child(3) { background: var(--story-green); }

.app-story-founder-copy blockquote {
  border-left: 5px solid var(--story-green);
  color: var(--story-dark-green);
  font-size: clamp(24px, 2.4vw, 35px);
  font-weight: 800;
  line-height: 1.28;
  margin: 34px 0;
  padding-left: 28px;
}

.app-story-founder-copy p {
  font-size: 19px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 740px;
}

/* Frequency + Ease */
.app-story-filter {
  background: var(--story-black);
  margin: 0;
  padding: 160px 0;
}

.app-story-filter .home-proof-header h2,
.app-story-filter .home-proof-header p,
.app-story-filter .home-filter-stage > p,
.app-story-filter .home-filter-result + p {
  color: #fff;
}

.app-story-filter .home-proof-header .eyebrow {
  color: var(--story-green);
}

.app-story-filter .home-proof-header h2 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: .92;
}

.app-story-filter .home-proof-header p {
  font-size: 20px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.app-story-filter .home-filter-system {
  margin-top: 76px;
}

.app-story-filter .home-filter-stage > p,
.app-story-filter .home-filter-result + p {
  font-weight: 400;
}

/* Product roadmap */
.app-story-roadmap {
  background: #fff;
  clear: both;
  float: none !important;
  padding: 200px 0 170px !important;
  position: relative;
  width: 100%;
}

.app-story-feature {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  min-height: 760px;
  padding: 110px 0;
}

.app-story-feature + .app-story-feature {
  border-top: 1px solid #dedede;
}

.app-story-feature.reverse {
  grid-template-columns: minmax(520px, 1.22fr) minmax(320px, .78fr);
}

.app-story-feature.reverse .app-story-feature-copy { order: 2; }
.app-story-feature.reverse .app-story-feature-screen,
.app-story-feature.reverse .app-story-checkpoint-ui { order: 1; }

.app-story-feature-copy h3 {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .95;
  margin: 22px 0 26px;
  text-transform: uppercase;
}

.app-story-feature-copy > p {
  font-size: 20px;
  line-height: 1.52;
  margin: 0;
}

.app-story-feature-copy ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.app-story-feature-copy li {
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  margin: 13px 0;
  padding-left: 28px;
  position: relative;
}

.app-story-feature-copy li::before {
  align-items: center;
  background: var(--story-green);
  border-radius: 50%;
  color: var(--story-black);
  content: "✓";
  display: flex;
  font-size: 11px;
  height: 18px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 1px;
  width: 18px;
}

.app-story-feature-screen {
  background: var(--story-black);
  border: 3px solid var(--story-black);
  border-radius: 30px;
  box-shadow: 20px 22px 0 var(--story-mint);
  overflow: hidden;
}

.app-story-feature:nth-of-type(even) .app-story-feature-screen {
  box-shadow: -20px 22px 0 var(--story-aqua);
}

.app-story-feature-screen img {
  display: block;
  height: auto;
  width: 100%;
}

.app-story-checkpoint-ui {
  background: #fff;
  border: 3px solid var(--story-black);
  border-radius: 30px;
  box-shadow: 20px 22px 0 var(--story-aqua);
  margin: auto;
  max-width: 650px;
  overflow: hidden;
  padding: 0 48px 48px;
  text-align: center;
  width: 100%;
}

.app-story-checkpoint-top {
  align-items: center;
  background: var(--story-black);
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin: 0 -48px 48px;
  padding: 20px 28px;
}

.app-story-checkpoint-top span {
  color: var(--story-aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.app-story-checkpoint-top strong {
  color: #fff;
  font-size: 14px;
}

.app-story-checkpoint-icon {
  align-items: center;
  background: var(--story-mint);
  border-radius: 50%;
  display: flex;
  font-size: 34px;
  height: 82px;
  justify-content: center;
  margin: 0 auto 28px;
  width: 82px;
}

.app-story-checkpoint-ui h4 {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: 1;
  margin: 15px auto 20px;
  max-width: 500px;
  text-transform: uppercase;
}

.app-story-checkpoint-ui > p {
  font-size: 17px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 460px;
}

.app-story-checkpoint-meta {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 30px 0;
  padding: 18px 0;
}

.app-story-checkpoint-meta span {
  font-size: 13px;
  font-weight: 750;
}

.app-story-checkpoint-meta i {
  color: var(--story-dark-green);
  margin-right: 5px;
}

.app-story-checkpoint-ui button {
  align-items: center;
  background: var(--story-green);
  border: 2px solid var(--story-black);
  border-radius: 999px;
  color: var(--story-black);
  font-family: "adapt-variable", Impact, sans-serif;
  display: inline-flex;
  font-size: 16px;
  font-variation-settings: "wdth" 55, "wght" 800;
  height: 54px;
  justify-content: center;
  line-height: 1;
  padding: 0 34px;
  text-transform: uppercase;
}

/* Outcomes */
.app-story-proof {
  background: var(--story-mint);
  padding: 130px 0;
}

.app-story-proof .col-center2 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}

.app-story-proof-stat,
.app-story-proof article {
  border: 2px solid var(--story-black);
  border-radius: 24px;
}

.app-story-proof-stat {
  align-items: flex-start;
  background: #00ca64;
  color: var(--story-black);
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  justify-content: center;
  min-height: 270px;
  padding: 42px;
}

.app-story-proof-stat.act {
  background: #00d2b2;
}

.app-story-proof-stat strong {
  color: var(--story-black);
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(82px, 9vw, 140px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .8;
}

.app-story-proof-stat span {
  color: var(--story-black);
  font-size: 18px;
  font-weight: 800;
  margin-top: 25px;
  text-transform: uppercase;
}

.app-story-proof article {
  background: #fff;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 280px;
  padding: 34px;
}

.app-story-proof article > div {
  color: var(--story-green);
  letter-spacing: .08em;
}

.app-story-review-photo {
  border: 3px solid #fff;
	border-radius: 50%;
  box-shadow: 0 0 0 2px var(--story-green);
	height: 76px;
  margin-top: 22px;
  object-fit: cover;
	width: 76px;
}

.app-story-proof article > small {
  color: #686868;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-top: 8px;
  text-transform: uppercase;
}

.app-story-proof blockquote {
  color: var(--story-black);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.35;
	margin: 20px 0 auto;
}

.app-story-proof article > span {
  color: #686868;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 28px;
}

/* Three simple inputs */
.app-story-result {
  background: #fff;
  padding: 160px 0;
}

.app-story-result-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.app-story-result-grid article {
  border: 2px solid var(--story-black);
  border-radius: 28px;
  min-height: 410px;
  padding: 34px;
}

.app-story-result-grid article:nth-child(1) { background: var(--story-mint); }
.app-story-result-grid article:nth-child(2) { background: var(--story-aqua); }
.app-story-result-grid article:nth-child(3) { background: var(--story-green); }

.app-story-result-grid article > span {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 17px;
  font-variation-settings: "wdth" 55, "wght" 800;
}

.app-story-result-grid h3 {
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: clamp(44px, 4.4vw, 68px);
  font-variation-settings: "wdth" 55, "wght" 800;
  line-height: .96;
  margin: 100px 0 24px;
}

.app-story-result-grid p {
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
}

/* Comparison */
.app-story-comparison {
  background: #f4f4f4;
  padding: 165px 0;
}

.app-story-table-wrap {
  background: #fff;
  border: 2px solid var(--story-black);
  border-radius: 28px;
  box-shadow: 14px 16px 0 var(--story-mint);
  overflow: auto;
}

.app-story-comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  color: var(--story-black);
  min-width: 1050px;
  table-layout: fixed;
  width: 100%;
}

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

.app-story-comparison-table th,
.app-story-comparison-table td {
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  font-size: 15px;
  line-height: 1.4;
  padding: 24px 20px;
  text-align: left;
  vertical-align: middle;
}

.app-story-comparison-table td {
  text-align: center;
}

.app-story-comparison-table th:last-child,
.app-story-comparison-table td:last-child {
  border-right: 0;
}

.app-story-comparison-table tbody tr:last-child th,
.app-story-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.app-story-comparison-table thead th {
  background: var(--story-black);
  color: #fff;
  font-family: "adapt-variable", Impact, sans-serif;
  font-size: 19px;
  font-variation-settings: "wdth" 55, "wght" 800;
  padding-bottom: 28px;
  padding-top: 28px;
  text-transform: uppercase;
}

.app-story-comparison-table thead th:first-child {
  border-radius: 24px 0 0;
  width: 30%;
}

.app-story-comparison-table thead th:last-child {
  border-radius: 0 24px 0 0;
}

.app-story-comparison-table .staffs {
  background: var(--story-mint);
}

.app-story-comparison-table thead .staffs {
  background: var(--story-green);
  color: var(--story-black);
  text-align: center;
}

.app-story-comparison-table thead .staffs img {
  display: block;
  height: auto;
  margin: auto;
  max-width: 122px;
  width: 100%;
}

.app-story-comparison-table tbody th {
  background: #fff;
  font-weight: 850;
  left: 0;
  position: sticky;
  z-index: 2;
}

.app-story-comparison-table td strong {
  color: var(--story-dark-green);
}

.comparison-check {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}

.comparison-check > i {
  align-items: center;
  background: var(--story-green);
  border: 2px solid var(--story-black);
  border-radius: 50%;
  color: var(--story-black);
  display: inline-flex;
  font-size: 13px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.comparison-check small {
  color: var(--story-dark-green);
  display: block;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
  max-width: 112px;
}

.comparison-no {
  color: #a6aaa8;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.app-story-comparison-table .framework-row th {
  border-bottom-color: var(--story-green);
  border-top: 3px solid var(--story-green);
}

.app-story-comparison-table .framework-row th > span {
  color: var(--story-dark-green);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.app-story-comparison-table .framework-row td {
  border-bottom-color: var(--story-green);
  border-top: 3px solid var(--story-green);
}

.app-story-comparison-table .framework-row .staffs {
  background: var(--story-green);
}

.comparison-check.featured > i {
  background: #fff;
  height: 40px;
  width: 40px;
}

.comparison-check.featured small {
  color: var(--story-black);
  font-size: 11px;
}

.app-story-comparison-note {
  color: #686868 !important;
  font-size: 12px;
  line-height: 1.5;
  margin: 30px auto 0;
  max-width: 960px;
  text-align: center;
}

.app-story-table-swipe {
  display: none;
}

.app-story-comparison-note a {
  color: var(--story-dark-green);
  font-weight: 800;
}

/* Final CTA */
.app-story-final {
  background: var(--story-black);
  color: #fff;
  padding: 150px 0;
  text-align: center;
}

.app-story-final .app-story-eyebrow {
  color: var(--story-green);
}

.app-story-final h2 {
  color: #fff;
}

.app-story-final p {
  color: #fff;
  font-size: 21px;
  line-height: 1.5;
  margin: 28px auto 0;
  max-width: 680px;
}

.app-story-final .app-story-actions {
  justify-content: center;
}

.app-story-final .app-story-actions a:first-child {
  background: var(--story-green);
  border-color: var(--story-green);
  color: var(--story-black);
}

.app-story-final .app-story-actions a.secondary {
  background: var(--story-aqua);
  border-color: var(--story-aqua);
}

@media (max-width: 1180px) {
  .app-story-hero .col-center2 { gap: 38px; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
  .app-story-hero h1 { font-size: clamp(55px, 6.8vw, 78px); }
	.app-story-stage-grid { grid-template-columns: repeat(3, 1fr); }
	.app-story-stage-grid article { min-height: 420px; padding-left: 24px; padding-right: 24px; }
	.app-story-stage-grid h3 { font-size: 32px; }
  .app-story-feature,
  .app-story-feature.reverse { gap: 55px; grid-template-columns: minmax(290px, .8fr) minmax(440px, 1.2fr); }
}

@media (max-width: 900px) {
  .app-story-section-heading { margin-bottom: 50px; }
  .app-story-hero { min-height: 0; padding: 120px 0 90px; }
  .app-story-hero .col-center2 { grid-template-columns: 1fr; }
  .app-story-hero-art { max-width: 680px; padding-bottom: 10px; }
  .app-story-questions { padding: 110px 0; }
  .app-story-questions .col-center2 { gap: 52px; grid-template-columns: 1fr; }
  .app-story-question-answer { grid-column: 1; }
  .app-story-stage-section,
  .app-story-founder,
  .app-story-filter,
  .app-story-roadmap,
  .app-story-result,
  .app-story-comparison,
  .app-story-final { padding-bottom: 120px; padding-top: 120px; }
  .app-story-roadmap { padding-top: 140px !important; }
  .app-story-coordination-problem { align-items: start; grid-template-columns: 1fr; }
	.app-story-stage-grid { gap: 34px; grid-template-columns: 1fr; }
	.app-story-stage-grid article { min-height: 0; }
	.app-story-stage-convergence { height: 104px; margin: 0; }
	.app-story-stage-convergence::before,
	.app-story-stage-convergence > span { display: none; }
	.app-story-stage-convergence::after { height: 64px; top: 0; }
  .app-story-coordination-solution { grid-template-columns: 1fr; }
  .app-story-coordination-solution-screen { margin: 0 auto; max-width: 720px; transform: none; }
  .app-story-founder .col-center2 { gap: 95px; grid-template-columns: 1fr; }
  .app-story-founder-photo { max-width: 430px; }
  .app-story-feature,
  .app-story-feature.reverse { gap: 60px; grid-template-columns: 1fr; min-height: 0; padding: 90px 0; }
  .app-story-feature.reverse .app-story-feature-copy,
  .app-story-feature.reverse .app-story-feature-screen,
  .app-story-feature.reverse .app-story-checkpoint-ui { order: initial; }
  .app-story-proof .col-center2 { grid-template-columns: repeat(2, 1fr); }
  .app-story-proof-stat { grid-column: span 1; }
  .app-story-proof article { grid-column: span 2; min-height: 220px; }
  .app-story-result-grid { grid-template-columns: 1fr; }
  .app-story-result-grid article { min-height: 300px; }
  .app-story-result-grid h3 { margin-top: 70px; }
}

@media (max-width: 620px) {
  .app-story-eyebrow { font-size: 14px; margin-bottom: 14px; }
  .app-story-section-heading h2,
  .app-story-founder h2,
  .app-story-final h2 { font-size: clamp(42px, 13vw, 60px); }
  .app-story-section-heading > p { font-size: 18px; margin-top: 22px; }
  .app-story-hero { padding: 112px 0 70px; }
  .app-story-hero h1 { font-size: clamp(46px, 13vw, 66px); line-height: .9; margin-bottom: 24px; overflow-wrap: anywhere; }
  .app-story-hero-copy > p { font-size: 18px; }
  .app-story-actions { flex-direction: column; }
  .app-story-actions a { min-width: 0; width: 100%; }
  .app-story-hero-art { padding: 15px 0 5px; }
  .app-story-laptop { transform: none; }
  .app-story-laptop-screen { border-width: 7px; border-bottom-width: 10px; border-radius: 12px 12px 5px 5px; }
  .app-story-laptop-base { height: 15px; }
  .app-story-questions { padding: 90px 0; }
  .app-story-questions-title h2 { font-size: clamp(43px, 13vw, 62px); }
  .app-story-option-cloud { margin-top: 28px; }
  .app-story-option-cloud span { font-size: 12px; padding: 8px 11px; }
  .app-story-question-list p { font-size: 21px; padding: 20px 0; }
  .app-story-question-answer { padding-left: 19px; }
  .app-story-question-answer p { font-size: 17px; }
  .app-story-stage-section,
  .app-story-founder,
  .app-story-filter,
  .app-story-roadmap,
  .app-story-result,
  .app-story-comparison,
  .app-story-final { padding-bottom: 90px; padding-top: 90px; }
  .app-story-roadmap { padding-top: 110px !important; }
  .app-story-stage-grid { grid-template-columns: 1fr; }
	.app-story-stage-grid article { min-height: 0; padding: 30px; }
  .app-story-stage-grid h3 { font-size: 36px; }
  .app-story-coordination-problem { border-radius: 24px; margin-bottom: 32px; padding: 32px 25px; }
  .app-story-coordination-problem h3 { font-size: 39px; }
  .app-story-coordination-problem p { font-size: 17px; }
  .app-story-stage-convergence { height: 104px; margin: 0; }
  .app-story-stage-convergence::before,
  .app-story-stage-convergence > span { display: none; }
  .app-story-stage-convergence::after { height: 64px; top: 0; }
  .app-story-coordination-solution { border-radius: 24px; box-shadow: 9px 10px 0 var(--story-mint); gap: 34px; padding: 32px 24px; }
  .app-story-coordination-solution h3 { font-size: clamp(42px, 13vw, 58px); }
  .app-story-coordination-solution p { font-size: 17px; }
  .app-story-solution-sequence {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  .app-story-solution-sequence span { font-size: 9px; padding: 7px; white-space: nowrap; }
  .app-story-solution-sequence i { flex: 0 0 auto; font-size: 9px; }
  .app-story-coordination-solution-screen { border-width: 4px; border-radius: 12px; }
  .app-story-founder .col-center2 { gap: 82px; }
  .app-story-founder-photo { width: calc(100% - 8px); }
  .app-story-founder-caption { min-width: 88%; padding: 14px 18px; }
  .app-story-founder-caption strong { font-size: 21px; }
  .app-story-founder-credentials { margin-top: 58px; }
  .app-story-founder-credentials span { font-size: 11px; padding: 8px 10px; }
  .app-story-founder-copy blockquote { font-size: 23px; margin: 28px 0; padding-left: 19px; }
  .app-story-founder-copy p { font-size: 17px; }
  .app-story-filter .home-proof-header h2 { font-size: clamp(43px, 13vw, 62px); }
  .app-story-filter .home-proof-header p { font-size: 18px; }
  .app-story-filter .home-filter-system { margin-top: 50px; }
  .app-story-feature { gap: 45px; padding: 72px 0; }
  .app-story-feature-copy h3 { font-size: clamp(43px, 13vw, 62px); }
  .app-story-feature-copy > p { font-size: 18px; }
  .app-story-feature-screen { border-radius: 18px; box-shadow: 10px 12px 0 var(--story-mint); }
  .app-story-feature:nth-of-type(even) .app-story-feature-screen { box-shadow: -10px 12px 0 var(--story-aqua); }
  .app-story-checkpoint-ui { border-radius: 20px; box-shadow: 10px 12px 0 var(--story-aqua); padding: 0 22px 28px; }
  .app-story-checkpoint-top { align-items: flex-start; flex-direction: column; gap: 4px; margin: 0 -22px 32px; padding: 16px 18px; }
  .app-story-checkpoint-ui h4 { font-size: 42px; }
  .app-story-checkpoint-meta { align-items: center; flex-direction: column; gap: 9px; }
  .app-story-proof { padding: 80px 0; }
  .app-story-proof .col-center2 { grid-template-columns: 1fr; }
  .app-story-proof-stat,
  .app-story-proof article { grid-column: span 1; }
  .app-story-proof-stat { min-height: 220px; padding: 30px; }
  .app-story-proof-stat strong { font-size: 90px; }
  .app-story-proof article { min-height: 240px; padding: 28px; }
  .app-story-result-grid article { min-height: 280px; padding: 28px; }
  .app-story-result-grid h3 { font-size: 45px; margin-top: 62px; }
  .app-story-table-wrap {
    border-radius: 20px;
    box-shadow: 8px 9px 0 var(--story-mint);
    scroll-padding-left: 120px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .app-story-table-swipe {
    align-items: center;
    color: var(--story-dark-green);
    display: flex;
    font-size: 13px;
    font-weight: 850;
    gap: 8px;
    justify-content: flex-end;
    margin: -20px 0 14px;
    text-transform: uppercase;
  }
  .app-story-comparison-table {
    min-width: 720px;
    width: 720px;
  }
  .app-story-comparison-table th,
  .app-story-comparison-table td {
    box-sizing: border-box;
    font-size: 13px;
    padding: 18px 10px;
  }
  .app-story-comparison-table thead th:first-child,
  .app-story-comparison-table tbody th {
    left: 0;
    max-width: 120px;
    min-width: 120px;
    width: 120px;
  }
  .app-story-comparison-table thead th:first-child { position: sticky; z-index: 3; }
  .app-story-comparison-table thead th:not(:first-child),
  .app-story-comparison-table tbody td {
    max-width: 150px;
    min-width: 150px;
    width: 150px;
  }
  .app-story-comparison-table thead th:not(:first-child) { scroll-snap-align: start; }
  .app-story-comparison-table thead .staffs img { max-width: 100px; }
  .app-story-comparison-table .framework-row th > span { font-size: 9px; }
  .comparison-check small { max-width: 116px; }
  .app-story-comparison-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .app-story-actions a { transition: none; }
}
